sdwan.ServiceTrackerProfileParcel
Explore with Pulumi AI
This resource can manage a Service Tracker profile parcel.
- Minimum SD-WAN Manager version:
20.12.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.ServiceTrackerProfileParcel("example", {
name: "Example",
description: "My Example",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
trackerName: "TRACKER_2",
endpointApiUrl: "google.com",
endpointDnsName: "google.com",
endpointIp: "1.2.3.4",
protocol: "tcp",
port: 123,
interval: 30,
multiplier: 3,
threshold: 300,
endpointTrackerType: "static-route",
trackerType: "endpoint",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.ServiceTrackerProfileParcel("example",
name="Example",
description="My Example",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
tracker_name="TRACKER_2",
endpoint_api_url="google.com",
endpoint_dns_name="google.com",
endpoint_ip="1.2.3.4",
protocol="tcp",
port=123,
interval=30,
multiplier=3,
threshold=300,
endpoint_tracker_type="static-route",
tracker_type="endpoint")
package main
import (
"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdwan.NewServiceTrackerProfileParcel(ctx, "example", &sdwan.ServiceTrackerProfileParcelArgs{
Name: pulumi.String("Example"),
Description: pulumi.String("My Example"),
FeatureProfileId: pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
TrackerName: pulumi.String("TRACKER_2"),
EndpointApiUrl: pulumi.String("google.com"),
EndpointDnsName: pulumi.String("google.com"),
EndpointIp: pulumi.String("1.2.3.4"),
Protocol: pulumi.String("tcp"),
Port: pulumi.Int(123),
Interval: pulumi.Int(30),
Multiplier: pulumi.Int(3),
Threshold: pulumi.Int(300),
EndpointTrackerType: pulumi.String("static-route"),
TrackerType: pulumi.String("endpoint"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() =>
{
var example = new Sdwan.ServiceTrackerProfileParcel("example", new()
{
Name = "Example",
Description = "My Example",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
TrackerName = "TRACKER_2",
EndpointApiUrl = "google.com",
EndpointDnsName = "google.com",
EndpointIp = "1.2.3.4",
Protocol = "tcp",
Port = 123,
Interval = 30,
Multiplier = 3,
Threshold = 300,
EndpointTrackerType = "static-route",
TrackerType = "endpoint",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.ServiceTrackerProfileParcel;
import com.pulumi.sdwan.ServiceTrackerProfileParcelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ServiceTrackerProfileParcel("example", ServiceTrackerProfileParcelArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.trackerName("TRACKER_2")
.endpointApiUrl("google.com")
.endpointDnsName("google.com")
.endpointIp("1.2.3.4")
.protocol("tcp")
.port(123)
.interval(30)
.multiplier(3)
.threshold(300)
.endpointTrackerType("static-route")
.trackerType("endpoint")
.build());
}
}
resources:
example:
type: sdwan:ServiceTrackerProfileParcel
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
trackerName: TRACKER_2
endpointApiUrl: google.com
endpointDnsName: google.com
endpointIp: 1.2.3.4
protocol: tcp
port: 123
interval: 30
multiplier: 3
threshold: 300
endpointTrackerType: static-route
trackerType: endpoint
Create ServiceTrackerProfileParcel Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceTrackerProfileParcel(name: string, args: ServiceTrackerProfileParcelArgs, opts?: CustomResourceOptions);
@overload
def ServiceTrackerProfileParcel(resource_name: str,
args: ServiceTrackerProfileParcelArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceTrackerProfileParcel(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
tracker_name: Optional[str] = None,
multiplier: Optional[int] = None,
tracker_type_variable: Optional[str] = None,
description: Optional[str] = None,
endpoint_ip: Optional[str] = None,
endpoint_ip_variable: Optional[str] = None,
endpoint_tracker_type: Optional[str] = None,
endpoint_tracker_type_variable: Optional[str] = None,
endpoint_api_url_variable: Optional[str] = None,
interval: Optional[int] = None,
name: Optional[str] = None,
endpoint_dns_name_variable: Optional[str] = None,
endpoint_dns_name: Optional[str] = None,
interval_variable: Optional[str] = None,
port: Optional[int] = None,
port_variable: Optional[str] = None,
protocol: Optional[str] = None,
protocol_variable: Optional[str] = None,
threshold: Optional[int] = None,
threshold_variable: Optional[str] = None,
endpoint_api_url: Optional[str] = None,
tracker_name_variable: Optional[str] = None,
tracker_type: Optional[str] = None,
multiplier_variable: Optional[str] = None)
func NewServiceTrackerProfileParcel(ctx *Context, name string, args ServiceTrackerProfileParcelArgs, opts ...ResourceOption) (*ServiceTrackerProfileParcel, error)
public ServiceTrackerProfileParcel(string name, ServiceTrackerProfileParcelArgs args, CustomResourceOptions? opts = null)
public ServiceTrackerProfileParcel(String name, ServiceTrackerProfileParcelArgs args)
public ServiceTrackerProfileParcel(String name, ServiceTrackerProfileParcelArgs args, CustomResourceOptions options)
type: sdwan:ServiceTrackerProfileParcel
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 ServiceTrackerProfileParcelArgs
- 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 ServiceTrackerProfileParcelArgs
- 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 ServiceTrackerProfileParcelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceTrackerProfileParcelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceTrackerProfileParcelArgs
- 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 serviceTrackerProfileParcelResource = new Sdwan.ServiceTrackerProfileParcel("serviceTrackerProfileParcelResource", new()
{
FeatureProfileId = "string",
TrackerName = "string",
Multiplier = 0,
TrackerTypeVariable = "string",
Description = "string",
EndpointIp = "string",
EndpointIpVariable = "string",
EndpointTrackerType = "string",
EndpointTrackerTypeVariable = "string",
EndpointApiUrlVariable = "string",
Interval = 0,
Name = "string",
EndpointDnsNameVariable = "string",
EndpointDnsName = "string",
IntervalVariable = "string",
Port = 0,
PortVariable = "string",
Protocol = "string",
ProtocolVariable = "string",
Threshold = 0,
ThresholdVariable = "string",
EndpointApiUrl = "string",
TrackerNameVariable = "string",
TrackerType = "string",
MultiplierVariable = "string",
});
example, err := sdwan.NewServiceTrackerProfileParcel(ctx, "serviceTrackerProfileParcelResource", &sdwan.ServiceTrackerProfileParcelArgs{
FeatureProfileId: pulumi.String("string"),
TrackerName: pulumi.String("string"),
Multiplier: pulumi.Int(0),
TrackerTypeVariable: pulumi.String("string"),
Description: pulumi.String("string"),
EndpointIp: pulumi.String("string"),
EndpointIpVariable: pulumi.String("string"),
EndpointTrackerType: pulumi.String("string"),
EndpointTrackerTypeVariable: pulumi.String("string"),
EndpointApiUrlVariable: pulumi.String("string"),
Interval: pulumi.Int(0),
Name: pulumi.String("string"),
EndpointDnsNameVariable: pulumi.String("string"),
EndpointDnsName: pulumi.String("string"),
IntervalVariable: pulumi.String("string"),
Port: pulumi.Int(0),
PortVariable: pulumi.String("string"),
Protocol: pulumi.String("string"),
ProtocolVariable: pulumi.String("string"),
Threshold: pulumi.Int(0),
ThresholdVariable: pulumi.String("string"),
EndpointApiUrl: pulumi.String("string"),
TrackerNameVariable: pulumi.String("string"),
TrackerType: pulumi.String("string"),
MultiplierVariable: pulumi.String("string"),
})
var serviceTrackerProfileParcelResource = new ServiceTrackerProfileParcel("serviceTrackerProfileParcelResource", ServiceTrackerProfileParcelArgs.builder()
.featureProfileId("string")
.trackerName("string")
.multiplier(0)
.trackerTypeVariable("string")
.description("string")
.endpointIp("string")
.endpointIpVariable("string")
.endpointTrackerType("string")
.endpointTrackerTypeVariable("string")
.endpointApiUrlVariable("string")
.interval(0)
.name("string")
.endpointDnsNameVariable("string")
.endpointDnsName("string")
.intervalVariable("string")
.port(0)
.portVariable("string")
.protocol("string")
.protocolVariable("string")
.threshold(0)
.thresholdVariable("string")
.endpointApiUrl("string")
.trackerNameVariable("string")
.trackerType("string")
.multiplierVariable("string")
.build());
service_tracker_profile_parcel_resource = sdwan.ServiceTrackerProfileParcel("serviceTrackerProfileParcelResource",
feature_profile_id="string",
tracker_name="string",
multiplier=0,
tracker_type_variable="string",
description="string",
endpoint_ip="string",
endpoint_ip_variable="string",
endpoint_tracker_type="string",
endpoint_tracker_type_variable="string",
endpoint_api_url_variable="string",
interval=0,
name="string",
endpoint_dns_name_variable="string",
endpoint_dns_name="string",
interval_variable="string",
port=0,
port_variable="string",
protocol="string",
protocol_variable="string",
threshold=0,
threshold_variable="string",
endpoint_api_url="string",
tracker_name_variable="string",
tracker_type="string",
multiplier_variable="string")
const serviceTrackerProfileParcelResource = new sdwan.ServiceTrackerProfileParcel("serviceTrackerProfileParcelResource", {
featureProfileId: "string",
trackerName: "string",
multiplier: 0,
trackerTypeVariable: "string",
description: "string",
endpointIp: "string",
endpointIpVariable: "string",
endpointTrackerType: "string",
endpointTrackerTypeVariable: "string",
endpointApiUrlVariable: "string",
interval: 0,
name: "string",
endpointDnsNameVariable: "string",
endpointDnsName: "string",
intervalVariable: "string",
port: 0,
portVariable: "string",
protocol: "string",
protocolVariable: "string",
threshold: 0,
thresholdVariable: "string",
endpointApiUrl: "string",
trackerNameVariable: "string",
trackerType: "string",
multiplierVariable: "string",
});
type: sdwan:ServiceTrackerProfileParcel
properties:
description: string
endpointApiUrl: string
endpointApiUrlVariable: string
endpointDnsName: string
endpointDnsNameVariable: string
endpointIp: string
endpointIpVariable: string
endpointTrackerType: string
endpointTrackerTypeVariable: string
featureProfileId: string
interval: 0
intervalVariable: string
multiplier: 0
multiplierVariable: string
name: string
port: 0
portVariable: string
protocol: string
protocolVariable: string
threshold: 0
thresholdVariable: string
trackerName: string
trackerNameVariable: string
trackerType: string
trackerTypeVariable: string
ServiceTrackerProfileParcel Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ServiceTrackerProfileParcel resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Tracker
Name string - Tracker Name
- Description string
- The description of the profile parcel
- Endpoint
Api stringUrl - API url of endpoint
- Endpoint
Api stringUrl Variable - Variable name
- Endpoint
Dns stringName - Endpoint DNS Name
- Endpoint
Dns stringName Variable - Variable name
- Endpoint
Ip string - Endpoint IP
- Endpoint
Ip stringVariable - Variable name
- Endpoint
Tracker stringType - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- Endpoint
Tracker stringType Variable - Variable name
- Interval int
- Interval - Range:
20
-600
- Default value:60
- Interval
Variable string - Variable name
- Multiplier int
- Multiplier - Range:
1
-10
- Default value:3
- Multiplier
Variable string - Variable name
- Name string
- The name of the profile parcel
- Port int
- Range:
1
-65535
- Range:
- Port
Variable string - Variable name
- Protocol string
- Choices:
tcp
,udp
- Choices:
- Protocol
Variable string - Variable name
- Threshold int
- Threshold - Range:
100
-1000
- Default value:300
- Threshold
Variable string - Variable name
- Tracker
Name stringVariable - Variable name
- Tracker
Type string - Tracker Type - Choices:
endpoint
- Default value:endpoint
- Tracker
Type stringVariable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Tracker
Name string - Tracker Name
- Description string
- The description of the profile parcel
- Endpoint
Api stringUrl - API url of endpoint
- Endpoint
Api stringUrl Variable - Variable name
- Endpoint
Dns stringName - Endpoint DNS Name
- Endpoint
Dns stringName Variable - Variable name
- Endpoint
Ip string - Endpoint IP
- Endpoint
Ip stringVariable - Variable name
- Endpoint
Tracker stringType - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- Endpoint
Tracker stringType Variable - Variable name
- Interval int
- Interval - Range:
20
-600
- Default value:60
- Interval
Variable string - Variable name
- Multiplier int
- Multiplier - Range:
1
-10
- Default value:3
- Multiplier
Variable string - Variable name
- Name string
- The name of the profile parcel
- Port int
- Range:
1
-65535
- Range:
- Port
Variable string - Variable name
- Protocol string
- Choices:
tcp
,udp
- Choices:
- Protocol
Variable string - Variable name
- Threshold int
- Threshold - Range:
100
-1000
- Default value:300
- Threshold
Variable string - Variable name
- Tracker
Name stringVariable - Variable name
- Tracker
Type string - Tracker Type - Choices:
endpoint
- Default value:endpoint
- Tracker
Type stringVariable - Variable name
- feature
Profile StringId - Feature Profile ID
- tracker
Name String - Tracker Name
- description String
- The description of the profile parcel
- endpoint
Api StringUrl - API url of endpoint
- endpoint
Api StringUrl Variable - Variable name
- endpoint
Dns StringName - Endpoint DNS Name
- endpoint
Dns StringName Variable - Variable name
- endpoint
Ip String - Endpoint IP
- endpoint
Ip StringVariable - Variable name
- endpoint
Tracker StringType - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- endpoint
Tracker StringType Variable - Variable name
- interval Integer
- Interval - Range:
20
-600
- Default value:60
- interval
Variable String - Variable name
- multiplier Integer
- Multiplier - Range:
1
-10
- Default value:3
- multiplier
Variable String - Variable name
- name String
- The name of the profile parcel
- port Integer
- Range:
1
-65535
- Range:
- port
Variable String - Variable name
- protocol String
- Choices:
tcp
,udp
- Choices:
- protocol
Variable String - Variable name
- threshold Integer
- Threshold - Range:
100
-1000
- Default value:300
- threshold
Variable String - Variable name
- tracker
Name StringVariable - Variable name
- tracker
Type String - Tracker Type - Choices:
endpoint
- Default value:endpoint
- tracker
Type StringVariable - Variable name
- feature
Profile stringId - Feature Profile ID
- tracker
Name string - Tracker Name
- description string
- The description of the profile parcel
- endpoint
Api stringUrl - API url of endpoint
- endpoint
Api stringUrl Variable - Variable name
- endpoint
Dns stringName - Endpoint DNS Name
- endpoint
Dns stringName Variable - Variable name
- endpoint
Ip string - Endpoint IP
- endpoint
Ip stringVariable - Variable name
- endpoint
Tracker stringType - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- endpoint
Tracker stringType Variable - Variable name
- interval number
- Interval - Range:
20
-600
- Default value:60
- interval
Variable string - Variable name
- multiplier number
- Multiplier - Range:
1
-10
- Default value:3
- multiplier
Variable string - Variable name
- name string
- The name of the profile parcel
- port number
- Range:
1
-65535
- Range:
- port
Variable string - Variable name
- protocol string
- Choices:
tcp
,udp
- Choices:
- protocol
Variable string - Variable name
- threshold number
- Threshold - Range:
100
-1000
- Default value:300
- threshold
Variable string - Variable name
- tracker
Name stringVariable - Variable name
- tracker
Type string - Tracker Type - Choices:
endpoint
- Default value:endpoint
- tracker
Type stringVariable - Variable name
- feature_
profile_ strid - Feature Profile ID
- tracker_
name str - Tracker Name
- description str
- The description of the profile parcel
- endpoint_
api_ strurl - API url of endpoint
- endpoint_
api_ strurl_ variable - Variable name
- endpoint_
dns_ strname - Endpoint DNS Name
- endpoint_
dns_ strname_ variable - Variable name
- endpoint_
ip str - Endpoint IP
- endpoint_
ip_ strvariable - Variable name
- endpoint_
tracker_ strtype - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- endpoint_
tracker_ strtype_ variable - Variable name
- interval int
- Interval - Range:
20
-600
- Default value:60
- interval_
variable str - Variable name
- multiplier int
- Multiplier - Range:
1
-10
- Default value:3
- multiplier_
variable str - Variable name
- name str
- The name of the profile parcel
- port int
- Range:
1
-65535
- Range:
- port_
variable str - Variable name
- protocol str
- Choices:
tcp
,udp
- Choices:
- protocol_
variable str - Variable name
- threshold int
- Threshold - Range:
100
-1000
- Default value:300
- threshold_
variable str - Variable name
- tracker_
name_ strvariable - Variable name
- tracker_
type str - Tracker Type - Choices:
endpoint
- Default value:endpoint
- tracker_
type_ strvariable - Variable name
- feature
Profile StringId - Feature Profile ID
- tracker
Name String - Tracker Name
- description String
- The description of the profile parcel
- endpoint
Api StringUrl - API url of endpoint
- endpoint
Api StringUrl Variable - Variable name
- endpoint
Dns StringName - Endpoint DNS Name
- endpoint
Dns StringName Variable - Variable name
- endpoint
Ip String - Endpoint IP
- endpoint
Ip StringVariable - Variable name
- endpoint
Tracker StringType - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- endpoint
Tracker StringType Variable - Variable name
- interval Number
- Interval - Range:
20
-600
- Default value:60
- interval
Variable String - Variable name
- multiplier Number
- Multiplier - Range:
1
-10
- Default value:3
- multiplier
Variable String - Variable name
- name String
- The name of the profile parcel
- port Number
- Range:
1
-65535
- Range:
- port
Variable String - Variable name
- protocol String
- Choices:
tcp
,udp
- Choices:
- protocol
Variable String - Variable name
- threshold Number
- Threshold - Range:
100
-1000
- Default value:300
- threshold
Variable String - Variable name
- tracker
Name StringVariable - Variable name
- tracker
Type String - Tracker Type - Choices:
endpoint
- Default value:endpoint
- tracker
Type StringVariable - Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceTrackerProfileParcel resource produces the following output properties:
Look up Existing ServiceTrackerProfileParcel Resource
Get an existing ServiceTrackerProfileParcel 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?: ServiceTrackerProfileParcelState, opts?: CustomResourceOptions): ServiceTrackerProfileParcel
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
endpoint_api_url: Optional[str] = None,
endpoint_api_url_variable: Optional[str] = None,
endpoint_dns_name: Optional[str] = None,
endpoint_dns_name_variable: Optional[str] = None,
endpoint_ip: Optional[str] = None,
endpoint_ip_variable: Optional[str] = None,
endpoint_tracker_type: Optional[str] = None,
endpoint_tracker_type_variable: Optional[str] = None,
feature_profile_id: Optional[str] = None,
interval: Optional[int] = None,
interval_variable: Optional[str] = None,
multiplier: Optional[int] = None,
multiplier_variable: Optional[str] = None,
name: Optional[str] = None,
port: Optional[int] = None,
port_variable: Optional[str] = None,
protocol: Optional[str] = None,
protocol_variable: Optional[str] = None,
threshold: Optional[int] = None,
threshold_variable: Optional[str] = None,
tracker_name: Optional[str] = None,
tracker_name_variable: Optional[str] = None,
tracker_type: Optional[str] = None,
tracker_type_variable: Optional[str] = None,
version: Optional[int] = None) -> ServiceTrackerProfileParcel
func GetServiceTrackerProfileParcel(ctx *Context, name string, id IDInput, state *ServiceTrackerProfileParcelState, opts ...ResourceOption) (*ServiceTrackerProfileParcel, error)
public static ServiceTrackerProfileParcel Get(string name, Input<string> id, ServiceTrackerProfileParcelState? state, CustomResourceOptions? opts = null)
public static ServiceTrackerProfileParcel get(String name, Output<String> id, ServiceTrackerProfileParcelState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Description string
- The description of the profile parcel
- Endpoint
Api stringUrl - API url of endpoint
- Endpoint
Api stringUrl Variable - Variable name
- Endpoint
Dns stringName - Endpoint DNS Name
- Endpoint
Dns stringName Variable - Variable name
- Endpoint
Ip string - Endpoint IP
- Endpoint
Ip stringVariable - Variable name
- Endpoint
Tracker stringType - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- Endpoint
Tracker stringType Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Interval int
- Interval - Range:
20
-600
- Default value:60
- Interval
Variable string - Variable name
- Multiplier int
- Multiplier - Range:
1
-10
- Default value:3
- Multiplier
Variable string - Variable name
- Name string
- The name of the profile parcel
- Port int
- Range:
1
-65535
- Range:
- Port
Variable string - Variable name
- Protocol string
- Choices:
tcp
,udp
- Choices:
- Protocol
Variable string - Variable name
- Threshold int
- Threshold - Range:
100
-1000
- Default value:300
- Threshold
Variable string - Variable name
- Tracker
Name string - Tracker Name
- Tracker
Name stringVariable - Variable name
- Tracker
Type string - Tracker Type - Choices:
endpoint
- Default value:endpoint
- Tracker
Type stringVariable - Variable name
- Version int
- The version of the profile parcel
- Description string
- The description of the profile parcel
- Endpoint
Api stringUrl - API url of endpoint
- Endpoint
Api stringUrl Variable - Variable name
- Endpoint
Dns stringName - Endpoint DNS Name
- Endpoint
Dns stringName Variable - Variable name
- Endpoint
Ip string - Endpoint IP
- Endpoint
Ip stringVariable - Variable name
- Endpoint
Tracker stringType - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- Endpoint
Tracker stringType Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Interval int
- Interval - Range:
20
-600
- Default value:60
- Interval
Variable string - Variable name
- Multiplier int
- Multiplier - Range:
1
-10
- Default value:3
- Multiplier
Variable string - Variable name
- Name string
- The name of the profile parcel
- Port int
- Range:
1
-65535
- Range:
- Port
Variable string - Variable name
- Protocol string
- Choices:
tcp
,udp
- Choices:
- Protocol
Variable string - Variable name
- Threshold int
- Threshold - Range:
100
-1000
- Default value:300
- Threshold
Variable string - Variable name
- Tracker
Name string - Tracker Name
- Tracker
Name stringVariable - Variable name
- Tracker
Type string - Tracker Type - Choices:
endpoint
- Default value:endpoint
- Tracker
Type stringVariable - Variable name
- Version int
- The version of the profile parcel
- description String
- The description of the profile parcel
- endpoint
Api StringUrl - API url of endpoint
- endpoint
Api StringUrl Variable - Variable name
- endpoint
Dns StringName - Endpoint DNS Name
- endpoint
Dns StringName Variable - Variable name
- endpoint
Ip String - Endpoint IP
- endpoint
Ip StringVariable - Variable name
- endpoint
Tracker StringType - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- endpoint
Tracker StringType Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- interval Integer
- Interval - Range:
20
-600
- Default value:60
- interval
Variable String - Variable name
- multiplier Integer
- Multiplier - Range:
1
-10
- Default value:3
- multiplier
Variable String - Variable name
- name String
- The name of the profile parcel
- port Integer
- Range:
1
-65535
- Range:
- port
Variable String - Variable name
- protocol String
- Choices:
tcp
,udp
- Choices:
- protocol
Variable String - Variable name
- threshold Integer
- Threshold - Range:
100
-1000
- Default value:300
- threshold
Variable String - Variable name
- tracker
Name String - Tracker Name
- tracker
Name StringVariable - Variable name
- tracker
Type String - Tracker Type - Choices:
endpoint
- Default value:endpoint
- tracker
Type StringVariable - Variable name
- version Integer
- The version of the profile parcel
- description string
- The description of the profile parcel
- endpoint
Api stringUrl - API url of endpoint
- endpoint
Api stringUrl Variable - Variable name
- endpoint
Dns stringName - Endpoint DNS Name
- endpoint
Dns stringName Variable - Variable name
- endpoint
Ip string - Endpoint IP
- endpoint
Ip stringVariable - Variable name
- endpoint
Tracker stringType - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- endpoint
Tracker stringType Variable - Variable name
- feature
Profile stringId - Feature Profile ID
- interval number
- Interval - Range:
20
-600
- Default value:60
- interval
Variable string - Variable name
- multiplier number
- Multiplier - Range:
1
-10
- Default value:3
- multiplier
Variable string - Variable name
- name string
- The name of the profile parcel
- port number
- Range:
1
-65535
- Range:
- port
Variable string - Variable name
- protocol string
- Choices:
tcp
,udp
- Choices:
- protocol
Variable string - Variable name
- threshold number
- Threshold - Range:
100
-1000
- Default value:300
- threshold
Variable string - Variable name
- tracker
Name string - Tracker Name
- tracker
Name stringVariable - Variable name
- tracker
Type string - Tracker Type - Choices:
endpoint
- Default value:endpoint
- tracker
Type stringVariable - Variable name
- version number
- The version of the profile parcel
- description str
- The description of the profile parcel
- endpoint_
api_ strurl - API url of endpoint
- endpoint_
api_ strurl_ variable - Variable name
- endpoint_
dns_ strname - Endpoint DNS Name
- endpoint_
dns_ strname_ variable - Variable name
- endpoint_
ip str - Endpoint IP
- endpoint_
ip_ strvariable - Variable name
- endpoint_
tracker_ strtype - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- endpoint_
tracker_ strtype_ variable - Variable name
- feature_
profile_ strid - Feature Profile ID
- interval int
- Interval - Range:
20
-600
- Default value:60
- interval_
variable str - Variable name
- multiplier int
- Multiplier - Range:
1
-10
- Default value:3
- multiplier_
variable str - Variable name
- name str
- The name of the profile parcel
- port int
- Range:
1
-65535
- Range:
- port_
variable str - Variable name
- protocol str
- Choices:
tcp
,udp
- Choices:
- protocol_
variable str - Variable name
- threshold int
- Threshold - Range:
100
-1000
- Default value:300
- threshold_
variable str - Variable name
- tracker_
name str - Tracker Name
- tracker_
name_ strvariable - Variable name
- tracker_
type str - Tracker Type - Choices:
endpoint
- Default value:endpoint
- tracker_
type_ strvariable - Variable name
- version int
- The version of the profile parcel
- description String
- The description of the profile parcel
- endpoint
Api StringUrl - API url of endpoint
- endpoint
Api StringUrl Variable - Variable name
- endpoint
Dns StringName - Endpoint DNS Name
- endpoint
Dns StringName Variable - Variable name
- endpoint
Ip String - Endpoint IP
- endpoint
Ip StringVariable - Variable name
- endpoint
Tracker StringType - Endpoint Tracker Type - Choices:
static-route
- Default value:static-route
- endpoint
Tracker StringType Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- interval Number
- Interval - Range:
20
-600
- Default value:60
- interval
Variable String - Variable name
- multiplier Number
- Multiplier - Range:
1
-10
- Default value:3
- multiplier
Variable String - Variable name
- name String
- The name of the profile parcel
- port Number
- Range:
1
-65535
- Range:
- port
Variable String - Variable name
- protocol String
- Choices:
tcp
,udp
- Choices:
- protocol
Variable String - Variable name
- threshold Number
- Threshold - Range:
100
-1000
- Default value:300
- threshold
Variable String - Variable name
- tracker
Name String - Tracker Name
- tracker
Name StringVariable - Variable name
- tracker
Type String - Tracker Type - Choices:
endpoint
- Default value:endpoint
- tracker
Type StringVariable - Variable name
- version Number
- The version of the profile parcel
Import
$ pulumi import sdwan:index/serviceTrackerProfileParcel:ServiceTrackerProfileParcel example "f6b2c44c-693c-4763-b010-895aa3d236bd"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.