1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. SystemGlobalFeature
Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi

sdwan.SystemGlobalFeature

Explore with Pulumi AI

This resource can manage a System Global Feature.

  • 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.SystemGlobalFeature("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",
});
Copy
import pulumi
import pulumi_sdwan as sdwan

example = sdwan.SystemGlobalFeature("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")
Copy
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.NewSystemGlobalFeature(ctx, "example", &sdwan.SystemGlobalFeatureArgs{
			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
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;

return await Deployment.RunAsync(() => 
{
    var example = new Sdwan.SystemGlobalFeature("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",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SystemGlobalFeature;
import com.pulumi.sdwan.SystemGlobalFeatureArgs;
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 SystemGlobalFeature("example", SystemGlobalFeatureArgs.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());

    }
}
Copy
resources:
  example:
    type: sdwan:SystemGlobalFeature
    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'
Copy

Create SystemGlobalFeature Resource

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

Constructor syntax

new SystemGlobalFeature(name: string, args: SystemGlobalFeatureArgs, opts?: CustomResourceOptions);
@overload
def SystemGlobalFeature(resource_name: str,
                        args: SystemGlobalFeatureArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def SystemGlobalFeature(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        feature_profile_id: Optional[str] = None,
                        lldp: Optional[bool] = None,
                        ftp_passive_variable: Optional[str] = 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,
                        lldp_variable: Optional[str] = None,
                        arp_proxy: Optional[bool] = 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,
                        cdp: Optional[bool] = None,
                        line_vty_variable: Optional[str] = None,
                        ftp_passive: 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,
                        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,
                        vty_line_logging: Optional[bool] = None,
                        vty_line_logging_variable: Optional[str] = None)
func NewSystemGlobalFeature(ctx *Context, name string, args SystemGlobalFeatureArgs, opts ...ResourceOption) (*SystemGlobalFeature, error)
public SystemGlobalFeature(string name, SystemGlobalFeatureArgs args, CustomResourceOptions? opts = null)
public SystemGlobalFeature(String name, SystemGlobalFeatureArgs args)
public SystemGlobalFeature(String name, SystemGlobalFeatureArgs args, CustomResourceOptions options)
type: sdwan:SystemGlobalFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SystemGlobalFeatureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SystemGlobalFeatureArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SystemGlobalFeatureArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SystemGlobalFeatureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SystemGlobalFeatureArgs
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 systemGlobalFeatureResource = new Sdwan.SystemGlobalFeature("systemGlobalFeatureResource", new()
{
    FeatureProfileId = "string",
    Lldp = false,
    FtpPassiveVariable = "string",
    CdpVariable = "string",
    ConsoleLogging = false,
    ConsoleLoggingVariable = "string",
    Description = "string",
    DomainLookup = false,
    DomainLookupVariable = "string",
    ArpProxyVariable = "string",
    LldpVariable = "string",
    ArpProxy = false,
    HttpAuthentication = "string",
    HttpAuthenticationVariable = "string",
    HttpServer = false,
    HttpServerVariable = "string",
    HttpsServer = false,
    HttpsServerVariable = "string",
    IgnoreBootp = false,
    IgnoreBootpVariable = "string",
    IpSourceRouting = false,
    IpSourceRoutingVariable = "string",
    LineVty = false,
    Cdp = false,
    LineVtyVariable = "string",
    FtpPassive = false,
    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",
});
Copy
example, err := sdwan.NewSystemGlobalFeature(ctx, "systemGlobalFeatureResource", &sdwan.SystemGlobalFeatureArgs{
	FeatureProfileId:           pulumi.String("string"),
	Lldp:                       pulumi.Bool(false),
	FtpPassiveVariable:         pulumi.String("string"),
	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"),
	LldpVariable:               pulumi.String("string"),
	ArpProxy:                   pulumi.Bool(false),
	HttpAuthentication:         pulumi.String("string"),
	HttpAuthenticationVariable: pulumi.String("string"),
	HttpServer:                 pulumi.Bool(false),
	HttpServerVariable:         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),
	Cdp:                        pulumi.Bool(false),
	LineVtyVariable:            pulumi.String("string"),
	FtpPassive:                 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"),
	SnmpIfindexPersist:         pulumi.Bool(false),
	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"),
	TcpSmallServers:            pulumi.Bool(false),
	TcpSmallServersVariable:    pulumi.String("string"),
	UdpSmallServers:            pulumi.Bool(false),
	UdpSmallServersVariable:    pulumi.String("string"),
	VtyLineLogging:             pulumi.Bool(false),
	VtyLineLoggingVariable:     pulumi.String("string"),
})
Copy
var systemGlobalFeatureResource = new SystemGlobalFeature("systemGlobalFeatureResource", SystemGlobalFeatureArgs.builder()
    .featureProfileId("string")
    .lldp(false)
    .ftpPassiveVariable("string")
    .cdpVariable("string")
    .consoleLogging(false)
    .consoleLoggingVariable("string")
    .description("string")
    .domainLookup(false)
    .domainLookupVariable("string")
    .arpProxyVariable("string")
    .lldpVariable("string")
    .arpProxy(false)
    .httpAuthentication("string")
    .httpAuthenticationVariable("string")
    .httpServer(false)
    .httpServerVariable("string")
    .httpsServer(false)
    .httpsServerVariable("string")
    .ignoreBootp(false)
    .ignoreBootpVariable("string")
    .ipSourceRouting(false)
    .ipSourceRoutingVariable("string")
    .lineVty(false)
    .cdp(false)
    .lineVtyVariable("string")
    .ftpPassive(false)
    .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")
    .build());
Copy
system_global_feature_resource = sdwan.SystemGlobalFeature("systemGlobalFeatureResource",
    feature_profile_id="string",
    lldp=False,
    ftp_passive_variable="string",
    cdp_variable="string",
    console_logging=False,
    console_logging_variable="string",
    description="string",
    domain_lookup=False,
    domain_lookup_variable="string",
    arp_proxy_variable="string",
    lldp_variable="string",
    arp_proxy=False,
    http_authentication="string",
    http_authentication_variable="string",
    http_server=False,
    http_server_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,
    cdp=False,
    line_vty_variable="string",
    ftp_passive=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",
    snmp_ifindex_persist=False,
    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",
    tcp_small_servers=False,
    tcp_small_servers_variable="string",
    udp_small_servers=False,
    udp_small_servers_variable="string",
    vty_line_logging=False,
    vty_line_logging_variable="string")
Copy
const systemGlobalFeatureResource = new sdwan.SystemGlobalFeature("systemGlobalFeatureResource", {
    featureProfileId: "string",
    lldp: false,
    ftpPassiveVariable: "string",
    cdpVariable: "string",
    consoleLogging: false,
    consoleLoggingVariable: "string",
    description: "string",
    domainLookup: false,
    domainLookupVariable: "string",
    arpProxyVariable: "string",
    lldpVariable: "string",
    arpProxy: false,
    httpAuthentication: "string",
    httpAuthenticationVariable: "string",
    httpServer: false,
    httpServerVariable: "string",
    httpsServer: false,
    httpsServerVariable: "string",
    ignoreBootp: false,
    ignoreBootpVariable: "string",
    ipSourceRouting: false,
    ipSourceRoutingVariable: "string",
    lineVty: false,
    cdp: false,
    lineVtyVariable: "string",
    ftpPassive: false,
    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",
});
Copy
type: sdwan:SystemGlobalFeature
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
Copy

SystemGlobalFeature Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The SystemGlobalFeature resource accepts the following input properties:

FeatureProfileId This property is required. 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 Feature
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 Feature
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 This property is required. 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 Feature
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 Feature
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 This property is required. 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 Feature
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 Feature
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 This property is required. 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 Feature
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 Feature
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 This property is required. 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 Feature
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 Feature
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 This property is required. 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 Feature
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 Feature
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 SystemGlobalFeature resource produces the following output properties:

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

Look up Existing SystemGlobalFeature Resource

Get an existing SystemGlobalFeature 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?: SystemGlobalFeatureState, opts?: CustomResourceOptions): SystemGlobalFeature
@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) -> SystemGlobalFeature
func GetSystemGlobalFeature(ctx *Context, name string, id IDInput, state *SystemGlobalFeatureState, opts ...ResourceOption) (*SystemGlobalFeature, error)
public static SystemGlobalFeature Get(string name, Input<string> id, SystemGlobalFeatureState? state, CustomResourceOptions? opts = null)
public static SystemGlobalFeature get(String name, Output<String> id, SystemGlobalFeatureState state, CustomResourceOptions options)
resources:  _:    type: sdwan:SystemGlobalFeature    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
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 Feature
vtyLineLogging Boolean
Configure VTY Line Logging - Default value: false
vtyLineLoggingVariable String
Variable name

Import

Expected import identifier with the format: “system_global_feature_id,feature_profile_id”

$ pulumi import sdwan:index/systemGlobalFeature:SystemGlobalFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
Copy

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.