sdwan.CiscoThousandeyesFeatureTemplate
Explore with Pulumi AI
This resource can manage a Cisco ThousandEyes feature template.
- Minimum SD-WAN Manager version: 15.0.0
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.CiscoThousandeyesFeatureTemplate;
import com.pulumi.sdwan.CiscoThousandeyesFeatureTemplateArgs;
import com.pulumi.sdwan.inputs.CiscoThousandeyesFeatureTemplateVirtualApplicationArgs;
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 CiscoThousandeyesFeatureTemplate("example", CiscoThousandeyesFeatureTemplateArgs.builder()
            .name("Example")
            .description("My Example")
            .deviceTypes("vedge-C8000V")
            .virtualApplications(CiscoThousandeyesFeatureTemplateVirtualApplicationArgs.builder()
                .instance_id("1")
                .application_type("te")
                .te_account_group_token("1234567")
                .te_vpn(1)
                .te_agent_ip("1.1.1.2/24")
                .te_default_gateway("1.1.1.255")
                .te_name_server("10.2.2.2")
                .te_hostname("agent1")
                .te_web_proxy_type("static")
                .te_proxy_host("3.3.3.3")
                .te_proxy_port(80)
                .build())
            .build());
    }
}
resources:
  example:
    type: sdwan:CiscoThousandeyesFeatureTemplate
    properties:
      name: Example
      description: My Example
      deviceTypes:
        - vedge-C8000V
      virtualApplications:
        - instance_id: '1'
          application_type: te
          te_account_group_token: '1234567'
          te_vpn: 1
          te_agent_ip: 1.1.1.2/24
          te_default_gateway: 1.1.1.255
          te_name_server: 10.2.2.2
          te_hostname: agent1
          te_web_proxy_type: static
          te_proxy_host: 3.3.3.3
          te_proxy_port: 80
Create CiscoThousandeyesFeatureTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CiscoThousandeyesFeatureTemplate(name: string, args: CiscoThousandeyesFeatureTemplateArgs, opts?: CustomResourceOptions);@overload
def CiscoThousandeyesFeatureTemplate(resource_name: str,
                                     args: CiscoThousandeyesFeatureTemplateArgs,
                                     opts: Optional[ResourceOptions] = None)
@overload
def CiscoThousandeyesFeatureTemplate(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     description: Optional[str] = None,
                                     device_types: Optional[Sequence[str]] = None,
                                     name: Optional[str] = None,
                                     virtual_applications: Optional[Sequence[CiscoThousandeyesFeatureTemplateVirtualApplicationArgs]] = None)func NewCiscoThousandeyesFeatureTemplate(ctx *Context, name string, args CiscoThousandeyesFeatureTemplateArgs, opts ...ResourceOption) (*CiscoThousandeyesFeatureTemplate, error)public CiscoThousandeyesFeatureTemplate(string name, CiscoThousandeyesFeatureTemplateArgs args, CustomResourceOptions? opts = null)
public CiscoThousandeyesFeatureTemplate(String name, CiscoThousandeyesFeatureTemplateArgs args)
public CiscoThousandeyesFeatureTemplate(String name, CiscoThousandeyesFeatureTemplateArgs args, CustomResourceOptions options)
type: sdwan:CiscoThousandeyesFeatureTemplate
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 CiscoThousandeyesFeatureTemplateArgs
- 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 CiscoThousandeyesFeatureTemplateArgs
- 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 CiscoThousandeyesFeatureTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CiscoThousandeyesFeatureTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CiscoThousandeyesFeatureTemplateArgs
- 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 ciscoThousandeyesFeatureTemplateResource = new Sdwan.CiscoThousandeyesFeatureTemplate("ciscoThousandeyesFeatureTemplateResource", new()
{
    Description = "string",
    DeviceTypes = new[]
    {
        "string",
    },
    Name = "string",
    VirtualApplications = new[]
    {
        new Sdwan.Inputs.CiscoThousandeyesFeatureTemplateVirtualApplicationArgs
        {
            ApplicationType = "string",
            InstanceId = "string",
            Optional = false,
            TeAccountGroupToken = "string",
            TeAccountGroupTokenVariable = "string",
            TeAgentIp = "string",
            TeAgentIpVariable = "string",
            TeDefaultGateway = "string",
            TeDefaultGatewayVariable = "string",
            TeHostname = "string",
            TeHostnameVariable = "string",
            TeNameServer = "string",
            TeNameServerVariable = "string",
            TePacUrl = "string",
            TePacUrlVariable = "string",
            TeProxyHost = "string",
            TeProxyHostVariable = "string",
            TeProxyPort = 0,
            TeProxyPortVariable = "string",
            TeVpn = 0,
            TeVpnVariable = "string",
            TeWebProxyType = "string",
        },
    },
});
example, err := sdwan.NewCiscoThousandeyesFeatureTemplate(ctx, "ciscoThousandeyesFeatureTemplateResource", &sdwan.CiscoThousandeyesFeatureTemplateArgs{
	Description: pulumi.String("string"),
	DeviceTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	VirtualApplications: sdwan.CiscoThousandeyesFeatureTemplateVirtualApplicationArray{
		&sdwan.CiscoThousandeyesFeatureTemplateVirtualApplicationArgs{
			ApplicationType:             pulumi.String("string"),
			InstanceId:                  pulumi.String("string"),
			Optional:                    pulumi.Bool(false),
			TeAccountGroupToken:         pulumi.String("string"),
			TeAccountGroupTokenVariable: pulumi.String("string"),
			TeAgentIp:                   pulumi.String("string"),
			TeAgentIpVariable:           pulumi.String("string"),
			TeDefaultGateway:            pulumi.String("string"),
			TeDefaultGatewayVariable:    pulumi.String("string"),
			TeHostname:                  pulumi.String("string"),
			TeHostnameVariable:          pulumi.String("string"),
			TeNameServer:                pulumi.String("string"),
			TeNameServerVariable:        pulumi.String("string"),
			TePacUrl:                    pulumi.String("string"),
			TePacUrlVariable:            pulumi.String("string"),
			TeProxyHost:                 pulumi.String("string"),
			TeProxyHostVariable:         pulumi.String("string"),
			TeProxyPort:                 pulumi.Int(0),
			TeProxyPortVariable:         pulumi.String("string"),
			TeVpn:                       pulumi.Int(0),
			TeVpnVariable:               pulumi.String("string"),
			TeWebProxyType:              pulumi.String("string"),
		},
	},
})
var ciscoThousandeyesFeatureTemplateResource = new CiscoThousandeyesFeatureTemplate("ciscoThousandeyesFeatureTemplateResource", CiscoThousandeyesFeatureTemplateArgs.builder()
    .description("string")
    .deviceTypes("string")
    .name("string")
    .virtualApplications(CiscoThousandeyesFeatureTemplateVirtualApplicationArgs.builder()
        .applicationType("string")
        .instanceId("string")
        .optional(false)
        .teAccountGroupToken("string")
        .teAccountGroupTokenVariable("string")
        .teAgentIp("string")
        .teAgentIpVariable("string")
        .teDefaultGateway("string")
        .teDefaultGatewayVariable("string")
        .teHostname("string")
        .teHostnameVariable("string")
        .teNameServer("string")
        .teNameServerVariable("string")
        .tePacUrl("string")
        .tePacUrlVariable("string")
        .teProxyHost("string")
        .teProxyHostVariable("string")
        .teProxyPort(0)
        .teProxyPortVariable("string")
        .teVpn(0)
        .teVpnVariable("string")
        .teWebProxyType("string")
        .build())
    .build());
cisco_thousandeyes_feature_template_resource = sdwan.CiscoThousandeyesFeatureTemplate("ciscoThousandeyesFeatureTemplateResource",
    description="string",
    device_types=["string"],
    name="string",
    virtual_applications=[{
        "application_type": "string",
        "instance_id": "string",
        "optional": False,
        "te_account_group_token": "string",
        "te_account_group_token_variable": "string",
        "te_agent_ip": "string",
        "te_agent_ip_variable": "string",
        "te_default_gateway": "string",
        "te_default_gateway_variable": "string",
        "te_hostname": "string",
        "te_hostname_variable": "string",
        "te_name_server": "string",
        "te_name_server_variable": "string",
        "te_pac_url": "string",
        "te_pac_url_variable": "string",
        "te_proxy_host": "string",
        "te_proxy_host_variable": "string",
        "te_proxy_port": 0,
        "te_proxy_port_variable": "string",
        "te_vpn": 0,
        "te_vpn_variable": "string",
        "te_web_proxy_type": "string",
    }])
const ciscoThousandeyesFeatureTemplateResource = new sdwan.CiscoThousandeyesFeatureTemplate("ciscoThousandeyesFeatureTemplateResource", {
    description: "string",
    deviceTypes: ["string"],
    name: "string",
    virtualApplications: [{
        applicationType: "string",
        instanceId: "string",
        optional: false,
        teAccountGroupToken: "string",
        teAccountGroupTokenVariable: "string",
        teAgentIp: "string",
        teAgentIpVariable: "string",
        teDefaultGateway: "string",
        teDefaultGatewayVariable: "string",
        teHostname: "string",
        teHostnameVariable: "string",
        teNameServer: "string",
        teNameServerVariable: "string",
        tePacUrl: "string",
        tePacUrlVariable: "string",
        teProxyHost: "string",
        teProxyHostVariable: "string",
        teProxyPort: 0,
        teProxyPortVariable: "string",
        teVpn: 0,
        teVpnVariable: "string",
        teWebProxyType: "string",
    }],
});
type: sdwan:CiscoThousandeyesFeatureTemplate
properties:
    description: string
    deviceTypes:
        - string
    name: string
    virtualApplications:
        - applicationType: string
          instanceId: string
          optional: false
          teAccountGroupToken: string
          teAccountGroupTokenVariable: string
          teAgentIp: string
          teAgentIpVariable: string
          teDefaultGateway: string
          teDefaultGatewayVariable: string
          teHostname: string
          teHostnameVariable: string
          teNameServer: string
          teNameServerVariable: string
          tePacUrl: string
          tePacUrlVariable: string
          teProxyHost: string
          teProxyHostVariable: string
          teProxyPort: 0
          teProxyPortVariable: string
          teVpn: 0
          teVpnVariable: string
          teWebProxyType: string
CiscoThousandeyesFeatureTemplate 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 CiscoThousandeyesFeatureTemplate resource accepts the following input properties:
- Description string
- The description of the feature template
- DeviceTypes List<string>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Name string
- The name of the feature template
- VirtualApplications List<CiscoThousandeyes Feature Template Virtual Application> 
- Virtual application Instance
- Description string
- The description of the feature template
- DeviceTypes []string
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Name string
- The name of the feature template
- VirtualApplications []CiscoThousandeyes Feature Template Virtual Application Args 
- Virtual application Instance
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name String
- The name of the feature template
- virtualApplications List<CiscoThousandeyes Feature Template Virtual Application> 
- Virtual application Instance
- description string
- The description of the feature template
- deviceTypes string[]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name string
- The name of the feature template
- virtualApplications CiscoThousandeyes Feature Template Virtual Application[] 
- Virtual application Instance
- description str
- The description of the feature template
- device_types Sequence[str]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name str
- The name of the feature template
- virtual_applications Sequence[CiscoThousandeyes Feature Template Virtual Application Args] 
- Virtual application Instance
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name String
- The name of the feature template
- virtualApplications List<Property Map>
- Virtual application Instance
Outputs
All input properties are implicitly available as output properties. Additionally, the CiscoThousandeyesFeatureTemplate resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- TemplateType string
- The template type
- Version int
- The version of the feature template
- Id string
- The provider-assigned unique ID for this managed resource.
- TemplateType string
- The template type
- Version int
- The version of the feature template
- id String
- The provider-assigned unique ID for this managed resource.
- templateType String
- The template type
- version Integer
- The version of the feature template
- id string
- The provider-assigned unique ID for this managed resource.
- templateType string
- The template type
- version number
- The version of the feature template
- id str
- The provider-assigned unique ID for this managed resource.
- template_type str
- The template type
- version int
- The version of the feature template
- id String
- The provider-assigned unique ID for this managed resource.
- templateType String
- The template type
- version Number
- The version of the feature template
Look up Existing CiscoThousandeyesFeatureTemplate Resource
Get an existing CiscoThousandeyesFeatureTemplate 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?: CiscoThousandeyesFeatureTemplateState, opts?: CustomResourceOptions): CiscoThousandeyesFeatureTemplate@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        device_types: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        template_type: Optional[str] = None,
        version: Optional[int] = None,
        virtual_applications: Optional[Sequence[CiscoThousandeyesFeatureTemplateVirtualApplicationArgs]] = None) -> CiscoThousandeyesFeatureTemplatefunc GetCiscoThousandeyesFeatureTemplate(ctx *Context, name string, id IDInput, state *CiscoThousandeyesFeatureTemplateState, opts ...ResourceOption) (*CiscoThousandeyesFeatureTemplate, error)public static CiscoThousandeyesFeatureTemplate Get(string name, Input<string> id, CiscoThousandeyesFeatureTemplateState? state, CustomResourceOptions? opts = null)public static CiscoThousandeyesFeatureTemplate get(String name, Output<String> id, CiscoThousandeyesFeatureTemplateState state, CustomResourceOptions options)resources:  _:    type: sdwan:CiscoThousandeyesFeatureTemplate    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.
- Description string
- The description of the feature template
- DeviceTypes List<string>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Name string
- The name of the feature template
- TemplateType string
- The template type
- Version int
- The version of the feature template
- VirtualApplications List<CiscoThousandeyes Feature Template Virtual Application> 
- Virtual application Instance
- Description string
- The description of the feature template
- DeviceTypes []string
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Name string
- The name of the feature template
- TemplateType string
- The template type
- Version int
- The version of the feature template
- VirtualApplications []CiscoThousandeyes Feature Template Virtual Application Args 
- Virtual application Instance
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name String
- The name of the feature template
- templateType String
- The template type
- version Integer
- The version of the feature template
- virtualApplications List<CiscoThousandeyes Feature Template Virtual Application> 
- Virtual application Instance
- description string
- The description of the feature template
- deviceTypes string[]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name string
- The name of the feature template
- templateType string
- The template type
- version number
- The version of the feature template
- virtualApplications CiscoThousandeyes Feature Template Virtual Application[] 
- Virtual application Instance
- description str
- The description of the feature template
- device_types Sequence[str]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name str
- The name of the feature template
- template_type str
- The template type
- version int
- The version of the feature template
- virtual_applications Sequence[CiscoThousandeyes Feature Template Virtual Application Args] 
- Virtual application Instance
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name String
- The name of the feature template
- templateType String
- The template type
- version Number
- The version of the feature template
- virtualApplications List<Property Map>
- Virtual application Instance
Supporting Types
CiscoThousandeyesFeatureTemplateVirtualApplication, CiscoThousandeyesFeatureTemplateVirtualApplicationArgs            
- ApplicationType string
- List of Virtual applications- Default value: te
 
- Default value: 
- InstanceId string
- List of Virtual applications- Default value: 1
 
- Default value: 
- Optional bool
- Indicates if list item is considered optional.
- TeAccount stringGroup Token 
- Set the Account Group Token
- TeAccount stringGroup Token Variable 
- Variable name
- TeAgent stringIp 
- Set the Agent IP Address
- TeAgent stringIp Variable 
- Variable name
- TeDefault stringGateway 
- Set the Agent default gateway
- TeDefault stringGateway Variable 
- Variable name
- TeHostname string
- Set the host name
- TeHostname stringVariable 
- Variable name
- TeName stringServer 
- Set the name server
- TeName stringServer Variable 
- Variable name
- TePac stringUrl 
- PAC URL
- TePac stringUrl Variable 
- Variable name
- TeProxy stringHost 
- Set the proxy host
- TeProxy stringHost Variable 
- Variable name
- TeProxy intPort 
- Set the proxy port- Range: 0-65535
 
- Range: 
- TeProxy stringPort Variable 
- Variable name
- TeVpn int
- VPN number- Range: 1-65535
 
- Range: 
- TeVpn stringVariable 
- Variable name
- TeWeb stringProxy Type 
- Web Proxy Type- Choices: none,static,pac
- Default value: none
 
- Choices: 
- ApplicationType string
- List of Virtual applications- Default value: te
 
- Default value: 
- InstanceId string
- List of Virtual applications- Default value: 1
 
- Default value: 
- Optional bool
- Indicates if list item is considered optional.
- TeAccount stringGroup Token 
- Set the Account Group Token
- TeAccount stringGroup Token Variable 
- Variable name
- TeAgent stringIp 
- Set the Agent IP Address
- TeAgent stringIp Variable 
- Variable name
- TeDefault stringGateway 
- Set the Agent default gateway
- TeDefault stringGateway Variable 
- Variable name
- TeHostname string
- Set the host name
- TeHostname stringVariable 
- Variable name
- TeName stringServer 
- Set the name server
- TeName stringServer Variable 
- Variable name
- TePac stringUrl 
- PAC URL
- TePac stringUrl Variable 
- Variable name
- TeProxy stringHost 
- Set the proxy host
- TeProxy stringHost Variable 
- Variable name
- TeProxy intPort 
- Set the proxy port- Range: 0-65535
 
- Range: 
- TeProxy stringPort Variable 
- Variable name
- TeVpn int
- VPN number- Range: 1-65535
 
- Range: 
- TeVpn stringVariable 
- Variable name
- TeWeb stringProxy Type 
- Web Proxy Type- Choices: none,static,pac
- Default value: none
 
- Choices: 
- applicationType String
- List of Virtual applications- Default value: te
 
- Default value: 
- instanceId String
- List of Virtual applications- Default value: 1
 
- Default value: 
- optional Boolean
- Indicates if list item is considered optional.
- teAccount StringGroup Token 
- Set the Account Group Token
- teAccount StringGroup Token Variable 
- Variable name
- teAgent StringIp 
- Set the Agent IP Address
- teAgent StringIp Variable 
- Variable name
- teDefault StringGateway 
- Set the Agent default gateway
- teDefault StringGateway Variable 
- Variable name
- teHostname String
- Set the host name
- teHostname StringVariable 
- Variable name
- teName StringServer 
- Set the name server
- teName StringServer Variable 
- Variable name
- tePac StringUrl 
- PAC URL
- tePac StringUrl Variable 
- Variable name
- teProxy StringHost 
- Set the proxy host
- teProxy StringHost Variable 
- Variable name
- teProxy IntegerPort 
- Set the proxy port- Range: 0-65535
 
- Range: 
- teProxy StringPort Variable 
- Variable name
- teVpn Integer
- VPN number- Range: 1-65535
 
- Range: 
- teVpn StringVariable 
- Variable name
- teWeb StringProxy Type 
- Web Proxy Type- Choices: none,static,pac
- Default value: none
 
- Choices: 
- applicationType string
- List of Virtual applications- Default value: te
 
- Default value: 
- instanceId string
- List of Virtual applications- Default value: 1
 
- Default value: 
- optional boolean
- Indicates if list item is considered optional.
- teAccount stringGroup Token 
- Set the Account Group Token
- teAccount stringGroup Token Variable 
- Variable name
- teAgent stringIp 
- Set the Agent IP Address
- teAgent stringIp Variable 
- Variable name
- teDefault stringGateway 
- Set the Agent default gateway
- teDefault stringGateway Variable 
- Variable name
- teHostname string
- Set the host name
- teHostname stringVariable 
- Variable name
- teName stringServer 
- Set the name server
- teName stringServer Variable 
- Variable name
- tePac stringUrl 
- PAC URL
- tePac stringUrl Variable 
- Variable name
- teProxy stringHost 
- Set the proxy host
- teProxy stringHost Variable 
- Variable name
- teProxy numberPort 
- Set the proxy port- Range: 0-65535
 
- Range: 
- teProxy stringPort Variable 
- Variable name
- teVpn number
- VPN number- Range: 1-65535
 
- Range: 
- teVpn stringVariable 
- Variable name
- teWeb stringProxy Type 
- Web Proxy Type- Choices: none,static,pac
- Default value: none
 
- Choices: 
- application_type str
- List of Virtual applications- Default value: te
 
- Default value: 
- instance_id str
- List of Virtual applications- Default value: 1
 
- Default value: 
- optional bool
- Indicates if list item is considered optional.
- te_account_ strgroup_ token 
- Set the Account Group Token
- te_account_ strgroup_ token_ variable 
- Variable name
- te_agent_ strip 
- Set the Agent IP Address
- te_agent_ strip_ variable 
- Variable name
- te_default_ strgateway 
- Set the Agent default gateway
- te_default_ strgateway_ variable 
- Variable name
- te_hostname str
- Set the host name
- te_hostname_ strvariable 
- Variable name
- te_name_ strserver 
- Set the name server
- te_name_ strserver_ variable 
- Variable name
- te_pac_ strurl 
- PAC URL
- te_pac_ strurl_ variable 
- Variable name
- te_proxy_ strhost 
- Set the proxy host
- te_proxy_ strhost_ variable 
- Variable name
- te_proxy_ intport 
- Set the proxy port- Range: 0-65535
 
- Range: 
- te_proxy_ strport_ variable 
- Variable name
- te_vpn int
- VPN number- Range: 1-65535
 
- Range: 
- te_vpn_ strvariable 
- Variable name
- te_web_ strproxy_ type 
- Web Proxy Type- Choices: none,static,pac
- Default value: none
 
- Choices: 
- applicationType String
- List of Virtual applications- Default value: te
 
- Default value: 
- instanceId String
- List of Virtual applications- Default value: 1
 
- Default value: 
- optional Boolean
- Indicates if list item is considered optional.
- teAccount StringGroup Token 
- Set the Account Group Token
- teAccount StringGroup Token Variable 
- Variable name
- teAgent StringIp 
- Set the Agent IP Address
- teAgent StringIp Variable 
- Variable name
- teDefault StringGateway 
- Set the Agent default gateway
- teDefault StringGateway Variable 
- Variable name
- teHostname String
- Set the host name
- teHostname StringVariable 
- Variable name
- teName StringServer 
- Set the name server
- teName StringServer Variable 
- Variable name
- tePac StringUrl 
- PAC URL
- tePac StringUrl Variable 
- Variable name
- teProxy StringHost 
- Set the proxy host
- teProxy StringHost Variable 
- Variable name
- teProxy NumberPort 
- Set the proxy port- Range: 0-65535
 
- Range: 
- teProxy StringPort Variable 
- Variable name
- teVpn Number
- VPN number- Range: 1-65535
 
- Range: 
- teVpn StringVariable 
- Variable name
- teWeb StringProxy Type 
- Web Proxy Type- Choices: none,static,pac
- Default value: none
 
- Choices: 
Import
$ pulumi import sdwan:index/ciscoThousandeyesFeatureTemplate:CiscoThousandeyesFeatureTemplate 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 sdwanTerraform Provider.
