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
The SystemGlobalFeature resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Arp
Proxy bool - Set ARP Proxy - Default value:
false
- Arp
Proxy stringVariable - Variable name
- Cdp bool
- Configure CDP - Default value:
true
- Cdp
Variable string - Variable name
- Console
Logging bool - Configure Console Logging - Default value:
true
- Console
Logging stringVariable - Variable name
- Description string
- The description of the Feature
- Domain
Lookup bool - Configure Domain-Lookup - Default value:
false
- Domain
Lookup stringVariable - Variable name
- Ftp
Passive bool - Set Passive FTP - Default value:
false
- Ftp
Passive stringVariable - Variable name
- Http
Authentication string - Set preference for HTTP Authentication - Choices:
local
,aaa
- Http
Authentication stringVariable - Variable name
- Http
Server bool - Set a HTTP Server - Default value:
false
- Http
Server stringVariable - Variable name
- Https
Server bool - Set a HTTPS Server - Default value:
false
- Https
Server stringVariable - Variable name
- Ignore
Bootp bool - Configure Ignore BOOTP - Default value:
true
- Ignore
Bootp stringVariable - Variable name
- Ip
Source boolRouting - Set Source Route - Default value:
false
- Ip
Source stringRouting Variable - Variable name
- Line
Vty bool - Configure Telnet (Outbound) - Default value:
false
- Line
Vty stringVariable - Variable name
- Lldp bool
- Configure LLDP - Default value:
true
- Lldp
Variable string - Variable name
- Name string
- The name of the Feature
- Nat64Tcp
Timeout int - Set NAT64 TCP session timeout, in seconds - Range:
1
-536870
- Default value:3600
- Nat64Tcp
Timeout stringVariable - Variable name
- Nat64Udp
Timeout int - Set NAT64 UDP session timeout, in seconds - Range:
1
-536870
- Default value:300
- Nat64Udp
Timeout stringVariable - Variable name
- Rsh
Rcp bool - Set RSH/RCP - Default value:
false
- Rsh
Rcp stringVariable - Variable name
- Snmp
Ifindex boolPersist - Configure SNMP Ifindex Persist - Default value:
true
- Snmp
Ifindex stringPersist Variable - Variable name
- Source
Interface string - Specify interface for source address in all HTTP(S) client connections
- Source
Interface stringVariable - Variable name
- Ssh
Version string - Set SSH version - Choices:
2
- Ssh
Version stringVariable - Variable name
- Tcp
Keepalives boolIn - Configure tcp-keepalives-in - Default value:
true
- Tcp
Keepalives stringIn Variable - Variable name
- Tcp
Keepalives boolOut - Configure tcp-keepalives-out - Default value:
true
- Tcp
Keepalives stringOut Variable - Variable name
- Tcp
Small boolServers - Configure tcp-small-servers - Default value:
false
- Tcp
Small stringServers Variable - Variable name
- Udp
Small boolServers - Configure udp-small-servers - Default value:
false
- Udp
Small stringServers Variable - Variable name
- Vty
Line boolLogging - Configure VTY Line Logging - Default value:
false
- Vty
Line stringLogging Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Arp
Proxy bool - Set ARP Proxy - Default value:
false
- Arp
Proxy stringVariable - Variable name
- Cdp bool
- Configure CDP - Default value:
true
- Cdp
Variable string - Variable name
- Console
Logging bool - Configure Console Logging - Default value:
true
- Console
Logging stringVariable - Variable name
- Description string
- The description of the Feature
- Domain
Lookup bool - Configure Domain-Lookup - Default value:
false
- Domain
Lookup stringVariable - Variable name
- Ftp
Passive bool - Set Passive FTP - Default value:
false
- Ftp
Passive stringVariable - Variable name
- Http
Authentication string - Set preference for HTTP Authentication - Choices:
local
,aaa
- Http
Authentication stringVariable - Variable name
- Http
Server bool - Set a HTTP Server - Default value:
false
- Http
Server stringVariable - Variable name
- Https
Server bool - Set a HTTPS Server - Default value:
false
- Https
Server stringVariable - Variable name
- Ignore
Bootp bool - Configure Ignore BOOTP - Default value:
true
- Ignore
Bootp stringVariable - Variable name
- Ip
Source boolRouting - Set Source Route - Default value:
false
- Ip
Source stringRouting Variable - Variable name
- Line
Vty bool - Configure Telnet (Outbound) - Default value:
false
- Line
Vty stringVariable - Variable name
- Lldp bool
- Configure LLDP - Default value:
true
- Lldp
Variable string - Variable name
- Name string
- The name of the Feature
- Nat64Tcp
Timeout int - Set NAT64 TCP session timeout, in seconds - Range:
1
-536870
- Default value:3600
- Nat64Tcp
Timeout stringVariable - Variable name
- Nat64Udp
Timeout int - Set NAT64 UDP session timeout, in seconds - Range:
1
-536870
- Default value:300
- Nat64Udp
Timeout stringVariable - Variable name
- Rsh
Rcp bool - Set RSH/RCP - Default value:
false
- Rsh
Rcp stringVariable - Variable name
- Snmp
Ifindex boolPersist - Configure SNMP Ifindex Persist - Default value:
true
- Snmp
Ifindex stringPersist Variable - Variable name
- Source
Interface string - Specify interface for source address in all HTTP(S) client connections
- Source
Interface stringVariable - Variable name
- Ssh
Version string - Set SSH version - Choices:
2
- Ssh
Version stringVariable - Variable name
- Tcp
Keepalives boolIn - Configure tcp-keepalives-in - Default value:
true
- Tcp
Keepalives stringIn Variable - Variable name
- Tcp
Keepalives boolOut - Configure tcp-keepalives-out - Default value:
true
- Tcp
Keepalives stringOut Variable - Variable name
- Tcp
Small boolServers - Configure tcp-small-servers - Default value:
false
- Tcp
Small stringServers Variable - Variable name
- Udp
Small boolServers - Configure udp-small-servers - Default value:
false
- Udp
Small stringServers Variable - Variable name
- Vty
Line boolLogging - Configure VTY Line Logging - Default value:
false
- Vty
Line stringLogging Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- arp
Proxy Boolean - Set ARP Proxy - Default value:
false
- arp
Proxy StringVariable - Variable name
- cdp Boolean
- Configure CDP - Default value:
true
- cdp
Variable String - Variable name
- console
Logging Boolean - Configure Console Logging - Default value:
true
- console
Logging StringVariable - Variable name
- description String
- The description of the Feature
- domain
Lookup Boolean - Configure Domain-Lookup - Default value:
false
- domain
Lookup StringVariable - Variable name
- ftp
Passive Boolean - Set Passive FTP - Default value:
false
- ftp
Passive StringVariable - Variable name
- http
Authentication String - Set preference for HTTP Authentication - Choices:
local
,aaa
- http
Authentication StringVariable - Variable name
- http
Server Boolean - Set a HTTP Server - Default value:
false
- http
Server StringVariable - Variable name
- https
Server Boolean - Set a HTTPS Server - Default value:
false
- https
Server StringVariable - Variable name
- ignore
Bootp Boolean - Configure Ignore BOOTP - Default value:
true
- ignore
Bootp StringVariable - Variable name
- ip
Source BooleanRouting - Set Source Route - Default value:
false
- ip
Source StringRouting Variable - Variable name
- line
Vty Boolean - Configure Telnet (Outbound) - Default value:
false
- line
Vty StringVariable - Variable name
- lldp Boolean
- Configure LLDP - Default value:
true
- lldp
Variable String - Variable name
- name String
- The name of the Feature
- nat64Tcp
Timeout Integer - Set NAT64 TCP session timeout, in seconds - Range:
1
-536870
- Default value:3600
- nat64Tcp
Timeout StringVariable - Variable name
- nat64Udp
Timeout Integer - Set NAT64 UDP session timeout, in seconds - Range:
1
-536870
- Default value:300
- nat64Udp
Timeout StringVariable - Variable name
- rsh
Rcp Boolean - Set RSH/RCP - Default value:
false
- rsh
Rcp StringVariable - Variable name
- snmp
Ifindex BooleanPersist - Configure SNMP Ifindex Persist - Default value:
true
- snmp
Ifindex StringPersist Variable - Variable name
- source
Interface String - Specify interface for source address in all HTTP(S) client connections
- source
Interface StringVariable - Variable name
- ssh
Version String - Set SSH version - Choices:
2
- ssh
Version StringVariable - Variable name
- tcp
Keepalives BooleanIn - Configure tcp-keepalives-in - Default value:
true
- tcp
Keepalives StringIn Variable - Variable name
- tcp
Keepalives BooleanOut - Configure tcp-keepalives-out - Default value:
true
- tcp
Keepalives StringOut Variable - Variable name
- tcp
Small BooleanServers - Configure tcp-small-servers - Default value:
false
- tcp
Small StringServers Variable - Variable name
- udp
Small BooleanServers - Configure udp-small-servers - Default value:
false
- udp
Small StringServers Variable - Variable name
- vty
Line BooleanLogging - Configure VTY Line Logging - Default value:
false
- vty
Line StringLogging Variable - Variable name
- feature
Profile stringId - Feature Profile ID
- arp
Proxy boolean - Set ARP Proxy - Default value:
false
- arp
Proxy stringVariable - Variable name
- cdp boolean
- Configure CDP - Default value:
true
- cdp
Variable string - Variable name
- console
Logging boolean - Configure Console Logging - Default value:
true
- console
Logging stringVariable - Variable name
- description string
- The description of the Feature
- domain
Lookup boolean - Configure Domain-Lookup - Default value:
false
- domain
Lookup stringVariable - Variable name
- ftp
Passive boolean - Set Passive FTP - Default value:
false
- ftp
Passive stringVariable - Variable name
- http
Authentication string - Set preference for HTTP Authentication - Choices:
local
,aaa
- http
Authentication stringVariable - Variable name
- http
Server boolean - Set a HTTP Server - Default value:
false
- http
Server stringVariable - Variable name
- https
Server boolean - Set a HTTPS Server - Default value:
false
- https
Server stringVariable - Variable name
- ignore
Bootp boolean - Configure Ignore BOOTP - Default value:
true
- ignore
Bootp stringVariable - Variable name
- ip
Source booleanRouting - Set Source Route - Default value:
false
- ip
Source stringRouting Variable - Variable name
- line
Vty boolean - Configure Telnet (Outbound) - Default value:
false
- line
Vty stringVariable - Variable name
- lldp boolean
- Configure LLDP - Default value:
true
- lldp
Variable string - Variable name
- name string
- The name of the Feature
- nat64Tcp
Timeout number - Set NAT64 TCP session timeout, in seconds - Range:
1
-536870
- Default value:3600
- nat64Tcp
Timeout stringVariable - Variable name
- nat64Udp
Timeout number - Set NAT64 UDP session timeout, in seconds - Range:
1
-536870
- Default value:300
- nat64Udp
Timeout stringVariable - Variable name
- rsh
Rcp boolean - Set RSH/RCP - Default value:
false
- rsh
Rcp stringVariable - Variable name
- snmp
Ifindex booleanPersist - Configure SNMP Ifindex Persist - Default value:
true
- snmp
Ifindex stringPersist Variable - Variable name
- source
Interface string - Specify interface for source address in all HTTP(S) client connections
- source
Interface stringVariable - Variable name
- ssh
Version string - Set SSH version - Choices:
2
- ssh
Version stringVariable - Variable name
- tcp
Keepalives booleanIn - Configure tcp-keepalives-in - Default value:
true
- tcp
Keepalives stringIn Variable - Variable name
- tcp
Keepalives booleanOut - Configure tcp-keepalives-out - Default value:
true
- tcp
Keepalives stringOut Variable - Variable name
- tcp
Small booleanServers - Configure tcp-small-servers - Default value:
false
- tcp
Small stringServers Variable - Variable name
- udp
Small booleanServers - Configure udp-small-servers - Default value:
false
- udp
Small stringServers Variable - Variable name
- vty
Line booleanLogging - Configure VTY Line Logging - Default value:
false
- vty
Line 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
- feature
Profile StringId - Feature Profile ID
- arp
Proxy Boolean - Set ARP Proxy - Default value:
false
- arp
Proxy StringVariable - Variable name
- cdp Boolean
- Configure CDP - Default value:
true
- cdp
Variable String - Variable name
- console
Logging Boolean - Configure Console Logging - Default value:
true
- console
Logging StringVariable - Variable name
- description String
- The description of the Feature
- domain
Lookup Boolean - Configure Domain-Lookup - Default value:
false
- domain
Lookup StringVariable - Variable name
- ftp
Passive Boolean - Set Passive FTP - Default value:
false
- ftp
Passive StringVariable - Variable name
- http
Authentication String - Set preference for HTTP Authentication - Choices:
local
,aaa
- http
Authentication StringVariable - Variable name
- http
Server Boolean - Set a HTTP Server - Default value:
false
- http
Server StringVariable - Variable name
- https
Server Boolean - Set a HTTPS Server - Default value:
false
- https
Server StringVariable - Variable name
- ignore
Bootp Boolean - Configure Ignore BOOTP - Default value:
true
- ignore
Bootp StringVariable - Variable name
- ip
Source BooleanRouting - Set Source Route - Default value:
false
- ip
Source StringRouting Variable - Variable name
- line
Vty Boolean - Configure Telnet (Outbound) - Default value:
false
- line
Vty StringVariable - Variable name
- lldp Boolean
- Configure LLDP - Default value:
true
- lldp
Variable String - Variable name
- name String
- The name of the Feature
- nat64Tcp
Timeout Number - Set NAT64 TCP session timeout, in seconds - Range:
1
-536870
- Default value:3600
- nat64Tcp
Timeout StringVariable - Variable name
- nat64Udp
Timeout Number - Set NAT64 UDP session timeout, in seconds - Range:
1
-536870
- Default value:300
- nat64Udp
Timeout StringVariable - Variable name
- rsh
Rcp Boolean - Set RSH/RCP - Default value:
false
- rsh
Rcp StringVariable - Variable name
- snmp
Ifindex BooleanPersist - Configure SNMP Ifindex Persist - Default value:
true
- snmp
Ifindex StringPersist Variable - Variable name
- source
Interface String - Specify interface for source address in all HTTP(S) client connections
- source
Interface StringVariable - Variable name
- ssh
Version String - Set SSH version - Choices:
2
- ssh
Version StringVariable - Variable name
- tcp
Keepalives BooleanIn - Configure tcp-keepalives-in - Default value:
true
- tcp
Keepalives StringIn Variable - Variable name
- tcp
Keepalives BooleanOut - Configure tcp-keepalives-out - Default value:
true
- tcp
Keepalives StringOut Variable - Variable name
- tcp
Small BooleanServers - Configure tcp-small-servers - Default value:
false
- tcp
Small StringServers Variable - Variable name
- udp
Small BooleanServers - Configure udp-small-servers - Default value:
false
- udp
Small StringServers Variable - Variable name
- vty
Line BooleanLogging - Configure VTY Line Logging - Default value:
false
- vty
Line 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) -> 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arp
Proxy bool - Set ARP Proxy - Default value:
false
- Arp
Proxy stringVariable - Variable name
- Cdp bool
- Configure CDP - Default value:
true
- Cdp
Variable string - Variable name
- Console
Logging bool - Configure Console Logging - Default value:
true
- Console
Logging stringVariable - Variable name
- Description string
- The description of the Feature
- Domain
Lookup bool - Configure Domain-Lookup - Default value:
false
- Domain
Lookup stringVariable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ftp
Passive bool - Set Passive FTP - Default value:
false
- Ftp
Passive stringVariable - Variable name
- Http
Authentication string - Set preference for HTTP Authentication - Choices:
local
,aaa
- Http
Authentication stringVariable - Variable name
- Http
Server bool - Set a HTTP Server - Default value:
false
- Http
Server stringVariable - Variable name
- Https
Server bool - Set a HTTPS Server - Default value:
false
- Https
Server stringVariable - Variable name
- Ignore
Bootp bool - Configure Ignore BOOTP - Default value:
true
- Ignore
Bootp stringVariable - Variable name
- Ip
Source boolRouting - Set Source Route - Default value:
false
- Ip
Source stringRouting Variable - Variable name
- Line
Vty bool - Configure Telnet (Outbound) - Default value:
false
- Line
Vty stringVariable - Variable name
- Lldp bool
- Configure LLDP - Default value:
true
- Lldp
Variable string - Variable name
- Name string
- The name of the Feature
- Nat64Tcp
Timeout int - Set NAT64 TCP session timeout, in seconds - Range:
1
-536870
- Default value:3600
- Nat64Tcp
Timeout stringVariable - Variable name
- Nat64Udp
Timeout int - Set NAT64 UDP session timeout, in seconds - Range:
1
-536870
- Default value:300
- Nat64Udp
Timeout stringVariable - Variable name
- Rsh
Rcp bool - Set RSH/RCP - Default value:
false
- Rsh
Rcp stringVariable - Variable name
- Snmp
Ifindex boolPersist - Configure SNMP Ifindex Persist - Default value:
true
- Snmp
Ifindex stringPersist Variable - Variable name
- Source
Interface string - Specify interface for source address in all HTTP(S) client connections
- Source
Interface stringVariable - Variable name
- Ssh
Version string - Set SSH version - Choices:
2
- Ssh
Version stringVariable - Variable name
- Tcp
Keepalives boolIn - Configure tcp-keepalives-in - Default value:
true
- Tcp
Keepalives stringIn Variable - Variable name
- Tcp
Keepalives boolOut - Configure tcp-keepalives-out - Default value:
true
- Tcp
Keepalives stringOut Variable - Variable name
- Tcp
Small boolServers - Configure tcp-small-servers - Default value:
false
- Tcp
Small stringServers Variable - Variable name
- Udp
Small boolServers - Configure udp-small-servers - Default value:
false
- Udp
Small stringServers Variable - Variable name
- Version int
- The version of the Feature
- Vty
Line boolLogging - Configure VTY Line Logging - Default value:
false
- Vty
Line stringLogging Variable - Variable name
- Arp
Proxy bool - Set ARP Proxy - Default value:
false
- Arp
Proxy stringVariable - Variable name
- Cdp bool
- Configure CDP - Default value:
true
- Cdp
Variable string - Variable name
- Console
Logging bool - Configure Console Logging - Default value:
true
- Console
Logging stringVariable - Variable name
- Description string
- The description of the Feature
- Domain
Lookup bool - Configure Domain-Lookup - Default value:
false
- Domain
Lookup stringVariable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ftp
Passive bool - Set Passive FTP - Default value:
false
- Ftp
Passive stringVariable - Variable name
- Http
Authentication string - Set preference for HTTP Authentication - Choices:
local
,aaa
- Http
Authentication stringVariable - Variable name
- Http
Server bool - Set a HTTP Server - Default value:
false
- Http
Server stringVariable - Variable name
- Https
Server bool - Set a HTTPS Server - Default value:
false
- Https
Server stringVariable - Variable name
- Ignore
Bootp bool - Configure Ignore BOOTP - Default value:
true
- Ignore
Bootp stringVariable - Variable name
- Ip
Source boolRouting - Set Source Route - Default value:
false
- Ip
Source stringRouting Variable - Variable name
- Line
Vty bool - Configure Telnet (Outbound) - Default value:
false
- Line
Vty stringVariable - Variable name
- Lldp bool
- Configure LLDP - Default value:
true
- Lldp
Variable string - Variable name
- Name string
- The name of the Feature
- Nat64Tcp
Timeout int - Set NAT64 TCP session timeout, in seconds - Range:
1
-536870
- Default value:3600
- Nat64Tcp
Timeout stringVariable - Variable name
- Nat64Udp
Timeout int - Set NAT64 UDP session timeout, in seconds - Range:
1
-536870
- Default value:300
- Nat64Udp
Timeout stringVariable - Variable name
- Rsh
Rcp bool - Set RSH/RCP - Default value:
false
- Rsh
Rcp stringVariable - Variable name
- Snmp
Ifindex boolPersist - Configure SNMP Ifindex Persist - Default value:
true
- Snmp
Ifindex stringPersist Variable - Variable name
- Source
Interface string - Specify interface for source address in all HTTP(S) client connections
- Source
Interface stringVariable - Variable name
- Ssh
Version string - Set SSH version - Choices:
2
- Ssh
Version stringVariable - Variable name
- Tcp
Keepalives boolIn - Configure tcp-keepalives-in - Default value:
true
- Tcp
Keepalives stringIn Variable - Variable name
- Tcp
Keepalives boolOut - Configure tcp-keepalives-out - Default value:
true
- Tcp
Keepalives stringOut Variable - Variable name
- Tcp
Small boolServers - Configure tcp-small-servers - Default value:
false
- Tcp
Small stringServers Variable - Variable name
- Udp
Small boolServers - Configure udp-small-servers - Default value:
false
- Udp
Small stringServers Variable - Variable name
- Version int
- The version of the Feature
- Vty
Line boolLogging - Configure VTY Line Logging - Default value:
false
- Vty
Line stringLogging Variable - Variable name
- arp
Proxy Boolean - Set ARP Proxy - Default value:
false
- arp
Proxy StringVariable - Variable name
- cdp Boolean
- Configure CDP - Default value:
true
- cdp
Variable String - Variable name
- console
Logging Boolean - Configure Console Logging - Default value:
true
- console
Logging StringVariable - Variable name
- description String
- The description of the Feature
- domain
Lookup Boolean - Configure Domain-Lookup - Default value:
false
- domain
Lookup StringVariable - Variable name
- feature
Profile StringId - Feature Profile ID
- ftp
Passive Boolean - Set Passive FTP - Default value:
false
- ftp
Passive StringVariable - Variable name
- http
Authentication String - Set preference for HTTP Authentication - Choices:
local
,aaa
- http
Authentication StringVariable - Variable name
- http
Server Boolean - Set a HTTP Server - Default value:
false
- http
Server StringVariable - Variable name
- https
Server Boolean - Set a HTTPS Server - Default value:
false
- https
Server StringVariable - Variable name
- ignore
Bootp Boolean - Configure Ignore BOOTP - Default value:
true
- ignore
Bootp StringVariable - Variable name
- ip
Source BooleanRouting - Set Source Route - Default value:
false
- ip
Source StringRouting Variable - Variable name
- line
Vty Boolean - Configure Telnet (Outbound) - Default value:
false
- line
Vty StringVariable - Variable name
- lldp Boolean
- Configure LLDP - Default value:
true
- lldp
Variable String - Variable name
- name String
- The name of the Feature
- nat64Tcp
Timeout Integer - Set NAT64 TCP session timeout, in seconds - Range:
1
-536870
- Default value:3600
- nat64Tcp
Timeout StringVariable - Variable name
- nat64Udp
Timeout Integer - Set NAT64 UDP session timeout, in seconds - Range:
1
-536870
- Default value:300
- nat64Udp
Timeout StringVariable - Variable name
- rsh
Rcp Boolean - Set RSH/RCP - Default value:
false
- rsh
Rcp StringVariable - Variable name
- snmp
Ifindex BooleanPersist - Configure SNMP Ifindex Persist - Default value:
true
- snmp
Ifindex StringPersist Variable - Variable name
- source
Interface String - Specify interface for source address in all HTTP(S) client connections
- source
Interface StringVariable - Variable name
- ssh
Version String - Set SSH version - Choices:
2
- ssh
Version StringVariable - Variable name
- tcp
Keepalives BooleanIn - Configure tcp-keepalives-in - Default value:
true
- tcp
Keepalives StringIn Variable - Variable name
- tcp
Keepalives BooleanOut - Configure tcp-keepalives-out - Default value:
true
- tcp
Keepalives StringOut Variable - Variable name
- tcp
Small BooleanServers - Configure tcp-small-servers - Default value:
false
- tcp
Small StringServers Variable - Variable name
- udp
Small BooleanServers - Configure udp-small-servers - Default value:
false
- udp
Small StringServers Variable - Variable name
- version Integer
- The version of the Feature
- vty
Line BooleanLogging - Configure VTY Line Logging - Default value:
false
- vty
Line StringLogging Variable - Variable name
- arp
Proxy boolean - Set ARP Proxy - Default value:
false
- arp
Proxy stringVariable - Variable name
- cdp boolean
- Configure CDP - Default value:
true
- cdp
Variable string - Variable name
- console
Logging boolean - Configure Console Logging - Default value:
true
- console
Logging stringVariable - Variable name
- description string
- The description of the Feature
- domain
Lookup boolean - Configure Domain-Lookup - Default value:
false
- domain
Lookup stringVariable - Variable name
- feature
Profile stringId - Feature Profile ID
- ftp
Passive boolean - Set Passive FTP - Default value:
false
- ftp
Passive stringVariable - Variable name
- http
Authentication string - Set preference for HTTP Authentication - Choices:
local
,aaa
- http
Authentication stringVariable - Variable name
- http
Server boolean - Set a HTTP Server - Default value:
false
- http
Server stringVariable - Variable name
- https
Server boolean - Set a HTTPS Server - Default value:
false
- https
Server stringVariable - Variable name
- ignore
Bootp boolean - Configure Ignore BOOTP - Default value:
true
- ignore
Bootp stringVariable - Variable name
- ip
Source booleanRouting - Set Source Route - Default value:
false
- ip
Source stringRouting Variable - Variable name
- line
Vty boolean - Configure Telnet (Outbound) - Default value:
false
- line
Vty stringVariable - Variable name
- lldp boolean
- Configure LLDP - Default value:
true
- lldp
Variable string - Variable name
- name string
- The name of the Feature
- nat64Tcp
Timeout number - Set NAT64 TCP session timeout, in seconds - Range:
1
-536870
- Default value:3600
- nat64Tcp
Timeout stringVariable - Variable name
- nat64Udp
Timeout number - Set NAT64 UDP session timeout, in seconds - Range:
1
-536870
- Default value:300
- nat64Udp
Timeout stringVariable - Variable name
- rsh
Rcp boolean - Set RSH/RCP - Default value:
false
- rsh
Rcp stringVariable - Variable name
- snmp
Ifindex booleanPersist - Configure SNMP Ifindex Persist - Default value:
true
- snmp
Ifindex stringPersist Variable - Variable name
- source
Interface string - Specify interface for source address in all HTTP(S) client connections
- source
Interface stringVariable - Variable name
- ssh
Version string - Set SSH version - Choices:
2
- ssh
Version stringVariable - Variable name
- tcp
Keepalives booleanIn - Configure tcp-keepalives-in - Default value:
true
- tcp
Keepalives stringIn Variable - Variable name
- tcp
Keepalives booleanOut - Configure tcp-keepalives-out - Default value:
true
- tcp
Keepalives stringOut Variable - Variable name
- tcp
Small booleanServers - Configure tcp-small-servers - Default value:
false
- tcp
Small stringServers Variable - Variable name
- udp
Small booleanServers - Configure udp-small-servers - Default value:
false
- udp
Small stringServers Variable - Variable name
- version number
- The version of the Feature
- vty
Line booleanLogging - Configure VTY Line Logging - Default value:
false
- vty
Line 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
- arp
Proxy Boolean - Set ARP Proxy - Default value:
false
- arp
Proxy StringVariable - Variable name
- cdp Boolean
- Configure CDP - Default value:
true
- cdp
Variable String - Variable name
- console
Logging Boolean - Configure Console Logging - Default value:
true
- console
Logging StringVariable - Variable name
- description String
- The description of the Feature
- domain
Lookup Boolean - Configure Domain-Lookup - Default value:
false
- domain
Lookup StringVariable - Variable name
- feature
Profile StringId - Feature Profile ID
- ftp
Passive Boolean - Set Passive FTP - Default value:
false
- ftp
Passive StringVariable - Variable name
- http
Authentication String - Set preference for HTTP Authentication - Choices:
local
,aaa
- http
Authentication StringVariable - Variable name
- http
Server Boolean - Set a HTTP Server - Default value:
false
- http
Server StringVariable - Variable name
- https
Server Boolean - Set a HTTPS Server - Default value:
false
- https
Server StringVariable - Variable name
- ignore
Bootp Boolean - Configure Ignore BOOTP - Default value:
true
- ignore
Bootp StringVariable - Variable name
- ip
Source BooleanRouting - Set Source Route - Default value:
false
- ip
Source StringRouting Variable - Variable name
- line
Vty Boolean - Configure Telnet (Outbound) - Default value:
false
- line
Vty StringVariable - Variable name
- lldp Boolean
- Configure LLDP - Default value:
true
- lldp
Variable String - Variable name
- name String
- The name of the Feature
- nat64Tcp
Timeout Number - Set NAT64 TCP session timeout, in seconds - Range:
1
-536870
- Default value:3600
- nat64Tcp
Timeout StringVariable - Variable name
- nat64Udp
Timeout Number - Set NAT64 UDP session timeout, in seconds - Range:
1
-536870
- Default value:300
- nat64Udp
Timeout StringVariable - Variable name
- rsh
Rcp Boolean - Set RSH/RCP - Default value:
false
- rsh
Rcp StringVariable - Variable name
- snmp
Ifindex BooleanPersist - Configure SNMP Ifindex Persist - Default value:
true
- snmp
Ifindex StringPersist Variable - Variable name
- source
Interface String - Specify interface for source address in all HTTP(S) client connections
- source
Interface StringVariable - Variable name
- ssh
Version String - Set SSH version - Choices:
2
- ssh
Version StringVariable - Variable name
- tcp
Keepalives BooleanIn - Configure tcp-keepalives-in - Default value:
true
- tcp
Keepalives StringIn Variable - Variable name
- tcp
Keepalives BooleanOut - Configure tcp-keepalives-out - Default value:
true
- tcp
Keepalives StringOut Variable - Variable name
- tcp
Small BooleanServers - Configure tcp-small-servers - Default value:
false
- tcp
Small StringServers Variable - Variable name
- udp
Small BooleanServers - Configure udp-small-servers - Default value:
false
- udp
Small StringServers Variable - Variable name
- version Number
- The version of the Feature
- vty
Line BooleanLogging - Configure VTY Line Logging - Default value:
false
- vty
Line StringLogging Variable - Variable name
Import
$ pulumi import sdwan:index/systemGlobalFeature:SystemGlobalFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.