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:
- Monitor
Mode SdwanSaas Quality Profile Monitor Mode - 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 SdwanSaas Quality Profile Monitor Mode Args - 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 SdwanSaas Quality Profile Monitor Mode - 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 SdwanSaas Quality Profile Monitor Mode - 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 SdwanSaas Quality Profile Monitor Mode Args - 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
- monitor
Mode 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:
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) -> SdwanSaasQualityProfilefunc 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.
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Monitor
Mode SdwanSaas Quality Profile Monitor Mode - 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
- Monitor
Mode SdwanSaas Quality Profile Monitor Mode Args - 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
- monitor
Mode SdwanSaas Quality Profile Monitor Mode - 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
- monitor
Mode SdwanSaas Quality Profile Monitor Mode - 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 SdwanSaas Quality Profile Monitor Mode Args - 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
- monitor
Mode Property Map - Monitor mode
- name String
- Profile name
- snippet String
- The snippet in which the resource is defined
- tfid String
Supporting Types
SdwanSaasQualityProfileMonitorMode, SdwanSaasQualityProfileMonitorModeArgs
- adaptive Property Map
- Adaptive
- http
Https Property Map - Http https
- static
Ip Property Map - Static ip
SdwanSaasQualityProfileMonitorModeHttpHttps, SdwanSaasQualityProfileMonitorModeHttpHttpsArgs
- Monitored
Url string - Monitored URL
- Probe
Interval int - Probe interval (seconds)
- Monitored
Url string - Monitored URL
- Probe
Interval int - Probe interval (seconds)
- monitored
Url String - Monitored URL
- probe
Interval Integer - Probe interval (seconds)
- monitored
Url string - Monitored URL
- probe
Interval number - Probe interval (seconds)
- monitored_
url str - Monitored URL
- probe_
interval int - Probe interval (seconds)
- monitored
Url String - Monitored URL
- probe
Interval Number - Probe interval (seconds)
SdwanSaasQualityProfileMonitorModeStaticIp, SdwanSaasQualityProfileMonitorModeStaticIpArgs
- fqdn Property Map
- Fqdn
- ip
Addresses List<Property Map> - List of IP addresses
SdwanSaasQualityProfileMonitorModeStaticIpFqdn, SdwanSaasQualityProfileMonitorModeStaticIpFqdnArgs
- Fqdn
Name string - FQDN
- Probe
Interval int - Probe interval (seconds)
- Fqdn
Name string - FQDN
- Probe
Interval int - Probe interval (seconds)
- fqdn
Name String - FQDN
- probe
Interval Integer - Probe interval (seconds)
- fqdn
Name string - FQDN
- probe
Interval number - Probe interval (seconds)
- fqdn_
name str - FQDN
- probe_
interval int - Probe interval (seconds)
- fqdn
Name String - FQDN
- probe
Interval Number - Probe interval (seconds)
SdwanSaasQualityProfileMonitorModeStaticIpIpAddress, SdwanSaasQualityProfileMonitorModeStaticIpIpAddressArgs
- Name string
- IP address
- Probe
Interval int - Probe interval (seconds)
- Name string
- IP address
- Probe
Interval int - Probe interval (seconds)
- name String
- IP address
- probe
Interval Integer - Probe interval (seconds)
- name string
- IP address
- probe
Interval number - Probe interval (seconds)
- name str
- IP address
- probe_
interval int - Probe interval (seconds)
- name String
- IP address
- probe
Interval Number - Probe interval (seconds)
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
