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

sdwan.SystemGlobalProfileParcel

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 System Global profile parcel.

    • Minimum SD-WAN Manager version: 20.12.0

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = new sdwan.SystemGlobalProfileParcel("example", {
        name: "Example",
        description: "My Example",
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        httpServer: false,
        httpsServer: false,
        ftpPassive: false,
        domainLookup: false,
        arpProxy: false,
        rshRcp: false,
        lineVty: false,
        cdp: true,
        lldp: true,
        sourceInterface: "GigabitEthernet0/0/1",
        tcpKeepalivesIn: true,
        tcpKeepalivesOut: true,
        tcpSmallServers: false,
        udpSmallServers: false,
        consoleLogging: true,
        ipSourceRouting: false,
        vtyLineLogging: false,
        snmpIfindexPersist: true,
        ignoreBootp: true,
        nat64UdpTimeout: 300,
        nat64TcpTimeout: 3600,
        httpAuthentication: "aaa",
        sshVersion: "2",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.SystemGlobalProfileParcel("example",
        name="Example",
        description="My Example",
        feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        http_server=False,
        https_server=False,
        ftp_passive=False,
        domain_lookup=False,
        arp_proxy=False,
        rsh_rcp=False,
        line_vty=False,
        cdp=True,
        lldp=True,
        source_interface="GigabitEthernet0/0/1",
        tcp_keepalives_in=True,
        tcp_keepalives_out=True,
        tcp_small_servers=False,
        udp_small_servers=False,
        console_logging=True,
        ip_source_routing=False,
        vty_line_logging=False,
        snmp_ifindex_persist=True,
        ignore_bootp=True,
        nat64_udp_timeout=300,
        nat64_tcp_timeout=3600,
        http_authentication="aaa",
        ssh_version="2")
    
    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.NewSystemGlobalProfileParcel(ctx, "example", &sdwan.SystemGlobalProfileParcelArgs{
    			Name:               pulumi.String("Example"),
    			Description:        pulumi.String("My Example"),
    			FeatureProfileId:   pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
    			HttpServer:         pulumi.Bool(false),
    			HttpsServer:        pulumi.Bool(false),
    			FtpPassive:         pulumi.Bool(false),
    			DomainLookup:       pulumi.Bool(false),
    			ArpProxy:           pulumi.Bool(false),
    			RshRcp:             pulumi.Bool(false),
    			LineVty:            pulumi.Bool(false),
    			Cdp:                pulumi.Bool(true),
    			Lldp:               pulumi.Bool(true),
    			SourceInterface:    pulumi.String("GigabitEthernet0/0/1"),
    			TcpKeepalivesIn:    pulumi.Bool(true),
    			TcpKeepalivesOut:   pulumi.Bool(true),
    			TcpSmallServers:    pulumi.Bool(false),
    			UdpSmallServers:    pulumi.Bool(false),
    			ConsoleLogging:     pulumi.Bool(true),
    			IpSourceRouting:    pulumi.Bool(false),
    			VtyLineLogging:     pulumi.Bool(false),
    			SnmpIfindexPersist: pulumi.Bool(true),
    			IgnoreBootp:        pulumi.Bool(true),
    			Nat64UdpTimeout:    pulumi.Int(300),
    			Nat64TcpTimeout:    pulumi.Int(3600),
    			HttpAuthentication: pulumi.String("aaa"),
    			SshVersion:         pulumi.String("2"),
    		})
    		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.SystemGlobalProfileParcel("example", new()
        {
            Name = "Example",
            Description = "My Example",
            FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
            HttpServer = false,
            HttpsServer = false,
            FtpPassive = false,
            DomainLookup = false,
            ArpProxy = false,
            RshRcp = false,
            LineVty = false,
            Cdp = true,
            Lldp = true,
            SourceInterface = "GigabitEthernet0/0/1",
            TcpKeepalivesIn = true,
            TcpKeepalivesOut = true,
            TcpSmallServers = false,
            UdpSmallServers = false,
            ConsoleLogging = true,
            IpSourceRouting = false,
            VtyLineLogging = false,
            SnmpIfindexPersist = true,
            IgnoreBootp = true,
            Nat64UdpTimeout = 300,
            Nat64TcpTimeout = 3600,
            HttpAuthentication = "aaa",
            SshVersion = "2",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.SystemGlobalProfileParcel;
    import com.pulumi.sdwan.SystemGlobalProfileParcelArgs;
    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 SystemGlobalProfileParcel("example", SystemGlobalProfileParcelArgs.builder()        
                .name("Example")
                .description("My Example")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .httpServer(false)
                .httpsServer(false)
                .ftpPassive(false)
                .domainLookup(false)
                .arpProxy(false)
                .rshRcp(false)
                .lineVty(false)
                .cdp(true)
                .lldp(true)
                .sourceInterface("GigabitEthernet0/0/1")
                .tcpKeepalivesIn(true)
                .tcpKeepalivesOut(true)
                .tcpSmallServers(false)
                .udpSmallServers(false)
                .consoleLogging(true)
                .ipSourceRouting(false)
                .vtyLineLogging(false)
                .snmpIfindexPersist(true)
                .ignoreBootp(true)
                .nat64UdpTimeout(300)
                .nat64TcpTimeout(3600)
                .httpAuthentication("aaa")
                .sshVersion("2")
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:SystemGlobalProfileParcel
        properties:
          name: Example
          description: My Example
          featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
          httpServer: false
          httpsServer: false
          ftpPassive: false
          domainLookup: false
          arpProxy: false
          rshRcp: false
          lineVty: false
          cdp: true
          lldp: true
          sourceInterface: GigabitEthernet0/0/1
          tcpKeepalivesIn: true
          tcpKeepalivesOut: true
          tcpSmallServers: false
          udpSmallServers: false
          consoleLogging: true
          ipSourceRouting: false
          vtyLineLogging: false
          snmpIfindexPersist: true
          ignoreBootp: true
          nat64UdpTimeout: 300
          nat64TcpTimeout: 3600
          httpAuthentication: aaa
          sshVersion: '2'
    

    Create SystemGlobalProfileParcel Resource

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

    Constructor syntax

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

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

    FeatureProfileId string
    Feature Profile ID
    ArpProxy bool
    Set ARP Proxy - Default value: false
    ArpProxyVariable 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 profile parcel
    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 a HTTP Server - Default value: false
    HttpServerVariable string
    Variable name
    HttpsServer bool
    Set a HTTPS Server - Default value: false
    HttpsServerVariable string
    Variable name
    IgnoreBootp bool
    Configure Ignore BOOTP - Default value: true
    IgnoreBootpVariable 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 profile parcel
    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 string
    Set SSH version - Choices: 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
    VtyLineLogging bool
    Configure VTY Line Logging - Default value: false
    VtyLineLoggingVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    ArpProxy bool
    Set ARP Proxy - Default value: false
    ArpProxyVariable 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 profile parcel
    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 a HTTP Server - Default value: false
    HttpServerVariable string
    Variable name
    HttpsServer bool
    Set a HTTPS Server - Default value: false
    HttpsServerVariable string
    Variable name
    IgnoreBootp bool
    Configure Ignore BOOTP - Default value: true
    IgnoreBootpVariable 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 profile parcel
    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 string
    Set SSH version - Choices: 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
    VtyLineLogging bool
    Configure VTY Line Logging - Default value: false
    VtyLineLoggingVariable string
    Variable name
    featureProfileId String
    Feature Profile ID
    arpProxy Boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable 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 profile parcel
    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 a HTTP Server - Default value: false
    httpServerVariable String
    Variable name
    httpsServer Boolean
    Set a HTTPS Server - Default value: false
    httpsServerVariable String
    Variable name
    ignoreBootp Boolean
    Configure Ignore BOOTP - Default value: true
    ignoreBootpVariable 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 profile parcel
    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 String
    Set SSH version - Choices: 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
    vtyLineLogging Boolean
    Configure VTY Line Logging - Default value: false
    vtyLineLoggingVariable String
    Variable name
    featureProfileId string
    Feature Profile ID
    arpProxy boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable 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 profile parcel
    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 a HTTP Server - Default value: false
    httpServerVariable string
    Variable name
    httpsServer boolean
    Set a HTTPS Server - Default value: false
    httpsServerVariable string
    Variable name
    ignoreBootp boolean
    Configure Ignore BOOTP - Default value: true
    ignoreBootpVariable 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 profile parcel
    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 string
    Set SSH version - Choices: 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
    vtyLineLogging boolean
    Configure VTY Line Logging - Default value: false
    vtyLineLoggingVariable string
    Variable name
    feature_profile_id str
    Feature Profile ID
    arp_proxy bool
    Set ARP Proxy - Default value: false
    arp_proxy_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 profile parcel
    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 a HTTP Server - Default value: false
    http_server_variable str
    Variable name
    https_server bool
    Set a HTTPS Server - Default value: false
    https_server_variable str
    Variable name
    ignore_bootp bool
    Configure Ignore BOOTP - Default value: true
    ignore_bootp_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 profile parcel
    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 str
    Set SSH version - Choices: 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_line_logging bool
    Configure VTY Line Logging - Default value: false
    vty_line_logging_variable str
    Variable name
    featureProfileId String
    Feature Profile ID
    arpProxy Boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable 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 profile parcel
    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 a HTTP Server - Default value: false
    httpServerVariable String
    Variable name
    httpsServer Boolean
    Set a HTTPS Server - Default value: false
    httpsServerVariable String
    Variable name
    ignoreBootp Boolean
    Configure Ignore BOOTP - Default value: true
    ignoreBootpVariable 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 profile parcel
    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 String
    Set SSH version - Choices: 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
    vtyLineLogging Boolean
    Configure VTY Line Logging - Default value: false
    vtyLineLoggingVariable String
    Variable name

    Outputs

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

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

    Look up Existing SystemGlobalProfileParcel Resource

    Get an existing SystemGlobalProfileParcel 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?: SystemGlobalProfileParcelState, opts?: CustomResourceOptions): SystemGlobalProfileParcel
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arp_proxy: Optional[bool] = None,
            arp_proxy_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,
            domain_lookup: Optional[bool] = None,
            domain_lookup_variable: Optional[str] = None,
            feature_profile_id: 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,
            ignore_bootp: Optional[bool] = None,
            ignore_bootp_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[str] = 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,
            udp_small_servers: Optional[bool] = None,
            udp_small_servers_variable: Optional[str] = None,
            version: Optional[int] = None,
            vty_line_logging: Optional[bool] = None,
            vty_line_logging_variable: Optional[str] = None) -> SystemGlobalProfileParcel
    func GetSystemGlobalProfileParcel(ctx *Context, name string, id IDInput, state *SystemGlobalProfileParcelState, opts ...ResourceOption) (*SystemGlobalProfileParcel, error)
    public static SystemGlobalProfileParcel Get(string name, Input<string> id, SystemGlobalProfileParcelState? state, CustomResourceOptions? opts = null)
    public static SystemGlobalProfileParcel get(String name, Output<String> id, SystemGlobalProfileParcelState 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
    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 profile parcel
    DomainLookup bool
    Configure Domain-Lookup - Default value: false
    DomainLookupVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    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 a HTTP Server - Default value: false
    HttpServerVariable string
    Variable name
    HttpsServer bool
    Set a HTTPS Server - Default value: false
    HttpsServerVariable string
    Variable name
    IgnoreBootp bool
    Configure Ignore BOOTP - Default value: true
    IgnoreBootpVariable 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 profile parcel
    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 string
    Set SSH version - Choices: 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
    Version int
    The version of the profile parcel
    VtyLineLogging bool
    Configure VTY Line Logging - Default value: false
    VtyLineLoggingVariable string
    Variable name
    ArpProxy bool
    Set ARP Proxy - Default value: false
    ArpProxyVariable 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 profile parcel
    DomainLookup bool
    Configure Domain-Lookup - Default value: false
    DomainLookupVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    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 a HTTP Server - Default value: false
    HttpServerVariable string
    Variable name
    HttpsServer bool
    Set a HTTPS Server - Default value: false
    HttpsServerVariable string
    Variable name
    IgnoreBootp bool
    Configure Ignore BOOTP - Default value: true
    IgnoreBootpVariable 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 profile parcel
    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 string
    Set SSH version - Choices: 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
    Version int
    The version of the profile parcel
    VtyLineLogging bool
    Configure VTY Line Logging - Default value: false
    VtyLineLoggingVariable string
    Variable name
    arpProxy Boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable 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 profile parcel
    domainLookup Boolean
    Configure Domain-Lookup - Default value: false
    domainLookupVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    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 a HTTP Server - Default value: false
    httpServerVariable String
    Variable name
    httpsServer Boolean
    Set a HTTPS Server - Default value: false
    httpsServerVariable String
    Variable name
    ignoreBootp Boolean
    Configure Ignore BOOTP - Default value: true
    ignoreBootpVariable 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 profile parcel
    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 String
    Set SSH version - Choices: 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
    version Integer
    The version of the profile parcel
    vtyLineLogging Boolean
    Configure VTY Line Logging - Default value: false
    vtyLineLoggingVariable String
    Variable name
    arpProxy boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable 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 profile parcel
    domainLookup boolean
    Configure Domain-Lookup - Default value: false
    domainLookupVariable string
    Variable name
    featureProfileId string
    Feature Profile ID
    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 a HTTP Server - Default value: false
    httpServerVariable string
    Variable name
    httpsServer boolean
    Set a HTTPS Server - Default value: false
    httpsServerVariable string
    Variable name
    ignoreBootp boolean
    Configure Ignore BOOTP - Default value: true
    ignoreBootpVariable 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 profile parcel
    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 string
    Set SSH version - Choices: 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
    version number
    The version of the profile parcel
    vtyLineLogging boolean
    Configure VTY Line Logging - Default value: false
    vtyLineLoggingVariable string
    Variable name
    arp_proxy bool
    Set ARP Proxy - Default value: false
    arp_proxy_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 profile parcel
    domain_lookup bool
    Configure Domain-Lookup - Default value: false
    domain_lookup_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    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 a HTTP Server - Default value: false
    http_server_variable str
    Variable name
    https_server bool
    Set a HTTPS Server - Default value: false
    https_server_variable str
    Variable name
    ignore_bootp bool
    Configure Ignore BOOTP - Default value: true
    ignore_bootp_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 profile parcel
    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 str
    Set SSH version - Choices: 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
    version int
    The version of the profile parcel
    vty_line_logging bool
    Configure VTY Line Logging - Default value: false
    vty_line_logging_variable str
    Variable name
    arpProxy Boolean
    Set ARP Proxy - Default value: false
    arpProxyVariable 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 profile parcel
    domainLookup Boolean
    Configure Domain-Lookup - Default value: false
    domainLookupVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    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 a HTTP Server - Default value: false
    httpServerVariable String
    Variable name
    httpsServer Boolean
    Set a HTTPS Server - Default value: false
    httpsServerVariable String
    Variable name
    ignoreBootp Boolean
    Configure Ignore BOOTP - Default value: true
    ignoreBootpVariable 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 profile parcel
    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 String
    Set SSH version - Choices: 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
    version Number
    The version of the profile parcel
    vtyLineLogging Boolean
    Configure VTY Line Logging - Default value: false
    vtyLineLoggingVariable String
    Variable name

    Import

    $ pulumi import sdwan:index/systemGlobalProfileParcel:SystemGlobalProfileParcel 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