1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. SdwanSaasQualityProfile
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    SdwanSaasQualityProfile resource

    Create SdwanSaasQualityProfile Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SdwanSaasQualityProfile(name: string, args: SdwanSaasQualityProfileArgs, opts?: CustomResourceOptions);
    @overload
    def SdwanSaasQualityProfile(resource_name: str,
                                args: SdwanSaasQualityProfileArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def SdwanSaasQualityProfile(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                monitor_mode: Optional[SdwanSaasQualityProfileMonitorModeArgs] = None,
                                device: Optional[str] = None,
                                folder: Optional[str] = None,
                                name: Optional[str] = None,
                                snippet: Optional[str] = None)
    func NewSdwanSaasQualityProfile(ctx *Context, name string, args SdwanSaasQualityProfileArgs, opts ...ResourceOption) (*SdwanSaasQualityProfile, error)
    public SdwanSaasQualityProfile(string name, SdwanSaasQualityProfileArgs args, CustomResourceOptions? opts = null)
    public SdwanSaasQualityProfile(String name, SdwanSaasQualityProfileArgs args)
    public SdwanSaasQualityProfile(String name, SdwanSaasQualityProfileArgs args, CustomResourceOptions options)
    
    type: scm:SdwanSaasQualityProfile
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SdwanSaasQualityProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SdwanSaasQualityProfileArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SdwanSaasQualityProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SdwanSaasQualityProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SdwanSaasQualityProfileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var sdwanSaasQualityProfileResource = new Scm.SdwanSaasQualityProfile("sdwanSaasQualityProfileResource", new()
    {
        MonitorMode = new Scm.Inputs.SdwanSaasQualityProfileMonitorModeArgs
        {
            Adaptive = null,
            HttpHttps = new Scm.Inputs.SdwanSaasQualityProfileMonitorModeHttpHttpsArgs
            {
                MonitoredUrl = "string",
                ProbeInterval = 0,
            },
            StaticIp = new Scm.Inputs.SdwanSaasQualityProfileMonitorModeStaticIpArgs
            {
                Fqdn = new Scm.Inputs.SdwanSaasQualityProfileMonitorModeStaticIpFqdnArgs
                {
                    FqdnName = "string",
                    ProbeInterval = 0,
                },
                IpAddresses = new[]
                {
                    new Scm.Inputs.SdwanSaasQualityProfileMonitorModeStaticIpIpAddressArgs
                    {
                        Name = "string",
                        ProbeInterval = 0,
                    },
                },
            },
        },
        Device = "string",
        Folder = "string",
        Name = "string",
        Snippet = "string",
    });
    
    example, err := scm.NewSdwanSaasQualityProfile(ctx, "sdwanSaasQualityProfileResource", &scm.SdwanSaasQualityProfileArgs{
    	MonitorMode: &scm.SdwanSaasQualityProfileMonitorModeArgs{
    		Adaptive: &scm.SdwanSaasQualityProfileMonitorModeAdaptiveArgs{},
    		HttpHttps: &scm.SdwanSaasQualityProfileMonitorModeHttpHttpsArgs{
    			MonitoredUrl:  pulumi.String("string"),
    			ProbeInterval: pulumi.Int(0),
    		},
    		StaticIp: &scm.SdwanSaasQualityProfileMonitorModeStaticIpArgs{
    			Fqdn: &scm.SdwanSaasQualityProfileMonitorModeStaticIpFqdnArgs{
    				FqdnName:      pulumi.String("string"),
    				ProbeInterval: pulumi.Int(0),
    			},
    			IpAddresses: scm.SdwanSaasQualityProfileMonitorModeStaticIpIpAddressArray{
    				&scm.SdwanSaasQualityProfileMonitorModeStaticIpIpAddressArgs{
    					Name:          pulumi.String("string"),
    					ProbeInterval: pulumi.Int(0),
    				},
    			},
    		},
    	},
    	Device:  pulumi.String("string"),
    	Folder:  pulumi.String("string"),
    	Name:    pulumi.String("string"),
    	Snippet: pulumi.String("string"),
    })
    
    var sdwanSaasQualityProfileResource = new SdwanSaasQualityProfile("sdwanSaasQualityProfileResource", SdwanSaasQualityProfileArgs.builder()
        .monitorMode(SdwanSaasQualityProfileMonitorModeArgs.builder()
            .adaptive(SdwanSaasQualityProfileMonitorModeAdaptiveArgs.builder()
                .build())
            .httpHttps(SdwanSaasQualityProfileMonitorModeHttpHttpsArgs.builder()
                .monitoredUrl("string")
                .probeInterval(0)
                .build())
            .staticIp(SdwanSaasQualityProfileMonitorModeStaticIpArgs.builder()
                .fqdn(SdwanSaasQualityProfileMonitorModeStaticIpFqdnArgs.builder()
                    .fqdnName("string")
                    .probeInterval(0)
                    .build())
                .ipAddresses(SdwanSaasQualityProfileMonitorModeStaticIpIpAddressArgs.builder()
                    .name("string")
                    .probeInterval(0)
                    .build())
                .build())
            .build())
        .device("string")
        .folder("string")
        .name("string")
        .snippet("string")
        .build());
    
    sdwan_saas_quality_profile_resource = scm.SdwanSaasQualityProfile("sdwanSaasQualityProfileResource",
        monitor_mode={
            "adaptive": {},
            "http_https": {
                "monitored_url": "string",
                "probe_interval": 0,
            },
            "static_ip": {
                "fqdn": {
                    "fqdn_name": "string",
                    "probe_interval": 0,
                },
                "ip_addresses": [{
                    "name": "string",
                    "probe_interval": 0,
                }],
            },
        },
        device="string",
        folder="string",
        name="string",
        snippet="string")
    
    const sdwanSaasQualityProfileResource = new scm.SdwanSaasQualityProfile("sdwanSaasQualityProfileResource", {
        monitorMode: {
            adaptive: {},
            httpHttps: {
                monitoredUrl: "string",
                probeInterval: 0,
            },
            staticIp: {
                fqdn: {
                    fqdnName: "string",
                    probeInterval: 0,
                },
                ipAddresses: [{
                    name: "string",
                    probeInterval: 0,
                }],
            },
        },
        device: "string",
        folder: "string",
        name: "string",
        snippet: "string",
    });
    
    type: scm:SdwanSaasQualityProfile
    properties:
        device: string
        folder: string
        monitorMode:
            adaptive: {}
            httpHttps:
                monitoredUrl: string
                probeInterval: 0
            staticIp:
                fqdn:
                    fqdnName: string
                    probeInterval: 0
                ipAddresses:
                    - name: string
                      probeInterval: 0
        name: string
        snippet: string
    

    SdwanSaasQualityProfile Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SdwanSaasQualityProfile resource accepts the following input properties:

    MonitorMode SdwanSaasQualityProfileMonitorMode
    Monitor mode
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Name string
    Profile name
    Snippet string
    The snippet in which the resource is defined
    MonitorMode SdwanSaasQualityProfileMonitorModeArgs
    Monitor mode
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Name string
    Profile name
    Snippet string
    The snippet in which the resource is defined
    monitorMode SdwanSaasQualityProfileMonitorMode
    Monitor mode
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    name String
    Profile name
    snippet String
    The snippet in which the resource is defined
    monitorMode SdwanSaasQualityProfileMonitorMode
    Monitor mode
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    name string
    Profile name
    snippet string
    The snippet in which the resource is defined
    monitor_mode SdwanSaasQualityProfileMonitorModeArgs
    Monitor mode
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    name str
    Profile name
    snippet str
    The snippet in which the resource is defined
    monitorMode Property Map
    Monitor mode
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    name String
    Profile name
    snippet String
    The snippet in which the resource is defined

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SdwanSaasQualityProfile resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    Look up Existing SdwanSaasQualityProfile Resource

    Get an existing SdwanSaasQualityProfile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SdwanSaasQualityProfileState, opts?: CustomResourceOptions): SdwanSaasQualityProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            monitor_mode: Optional[SdwanSaasQualityProfileMonitorModeArgs] = None,
            name: Optional[str] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> SdwanSaasQualityProfile
    func GetSdwanSaasQualityProfile(ctx *Context, name string, id IDInput, state *SdwanSaasQualityProfileState, opts ...ResourceOption) (*SdwanSaasQualityProfile, error)
    public static SdwanSaasQualityProfile Get(string name, Input<string> id, SdwanSaasQualityProfileState? state, CustomResourceOptions? opts = null)
    public static SdwanSaasQualityProfile get(String name, Output<String> id, SdwanSaasQualityProfileState state, CustomResourceOptions options)
    resources:  _:    type: scm:SdwanSaasQualityProfile    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    MonitorMode SdwanSaasQualityProfileMonitorMode
    Monitor mode
    Name string
    Profile name
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    MonitorMode SdwanSaasQualityProfileMonitorModeArgs
    Monitor mode
    Name string
    Profile name
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    monitorMode SdwanSaasQualityProfileMonitorMode
    Monitor mode
    name String
    Profile name
    snippet String
    The snippet in which the resource is defined
    tfid String
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    monitorMode SdwanSaasQualityProfileMonitorMode
    Monitor mode
    name string
    Profile name
    snippet string
    The snippet in which the resource is defined
    tfid string
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    monitor_mode SdwanSaasQualityProfileMonitorModeArgs
    Monitor mode
    name str
    Profile name
    snippet str
    The snippet in which the resource is defined
    tfid str
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    monitorMode Property Map
    Monitor mode
    name String
    Profile name
    snippet String
    The snippet in which the resource is defined
    tfid String

    Supporting Types

    SdwanSaasQualityProfileMonitorMode, SdwanSaasQualityProfileMonitorModeArgs

    SdwanSaasQualityProfileMonitorModeHttpHttps, SdwanSaasQualityProfileMonitorModeHttpHttpsArgs

    MonitoredUrl string
    Monitored URL
    ProbeInterval int
    Probe interval (seconds)
    MonitoredUrl string
    Monitored URL
    ProbeInterval int
    Probe interval (seconds)
    monitoredUrl String
    Monitored URL
    probeInterval Integer
    Probe interval (seconds)
    monitoredUrl string
    Monitored URL
    probeInterval number
    Probe interval (seconds)
    monitored_url str
    Monitored URL
    probe_interval int
    Probe interval (seconds)
    monitoredUrl String
    Monitored URL
    probeInterval Number
    Probe interval (seconds)

    SdwanSaasQualityProfileMonitorModeStaticIp, SdwanSaasQualityProfileMonitorModeStaticIpArgs

    SdwanSaasQualityProfileMonitorModeStaticIpFqdn, SdwanSaasQualityProfileMonitorModeStaticIpFqdnArgs

    FqdnName string
    FQDN
    ProbeInterval int
    Probe interval (seconds)
    FqdnName string
    FQDN
    ProbeInterval int
    Probe interval (seconds)
    fqdnName String
    FQDN
    probeInterval Integer
    Probe interval (seconds)
    fqdnName string
    FQDN
    probeInterval number
    Probe interval (seconds)
    fqdn_name str
    FQDN
    probe_interval int
    Probe interval (seconds)
    fqdnName String
    FQDN
    probeInterval Number
    Probe interval (seconds)

    SdwanSaasQualityProfileMonitorModeStaticIpIpAddress, SdwanSaasQualityProfileMonitorModeStaticIpIpAddressArgs

    Name string
    IP address
    ProbeInterval int
    Probe interval (seconds)
    Name string
    IP address
    ProbeInterval int
    Probe interval (seconds)
    name String
    IP address
    probeInterval Integer
    Probe interval (seconds)
    name string
    IP address
    probeInterval number
    Probe interval (seconds)
    name str
    IP address
    probe_interval int
    Probe interval (seconds)
    name String
    IP address
    probeInterval Number
    Probe interval (seconds)

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate