1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. FeatureDeviceTemplate
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

sdwan.FeatureDeviceTemplate

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

    This resource can manage a Feature Device Template .

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = new sdwan.FeatureDeviceTemplate("example", {
        name: "Example",
        description: "My description",
        deviceType: "vedge-ISR-4331",
        generalTemplates: [{
            id: "2081c2f4-3f9f-4fee-8078-dcc8904e368d",
            type: "cisco_system",
        }],
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.FeatureDeviceTemplate("example",
        name="Example",
        description="My description",
        device_type="vedge-ISR-4331",
        general_templates=[sdwan.FeatureDeviceTemplateGeneralTemplateArgs(
            id="2081c2f4-3f9f-4fee-8078-dcc8904e368d",
            type="cisco_system",
        )])
    
    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.NewFeatureDeviceTemplate(ctx, "example", &sdwan.FeatureDeviceTemplateArgs{
    			Name:        pulumi.String("Example"),
    			Description: pulumi.String("My description"),
    			DeviceType:  pulumi.String("vedge-ISR-4331"),
    			GeneralTemplates: sdwan.FeatureDeviceTemplateGeneralTemplateArray{
    				&sdwan.FeatureDeviceTemplateGeneralTemplateArgs{
    					Id:   pulumi.String("2081c2f4-3f9f-4fee-8078-dcc8904e368d"),
    					Type: pulumi.String("cisco_system"),
    				},
    			},
    		})
    		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.FeatureDeviceTemplate("example", new()
        {
            Name = "Example",
            Description = "My description",
            DeviceType = "vedge-ISR-4331",
            GeneralTemplates = new[]
            {
                new Sdwan.Inputs.FeatureDeviceTemplateGeneralTemplateArgs
                {
                    Id = "2081c2f4-3f9f-4fee-8078-dcc8904e368d",
                    Type = "cisco_system",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.FeatureDeviceTemplate;
    import com.pulumi.sdwan.FeatureDeviceTemplateArgs;
    import com.pulumi.sdwan.inputs.FeatureDeviceTemplateGeneralTemplateArgs;
    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 FeatureDeviceTemplate("example", FeatureDeviceTemplateArgs.builder()        
                .name("Example")
                .description("My description")
                .deviceType("vedge-ISR-4331")
                .generalTemplates(FeatureDeviceTemplateGeneralTemplateArgs.builder()
                    .id("2081c2f4-3f9f-4fee-8078-dcc8904e368d")
                    .type("cisco_system")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:FeatureDeviceTemplate
        properties:
          name: Example
          description: My description
          deviceType: vedge-ISR-4331
          generalTemplates:
            - id: 2081c2f4-3f9f-4fee-8078-dcc8904e368d
              type: cisco_system
    

    Create FeatureDeviceTemplate Resource

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

    Constructor syntax

    new FeatureDeviceTemplate(name: string, args: FeatureDeviceTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def FeatureDeviceTemplate(resource_name: str,
                              args: FeatureDeviceTemplateArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def FeatureDeviceTemplate(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              description: Optional[str] = None,
                              device_type: Optional[str] = None,
                              device_role: Optional[str] = None,
                              general_templates: Optional[Sequence[FeatureDeviceTemplateGeneralTemplateArgs]] = None,
                              name: Optional[str] = None,
                              policy_id: Optional[str] = None,
                              policy_version: Optional[int] = None,
                              security_policy_id: Optional[str] = None,
                              security_policy_version: Optional[int] = None)
    func NewFeatureDeviceTemplate(ctx *Context, name string, args FeatureDeviceTemplateArgs, opts ...ResourceOption) (*FeatureDeviceTemplate, error)
    public FeatureDeviceTemplate(string name, FeatureDeviceTemplateArgs args, CustomResourceOptions? opts = null)
    public FeatureDeviceTemplate(String name, FeatureDeviceTemplateArgs args)
    public FeatureDeviceTemplate(String name, FeatureDeviceTemplateArgs args, CustomResourceOptions options)
    
    type: sdwan:FeatureDeviceTemplate
    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 FeatureDeviceTemplateArgs
    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 FeatureDeviceTemplateArgs
    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 FeatureDeviceTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FeatureDeviceTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FeatureDeviceTemplateArgs
    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 featureDeviceTemplateResource = new Sdwan.FeatureDeviceTemplate("featureDeviceTemplateResource", new()
    {
        Description = "string",
        DeviceType = "string",
        DeviceRole = "string",
        GeneralTemplates = new[]
        {
            new Sdwan.Inputs.FeatureDeviceTemplateGeneralTemplateArgs
            {
                Id = "string",
                Type = "string",
                SubTemplates = new[]
                {
                    new Sdwan.Inputs.FeatureDeviceTemplateGeneralTemplateSubTemplateArgs
                    {
                        Id = "string",
                        Type = "string",
                        SubTemplates = new[]
                        {
                            new Sdwan.Inputs.FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplateArgs
                            {
                                Id = "string",
                                Type = "string",
                                Version = 0,
                            },
                        },
                        Version = 0,
                    },
                },
                Version = 0,
            },
        },
        Name = "string",
        PolicyId = "string",
        PolicyVersion = 0,
        SecurityPolicyId = "string",
        SecurityPolicyVersion = 0,
    });
    
    example, err := sdwan.NewFeatureDeviceTemplate(ctx, "featureDeviceTemplateResource", &sdwan.FeatureDeviceTemplateArgs{
    	Description: pulumi.String("string"),
    	DeviceType:  pulumi.String("string"),
    	DeviceRole:  pulumi.String("string"),
    	GeneralTemplates: sdwan.FeatureDeviceTemplateGeneralTemplateArray{
    		&sdwan.FeatureDeviceTemplateGeneralTemplateArgs{
    			Id:   pulumi.String("string"),
    			Type: pulumi.String("string"),
    			SubTemplates: sdwan.FeatureDeviceTemplateGeneralTemplateSubTemplateArray{
    				&sdwan.FeatureDeviceTemplateGeneralTemplateSubTemplateArgs{
    					Id:   pulumi.String("string"),
    					Type: pulumi.String("string"),
    					SubTemplates: sdwan.FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplateArray{
    						&sdwan.FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplateArgs{
    							Id:      pulumi.String("string"),
    							Type:    pulumi.String("string"),
    							Version: pulumi.Int(0),
    						},
    					},
    					Version: pulumi.Int(0),
    				},
    			},
    			Version: pulumi.Int(0),
    		},
    	},
    	Name:                  pulumi.String("string"),
    	PolicyId:              pulumi.String("string"),
    	PolicyVersion:         pulumi.Int(0),
    	SecurityPolicyId:      pulumi.String("string"),
    	SecurityPolicyVersion: pulumi.Int(0),
    })
    
    var featureDeviceTemplateResource = new FeatureDeviceTemplate("featureDeviceTemplateResource", FeatureDeviceTemplateArgs.builder()
        .description("string")
        .deviceType("string")
        .deviceRole("string")
        .generalTemplates(FeatureDeviceTemplateGeneralTemplateArgs.builder()
            .id("string")
            .type("string")
            .subTemplates(FeatureDeviceTemplateGeneralTemplateSubTemplateArgs.builder()
                .id("string")
                .type("string")
                .subTemplates(FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplateArgs.builder()
                    .id("string")
                    .type("string")
                    .version(0)
                    .build())
                .version(0)
                .build())
            .version(0)
            .build())
        .name("string")
        .policyId("string")
        .policyVersion(0)
        .securityPolicyId("string")
        .securityPolicyVersion(0)
        .build());
    
    feature_device_template_resource = sdwan.FeatureDeviceTemplate("featureDeviceTemplateResource",
        description="string",
        device_type="string",
        device_role="string",
        general_templates=[sdwan.FeatureDeviceTemplateGeneralTemplateArgs(
            id="string",
            type="string",
            sub_templates=[sdwan.FeatureDeviceTemplateGeneralTemplateSubTemplateArgs(
                id="string",
                type="string",
                sub_templates=[sdwan.FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplateArgs(
                    id="string",
                    type="string",
                    version=0,
                )],
                version=0,
            )],
            version=0,
        )],
        name="string",
        policy_id="string",
        policy_version=0,
        security_policy_id="string",
        security_policy_version=0)
    
    const featureDeviceTemplateResource = new sdwan.FeatureDeviceTemplate("featureDeviceTemplateResource", {
        description: "string",
        deviceType: "string",
        deviceRole: "string",
        generalTemplates: [{
            id: "string",
            type: "string",
            subTemplates: [{
                id: "string",
                type: "string",
                subTemplates: [{
                    id: "string",
                    type: "string",
                    version: 0,
                }],
                version: 0,
            }],
            version: 0,
        }],
        name: "string",
        policyId: "string",
        policyVersion: 0,
        securityPolicyId: "string",
        securityPolicyVersion: 0,
    });
    
    type: sdwan:FeatureDeviceTemplate
    properties:
        description: string
        deviceRole: string
        deviceType: string
        generalTemplates:
            - id: string
              subTemplates:
                - id: string
                  subTemplates:
                    - id: string
                      type: string
                      version: 0
                  type: string
                  version: 0
              type: string
              version: 0
        name: string
        policyId: string
        policyVersion: 0
        securityPolicyId: string
        securityPolicyVersion: 0
    

    FeatureDeviceTemplate 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 FeatureDeviceTemplate resource accepts the following input properties:

    Description string
    The description of the device template
    DeviceType string
    The device type (e.g., vedge-ISR-4331)
    DeviceRole string
    The device role - Choices: sdwan-edge, service-node
    GeneralTemplates List<FeatureDeviceTemplateGeneralTemplate>
    List of general templates
    Name string
    The name of the device template
    PolicyId string
    The policy ID
    PolicyVersion int
    The policy version
    SecurityPolicyId string
    The security policy ID
    SecurityPolicyVersion int
    The security policy version
    Description string
    The description of the device template
    DeviceType string
    The device type (e.g., vedge-ISR-4331)
    DeviceRole string
    The device role - Choices: sdwan-edge, service-node
    GeneralTemplates []FeatureDeviceTemplateGeneralTemplateArgs
    List of general templates
    Name string
    The name of the device template
    PolicyId string
    The policy ID
    PolicyVersion int
    The policy version
    SecurityPolicyId string
    The security policy ID
    SecurityPolicyVersion int
    The security policy version
    description String
    The description of the device template
    deviceType String
    The device type (e.g., vedge-ISR-4331)
    deviceRole String
    The device role - Choices: sdwan-edge, service-node
    generalTemplates List<FeatureDeviceTemplateGeneralTemplate>
    List of general templates
    name String
    The name of the device template
    policyId String
    The policy ID
    policyVersion Integer
    The policy version
    securityPolicyId String
    The security policy ID
    securityPolicyVersion Integer
    The security policy version
    description string
    The description of the device template
    deviceType string
    The device type (e.g., vedge-ISR-4331)
    deviceRole string
    The device role - Choices: sdwan-edge, service-node
    generalTemplates FeatureDeviceTemplateGeneralTemplate[]
    List of general templates
    name string
    The name of the device template
    policyId string
    The policy ID
    policyVersion number
    The policy version
    securityPolicyId string
    The security policy ID
    securityPolicyVersion number
    The security policy version
    description str
    The description of the device template
    device_type str
    The device type (e.g., vedge-ISR-4331)
    device_role str
    The device role - Choices: sdwan-edge, service-node
    general_templates Sequence[FeatureDeviceTemplateGeneralTemplateArgs]
    List of general templates
    name str
    The name of the device template
    policy_id str
    The policy ID
    policy_version int
    The policy version
    security_policy_id str
    The security policy ID
    security_policy_version int
    The security policy version
    description String
    The description of the device template
    deviceType String
    The device type (e.g., vedge-ISR-4331)
    deviceRole String
    The device role - Choices: sdwan-edge, service-node
    generalTemplates List<Property Map>
    List of general templates
    name String
    The name of the device template
    policyId String
    The policy ID
    policyVersion Number
    The policy version
    securityPolicyId String
    The security policy ID
    securityPolicyVersion Number
    The security policy version

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the object
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the object
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    The version of the object
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    The version of the object
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    The version of the object
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    The version of the object

    Look up Existing FeatureDeviceTemplate Resource

    Get an existing FeatureDeviceTemplate 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?: FeatureDeviceTemplateState, opts?: CustomResourceOptions): FeatureDeviceTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            device_role: Optional[str] = None,
            device_type: Optional[str] = None,
            general_templates: Optional[Sequence[FeatureDeviceTemplateGeneralTemplateArgs]] = None,
            name: Optional[str] = None,
            policy_id: Optional[str] = None,
            policy_version: Optional[int] = None,
            security_policy_id: Optional[str] = None,
            security_policy_version: Optional[int] = None,
            version: Optional[int] = None) -> FeatureDeviceTemplate
    func GetFeatureDeviceTemplate(ctx *Context, name string, id IDInput, state *FeatureDeviceTemplateState, opts ...ResourceOption) (*FeatureDeviceTemplate, error)
    public static FeatureDeviceTemplate Get(string name, Input<string> id, FeatureDeviceTemplateState? state, CustomResourceOptions? opts = null)
    public static FeatureDeviceTemplate get(String name, Output<String> id, FeatureDeviceTemplateState 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.
    The following state arguments are supported:
    Description string
    The description of the device template
    DeviceRole string
    The device role - Choices: sdwan-edge, service-node
    DeviceType string
    The device type (e.g., vedge-ISR-4331)
    GeneralTemplates List<FeatureDeviceTemplateGeneralTemplate>
    List of general templates
    Name string
    The name of the device template
    PolicyId string
    The policy ID
    PolicyVersion int
    The policy version
    SecurityPolicyId string
    The security policy ID
    SecurityPolicyVersion int
    The security policy version
    Version int
    The version of the object
    Description string
    The description of the device template
    DeviceRole string
    The device role - Choices: sdwan-edge, service-node
    DeviceType string
    The device type (e.g., vedge-ISR-4331)
    GeneralTemplates []FeatureDeviceTemplateGeneralTemplateArgs
    List of general templates
    Name string
    The name of the device template
    PolicyId string
    The policy ID
    PolicyVersion int
    The policy version
    SecurityPolicyId string
    The security policy ID
    SecurityPolicyVersion int
    The security policy version
    Version int
    The version of the object
    description String
    The description of the device template
    deviceRole String
    The device role - Choices: sdwan-edge, service-node
    deviceType String
    The device type (e.g., vedge-ISR-4331)
    generalTemplates List<FeatureDeviceTemplateGeneralTemplate>
    List of general templates
    name String
    The name of the device template
    policyId String
    The policy ID
    policyVersion Integer
    The policy version
    securityPolicyId String
    The security policy ID
    securityPolicyVersion Integer
    The security policy version
    version Integer
    The version of the object
    description string
    The description of the device template
    deviceRole string
    The device role - Choices: sdwan-edge, service-node
    deviceType string
    The device type (e.g., vedge-ISR-4331)
    generalTemplates FeatureDeviceTemplateGeneralTemplate[]
    List of general templates
    name string
    The name of the device template
    policyId string
    The policy ID
    policyVersion number
    The policy version
    securityPolicyId string
    The security policy ID
    securityPolicyVersion number
    The security policy version
    version number
    The version of the object
    description str
    The description of the device template
    device_role str
    The device role - Choices: sdwan-edge, service-node
    device_type str
    The device type (e.g., vedge-ISR-4331)
    general_templates Sequence[FeatureDeviceTemplateGeneralTemplateArgs]
    List of general templates
    name str
    The name of the device template
    policy_id str
    The policy ID
    policy_version int
    The policy version
    security_policy_id str
    The security policy ID
    security_policy_version int
    The security policy version
    version int
    The version of the object
    description String
    The description of the device template
    deviceRole String
    The device role - Choices: sdwan-edge, service-node
    deviceType String
    The device type (e.g., vedge-ISR-4331)
    generalTemplates List<Property Map>
    List of general templates
    name String
    The name of the device template
    policyId String
    The policy ID
    policyVersion Number
    The policy version
    securityPolicyId String
    The security policy ID
    securityPolicyVersion Number
    The security policy version
    version Number
    The version of the object

    Supporting Types

    FeatureDeviceTemplateGeneralTemplate, FeatureDeviceTemplateGeneralTemplateArgs

    Id string
    Feature template ID
    Type string
    Feature template type

    • Choices: cisco_system, cisco_logging, cedge_aaa, cisco_bfd, cisco_omp, cisco_security, cisco_banner, cisco_snmp, cedge_global, cli-template, cisco_sig_credentials, switchport, cisco_thousandeyes, cisco_vpn
    SubTemplates List<FeatureDeviceTemplateGeneralTemplateSubTemplate>
    List of sub templates
    Version int
    Feature template version
    Id string
    Feature template ID
    Type string
    Feature template type

    • Choices: cisco_system, cisco_logging, cedge_aaa, cisco_bfd, cisco_omp, cisco_security, cisco_banner, cisco_snmp, cedge_global, cli-template, cisco_sig_credentials, switchport, cisco_thousandeyes, cisco_vpn
    SubTemplates []FeatureDeviceTemplateGeneralTemplateSubTemplate
    List of sub templates
    Version int
    Feature template version
    id String
    Feature template ID
    type String
    Feature template type

    • Choices: cisco_system, cisco_logging, cedge_aaa, cisco_bfd, cisco_omp, cisco_security, cisco_banner, cisco_snmp, cedge_global, cli-template, cisco_sig_credentials, switchport, cisco_thousandeyes, cisco_vpn
    subTemplates List<FeatureDeviceTemplateGeneralTemplateSubTemplate>
    List of sub templates
    version Integer
    Feature template version
    id string
    Feature template ID
    type string
    Feature template type

    • Choices: cisco_system, cisco_logging, cedge_aaa, cisco_bfd, cisco_omp, cisco_security, cisco_banner, cisco_snmp, cedge_global, cli-template, cisco_sig_credentials, switchport, cisco_thousandeyes, cisco_vpn
    subTemplates FeatureDeviceTemplateGeneralTemplateSubTemplate[]
    List of sub templates
    version number
    Feature template version
    id str
    Feature template ID
    type str
    Feature template type

    • Choices: cisco_system, cisco_logging, cedge_aaa, cisco_bfd, cisco_omp, cisco_security, cisco_banner, cisco_snmp, cedge_global, cli-template, cisco_sig_credentials, switchport, cisco_thousandeyes, cisco_vpn
    sub_templates Sequence[FeatureDeviceTemplateGeneralTemplateSubTemplate]
    List of sub templates
    version int
    Feature template version
    id String
    Feature template ID
    type String
    Feature template type

    • Choices: cisco_system, cisco_logging, cedge_aaa, cisco_bfd, cisco_omp, cisco_security, cisco_banner, cisco_snmp, cedge_global, cli-template, cisco_sig_credentials, switchport, cisco_thousandeyes, cisco_vpn
    subTemplates List<Property Map>
    List of sub templates
    version Number
    Feature template version

    FeatureDeviceTemplateGeneralTemplateSubTemplate, FeatureDeviceTemplateGeneralTemplateSubTemplateArgs

    Id string
    Feature template ID
    Type string
    Feature template type

    • Choices: cisco_logging, cisco_ntp, cisco_ospf, cisco_bgp, cisco_vpn_interface, cisco_vpn_interface_ipsec, vpn-interface-svi, cisco_secure_internet_gateway
    SubTemplates List<FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplate>
    List of sub templates
    Version int
    Feature template version
    Id string
    Feature template ID
    Type string
    Feature template type

    • Choices: cisco_logging, cisco_ntp, cisco_ospf, cisco_bgp, cisco_vpn_interface, cisco_vpn_interface_ipsec, vpn-interface-svi, cisco_secure_internet_gateway
    SubTemplates []FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplate
    List of sub templates
    Version int
    Feature template version
    id String
    Feature template ID
    type String
    Feature template type

    • Choices: cisco_logging, cisco_ntp, cisco_ospf, cisco_bgp, cisco_vpn_interface, cisco_vpn_interface_ipsec, vpn-interface-svi, cisco_secure_internet_gateway
    subTemplates List<FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplate>
    List of sub templates
    version Integer
    Feature template version
    id string
    Feature template ID
    type string
    Feature template type

    • Choices: cisco_logging, cisco_ntp, cisco_ospf, cisco_bgp, cisco_vpn_interface, cisco_vpn_interface_ipsec, vpn-interface-svi, cisco_secure_internet_gateway
    subTemplates FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplate[]
    List of sub templates
    version number
    Feature template version
    id str
    Feature template ID
    type str
    Feature template type

    • Choices: cisco_logging, cisco_ntp, cisco_ospf, cisco_bgp, cisco_vpn_interface, cisco_vpn_interface_ipsec, vpn-interface-svi, cisco_secure_internet_gateway
    sub_templates Sequence[FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplate]
    List of sub templates
    version int
    Feature template version
    id String
    Feature template ID
    type String
    Feature template type

    • Choices: cisco_logging, cisco_ntp, cisco_ospf, cisco_bgp, cisco_vpn_interface, cisco_vpn_interface_ipsec, vpn-interface-svi, cisco_secure_internet_gateway
    subTemplates List<Property Map>
    List of sub templates
    version Number
    Feature template version

    FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplate, FeatureDeviceTemplateGeneralTemplateSubTemplateSubTemplateArgs

    Id string
    Feature template ID
    Type string
    Feature template type

    • Choices: cisco_dhcp_server
    Version int
    Feature template version
    Id string
    Feature template ID
    Type string
    Feature template type

    • Choices: cisco_dhcp_server
    Version int
    Feature template version
    id String
    Feature template ID
    type String
    Feature template type

    • Choices: cisco_dhcp_server
    version Integer
    Feature template version
    id string
    Feature template ID
    type string
    Feature template type

    • Choices: cisco_dhcp_server
    version number
    Feature template version
    id str
    Feature template ID
    type str
    Feature template type

    • Choices: cisco_dhcp_server
    version int
    Feature template version
    id String
    Feature template ID
    type String
    Feature template type

    • Choices: cisco_dhcp_server
    version Number
    Feature template version

    Import

    $ pulumi import sdwan:index/featureDeviceTemplate:FeatureDeviceTemplate 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.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi