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

sdwan.CedgeGlobalFeatureTemplate

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 cEdge Global feature template.

    • Minimum SD-WAN Manager version: 15.0.0

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = new sdwan.CedgeGlobalFeatureTemplate("example", {
        name: "Example",
        description: "My Example",
        deviceTypes: ["vedge-C8000V"],
        nat64UdpTimeout: 300,
        nat64TcpTimeout: 3600,
        httpAuthentication: "local",
        sshVersion: 2,
        httpServer: true,
        httpsServer: true,
        sourceInterface: "e1",
        ipSourceRouting: true,
        arpProxy: true,
        ftpPassive: true,
        rshRcp: true,
        bootp: true,
        domainLookup: true,
        tcpKeepalivesOut: true,
        tcpKeepalivesIn: true,
        tcpSmallServers: true,
        udpSmallServers: true,
        lldp: true,
        cdp: true,
        snmpIfindexPersist: true,
        consoleLogging: true,
        vtyLogging: true,
        lineVty: true,
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.CedgeGlobalFeatureTemplate("example",
        name="Example",
        description="My Example",
        device_types=["vedge-C8000V"],
        nat64_udp_timeout=300,
        nat64_tcp_timeout=3600,
        http_authentication="local",
        ssh_version=2,
        http_server=True,
        https_server=True,
        source_interface="e1",
        ip_source_routing=True,
        arp_proxy=True,
        ftp_passive=True,
        rsh_rcp=True,
        bootp=True,
        domain_lookup=True,
        tcp_keepalives_out=True,
        tcp_keepalives_in=True,
        tcp_small_servers=True,
        udp_small_servers=True,
        lldp=True,
        cdp=True,
        snmp_ifindex_persist=True,
        console_logging=True,
        vty_logging=True,
        line_vty=True)
    
    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.NewCedgeGlobalFeatureTemplate(ctx, "example", &sdwan.CedgeGlobalFeatureTemplateArgs{
    			Name:        pulumi.String("Example"),
    			Description: pulumi.String("My Example"),
    			DeviceTypes: pulumi.StringArray{
    				pulumi.String("vedge-C8000V"),
    			},
    			Nat64UdpTimeout:    pulumi.Int(300),
    			Nat64TcpTimeout:    pulumi.Int(3600),
    			HttpAuthentication: pulumi.String("local"),
    			SshVersion:         pulumi.Int(2),
    			HttpServer:         pulumi.Bool(true),
    			HttpsServer:        pulumi.Bool(true),
    			SourceInterface:    pulumi.String("e1"),
    			IpSourceRouting:    pulumi.Bool(true),
    			ArpProxy:           pulumi.Bool(true),
    			FtpPassive:         pulumi.Bool(true),
    			RshRcp:             pulumi.Bool(true),
    			Bootp:              pulumi.Bool(true),
    			DomainLookup:       pulumi.Bool(true),
    			TcpKeepalivesOut:   pulumi.Bool(true),
    			TcpKeepalivesIn:    pulumi.Bool(true),
    			TcpSmallServers:    pulumi.Bool(true),
    			UdpSmallServers:    pulumi.Bool(true),
    			Lldp:               pulumi.Bool(true),
    			Cdp:                pulumi.Bool(true),
    			SnmpIfindexPersist: pulumi.Bool(true),
    			ConsoleLogging:     pulumi.Bool(true),
    			VtyLogging:         pulumi.Bool(true),
    			LineVty:            pulumi.Bool(true),
    		})
    		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.CedgeGlobalFeatureTemplate("example", new()
        {
            Name = "Example",
            Description = "My Example",
            DeviceTypes = new[]
            {
                "vedge-C8000V",
            },
            Nat64UdpTimeout = 300,
            Nat64TcpTimeout = 3600,
            HttpAuthentication = "local",
            SshVersion = 2,
            HttpServer = true,
            HttpsServer = true,
            SourceInterface = "e1",
            IpSourceRouting = true,
            ArpProxy = true,
            FtpPassive = true,
            RshRcp = true,
            Bootp = true,
            DomainLookup = true,
            TcpKeepalivesOut = true,
            TcpKeepalivesIn = true,
            TcpSmallServers = true,
            UdpSmallServers = true,
            Lldp = true,
            Cdp = true,
            SnmpIfindexPersist = true,
            ConsoleLogging = true,
            VtyLogging = true,
            LineVty = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.CedgeGlobalFeatureTemplate;
    import com.pulumi.sdwan.CedgeGlobalFeatureTemplateArgs;
    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 CedgeGlobalFeatureTemplate("example", CedgeGlobalFeatureTemplateArgs.builder()        
                .name("Example")
                .description("My Example")
                .deviceTypes("vedge-C8000V")
                .nat64UdpTimeout(300)
                .nat64TcpTimeout(3600)
                .httpAuthentication("local")
                .sshVersion(2)
                .httpServer(true)
                .httpsServer(true)
                .sourceInterface("e1")
                .ipSourceRouting(true)
                .arpProxy(true)
                .ftpPassive(true)
                .rshRcp(true)
                .bootp(true)
                .domainLookup(true)
                .tcpKeepalivesOut(true)
                .tcpKeepalivesIn(true)
                .tcpSmallServers(true)
                .udpSmallServers(true)
                .lldp(true)
                .cdp(true)
                .snmpIfindexPersist(true)
                .consoleLogging(true)
                .vtyLogging(true)
                .lineVty(true)
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:CedgeGlobalFeatureTemplate
        properties:
          name: Example
          description: My Example
          deviceTypes:
            - vedge-C8000V
          nat64UdpTimeout: 300
          nat64TcpTimeout: 3600
          httpAuthentication: local
          sshVersion: 2
          httpServer: true
          httpsServer: true
          sourceInterface: e1
          ipSourceRouting: true
          arpProxy: true
          ftpPassive: true
          rshRcp: true
          bootp: true
          domainLookup: true
          tcpKeepalivesOut: true
          tcpKeepalivesIn: true
          tcpSmallServers: true
          udpSmallServers: true
          lldp: true
          cdp: true
          snmpIfindexPersist: true
          consoleLogging: true
          vtyLogging: true
          lineVty: true
    

    Create CedgeGlobalFeatureTemplate Resource

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

    Constructor syntax

    new CedgeGlobalFeatureTemplate(name: string, args: CedgeGlobalFeatureTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def CedgeGlobalFeatureTemplate(resource_name: str,
                                   args: CedgeGlobalFeatureTemplateArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def CedgeGlobalFeatureTemplate(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   description: Optional[str] = None,
                                   device_types: Optional[Sequence[str]] = None,
                                   lldp: Optional[bool] = None,
                                   tcp_small_servers: Optional[bool] = None,
                                   cdp: Optional[bool] = None,
                                   cdp_variable: Optional[str] = None,
                                   console_logging: Optional[bool] = None,
                                   console_logging_variable: Optional[str] = None,
                                   bootp: Optional[bool] = None,
                                   arp_proxy_variable: Optional[str] = None,
                                   domain_lookup: Optional[bool] = None,
                                   domain_lookup_variable: Optional[str] = None,
                                   ftp_passive: Optional[bool] = None,
                                   ftp_passive_variable: Optional[str] = None,
                                   http_authentication: Optional[str] = None,
                                   http_authentication_variable: Optional[str] = None,
                                   http_server: Optional[bool] = None,
                                   http_server_variable: Optional[str] = None,
                                   https_server: Optional[bool] = None,
                                   https_server_variable: Optional[str] = None,
                                   ip_source_routing: Optional[bool] = None,
                                   ip_source_routing_variable: Optional[str] = None,
                                   line_vty: Optional[bool] = None,
                                   line_vty_variable: Optional[str] = None,
                                   vty_logging: Optional[bool] = None,
                                   bootp_variable: Optional[str] = None,
                                   nat64_udp_timeout: Optional[int] = None,
                                   nat64_tcp_timeout: Optional[int] = None,
                                   nat64_tcp_timeout_variable: Optional[str] = None,
                                   name: Optional[str] = None,
                                   nat64_udp_timeout_variable: Optional[str] = None,
                                   rsh_rcp: Optional[bool] = None,
                                   rsh_rcp_variable: Optional[str] = None,
                                   snmp_ifindex_persist: Optional[bool] = None,
                                   snmp_ifindex_persist_variable: Optional[str] = None,
                                   source_interface: Optional[str] = None,
                                   source_interface_variable: Optional[str] = None,
                                   ssh_version: Optional[int] = None,
                                   ssh_version_variable: Optional[str] = None,
                                   tcp_keepalives_in: Optional[bool] = None,
                                   tcp_keepalives_in_variable: Optional[str] = None,
                                   tcp_keepalives_out: Optional[bool] = None,
                                   tcp_keepalives_out_variable: Optional[str] = None,
                                   lldp_variable: Optional[str] = None,
                                   tcp_small_servers_variable: Optional[str] = None,
                                   udp_small_servers: Optional[bool] = None,
                                   udp_small_servers_variable: Optional[str] = None,
                                   arp_proxy: Optional[bool] = None,
                                   vty_logging_variable: Optional[str] = None)
    func NewCedgeGlobalFeatureTemplate(ctx *Context, name string, args CedgeGlobalFeatureTemplateArgs, opts ...ResourceOption) (*CedgeGlobalFeatureTemplate, error)
    public CedgeGlobalFeatureTemplate(string name, CedgeGlobalFeatureTemplateArgs args, CustomResourceOptions? opts = null)
    public CedgeGlobalFeatureTemplate(String name, CedgeGlobalFeatureTemplateArgs args)
    public CedgeGlobalFeatureTemplate(String name, CedgeGlobalFeatureTemplateArgs args, CustomResourceOptions options)
    
    type: sdwan:CedgeGlobalFeatureTemplate
    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 CedgeGlobalFeatureTemplateArgs
    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 CedgeGlobalFeatureTemplateArgs
    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 CedgeGlobalFeatureTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CedgeGlobalFeatureTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CedgeGlobalFeatureTemplateArgs
    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 cedgeGlobalFeatureTemplateResource = new Sdwan.CedgeGlobalFeatureTemplate("cedgeGlobalFeatureTemplateResource", new()
    {
        Description = "string",
        DeviceTypes = new[]
        {
            "string",
        },
        Lldp = false,
        TcpSmallServers = false,
        Cdp = false,
        CdpVariable = "string",
        ConsoleLogging = false,
        ConsoleLoggingVariable = "string",
        Bootp = false,
        ArpProxyVariable = "string",
        DomainLookup = false,
        DomainLookupVariable = "string",
        FtpPassive = false,
        FtpPassiveVariable = "string",
        HttpAuthentication = "string",
        HttpAuthenticationVariable = "string",
        HttpServer = false,
        HttpServerVariable = "string",
        HttpsServer = false,
        HttpsServerVariable = "string",
        IpSourceRouting = false,
        IpSourceRoutingVariable = "string",
        LineVty = false,
        LineVtyVariable = "string",
        VtyLogging = false,
        BootpVariable = "string",
        Nat64UdpTimeout = 0,
        Nat64TcpTimeout = 0,
        Nat64TcpTimeoutVariable = "string",
        Name = "string",
        Nat64UdpTimeoutVariable = "string",
        RshRcp = false,
        RshRcpVariable = "string",
        SnmpIfindexPersist = false,
        SnmpIfindexPersistVariable = "string",
        SourceInterface = "string",
        SourceInterfaceVariable = "string",
        SshVersion = 0,
        SshVersionVariable = "string",
        TcpKeepalivesIn = false,
        TcpKeepalivesInVariable = "string",
        TcpKeepalivesOut = false,
        TcpKeepalivesOutVariable = "string",
        LldpVariable = "string",
        TcpSmallServersVariable = "string",
        UdpSmallServers = false,
        UdpSmallServersVariable = "string",
        ArpProxy = false,
        VtyLoggingVariable = "string",
    });
    
    example, err := sdwan.NewCedgeGlobalFeatureTemplate(ctx, "cedgeGlobalFeatureTemplateResource", &sdwan.CedgeGlobalFeatureTemplateArgs{
    	Description: pulumi.String("string"),
    	DeviceTypes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Lldp:                       pulumi.Bool(false),
    	TcpSmallServers:            pulumi.Bool(false),
    	Cdp:                        pulumi.Bool(false),
    	CdpVariable:                pulumi.String("string"),
    	ConsoleLogging:             pulumi.Bool(false),
    	ConsoleLoggingVariable:     pulumi.String("string"),
    	Bootp:                      pulumi.Bool(false),
    	ArpProxyVariable:           pulumi.String("string"),
    	DomainLookup:               pulumi.Bool(false),
    	DomainLookupVariable:       pulumi.String("string"),
    	FtpPassive:                 pulumi.Bool(false),
    	FtpPassiveVariable:         pulumi.String("string"),
    	HttpAuthentication:         pulumi.String("string"),
    	HttpAuthenticationVariable: pulumi.String("string"),
    	HttpServer:                 pulumi.Bool(false),
    	HttpServerVariable:         pulumi.String("string"),
    	HttpsServer:                pulumi.Bool(false),
    	HttpsServerVariable:        pulumi.String("string"),
    	IpSourceRouting:            pulumi.Bool(false),
    	IpSourceRoutingVariable:    pulumi.String("string"),
    	LineVty:                    pulumi.Bool(false),
    	LineVtyVariable:            pulumi.String("string"),
    	VtyLogging:                 pulumi.Bool(false),
    	BootpVariable:              pulumi.String("string"),
    	Nat64UdpTimeout:            pulumi.Int(0),
    	Nat64TcpTimeout:            pulumi.Int(0),
    	Nat64TcpTimeoutVariable:    pulumi.String("string"),
    	Name:                       pulumi.String("string"),
    	Nat64UdpTimeoutVariable:    pulumi.String("string"),
    	RshRcp:                     pulumi.Bool(false),
    	RshRcpVariable:             pulumi.String("string"),
    	SnmpIfindexPersist:         pulumi.Bool(false),
    	SnmpIfindexPersistVariable: pulumi.String("string"),
    	SourceInterface:            pulumi.String("string"),
    	SourceInterfaceVariable:    pulumi.String("string"),
    	SshVersion:                 pulumi.Int(0),
    	SshVersionVariable:         pulumi.String("string"),
    	TcpKeepalivesIn:            pulumi.Bool(false),
    	TcpKeepalivesInVariable:    pulumi.String("string"),
    	TcpKeepalivesOut:           pulumi.Bool(false),
    	TcpKeepalivesOutVariable:   pulumi.String("string"),
    	LldpVariable:               pulumi.String("string"),
    	TcpSmallServersVariable:    pulumi.String("string"),
    	UdpSmallServers:            pulumi.Bool(false),
    	UdpSmallServersVariable:    pulumi.String("string"),
    	ArpProxy:                   pulumi.Bool(false),
    	VtyLoggingVariable:         pulumi.String("string"),
    })
    
    var cedgeGlobalFeatureTemplateResource = new CedgeGlobalFeatureTemplate("cedgeGlobalFeatureTemplateResource", CedgeGlobalFeatureTemplateArgs.builder()
        .description("string")
        .deviceTypes("string")
        .lldp(false)
        .tcpSmallServers(false)
        .cdp(false)
        .cdpVariable("string")
        .consoleLogging(false)
        .consoleLoggingVariable("string")
        .bootp(false)
        .arpProxyVariable("string")
        .domainLookup(false)
        .domainLookupVariable("string")
        .ftpPassive(false)
        .ftpPassiveVariable("string")
        .httpAuthentication("string")
        .httpAuthenticationVariable("string")
        .httpServer(false)
        .httpServerVariable("string")
        .httpsServer(false)
        .httpsServerVariable("string")
        .ipSourceRouting(false)
        .ipSourceRoutingVariable("string")
        .lineVty(false)
        .lineVtyVariable("string")
        .vtyLogging(false)
        .bootpVariable("string")
        .nat64UdpTimeout(0)
        .nat64TcpTimeout(0)
        .nat64TcpTimeoutVariable("string")
        .name("string")
        .nat64UdpTimeoutVariable("string")
        .rshRcp(false)
        .rshRcpVariable("string")
        .snmpIfindexPersist(false)
        .snmpIfindexPersistVariable("string")
        .sourceInterface("string")
        .sourceInterfaceVariable("string")
        .sshVersion(0)
        .sshVersionVariable("string")
        .tcpKeepalivesIn(false)
        .tcpKeepalivesInVariable("string")
        .tcpKeepalivesOut(false)
        .tcpKeepalivesOutVariable("string")
        .lldpVariable("string")
        .tcpSmallServersVariable("string")
        .udpSmallServers(false)
        .udpSmallServersVariable("string")
        .arpProxy(false)
        .vtyLoggingVariable("string")
        .build());
    
    cedge_global_feature_template_resource = sdwan.CedgeGlobalFeatureTemplate("cedgeGlobalFeatureTemplateResource",
        description="string",
        device_types=["string"],
        lldp=False,
        tcp_small_servers=False,
        cdp=False,
        cdp_variable="string",
        console_logging=False,
        console_logging_variable="string",
        bootp=False,
        arp_proxy_variable="string",
        domain_lookup=False,
        domain_lookup_variable="string",
        ftp_passive=False,
        ftp_passive_variable="string",
        http_authentication="string",
        http_authentication_variable="string",
        http_server=False,
        http_server_variable="string",
        https_server=False,
        https_server_variable="string",
        ip_source_routing=False,
        ip_source_routing_variable="string",
        line_vty=False,
        line_vty_variable="string",
        vty_logging=False,
        bootp_variable="string",
        nat64_udp_timeout=0,
        nat64_tcp_timeout=0,
        nat64_tcp_timeout_variable="string",
        name="string",
        nat64_udp_timeout_variable="string",
        rsh_rcp=False,
        rsh_rcp_variable="string",
        snmp_ifindex_persist=False,
        snmp_ifindex_persist_variable="string",
        source_interface="string",
        source_interface_variable="string",
        ssh_version=0,
        ssh_version_variable="string",
        tcp_keepalives_in=False,
        tcp_keepalives_in_variable="string",
        tcp_keepalives_out=False,
        tcp_keepalives_out_variable="string",
        lldp_variable="string",
        tcp_small_servers_variable="string",
        udp_small_servers=False,
        udp_small_servers_variable="string",
        arp_proxy=False,
        vty_logging_variable="string")
    
    const cedgeGlobalFeatureTemplateResource = new sdwan.CedgeGlobalFeatureTemplate("cedgeGlobalFeatureTemplateResource", {
        description: "string",
        deviceTypes: ["string"],
        lldp: false,
        tcpSmallServers: false,
        cdp: false,
        cdpVariable: "string",
        consoleLogging: false,
        consoleLoggingVariable: "string",
        bootp: false,
        arpProxyVariable: "string",
        domainLookup: false,
        domainLookupVariable: "string",
        ftpPassive: false,
        ftpPassiveVariable: "string",
        httpAuthentication: "string",
        httpAuthenticationVariable: "string",
        httpServer: false,
        httpServerVariable: "string",
        httpsServer: false,
        httpsServerVariable: "string",
        ipSourceRouting: false,
        ipSourceRoutingVariable: "string",
        lineVty: false,
        lineVtyVariable: "string",
        vtyLogging: false,
        bootpVariable: "string",
        nat64UdpTimeout: 0,
        nat64TcpTimeout: 0,
        nat64TcpTimeoutVariable: "string",
        name: "string",
        nat64UdpTimeoutVariable: "string",
        rshRcp: false,
        rshRcpVariable: "string",
        snmpIfindexPersist: false,
        snmpIfindexPersistVariable: "string",
        sourceInterface: "string",
        sourceInterfaceVariable: "string",
        sshVersion: 0,
        sshVersionVariable: "string",
        tcpKeepalivesIn: false,
        tcpKeepalivesInVariable: "string",
        tcpKeepalivesOut: false,
        tcpKeepalivesOutVariable: "string",
        lldpVariable: "string",
        tcpSmallServersVariable: "string",
        udpSmallServers: false,
        udpSmallServersVariable: "string",
        arpProxy: false,
        vtyLoggingVariable: "string",
    });
    
    type: sdwan:CedgeGlobalFeatureTemplate
    properties:
        arpProxy: false
        arpProxyVariable: string
        bootp: false
        bootpVariable: string
        cdp: false
        cdpVariable: string
        consoleLogging: false
        consoleLoggingVariable: string
        description: string
        deviceTypes:
            - string
        domainLookup: false
        domainLookupVariable: string
        ftpPassive: false
        ftpPassiveVariable: string
        httpAuthentication: string
        httpAuthenticationVariable: string
        httpServer: false
        httpServerVariable: string
        httpsServer: false
        httpsServerVariable: string
        ipSourceRouting: false
        ipSourceRoutingVariable: string
        lineVty: false
        lineVtyVariable: string
        lldp: false
        lldpVariable: string
        name: string
        nat64TcpTimeout: 0
        nat64TcpTimeoutVariable: string
        nat64UdpTimeout: 0
        nat64UdpTimeoutVariable: string
        rshRcp: false
        rshRcpVariable: string
        snmpIfindexPersist: false
        snmpIfindexPersistVariable: string
        sourceInterface: string
        sourceInterfaceVariable: string
        sshVersion: 0
        sshVersionVariable: string
        tcpKeepalivesIn: false
        tcpKeepalivesInVariable: string
        tcpKeepalivesOut: false
        tcpKeepalivesOutVariable: string
        tcpSmallServers: false
        tcpSmallServersVariable: string
        udpSmallServers: false
        udpSmallServersVariable: string
        vtyLogging: false
        vtyLoggingVariable: string
    

    CedgeGlobalFeatureTemplate 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 CedgeGlobalFeatureTemplate 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
    ArpProxy bool
    Set ARP Proxy - Default value: false
    ArpProxyVariable string
    Variable name
    Bootp bool
    Configure Ignore BOOTP - Default value: true
    BootpVariable string
    Variable name
    Cdp bool
    Configure CDP - Default value: true
    CdpVariable string
    Variable name
    ConsoleLogging bool
    Configure Console Logging - Default value: true
    ConsoleLoggingVariable string
    Variable name
    DomainLookup bool
    Configure Domain-Lookup - Default value: false
    DomainLookupVariable string
    Variable name
    FtpPassive bool
    Set Passive FTP - Default value: false
    FtpPassiveVariable string
    Variable name
    HttpAuthentication string
    Set preference for HTTP Authentication - Choices: local, aaa
    HttpAuthenticationVariable string
    Variable name
    HttpServer bool
    Set HTTP Server - Default value: false
    HttpServerVariable string
    Variable name
    HttpsServer bool
    Set HTTPS Server - Default value: false
    HttpsServerVariable string
    Variable name
    IpSourceRouting bool
    Set Source Route - Default value: false
    IpSourceRoutingVariable string
    Variable name
    LineVty bool
    Configure Telnet (Outbound) - Default value: false
    LineVtyVariable string
    Variable name
    Lldp bool
    Configure LLDP - Default value: true
    LldpVariable string
    Variable name
    Name string
    The name of the feature template
    Nat64TcpTimeout int
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    Nat64TcpTimeoutVariable string
    Variable name
    Nat64UdpTimeout int
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    Nat64UdpTimeoutVariable string
    Variable name
    RshRcp bool
    Set RSH/RCP - Default value: false
    RshRcpVariable string
    Variable name
    SnmpIfindexPersist bool
    Configure SNMP Ifindex Persist - Default value: true
    SnmpIfindexPersistVariable string
    Variable name
    SourceInterface string
    Specify interface for source address in all HTTP(S) client connections
    SourceInterfaceVariable string
    Variable name
    SshVersion int
    Set SSH version - Range: 1-2
    SshVersionVariable string
    Variable name
    TcpKeepalivesIn bool
    Configure tcp-keepalives-in - Default value: true
    TcpKeepalivesInVariable string
    Variable name
    TcpKeepalivesOut bool
    Configure tcp-keepalives-out - Default value: true
    TcpKeepalivesOutVariable string
    Variable name
    TcpSmallServers bool
    Configure tcp-small-servers - Default value: false
    TcpSmallServersVariable string
    Variable name
    UdpSmallServers bool
    Configure udp-small-servers - Default value: false
    UdpSmallServersVariable string
    Variable name
    VtyLogging bool
    Configure VTY Line Logging - Default value: false
    VtyLoggingVariable string
    Variable name
    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
    ArpProxy bool
    Set ARP Proxy - Default value: false
    ArpProxyVariable string
    Variable name
    Bootp bool
    Configure Ignore BOOTP - Default value: true
    BootpVariable string
    Variable name
    Cdp bool
    Configure CDP - Default value: true
    CdpVariable string
    Variable name
    ConsoleLogging bool
    Configure Console Logging - Default value: true
    ConsoleLoggingVariable string
    Variable name
    DomainLookup bool
    Configure Domain-Lookup - Default value: false
    DomainLookupVariable string
    Variable name
    FtpPassive bool
    Set Passive FTP - Default value: false
    FtpPassiveVariable string
    Variable name
    HttpAuthentication string
    Set preference for HTTP Authentication - Choices: local, aaa
    HttpAuthenticationVariable string
    Variable name
    HttpServer bool
    Set HTTP Server - Default value: false
    HttpServerVariable string
    Variable name
    HttpsServer bool
    Set HTTPS Server - Default value: false
    HttpsServerVariable string
    Variable name
    IpSourceRouting bool
    Set Source Route - Default value: false
    IpSourceRoutingVariable string
    Variable name
    LineVty bool
    Configure Telnet (Outbound) - Default value: false
    LineVtyVariable string
    Variable name
    Lldp bool
    Configure LLDP - Default value: true
    LldpVariable string
    Variable name
    Name string
    The name of the feature template
    Nat64TcpTimeout int
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    Nat64TcpTimeoutVariable string
    Variable name
    Nat64UdpTimeout int
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    Nat64UdpTimeoutVariable string
    Variable name
    RshRcp bool
    Set RSH/RCP - Default value: false
    RshRcpVariable string
    Variable name
    SnmpIfindexPersist bool
    Configure SNMP Ifindex Persist - Default value: true
    SnmpIfindexPersistVariable string
    Variable name
    SourceInterface string
    Specify interface for source address in all HTTP(S) client connections
    SourceInterfaceVariable string
    Variable name
    SshVersion int
    Set SSH version - Range: 1-2
    SshVersionVariable string
    Variable name
    TcpKeepalivesIn bool
    Configure tcp-keepalives-in - Default value: true
    TcpKeepalivesInVariable string
    Variable name
    TcpKeepalivesOut bool
    Configure tcp-keepalives-out - Default value: true
    TcpKeepalivesOutVariable string
    Variable name
    TcpSmallServers bool
    Configure tcp-small-servers - Default value: false
    TcpSmallServersVariable string
    Variable name
    UdpSmallServers bool
    Configure udp-small-servers - Default value: false
    UdpSmallServersVariable string
    Variable name
    VtyLogging bool
    Configure VTY Line Logging - Default value: false
    VtyLoggingVariable string
    Variable name
    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
    arpProxy Boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable String
    Variable name
    bootp Boolean
    Configure Ignore BOOTP - Default value: true
    bootpVariable String
    Variable name
    cdp Boolean
    Configure CDP - Default value: true
    cdpVariable String
    Variable name
    consoleLogging Boolean
    Configure Console Logging - Default value: true
    consoleLoggingVariable String
    Variable name
    domainLookup Boolean
    Configure Domain-Lookup - Default value: false
    domainLookupVariable String
    Variable name
    ftpPassive Boolean
    Set Passive FTP - Default value: false
    ftpPassiveVariable String
    Variable name
    httpAuthentication String
    Set preference for HTTP Authentication - Choices: local, aaa
    httpAuthenticationVariable String
    Variable name
    httpServer Boolean
    Set HTTP Server - Default value: false
    httpServerVariable String
    Variable name
    httpsServer Boolean
    Set HTTPS Server - Default value: false
    httpsServerVariable String
    Variable name
    ipSourceRouting Boolean
    Set Source Route - Default value: false
    ipSourceRoutingVariable String
    Variable name
    lineVty Boolean
    Configure Telnet (Outbound) - Default value: false
    lineVtyVariable String
    Variable name
    lldp Boolean
    Configure LLDP - Default value: true
    lldpVariable String
    Variable name
    name String
    The name of the feature template
    nat64TcpTimeout Integer
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    nat64TcpTimeoutVariable String
    Variable name
    nat64UdpTimeout Integer
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    nat64UdpTimeoutVariable String
    Variable name
    rshRcp Boolean
    Set RSH/RCP - Default value: false
    rshRcpVariable String
    Variable name
    snmpIfindexPersist Boolean
    Configure SNMP Ifindex Persist - Default value: true
    snmpIfindexPersistVariable String
    Variable name
    sourceInterface String
    Specify interface for source address in all HTTP(S) client connections
    sourceInterfaceVariable String
    Variable name
    sshVersion Integer
    Set SSH version - Range: 1-2
    sshVersionVariable String
    Variable name
    tcpKeepalivesIn Boolean
    Configure tcp-keepalives-in - Default value: true
    tcpKeepalivesInVariable String
    Variable name
    tcpKeepalivesOut Boolean
    Configure tcp-keepalives-out - Default value: true
    tcpKeepalivesOutVariable String
    Variable name
    tcpSmallServers Boolean
    Configure tcp-small-servers - Default value: false
    tcpSmallServersVariable String
    Variable name
    udpSmallServers Boolean
    Configure udp-small-servers - Default value: false
    udpSmallServersVariable String
    Variable name
    vtyLogging Boolean
    Configure VTY Line Logging - Default value: false
    vtyLoggingVariable String
    Variable name
    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
    arpProxy boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable string
    Variable name
    bootp boolean
    Configure Ignore BOOTP - Default value: true
    bootpVariable string
    Variable name
    cdp boolean
    Configure CDP - Default value: true
    cdpVariable string
    Variable name
    consoleLogging boolean
    Configure Console Logging - Default value: true
    consoleLoggingVariable string
    Variable name
    domainLookup boolean
    Configure Domain-Lookup - Default value: false
    domainLookupVariable string
    Variable name
    ftpPassive boolean
    Set Passive FTP - Default value: false
    ftpPassiveVariable string
    Variable name
    httpAuthentication string
    Set preference for HTTP Authentication - Choices: local, aaa
    httpAuthenticationVariable string
    Variable name
    httpServer boolean
    Set HTTP Server - Default value: false
    httpServerVariable string
    Variable name
    httpsServer boolean
    Set HTTPS Server - Default value: false
    httpsServerVariable string
    Variable name
    ipSourceRouting boolean
    Set Source Route - Default value: false
    ipSourceRoutingVariable string
    Variable name
    lineVty boolean
    Configure Telnet (Outbound) - Default value: false
    lineVtyVariable string
    Variable name
    lldp boolean
    Configure LLDP - Default value: true
    lldpVariable string
    Variable name
    name string
    The name of the feature template
    nat64TcpTimeout number
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    nat64TcpTimeoutVariable string
    Variable name
    nat64UdpTimeout number
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    nat64UdpTimeoutVariable string
    Variable name
    rshRcp boolean
    Set RSH/RCP - Default value: false
    rshRcpVariable string
    Variable name
    snmpIfindexPersist boolean
    Configure SNMP Ifindex Persist - Default value: true
    snmpIfindexPersistVariable string
    Variable name
    sourceInterface string
    Specify interface for source address in all HTTP(S) client connections
    sourceInterfaceVariable string
    Variable name
    sshVersion number
    Set SSH version - Range: 1-2
    sshVersionVariable string
    Variable name
    tcpKeepalivesIn boolean
    Configure tcp-keepalives-in - Default value: true
    tcpKeepalivesInVariable string
    Variable name
    tcpKeepalivesOut boolean
    Configure tcp-keepalives-out - Default value: true
    tcpKeepalivesOutVariable string
    Variable name
    tcpSmallServers boolean
    Configure tcp-small-servers - Default value: false
    tcpSmallServersVariable string
    Variable name
    udpSmallServers boolean
    Configure udp-small-servers - Default value: false
    udpSmallServersVariable string
    Variable name
    vtyLogging boolean
    Configure VTY Line Logging - Default value: false
    vtyLoggingVariable string
    Variable name
    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
    arp_proxy bool
    Set ARP Proxy - Default value: false
    arp_proxy_variable str
    Variable name
    bootp bool
    Configure Ignore BOOTP - Default value: true
    bootp_variable str
    Variable name
    cdp bool
    Configure CDP - Default value: true
    cdp_variable str
    Variable name
    console_logging bool
    Configure Console Logging - Default value: true
    console_logging_variable str
    Variable name
    domain_lookup bool
    Configure Domain-Lookup - Default value: false
    domain_lookup_variable str
    Variable name
    ftp_passive bool
    Set Passive FTP - Default value: false
    ftp_passive_variable str
    Variable name
    http_authentication str
    Set preference for HTTP Authentication - Choices: local, aaa
    http_authentication_variable str
    Variable name
    http_server bool
    Set HTTP Server - Default value: false
    http_server_variable str
    Variable name
    https_server bool
    Set HTTPS Server - Default value: false
    https_server_variable str
    Variable name
    ip_source_routing bool
    Set Source Route - Default value: false
    ip_source_routing_variable str
    Variable name
    line_vty bool
    Configure Telnet (Outbound) - Default value: false
    line_vty_variable str
    Variable name
    lldp bool
    Configure LLDP - Default value: true
    lldp_variable str
    Variable name
    name str
    The name of the feature template
    nat64_tcp_timeout int
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    nat64_tcp_timeout_variable str
    Variable name
    nat64_udp_timeout int
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    nat64_udp_timeout_variable str
    Variable name
    rsh_rcp bool
    Set RSH/RCP - Default value: false
    rsh_rcp_variable str
    Variable name
    snmp_ifindex_persist bool
    Configure SNMP Ifindex Persist - Default value: true
    snmp_ifindex_persist_variable str
    Variable name
    source_interface str
    Specify interface for source address in all HTTP(S) client connections
    source_interface_variable str
    Variable name
    ssh_version int
    Set SSH version - Range: 1-2
    ssh_version_variable str
    Variable name
    tcp_keepalives_in bool
    Configure tcp-keepalives-in - Default value: true
    tcp_keepalives_in_variable str
    Variable name
    tcp_keepalives_out bool
    Configure tcp-keepalives-out - Default value: true
    tcp_keepalives_out_variable str
    Variable name
    tcp_small_servers bool
    Configure tcp-small-servers - Default value: false
    tcp_small_servers_variable str
    Variable name
    udp_small_servers bool
    Configure udp-small-servers - Default value: false
    udp_small_servers_variable str
    Variable name
    vty_logging bool
    Configure VTY Line Logging - Default value: false
    vty_logging_variable str
    Variable name
    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
    arpProxy Boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable String
    Variable name
    bootp Boolean
    Configure Ignore BOOTP - Default value: true
    bootpVariable String
    Variable name
    cdp Boolean
    Configure CDP - Default value: true
    cdpVariable String
    Variable name
    consoleLogging Boolean
    Configure Console Logging - Default value: true
    consoleLoggingVariable String
    Variable name
    domainLookup Boolean
    Configure Domain-Lookup - Default value: false
    domainLookupVariable String
    Variable name
    ftpPassive Boolean
    Set Passive FTP - Default value: false
    ftpPassiveVariable String
    Variable name
    httpAuthentication String
    Set preference for HTTP Authentication - Choices: local, aaa
    httpAuthenticationVariable String
    Variable name
    httpServer Boolean
    Set HTTP Server - Default value: false
    httpServerVariable String
    Variable name
    httpsServer Boolean
    Set HTTPS Server - Default value: false
    httpsServerVariable String
    Variable name
    ipSourceRouting Boolean
    Set Source Route - Default value: false
    ipSourceRoutingVariable String
    Variable name
    lineVty Boolean
    Configure Telnet (Outbound) - Default value: false
    lineVtyVariable String
    Variable name
    lldp Boolean
    Configure LLDP - Default value: true
    lldpVariable String
    Variable name
    name String
    The name of the feature template
    nat64TcpTimeout Number
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    nat64TcpTimeoutVariable String
    Variable name
    nat64UdpTimeout Number
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    nat64UdpTimeoutVariable String
    Variable name
    rshRcp Boolean
    Set RSH/RCP - Default value: false
    rshRcpVariable String
    Variable name
    snmpIfindexPersist Boolean
    Configure SNMP Ifindex Persist - Default value: true
    snmpIfindexPersistVariable String
    Variable name
    sourceInterface String
    Specify interface for source address in all HTTP(S) client connections
    sourceInterfaceVariable String
    Variable name
    sshVersion Number
    Set SSH version - Range: 1-2
    sshVersionVariable String
    Variable name
    tcpKeepalivesIn Boolean
    Configure tcp-keepalives-in - Default value: true
    tcpKeepalivesInVariable String
    Variable name
    tcpKeepalivesOut Boolean
    Configure tcp-keepalives-out - Default value: true
    tcpKeepalivesOutVariable String
    Variable name
    tcpSmallServers Boolean
    Configure tcp-small-servers - Default value: false
    tcpSmallServersVariable String
    Variable name
    udpSmallServers Boolean
    Configure udp-small-servers - Default value: false
    udpSmallServersVariable String
    Variable name
    vtyLogging Boolean
    Configure VTY Line Logging - Default value: false
    vtyLoggingVariable String
    Variable name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CedgeGlobalFeatureTemplate 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 CedgeGlobalFeatureTemplate Resource

    Get an existing CedgeGlobalFeatureTemplate 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?: CedgeGlobalFeatureTemplateState, opts?: CustomResourceOptions): CedgeGlobalFeatureTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arp_proxy: Optional[bool] = None,
            arp_proxy_variable: Optional[str] = None,
            bootp: Optional[bool] = None,
            bootp_variable: Optional[str] = None,
            cdp: Optional[bool] = None,
            cdp_variable: Optional[str] = None,
            console_logging: Optional[bool] = None,
            console_logging_variable: Optional[str] = None,
            description: Optional[str] = None,
            device_types: Optional[Sequence[str]] = None,
            domain_lookup: Optional[bool] = None,
            domain_lookup_variable: Optional[str] = None,
            ftp_passive: Optional[bool] = None,
            ftp_passive_variable: Optional[str] = None,
            http_authentication: Optional[str] = None,
            http_authentication_variable: Optional[str] = None,
            http_server: Optional[bool] = None,
            http_server_variable: Optional[str] = None,
            https_server: Optional[bool] = None,
            https_server_variable: Optional[str] = None,
            ip_source_routing: Optional[bool] = None,
            ip_source_routing_variable: Optional[str] = None,
            line_vty: Optional[bool] = None,
            line_vty_variable: Optional[str] = None,
            lldp: Optional[bool] = None,
            lldp_variable: Optional[str] = None,
            name: Optional[str] = None,
            nat64_tcp_timeout: Optional[int] = None,
            nat64_tcp_timeout_variable: Optional[str] = None,
            nat64_udp_timeout: Optional[int] = None,
            nat64_udp_timeout_variable: Optional[str] = None,
            rsh_rcp: Optional[bool] = None,
            rsh_rcp_variable: Optional[str] = None,
            snmp_ifindex_persist: Optional[bool] = None,
            snmp_ifindex_persist_variable: Optional[str] = None,
            source_interface: Optional[str] = None,
            source_interface_variable: Optional[str] = None,
            ssh_version: Optional[int] = None,
            ssh_version_variable: Optional[str] = None,
            tcp_keepalives_in: Optional[bool] = None,
            tcp_keepalives_in_variable: Optional[str] = None,
            tcp_keepalives_out: Optional[bool] = None,
            tcp_keepalives_out_variable: Optional[str] = None,
            tcp_small_servers: Optional[bool] = None,
            tcp_small_servers_variable: Optional[str] = None,
            template_type: Optional[str] = None,
            udp_small_servers: Optional[bool] = None,
            udp_small_servers_variable: Optional[str] = None,
            version: Optional[int] = None,
            vty_logging: Optional[bool] = None,
            vty_logging_variable: Optional[str] = None) -> CedgeGlobalFeatureTemplate
    func GetCedgeGlobalFeatureTemplate(ctx *Context, name string, id IDInput, state *CedgeGlobalFeatureTemplateState, opts ...ResourceOption) (*CedgeGlobalFeatureTemplate, error)
    public static CedgeGlobalFeatureTemplate Get(string name, Input<string> id, CedgeGlobalFeatureTemplateState? state, CustomResourceOptions? opts = null)
    public static CedgeGlobalFeatureTemplate get(String name, Output<String> id, CedgeGlobalFeatureTemplateState 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:
    ArpProxy bool
    Set ARP Proxy - Default value: false
    ArpProxyVariable string
    Variable name
    Bootp bool
    Configure Ignore BOOTP - Default value: true
    BootpVariable string
    Variable name
    Cdp bool
    Configure CDP - Default value: true
    CdpVariable string
    Variable name
    ConsoleLogging bool
    Configure Console Logging - Default value: true
    ConsoleLoggingVariable string
    Variable name
    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
    DomainLookup bool
    Configure Domain-Lookup - Default value: false
    DomainLookupVariable string
    Variable name
    FtpPassive bool
    Set Passive FTP - Default value: false
    FtpPassiveVariable string
    Variable name
    HttpAuthentication string
    Set preference for HTTP Authentication - Choices: local, aaa
    HttpAuthenticationVariable string
    Variable name
    HttpServer bool
    Set HTTP Server - Default value: false
    HttpServerVariable string
    Variable name
    HttpsServer bool
    Set HTTPS Server - Default value: false
    HttpsServerVariable string
    Variable name
    IpSourceRouting bool
    Set Source Route - Default value: false
    IpSourceRoutingVariable string
    Variable name
    LineVty bool
    Configure Telnet (Outbound) - Default value: false
    LineVtyVariable string
    Variable name
    Lldp bool
    Configure LLDP - Default value: true
    LldpVariable string
    Variable name
    Name string
    The name of the feature template
    Nat64TcpTimeout int
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    Nat64TcpTimeoutVariable string
    Variable name
    Nat64UdpTimeout int
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    Nat64UdpTimeoutVariable string
    Variable name
    RshRcp bool
    Set RSH/RCP - Default value: false
    RshRcpVariable string
    Variable name
    SnmpIfindexPersist bool
    Configure SNMP Ifindex Persist - Default value: true
    SnmpIfindexPersistVariable string
    Variable name
    SourceInterface string
    Specify interface for source address in all HTTP(S) client connections
    SourceInterfaceVariable string
    Variable name
    SshVersion int
    Set SSH version - Range: 1-2
    SshVersionVariable string
    Variable name
    TcpKeepalivesIn bool
    Configure tcp-keepalives-in - Default value: true
    TcpKeepalivesInVariable string
    Variable name
    TcpKeepalivesOut bool
    Configure tcp-keepalives-out - Default value: true
    TcpKeepalivesOutVariable string
    Variable name
    TcpSmallServers bool
    Configure tcp-small-servers - Default value: false
    TcpSmallServersVariable string
    Variable name
    TemplateType string
    The template type
    UdpSmallServers bool
    Configure udp-small-servers - Default value: false
    UdpSmallServersVariable string
    Variable name
    Version int
    The version of the feature template
    VtyLogging bool
    Configure VTY Line Logging - Default value: false
    VtyLoggingVariable string
    Variable name
    ArpProxy bool
    Set ARP Proxy - Default value: false
    ArpProxyVariable string
    Variable name
    Bootp bool
    Configure Ignore BOOTP - Default value: true
    BootpVariable string
    Variable name
    Cdp bool
    Configure CDP - Default value: true
    CdpVariable string
    Variable name
    ConsoleLogging bool
    Configure Console Logging - Default value: true
    ConsoleLoggingVariable string
    Variable name
    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
    DomainLookup bool
    Configure Domain-Lookup - Default value: false
    DomainLookupVariable string
    Variable name
    FtpPassive bool
    Set Passive FTP - Default value: false
    FtpPassiveVariable string
    Variable name
    HttpAuthentication string
    Set preference for HTTP Authentication - Choices: local, aaa
    HttpAuthenticationVariable string
    Variable name
    HttpServer bool
    Set HTTP Server - Default value: false
    HttpServerVariable string
    Variable name
    HttpsServer bool
    Set HTTPS Server - Default value: false
    HttpsServerVariable string
    Variable name
    IpSourceRouting bool
    Set Source Route - Default value: false
    IpSourceRoutingVariable string
    Variable name
    LineVty bool
    Configure Telnet (Outbound) - Default value: false
    LineVtyVariable string
    Variable name
    Lldp bool
    Configure LLDP - Default value: true
    LldpVariable string
    Variable name
    Name string
    The name of the feature template
    Nat64TcpTimeout int
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    Nat64TcpTimeoutVariable string
    Variable name
    Nat64UdpTimeout int
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    Nat64UdpTimeoutVariable string
    Variable name
    RshRcp bool
    Set RSH/RCP - Default value: false
    RshRcpVariable string
    Variable name
    SnmpIfindexPersist bool
    Configure SNMP Ifindex Persist - Default value: true
    SnmpIfindexPersistVariable string
    Variable name
    SourceInterface string
    Specify interface for source address in all HTTP(S) client connections
    SourceInterfaceVariable string
    Variable name
    SshVersion int
    Set SSH version - Range: 1-2
    SshVersionVariable string
    Variable name
    TcpKeepalivesIn bool
    Configure tcp-keepalives-in - Default value: true
    TcpKeepalivesInVariable string
    Variable name
    TcpKeepalivesOut bool
    Configure tcp-keepalives-out - Default value: true
    TcpKeepalivesOutVariable string
    Variable name
    TcpSmallServers bool
    Configure tcp-small-servers - Default value: false
    TcpSmallServersVariable string
    Variable name
    TemplateType string
    The template type
    UdpSmallServers bool
    Configure udp-small-servers - Default value: false
    UdpSmallServersVariable string
    Variable name
    Version int
    The version of the feature template
    VtyLogging bool
    Configure VTY Line Logging - Default value: false
    VtyLoggingVariable string
    Variable name
    arpProxy Boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable String
    Variable name
    bootp Boolean
    Configure Ignore BOOTP - Default value: true
    bootpVariable String
    Variable name
    cdp Boolean
    Configure CDP - Default value: true
    cdpVariable String
    Variable name
    consoleLogging Boolean
    Configure Console Logging - Default value: true
    consoleLoggingVariable String
    Variable name
    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
    domainLookup Boolean
    Configure Domain-Lookup - Default value: false
    domainLookupVariable String
    Variable name
    ftpPassive Boolean
    Set Passive FTP - Default value: false
    ftpPassiveVariable String
    Variable name
    httpAuthentication String
    Set preference for HTTP Authentication - Choices: local, aaa
    httpAuthenticationVariable String
    Variable name
    httpServer Boolean
    Set HTTP Server - Default value: false
    httpServerVariable String
    Variable name
    httpsServer Boolean
    Set HTTPS Server - Default value: false
    httpsServerVariable String
    Variable name
    ipSourceRouting Boolean
    Set Source Route - Default value: false
    ipSourceRoutingVariable String
    Variable name
    lineVty Boolean
    Configure Telnet (Outbound) - Default value: false
    lineVtyVariable String
    Variable name
    lldp Boolean
    Configure LLDP - Default value: true
    lldpVariable String
    Variable name
    name String
    The name of the feature template
    nat64TcpTimeout Integer
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    nat64TcpTimeoutVariable String
    Variable name
    nat64UdpTimeout Integer
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    nat64UdpTimeoutVariable String
    Variable name
    rshRcp Boolean
    Set RSH/RCP - Default value: false
    rshRcpVariable String
    Variable name
    snmpIfindexPersist Boolean
    Configure SNMP Ifindex Persist - Default value: true
    snmpIfindexPersistVariable String
    Variable name
    sourceInterface String
    Specify interface for source address in all HTTP(S) client connections
    sourceInterfaceVariable String
    Variable name
    sshVersion Integer
    Set SSH version - Range: 1-2
    sshVersionVariable String
    Variable name
    tcpKeepalivesIn Boolean
    Configure tcp-keepalives-in - Default value: true
    tcpKeepalivesInVariable String
    Variable name
    tcpKeepalivesOut Boolean
    Configure tcp-keepalives-out - Default value: true
    tcpKeepalivesOutVariable String
    Variable name
    tcpSmallServers Boolean
    Configure tcp-small-servers - Default value: false
    tcpSmallServersVariable String
    Variable name
    templateType String
    The template type
    udpSmallServers Boolean
    Configure udp-small-servers - Default value: false
    udpSmallServersVariable String
    Variable name
    version Integer
    The version of the feature template
    vtyLogging Boolean
    Configure VTY Line Logging - Default value: false
    vtyLoggingVariable String
    Variable name
    arpProxy boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable string
    Variable name
    bootp boolean
    Configure Ignore BOOTP - Default value: true
    bootpVariable string
    Variable name
    cdp boolean
    Configure CDP - Default value: true
    cdpVariable string
    Variable name
    consoleLogging boolean
    Configure Console Logging - Default value: true
    consoleLoggingVariable string
    Variable name
    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
    domainLookup boolean
    Configure Domain-Lookup - Default value: false
    domainLookupVariable string
    Variable name
    ftpPassive boolean
    Set Passive FTP - Default value: false
    ftpPassiveVariable string
    Variable name
    httpAuthentication string
    Set preference for HTTP Authentication - Choices: local, aaa
    httpAuthenticationVariable string
    Variable name
    httpServer boolean
    Set HTTP Server - Default value: false
    httpServerVariable string
    Variable name
    httpsServer boolean
    Set HTTPS Server - Default value: false
    httpsServerVariable string
    Variable name
    ipSourceRouting boolean
    Set Source Route - Default value: false
    ipSourceRoutingVariable string
    Variable name
    lineVty boolean
    Configure Telnet (Outbound) - Default value: false
    lineVtyVariable string
    Variable name
    lldp boolean
    Configure LLDP - Default value: true
    lldpVariable string
    Variable name
    name string
    The name of the feature template
    nat64TcpTimeout number
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    nat64TcpTimeoutVariable string
    Variable name
    nat64UdpTimeout number
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    nat64UdpTimeoutVariable string
    Variable name
    rshRcp boolean
    Set RSH/RCP - Default value: false
    rshRcpVariable string
    Variable name
    snmpIfindexPersist boolean
    Configure SNMP Ifindex Persist - Default value: true
    snmpIfindexPersistVariable string
    Variable name
    sourceInterface string
    Specify interface for source address in all HTTP(S) client connections
    sourceInterfaceVariable string
    Variable name
    sshVersion number
    Set SSH version - Range: 1-2
    sshVersionVariable string
    Variable name
    tcpKeepalivesIn boolean
    Configure tcp-keepalives-in - Default value: true
    tcpKeepalivesInVariable string
    Variable name
    tcpKeepalivesOut boolean
    Configure tcp-keepalives-out - Default value: true
    tcpKeepalivesOutVariable string
    Variable name
    tcpSmallServers boolean
    Configure tcp-small-servers - Default value: false
    tcpSmallServersVariable string
    Variable name
    templateType string
    The template type
    udpSmallServers boolean
    Configure udp-small-servers - Default value: false
    udpSmallServersVariable string
    Variable name
    version number
    The version of the feature template
    vtyLogging boolean
    Configure VTY Line Logging - Default value: false
    vtyLoggingVariable string
    Variable name
    arp_proxy bool
    Set ARP Proxy - Default value: false
    arp_proxy_variable str
    Variable name
    bootp bool
    Configure Ignore BOOTP - Default value: true
    bootp_variable str
    Variable name
    cdp bool
    Configure CDP - Default value: true
    cdp_variable str
    Variable name
    console_logging bool
    Configure Console Logging - Default value: true
    console_logging_variable str
    Variable name
    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
    domain_lookup bool
    Configure Domain-Lookup - Default value: false
    domain_lookup_variable str
    Variable name
    ftp_passive bool
    Set Passive FTP - Default value: false
    ftp_passive_variable str
    Variable name
    http_authentication str
    Set preference for HTTP Authentication - Choices: local, aaa
    http_authentication_variable str
    Variable name
    http_server bool
    Set HTTP Server - Default value: false
    http_server_variable str
    Variable name
    https_server bool
    Set HTTPS Server - Default value: false
    https_server_variable str
    Variable name
    ip_source_routing bool
    Set Source Route - Default value: false
    ip_source_routing_variable str
    Variable name
    line_vty bool
    Configure Telnet (Outbound) - Default value: false
    line_vty_variable str
    Variable name
    lldp bool
    Configure LLDP - Default value: true
    lldp_variable str
    Variable name
    name str
    The name of the feature template
    nat64_tcp_timeout int
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    nat64_tcp_timeout_variable str
    Variable name
    nat64_udp_timeout int
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    nat64_udp_timeout_variable str
    Variable name
    rsh_rcp bool
    Set RSH/RCP - Default value: false
    rsh_rcp_variable str
    Variable name
    snmp_ifindex_persist bool
    Configure SNMP Ifindex Persist - Default value: true
    snmp_ifindex_persist_variable str
    Variable name
    source_interface str
    Specify interface for source address in all HTTP(S) client connections
    source_interface_variable str
    Variable name
    ssh_version int
    Set SSH version - Range: 1-2
    ssh_version_variable str
    Variable name
    tcp_keepalives_in bool
    Configure tcp-keepalives-in - Default value: true
    tcp_keepalives_in_variable str
    Variable name
    tcp_keepalives_out bool
    Configure tcp-keepalives-out - Default value: true
    tcp_keepalives_out_variable str
    Variable name
    tcp_small_servers bool
    Configure tcp-small-servers - Default value: false
    tcp_small_servers_variable str
    Variable name
    template_type str
    The template type
    udp_small_servers bool
    Configure udp-small-servers - Default value: false
    udp_small_servers_variable str
    Variable name
    version int
    The version of the feature template
    vty_logging bool
    Configure VTY Line Logging - Default value: false
    vty_logging_variable str
    Variable name
    arpProxy Boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable String
    Variable name
    bootp Boolean
    Configure Ignore BOOTP - Default value: true
    bootpVariable String
    Variable name
    cdp Boolean
    Configure CDP - Default value: true
    cdpVariable String
    Variable name
    consoleLogging Boolean
    Configure Console Logging - Default value: true
    consoleLoggingVariable String
    Variable name
    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
    domainLookup Boolean
    Configure Domain-Lookup - Default value: false
    domainLookupVariable String
    Variable name
    ftpPassive Boolean
    Set Passive FTP - Default value: false
    ftpPassiveVariable String
    Variable name
    httpAuthentication String
    Set preference for HTTP Authentication - Choices: local, aaa
    httpAuthenticationVariable String
    Variable name
    httpServer Boolean
    Set HTTP Server - Default value: false
    httpServerVariable String
    Variable name
    httpsServer Boolean
    Set HTTPS Server - Default value: false
    httpsServerVariable String
    Variable name
    ipSourceRouting Boolean
    Set Source Route - Default value: false
    ipSourceRoutingVariable String
    Variable name
    lineVty Boolean
    Configure Telnet (Outbound) - Default value: false
    lineVtyVariable String
    Variable name
    lldp Boolean
    Configure LLDP - Default value: true
    lldpVariable String
    Variable name
    name String
    The name of the feature template
    nat64TcpTimeout Number
    Set NAT64 TCP session timeout, in seconds - Range: 1-536870 - Default value: 3600
    nat64TcpTimeoutVariable String
    Variable name
    nat64UdpTimeout Number
    Set NAT64 UDP session timeout, in seconds - Range: 1-536870 - Default value: 300
    nat64UdpTimeoutVariable String
    Variable name
    rshRcp Boolean
    Set RSH/RCP - Default value: false
    rshRcpVariable String
    Variable name
    snmpIfindexPersist Boolean
    Configure SNMP Ifindex Persist - Default value: true
    snmpIfindexPersistVariable String
    Variable name
    sourceInterface String
    Specify interface for source address in all HTTP(S) client connections
    sourceInterfaceVariable String
    Variable name
    sshVersion Number
    Set SSH version - Range: 1-2
    sshVersionVariable String
    Variable name
    tcpKeepalivesIn Boolean
    Configure tcp-keepalives-in - Default value: true
    tcpKeepalivesInVariable String
    Variable name
    tcpKeepalivesOut Boolean
    Configure tcp-keepalives-out - Default value: true
    tcpKeepalivesOutVariable String
    Variable name
    tcpSmallServers Boolean
    Configure tcp-small-servers - Default value: false
    tcpSmallServersVariable String
    Variable name
    templateType String
    The template type
    udpSmallServers Boolean
    Configure udp-small-servers - Default value: false
    udpSmallServersVariable String
    Variable name
    version Number
    The version of the feature template
    vtyLogging Boolean
    Configure VTY Line Logging - Default value: false
    vtyLoggingVariable String
    Variable name

    Import

    $ pulumi import sdwan:index/cedgeGlobalFeatureTemplate:CedgeGlobalFeatureTemplate 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