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",
});
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")
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
	})
}
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",
    });
});
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());
    }
}
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'
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,
                        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 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 string
- The unique name of the resource.
- args SystemGlobalFeatureArgs
- 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 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 string
- The unique name of the resource.
- args SystemGlobalFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemGlobalFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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,
    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.NewSystemGlobalFeature(ctx, "systemGlobalFeatureResource", &sdwan.SystemGlobalFeatureArgs{
	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 systemGlobalFeatureResource = new SystemGlobalFeature("systemGlobalFeatureResource", SystemGlobalFeatureArgs.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_feature_resource = sdwan.SystemGlobalFeature("systemGlobalFeatureResource",
    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 systemGlobalFeatureResource = new sdwan.SystemGlobalFeature("systemGlobalFeatureResource", {
    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: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
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:
- FeatureProfile stringId 
- Feature Profile ID
- ArpProxy bool
- Set ARP Proxy - Default value: false
- ArpProxy stringVariable 
- Variable name
- Cdp bool
- Configure CDP - Default value: true
- CdpVariable string
- Variable name
- ConsoleLogging bool
- Configure Console Logging - Default value: true
- ConsoleLogging stringVariable 
- Variable name
- Description string
- The description of the Feature
- DomainLookup bool
- Configure Domain-Lookup - Default value: false
- DomainLookup stringVariable 
- Variable name
- FtpPassive bool
- Set Passive FTP - Default value: false
- FtpPassive stringVariable 
- Variable name
- HttpAuthentication string
- Set preference for HTTP Authentication - Choices: local,aaa
- HttpAuthentication stringVariable 
- Variable name
- HttpServer bool
- Set a HTTP Server - Default value: false
- HttpServer stringVariable 
- Variable name
- HttpsServer bool
- Set a HTTPS Server - Default value: false
- HttpsServer stringVariable 
- Variable name
- IgnoreBootp bool
- Configure Ignore BOOTP - Default value: true
- IgnoreBootp stringVariable 
- Variable name
- IpSource boolRouting 
- Set Source Route - Default value: false
- IpSource stringRouting Variable 
- Variable name
- LineVty bool
- Configure Telnet (Outbound) - Default value: false
- LineVty stringVariable 
- 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
- Nat64TcpTimeout stringVariable 
- Variable name
- Nat64UdpTimeout int
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- Nat64UdpTimeout stringVariable 
- Variable name
- RshRcp bool
- Set RSH/RCP - Default value: false
- RshRcp stringVariable 
- Variable name
- SnmpIfindex boolPersist 
- Configure SNMP Ifindex Persist - Default value: true
- SnmpIfindex stringPersist Variable 
- Variable name
- SourceInterface string
- Specify interface for source address in all HTTP(S) client connections
- SourceInterface stringVariable 
- Variable name
- SshVersion string
- Set SSH version - Choices: 2
- SshVersion stringVariable 
- Variable name
- TcpKeepalives boolIn 
- Configure tcp-keepalives-in - Default value: true
- TcpKeepalives stringIn Variable 
- Variable name
- TcpKeepalives boolOut 
- Configure tcp-keepalives-out - Default value: true
- TcpKeepalives stringOut Variable 
- Variable name
- TcpSmall boolServers 
- Configure tcp-small-servers - Default value: false
- TcpSmall stringServers Variable 
- Variable name
- UdpSmall boolServers 
- Configure udp-small-servers - Default value: false
- UdpSmall stringServers Variable 
- Variable name
- VtyLine boolLogging 
- Configure VTY Line Logging - Default value: false
- VtyLine stringLogging Variable 
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- ArpProxy bool
- Set ARP Proxy - Default value: false
- ArpProxy stringVariable 
- Variable name
- Cdp bool
- Configure CDP - Default value: true
- CdpVariable string
- Variable name
- ConsoleLogging bool
- Configure Console Logging - Default value: true
- ConsoleLogging stringVariable 
- Variable name
- Description string
- The description of the Feature
- DomainLookup bool
- Configure Domain-Lookup - Default value: false
- DomainLookup stringVariable 
- Variable name
- FtpPassive bool
- Set Passive FTP - Default value: false
- FtpPassive stringVariable 
- Variable name
- HttpAuthentication string
- Set preference for HTTP Authentication - Choices: local,aaa
- HttpAuthentication stringVariable 
- Variable name
- HttpServer bool
- Set a HTTP Server - Default value: false
- HttpServer stringVariable 
- Variable name
- HttpsServer bool
- Set a HTTPS Server - Default value: false
- HttpsServer stringVariable 
- Variable name
- IgnoreBootp bool
- Configure Ignore BOOTP - Default value: true
- IgnoreBootp stringVariable 
- Variable name
- IpSource boolRouting 
- Set Source Route - Default value: false
- IpSource stringRouting Variable 
- Variable name
- LineVty bool
- Configure Telnet (Outbound) - Default value: false
- LineVty stringVariable 
- 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
- Nat64TcpTimeout stringVariable 
- Variable name
- Nat64UdpTimeout int
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- Nat64UdpTimeout stringVariable 
- Variable name
- RshRcp bool
- Set RSH/RCP - Default value: false
- RshRcp stringVariable 
- Variable name
- SnmpIfindex boolPersist 
- Configure SNMP Ifindex Persist - Default value: true
- SnmpIfindex stringPersist Variable 
- Variable name
- SourceInterface string
- Specify interface for source address in all HTTP(S) client connections
- SourceInterface stringVariable 
- Variable name
- SshVersion string
- Set SSH version - Choices: 2
- SshVersion stringVariable 
- Variable name
- TcpKeepalives boolIn 
- Configure tcp-keepalives-in - Default value: true
- TcpKeepalives stringIn Variable 
- Variable name
- TcpKeepalives boolOut 
- Configure tcp-keepalives-out - Default value: true
- TcpKeepalives stringOut Variable 
- Variable name
- TcpSmall boolServers 
- Configure tcp-small-servers - Default value: false
- TcpSmall stringServers Variable 
- Variable name
- UdpSmall boolServers 
- Configure udp-small-servers - Default value: false
- UdpSmall stringServers Variable 
- Variable name
- VtyLine boolLogging 
- Configure VTY Line Logging - Default value: false
- VtyLine stringLogging Variable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- arpProxy Boolean
- Set ARP Proxy - Default value: false
- arpProxy StringVariable 
- Variable name
- cdp Boolean
- Configure CDP - Default value: true
- cdpVariable String
- Variable name
- consoleLogging Boolean
- Configure Console Logging - Default value: true
- consoleLogging StringVariable 
- Variable name
- description String
- The description of the Feature
- domainLookup Boolean
- Configure Domain-Lookup - Default value: false
- domainLookup StringVariable 
- Variable name
- ftpPassive Boolean
- Set Passive FTP - Default value: false
- ftpPassive StringVariable 
- Variable name
- httpAuthentication String
- Set preference for HTTP Authentication - Choices: local,aaa
- httpAuthentication StringVariable 
- Variable name
- httpServer Boolean
- Set a HTTP Server - Default value: false
- httpServer StringVariable 
- Variable name
- httpsServer Boolean
- Set a HTTPS Server - Default value: false
- httpsServer StringVariable 
- Variable name
- ignoreBootp Boolean
- Configure Ignore BOOTP - Default value: true
- ignoreBootp StringVariable 
- Variable name
- ipSource BooleanRouting 
- Set Source Route - Default value: false
- ipSource StringRouting Variable 
- Variable name
- lineVty Boolean
- Configure Telnet (Outbound) - Default value: false
- lineVty StringVariable 
- 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
- nat64TcpTimeout StringVariable 
- Variable name
- nat64UdpTimeout Integer
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- nat64UdpTimeout StringVariable 
- Variable name
- rshRcp Boolean
- Set RSH/RCP - Default value: false
- rshRcp StringVariable 
- Variable name
- snmpIfindex BooleanPersist 
- Configure SNMP Ifindex Persist - Default value: true
- snmpIfindex StringPersist Variable 
- Variable name
- sourceInterface String
- Specify interface for source address in all HTTP(S) client connections
- sourceInterface StringVariable 
- Variable name
- sshVersion String
- Set SSH version - Choices: 2
- sshVersion StringVariable 
- Variable name
- tcpKeepalives BooleanIn 
- Configure tcp-keepalives-in - Default value: true
- tcpKeepalives StringIn Variable 
- Variable name
- tcpKeepalives BooleanOut 
- Configure tcp-keepalives-out - Default value: true
- tcpKeepalives StringOut Variable 
- Variable name
- tcpSmall BooleanServers 
- Configure tcp-small-servers - Default value: false
- tcpSmall StringServers Variable 
- Variable name
- udpSmall BooleanServers 
- Configure udp-small-servers - Default value: false
- udpSmall StringServers Variable 
- Variable name
- vtyLine BooleanLogging 
- Configure VTY Line Logging - Default value: false
- vtyLine StringLogging Variable 
- Variable name
- featureProfile stringId 
- Feature Profile ID
- arpProxy boolean
- Set ARP Proxy - Default value: false
- arpProxy stringVariable 
- Variable name
- cdp boolean
- Configure CDP - Default value: true
- cdpVariable string
- Variable name
- consoleLogging boolean
- Configure Console Logging - Default value: true
- consoleLogging stringVariable 
- Variable name
- description string
- The description of the Feature
- domainLookup boolean
- Configure Domain-Lookup - Default value: false
- domainLookup stringVariable 
- Variable name
- ftpPassive boolean
- Set Passive FTP - Default value: false
- ftpPassive stringVariable 
- Variable name
- httpAuthentication string
- Set preference for HTTP Authentication - Choices: local,aaa
- httpAuthentication stringVariable 
- Variable name
- httpServer boolean
- Set a HTTP Server - Default value: false
- httpServer stringVariable 
- Variable name
- httpsServer boolean
- Set a HTTPS Server - Default value: false
- httpsServer stringVariable 
- Variable name
- ignoreBootp boolean
- Configure Ignore BOOTP - Default value: true
- ignoreBootp stringVariable 
- Variable name
- ipSource booleanRouting 
- Set Source Route - Default value: false
- ipSource stringRouting Variable 
- Variable name
- lineVty boolean
- Configure Telnet (Outbound) - Default value: false
- lineVty stringVariable 
- 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
- nat64TcpTimeout stringVariable 
- Variable name
- nat64UdpTimeout number
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- nat64UdpTimeout stringVariable 
- Variable name
- rshRcp boolean
- Set RSH/RCP - Default value: false
- rshRcp stringVariable 
- Variable name
- snmpIfindex booleanPersist 
- Configure SNMP Ifindex Persist - Default value: true
- snmpIfindex stringPersist Variable 
- Variable name
- sourceInterface string
- Specify interface for source address in all HTTP(S) client connections
- sourceInterface stringVariable 
- Variable name
- sshVersion string
- Set SSH version - Choices: 2
- sshVersion stringVariable 
- Variable name
- tcpKeepalives booleanIn 
- Configure tcp-keepalives-in - Default value: true
- tcpKeepalives stringIn Variable 
- Variable name
- tcpKeepalives booleanOut 
- Configure tcp-keepalives-out - Default value: true
- tcpKeepalives stringOut Variable 
- Variable name
- tcpSmall booleanServers 
- Configure tcp-small-servers - Default value: false
- tcpSmall stringServers Variable 
- Variable name
- udpSmall booleanServers 
- Configure udp-small-servers - Default value: false
- udpSmall stringServers Variable 
- Variable name
- vtyLine booleanLogging 
- Configure VTY Line Logging - Default value: false
- vtyLine stringLogging Variable 
- Variable name
- feature_profile_ strid 
- Feature Profile ID
- arp_proxy bool
- Set ARP Proxy - Default value: false
- arp_proxy_ strvariable 
- 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_ strvariable 
- Variable name
- description str
- The description of the Feature
- domain_lookup bool
- Configure Domain-Lookup - Default value: false
- domain_lookup_ strvariable 
- Variable name
- ftp_passive bool
- Set Passive FTP - Default value: false
- ftp_passive_ strvariable 
- Variable name
- http_authentication str
- Set preference for HTTP Authentication - Choices: local,aaa
- http_authentication_ strvariable 
- Variable name
- http_server bool
- Set a HTTP Server - Default value: false
- http_server_ strvariable 
- Variable name
- https_server bool
- Set a HTTPS Server - Default value: false
- https_server_ strvariable 
- Variable name
- ignore_bootp bool
- Configure Ignore BOOTP - Default value: true
- ignore_bootp_ strvariable 
- Variable name
- ip_source_ boolrouting 
- Set Source Route - Default value: false
- ip_source_ strrouting_ variable 
- Variable name
- line_vty bool
- Configure Telnet (Outbound) - Default value: false
- line_vty_ strvariable 
- Variable name
- lldp bool
- Configure LLDP - Default value: true
- lldp_variable str
- Variable name
- name str
- The name of the Feature
- nat64_tcp_ inttimeout 
- Set NAT64 TCP session timeout, in seconds - Range: 1-536870- Default value:3600
- nat64_tcp_ strtimeout_ variable 
- Variable name
- nat64_udp_ inttimeout 
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- nat64_udp_ strtimeout_ variable 
- Variable name
- rsh_rcp bool
- Set RSH/RCP - Default value: false
- rsh_rcp_ strvariable 
- Variable name
- snmp_ifindex_ boolpersist 
- Configure SNMP Ifindex Persist - Default value: true
- snmp_ifindex_ strpersist_ variable 
- Variable name
- source_interface str
- Specify interface for source address in all HTTP(S) client connections
- source_interface_ strvariable 
- Variable name
- ssh_version str
- Set SSH version - Choices: 2
- ssh_version_ strvariable 
- Variable name
- tcp_keepalives_ boolin 
- Configure tcp-keepalives-in - Default value: true
- tcp_keepalives_ strin_ variable 
- Variable name
- tcp_keepalives_ boolout 
- Configure tcp-keepalives-out - Default value: true
- tcp_keepalives_ strout_ variable 
- Variable name
- tcp_small_ boolservers 
- Configure tcp-small-servers - Default value: false
- tcp_small_ strservers_ variable 
- Variable name
- udp_small_ boolservers 
- Configure udp-small-servers - Default value: false
- udp_small_ strservers_ variable 
- Variable name
- vty_line_ boollogging 
- Configure VTY Line Logging - Default value: false
- vty_line_ strlogging_ variable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- arpProxy Boolean
- Set ARP Proxy - Default value: false
- arpProxy StringVariable 
- Variable name
- cdp Boolean
- Configure CDP - Default value: true
- cdpVariable String
- Variable name
- consoleLogging Boolean
- Configure Console Logging - Default value: true
- consoleLogging StringVariable 
- Variable name
- description String
- The description of the Feature
- domainLookup Boolean
- Configure Domain-Lookup - Default value: false
- domainLookup StringVariable 
- Variable name
- ftpPassive Boolean
- Set Passive FTP - Default value: false
- ftpPassive StringVariable 
- Variable name
- httpAuthentication String
- Set preference for HTTP Authentication - Choices: local,aaa
- httpAuthentication StringVariable 
- Variable name
- httpServer Boolean
- Set a HTTP Server - Default value: false
- httpServer StringVariable 
- Variable name
- httpsServer Boolean
- Set a HTTPS Server - Default value: false
- httpsServer StringVariable 
- Variable name
- ignoreBootp Boolean
- Configure Ignore BOOTP - Default value: true
- ignoreBootp StringVariable 
- Variable name
- ipSource BooleanRouting 
- Set Source Route - Default value: false
- ipSource StringRouting Variable 
- Variable name
- lineVty Boolean
- Configure Telnet (Outbound) - Default value: false
- lineVty StringVariable 
- 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
- nat64TcpTimeout StringVariable 
- Variable name
- nat64UdpTimeout Number
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- nat64UdpTimeout StringVariable 
- Variable name
- rshRcp Boolean
- Set RSH/RCP - Default value: false
- rshRcp StringVariable 
- Variable name
- snmpIfindex BooleanPersist 
- Configure SNMP Ifindex Persist - Default value: true
- snmpIfindex StringPersist Variable 
- Variable name
- sourceInterface String
- Specify interface for source address in all HTTP(S) client connections
- sourceInterface StringVariable 
- Variable name
- sshVersion String
- Set SSH version - Choices: 2
- sshVersion StringVariable 
- Variable name
- tcpKeepalives BooleanIn 
- Configure tcp-keepalives-in - Default value: true
- tcpKeepalives StringIn Variable 
- Variable name
- tcpKeepalives BooleanOut 
- Configure tcp-keepalives-out - Default value: true
- tcpKeepalives StringOut Variable 
- Variable name
- tcpSmall BooleanServers 
- Configure tcp-small-servers - Default value: false
- tcpSmall StringServers Variable 
- Variable name
- udpSmall BooleanServers 
- Configure udp-small-servers - Default value: false
- udpSmall StringServers Variable 
- Variable name
- vtyLine BooleanLogging 
- Configure VTY Line Logging - Default value: false
- vtyLine StringLogging Variable 
- Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemGlobalFeature resource produces the following output properties:
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) -> SystemGlobalFeaturefunc 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
- 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.
- ArpProxy bool
- Set ARP Proxy - Default value: false
- ArpProxy stringVariable 
- Variable name
- Cdp bool
- Configure CDP - Default value: true
- CdpVariable string
- Variable name
- ConsoleLogging bool
- Configure Console Logging - Default value: true
- ConsoleLogging stringVariable 
- Variable name
- Description string
- The description of the Feature
- DomainLookup bool
- Configure Domain-Lookup - Default value: false
- DomainLookup stringVariable 
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- FtpPassive bool
- Set Passive FTP - Default value: false
- FtpPassive stringVariable 
- Variable name
- HttpAuthentication string
- Set preference for HTTP Authentication - Choices: local,aaa
- HttpAuthentication stringVariable 
- Variable name
- HttpServer bool
- Set a HTTP Server - Default value: false
- HttpServer stringVariable 
- Variable name
- HttpsServer bool
- Set a HTTPS Server - Default value: false
- HttpsServer stringVariable 
- Variable name
- IgnoreBootp bool
- Configure Ignore BOOTP - Default value: true
- IgnoreBootp stringVariable 
- Variable name
- IpSource boolRouting 
- Set Source Route - Default value: false
- IpSource stringRouting Variable 
- Variable name
- LineVty bool
- Configure Telnet (Outbound) - Default value: false
- LineVty stringVariable 
- 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
- Nat64TcpTimeout stringVariable 
- Variable name
- Nat64UdpTimeout int
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- Nat64UdpTimeout stringVariable 
- Variable name
- RshRcp bool
- Set RSH/RCP - Default value: false
- RshRcp stringVariable 
- Variable name
- SnmpIfindex boolPersist 
- Configure SNMP Ifindex Persist - Default value: true
- SnmpIfindex stringPersist Variable 
- Variable name
- SourceInterface string
- Specify interface for source address in all HTTP(S) client connections
- SourceInterface stringVariable 
- Variable name
- SshVersion string
- Set SSH version - Choices: 2
- SshVersion stringVariable 
- Variable name
- TcpKeepalives boolIn 
- Configure tcp-keepalives-in - Default value: true
- TcpKeepalives stringIn Variable 
- Variable name
- TcpKeepalives boolOut 
- Configure tcp-keepalives-out - Default value: true
- TcpKeepalives stringOut Variable 
- Variable name
- TcpSmall boolServers 
- Configure tcp-small-servers - Default value: false
- TcpSmall stringServers Variable 
- Variable name
- UdpSmall boolServers 
- Configure udp-small-servers - Default value: false
- UdpSmall stringServers Variable 
- Variable name
- Version int
- The version of the Feature
- VtyLine boolLogging 
- Configure VTY Line Logging - Default value: false
- VtyLine stringLogging Variable 
- Variable name
- ArpProxy bool
- Set ARP Proxy - Default value: false
- ArpProxy stringVariable 
- Variable name
- Cdp bool
- Configure CDP - Default value: true
- CdpVariable string
- Variable name
- ConsoleLogging bool
- Configure Console Logging - Default value: true
- ConsoleLogging stringVariable 
- Variable name
- Description string
- The description of the Feature
- DomainLookup bool
- Configure Domain-Lookup - Default value: false
- DomainLookup stringVariable 
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- FtpPassive bool
- Set Passive FTP - Default value: false
- FtpPassive stringVariable 
- Variable name
- HttpAuthentication string
- Set preference for HTTP Authentication - Choices: local,aaa
- HttpAuthentication stringVariable 
- Variable name
- HttpServer bool
- Set a HTTP Server - Default value: false
- HttpServer stringVariable 
- Variable name
- HttpsServer bool
- Set a HTTPS Server - Default value: false
- HttpsServer stringVariable 
- Variable name
- IgnoreBootp bool
- Configure Ignore BOOTP - Default value: true
- IgnoreBootp stringVariable 
- Variable name
- IpSource boolRouting 
- Set Source Route - Default value: false
- IpSource stringRouting Variable 
- Variable name
- LineVty bool
- Configure Telnet (Outbound) - Default value: false
- LineVty stringVariable 
- 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
- Nat64TcpTimeout stringVariable 
- Variable name
- Nat64UdpTimeout int
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- Nat64UdpTimeout stringVariable 
- Variable name
- RshRcp bool
- Set RSH/RCP - Default value: false
- RshRcp stringVariable 
- Variable name
- SnmpIfindex boolPersist 
- Configure SNMP Ifindex Persist - Default value: true
- SnmpIfindex stringPersist Variable 
- Variable name
- SourceInterface string
- Specify interface for source address in all HTTP(S) client connections
- SourceInterface stringVariable 
- Variable name
- SshVersion string
- Set SSH version - Choices: 2
- SshVersion stringVariable 
- Variable name
- TcpKeepalives boolIn 
- Configure tcp-keepalives-in - Default value: true
- TcpKeepalives stringIn Variable 
- Variable name
- TcpKeepalives boolOut 
- Configure tcp-keepalives-out - Default value: true
- TcpKeepalives stringOut Variable 
- Variable name
- TcpSmall boolServers 
- Configure tcp-small-servers - Default value: false
- TcpSmall stringServers Variable 
- Variable name
- UdpSmall boolServers 
- Configure udp-small-servers - Default value: false
- UdpSmall stringServers Variable 
- Variable name
- Version int
- The version of the Feature
- VtyLine boolLogging 
- Configure VTY Line Logging - Default value: false
- VtyLine stringLogging Variable 
- Variable name
- arpProxy Boolean
- Set ARP Proxy - Default value: false
- arpProxy StringVariable 
- Variable name
- cdp Boolean
- Configure CDP - Default value: true
- cdpVariable String
- Variable name
- consoleLogging Boolean
- Configure Console Logging - Default value: true
- consoleLogging StringVariable 
- Variable name
- description String
- The description of the Feature
- domainLookup Boolean
- Configure Domain-Lookup - Default value: false
- domainLookup StringVariable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- ftpPassive Boolean
- Set Passive FTP - Default value: false
- ftpPassive StringVariable 
- Variable name
- httpAuthentication String
- Set preference for HTTP Authentication - Choices: local,aaa
- httpAuthentication StringVariable 
- Variable name
- httpServer Boolean
- Set a HTTP Server - Default value: false
- httpServer StringVariable 
- Variable name
- httpsServer Boolean
- Set a HTTPS Server - Default value: false
- httpsServer StringVariable 
- Variable name
- ignoreBootp Boolean
- Configure Ignore BOOTP - Default value: true
- ignoreBootp StringVariable 
- Variable name
- ipSource BooleanRouting 
- Set Source Route - Default value: false
- ipSource StringRouting Variable 
- Variable name
- lineVty Boolean
- Configure Telnet (Outbound) - Default value: false
- lineVty StringVariable 
- 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
- nat64TcpTimeout StringVariable 
- Variable name
- nat64UdpTimeout Integer
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- nat64UdpTimeout StringVariable 
- Variable name
- rshRcp Boolean
- Set RSH/RCP - Default value: false
- rshRcp StringVariable 
- Variable name
- snmpIfindex BooleanPersist 
- Configure SNMP Ifindex Persist - Default value: true
- snmpIfindex StringPersist Variable 
- Variable name
- sourceInterface String
- Specify interface for source address in all HTTP(S) client connections
- sourceInterface StringVariable 
- Variable name
- sshVersion String
- Set SSH version - Choices: 2
- sshVersion StringVariable 
- Variable name
- tcpKeepalives BooleanIn 
- Configure tcp-keepalives-in - Default value: true
- tcpKeepalives StringIn Variable 
- Variable name
- tcpKeepalives BooleanOut 
- Configure tcp-keepalives-out - Default value: true
- tcpKeepalives StringOut Variable 
- Variable name
- tcpSmall BooleanServers 
- Configure tcp-small-servers - Default value: false
- tcpSmall StringServers Variable 
- Variable name
- udpSmall BooleanServers 
- Configure udp-small-servers - Default value: false
- udpSmall StringServers Variable 
- Variable name
- version Integer
- The version of the Feature
- vtyLine BooleanLogging 
- Configure VTY Line Logging - Default value: false
- vtyLine StringLogging Variable 
- Variable name
- arpProxy boolean
- Set ARP Proxy - Default value: false
- arpProxy stringVariable 
- Variable name
- cdp boolean
- Configure CDP - Default value: true
- cdpVariable string
- Variable name
- consoleLogging boolean
- Configure Console Logging - Default value: true
- consoleLogging stringVariable 
- Variable name
- description string
- The description of the Feature
- domainLookup boolean
- Configure Domain-Lookup - Default value: false
- domainLookup stringVariable 
- Variable name
- featureProfile stringId 
- Feature Profile ID
- ftpPassive boolean
- Set Passive FTP - Default value: false
- ftpPassive stringVariable 
- Variable name
- httpAuthentication string
- Set preference for HTTP Authentication - Choices: local,aaa
- httpAuthentication stringVariable 
- Variable name
- httpServer boolean
- Set a HTTP Server - Default value: false
- httpServer stringVariable 
- Variable name
- httpsServer boolean
- Set a HTTPS Server - Default value: false
- httpsServer stringVariable 
- Variable name
- ignoreBootp boolean
- Configure Ignore BOOTP - Default value: true
- ignoreBootp stringVariable 
- Variable name
- ipSource booleanRouting 
- Set Source Route - Default value: false
- ipSource stringRouting Variable 
- Variable name
- lineVty boolean
- Configure Telnet (Outbound) - Default value: false
- lineVty stringVariable 
- 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
- nat64TcpTimeout stringVariable 
- Variable name
- nat64UdpTimeout number
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- nat64UdpTimeout stringVariable 
- Variable name
- rshRcp boolean
- Set RSH/RCP - Default value: false
- rshRcp stringVariable 
- Variable name
- snmpIfindex booleanPersist 
- Configure SNMP Ifindex Persist - Default value: true
- snmpIfindex stringPersist Variable 
- Variable name
- sourceInterface string
- Specify interface for source address in all HTTP(S) client connections
- sourceInterface stringVariable 
- Variable name
- sshVersion string
- Set SSH version - Choices: 2
- sshVersion stringVariable 
- Variable name
- tcpKeepalives booleanIn 
- Configure tcp-keepalives-in - Default value: true
- tcpKeepalives stringIn Variable 
- Variable name
- tcpKeepalives booleanOut 
- Configure tcp-keepalives-out - Default value: true
- tcpKeepalives stringOut Variable 
- Variable name
- tcpSmall booleanServers 
- Configure tcp-small-servers - Default value: false
- tcpSmall stringServers Variable 
- Variable name
- udpSmall booleanServers 
- Configure udp-small-servers - Default value: false
- udpSmall stringServers Variable 
- Variable name
- version number
- The version of the Feature
- vtyLine booleanLogging 
- Configure VTY Line Logging - Default value: false
- vtyLine stringLogging Variable 
- Variable name
- arp_proxy bool
- Set ARP Proxy - Default value: false
- arp_proxy_ strvariable 
- 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_ strvariable 
- Variable name
- description str
- The description of the Feature
- domain_lookup bool
- Configure Domain-Lookup - Default value: false
- domain_lookup_ strvariable 
- Variable name
- feature_profile_ strid 
- Feature Profile ID
- ftp_passive bool
- Set Passive FTP - Default value: false
- ftp_passive_ strvariable 
- Variable name
- http_authentication str
- Set preference for HTTP Authentication - Choices: local,aaa
- http_authentication_ strvariable 
- Variable name
- http_server bool
- Set a HTTP Server - Default value: false
- http_server_ strvariable 
- Variable name
- https_server bool
- Set a HTTPS Server - Default value: false
- https_server_ strvariable 
- Variable name
- ignore_bootp bool
- Configure Ignore BOOTP - Default value: true
- ignore_bootp_ strvariable 
- Variable name
- ip_source_ boolrouting 
- Set Source Route - Default value: false
- ip_source_ strrouting_ variable 
- Variable name
- line_vty bool
- Configure Telnet (Outbound) - Default value: false
- line_vty_ strvariable 
- Variable name
- lldp bool
- Configure LLDP - Default value: true
- lldp_variable str
- Variable name
- name str
- The name of the Feature
- nat64_tcp_ inttimeout 
- Set NAT64 TCP session timeout, in seconds - Range: 1-536870- Default value:3600
- nat64_tcp_ strtimeout_ variable 
- Variable name
- nat64_udp_ inttimeout 
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- nat64_udp_ strtimeout_ variable 
- Variable name
- rsh_rcp bool
- Set RSH/RCP - Default value: false
- rsh_rcp_ strvariable 
- Variable name
- snmp_ifindex_ boolpersist 
- Configure SNMP Ifindex Persist - Default value: true
- snmp_ifindex_ strpersist_ variable 
- Variable name
- source_interface str
- Specify interface for source address in all HTTP(S) client connections
- source_interface_ strvariable 
- Variable name
- ssh_version str
- Set SSH version - Choices: 2
- ssh_version_ strvariable 
- Variable name
- tcp_keepalives_ boolin 
- Configure tcp-keepalives-in - Default value: true
- tcp_keepalives_ strin_ variable 
- Variable name
- tcp_keepalives_ boolout 
- Configure tcp-keepalives-out - Default value: true
- tcp_keepalives_ strout_ variable 
- Variable name
- tcp_small_ boolservers 
- Configure tcp-small-servers - Default value: false
- tcp_small_ strservers_ variable 
- Variable name
- udp_small_ boolservers 
- Configure udp-small-servers - Default value: false
- udp_small_ strservers_ variable 
- Variable name
- version int
- The version of the Feature
- vty_line_ boollogging 
- Configure VTY Line Logging - Default value: false
- vty_line_ strlogging_ variable 
- Variable name
- arpProxy Boolean
- Set ARP Proxy - Default value: false
- arpProxy StringVariable 
- Variable name
- cdp Boolean
- Configure CDP - Default value: true
- cdpVariable String
- Variable name
- consoleLogging Boolean
- Configure Console Logging - Default value: true
- consoleLogging StringVariable 
- Variable name
- description String
- The description of the Feature
- domainLookup Boolean
- Configure Domain-Lookup - Default value: false
- domainLookup StringVariable 
- Variable name
- featureProfile StringId 
- Feature Profile ID
- ftpPassive Boolean
- Set Passive FTP - Default value: false
- ftpPassive StringVariable 
- Variable name
- httpAuthentication String
- Set preference for HTTP Authentication - Choices: local,aaa
- httpAuthentication StringVariable 
- Variable name
- httpServer Boolean
- Set a HTTP Server - Default value: false
- httpServer StringVariable 
- Variable name
- httpsServer Boolean
- Set a HTTPS Server - Default value: false
- httpsServer StringVariable 
- Variable name
- ignoreBootp Boolean
- Configure Ignore BOOTP - Default value: true
- ignoreBootp StringVariable 
- Variable name
- ipSource BooleanRouting 
- Set Source Route - Default value: false
- ipSource StringRouting Variable 
- Variable name
- lineVty Boolean
- Configure Telnet (Outbound) - Default value: false
- lineVty StringVariable 
- 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
- nat64TcpTimeout StringVariable 
- Variable name
- nat64UdpTimeout Number
- Set NAT64 UDP session timeout, in seconds - Range: 1-536870- Default value:300
- nat64UdpTimeout StringVariable 
- Variable name
- rshRcp Boolean
- Set RSH/RCP - Default value: false
- rshRcp StringVariable 
- Variable name
- snmpIfindex BooleanPersist 
- Configure SNMP Ifindex Persist - Default value: true
- snmpIfindex StringPersist Variable 
- Variable name
- sourceInterface String
- Specify interface for source address in all HTTP(S) client connections
- sourceInterface StringVariable 
- Variable name
- sshVersion String
- Set SSH version - Choices: 2
- sshVersion StringVariable 
- Variable name
- tcpKeepalives BooleanIn 
- Configure tcp-keepalives-in - Default value: true
- tcpKeepalives StringIn Variable 
- Variable name
- tcpKeepalives BooleanOut 
- Configure tcp-keepalives-out - Default value: true
- tcpKeepalives StringOut Variable 
- Variable name
- tcpSmall BooleanServers 
- Configure tcp-small-servers - Default value: false
- tcpSmall StringServers Variable 
- Variable name
- udpSmall BooleanServers 
- Configure udp-small-servers - Default value: false
- udpSmall StringServers Variable 
- Variable name
- version Number
- The version of the Feature
- vtyLine BooleanLogging 
- Configure VTY Line Logging - Default value: false
- vtyLine StringLogging Variable 
- 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"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the sdwanTerraform Provider.
