Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi
published on Tuesday, Feb 24, 2026 by Pulumi
Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi
published on Tuesday, Feb 24, 2026 by Pulumi
This data source can read the Service LAN VPN Interface Ethernet Feature.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = sdwan.getServiceLanVpnInterfaceEthernetFeature({
id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.get_service_lan_vpn_interface_ethernet_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037")
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.LookupServiceLanVpnInterfaceEthernetFeature(ctx, &sdwan.LookupServiceLanVpnInterfaceEthernetFeatureArgs{
Id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
FeatureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
ServiceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
}, nil)
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 = Sdwan.GetServiceLanVpnInterfaceEthernetFeature.Invoke(new()
{
Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
ServiceLanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SdwanFunctions;
import com.pulumi.sdwan.inputs.GetServiceLanVpnInterfaceEthernetFeatureArgs;
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) {
final var example = SdwanFunctions.getServiceLanVpnInterfaceEthernetFeature(GetServiceLanVpnInterfaceEthernetFeatureArgs.builder()
.id("f6b2c44c-693c-4763-b010-895aa3d236bd")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.serviceLanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.build());
}
}
variables:
example:
fn::invoke:
function: sdwan:getServiceLanVpnInterfaceEthernetFeature
arguments:
id: f6b2c44c-693c-4763-b010-895aa3d236bd
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
serviceLanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
Using getServiceLanVpnInterfaceEthernetFeature
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getServiceLanVpnInterfaceEthernetFeature(args: GetServiceLanVpnInterfaceEthernetFeatureArgs, opts?: InvokeOptions): Promise<GetServiceLanVpnInterfaceEthernetFeatureResult>
function getServiceLanVpnInterfaceEthernetFeatureOutput(args: GetServiceLanVpnInterfaceEthernetFeatureOutputArgs, opts?: InvokeOptions): Output<GetServiceLanVpnInterfaceEthernetFeatureResult>def get_service_lan_vpn_interface_ethernet_feature(feature_profile_id: Optional[str] = None,
id: Optional[str] = None,
service_lan_vpn_feature_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetServiceLanVpnInterfaceEthernetFeatureResult
def get_service_lan_vpn_interface_ethernet_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetServiceLanVpnInterfaceEthernetFeatureResult]func LookupServiceLanVpnInterfaceEthernetFeature(ctx *Context, args *LookupServiceLanVpnInterfaceEthernetFeatureArgs, opts ...InvokeOption) (*LookupServiceLanVpnInterfaceEthernetFeatureResult, error)
func LookupServiceLanVpnInterfaceEthernetFeatureOutput(ctx *Context, args *LookupServiceLanVpnInterfaceEthernetFeatureOutputArgs, opts ...InvokeOption) LookupServiceLanVpnInterfaceEthernetFeatureResultOutput> Note: This function is named LookupServiceLanVpnInterfaceEthernetFeature in the Go SDK.
public static class GetServiceLanVpnInterfaceEthernetFeature
{
public static Task<GetServiceLanVpnInterfaceEthernetFeatureResult> InvokeAsync(GetServiceLanVpnInterfaceEthernetFeatureArgs args, InvokeOptions? opts = null)
public static Output<GetServiceLanVpnInterfaceEthernetFeatureResult> Invoke(GetServiceLanVpnInterfaceEthernetFeatureInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetServiceLanVpnInterfaceEthernetFeatureResult> getServiceLanVpnInterfaceEthernetFeature(GetServiceLanVpnInterfaceEthernetFeatureArgs args, InvokeOptions options)
public static Output<GetServiceLanVpnInterfaceEthernetFeatureResult> getServiceLanVpnInterfaceEthernetFeature(GetServiceLanVpnInterfaceEthernetFeatureArgs args, InvokeOptions options)
fn::invoke:
function: sdwan:index/getServiceLanVpnInterfaceEthernetFeature:getServiceLanVpnInterfaceEthernetFeature
arguments:
# arguments dictionaryThe following arguments are supported:
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the Feature
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the Feature
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the Feature
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- feature
Profile stringId - Feature Profile ID
- id string
- The id of the Feature
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- feature_
profile_ strid - Feature Profile ID
- id str
- The id of the Feature
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the Feature
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
getServiceLanVpnInterfaceEthernetFeature Result
The following output properties are available:
- Acl
Ipv4Egress stringPolicy Id - Acl
Ipv4Ingress stringPolicy Id - Acl
Ipv6Egress stringPolicy Id - Acl
Ipv6Ingress stringPolicy Id - Acl
Shaping intRate - Shaping Rate (Kbps)
- Acl
Shaping stringRate Variable - Variable name
- Arp
Timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- Arp
Timeout stringVariable - Variable name
- Arps
List<Get
Service Lan Vpn Interface Ethernet Feature Arp> - Configure ARP entries
- Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6
- Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Icmp
Redirect stringDisable Variable - Variable name
- Id string
- The id of the Feature
- Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Ip
Directed stringBroadcast Variable - Variable name
- Ip
Mtu int - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- Ip
Mtu stringVariable - Variable name
- Ipv4Address string
- IP Address
- Ipv4Address
Variable string - Variable name
- Ipv4Configuration
Type string - IPv4 Configuration Type
- Ipv4Dhcp
Distance int - DHCP Distance
- Ipv4Dhcp
Distance stringVariable - Variable name
- Ipv4Dhcp
Helper stringVariable - Variable name
- Ipv4Dhcp
Helpers List<string> - List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Nat bool
- enable Network Address Translation on this interface
- Ipv4Nat
Loopback string - NAT Inside Source Loopback Interface
- Ipv4Nat
Loopback stringVariable - Variable name
- Ipv4Nat
Overload bool - NAT Overload
- Ipv4Nat
Overload stringVariable - Variable name
- Ipv4Nat
Prefix intLength - NAT Pool Prefix Length
- Ipv4Nat
Prefix stringLength Variable - Variable name
- Ipv4Nat
Range stringEnd - NAT Pool Range End
- Ipv4Nat
Range stringEnd Variable - Variable name
- Ipv4Nat
Range stringStart - NAT Pool Range Start
- Ipv4Nat
Range stringStart Variable - Variable name
- Ipv4Nat
Tcp intTimeout - Set NAT TCP session timeout, in minutes
- Ipv4Nat
Tcp stringTimeout Variable - Variable name
- Ipv4Nat
Udp intTimeout - Set NAT UDP session timeout, in minutes
- Ipv4Nat
Udp stringTimeout Variable - Variable name
- Ipv4Secondary
Addresses List<GetService Lan Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses
- Ipv4Subnet
Mask string - Subnet Mask
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv4Vrrps
List<Get
Service Lan Vpn Interface Ethernet Feature Ipv4Vrrp> - Enable VRRP
- Ipv6Address string
- IPv6 Address Secondary
- Ipv6Address
Variable string - Variable name
- Ipv6Configuration
Type string - IPv6 Configuration Type
- Ipv6Dhcp
Helpers List<GetService Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper> - DHCPv6 Helper
- Ipv6Dhcp
Secondary List<GetAddresses Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address> - secondary IPv6 addresses
- Ipv6Nat bool
- enable Network Address Translation ipv6 on this interface
- Ipv6Secondary
Addresses List<GetService Lan Vpn Interface Ethernet Feature Ipv6Secondary Address> - Static secondary IPv6 addresses
- Ipv6Vrrps
List<Get
Service Lan Vpn Interface Ethernet Feature Ipv6Vrrp> - Enable VRRP Ipv6
- Load
Interval int - Interval for interface load calculation
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Media
Type string - Media type
- Media
Type stringVariable - Variable name
- Name string
- The name of the Feature
- Nat64 bool
- NAT64 on this interface
- Port
Channel boolInterface - Port-Channel interface on/off
- Port
Channel boolLacp Fast Switchover - Eanble lacp fast switchover
- Port
Channel stringLacp Fast Switchover Variable - Variable name
- Port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate
- Port
Channel stringLacp Load Balance Variable - Variable name
- Port
Channel intLacp Max Bundle - Set LACP max bundle
- Port
Channel stringLacp Max Bundle Variable - Variable name
- Port
Channel List<GetLacp Member Links Service Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link> - Configure Port-Channel member links
- Port
Channel intLacp Min Bundle - Set LACP min bundle
- Port
Channel stringLacp Min Bundle Variable - Variable name
- Port
Channel boolLacp Qos Aggregate - Enable QoS Port-Channel aggregate
- Port
Channel stringLacp Qos Aggregate Variable - Variable name
- Port
Channel boolMember Interface - Port-Channel member interface on/off
- Port
Channel stringMode - Port Channel Mode
- Port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate
- Port
Channel stringStatic Load Balance Variable - Variable name
- Port
Channel List<GetStatic Member Links Service Lan Vpn Interface Ethernet Feature Port Channel Static Member Link> - Configure Port-Channel member links
- Port
Channel boolStatic Qos Aggregate - Enable QoS Port-Channel aggregate
- Port
Channel stringStatic Qos Aggregate Variable - Variable name
- Port
Channel boolSubinterface - Port Channel Sub Interface on/off
- Port
Channel stringSubinterface Primary Interface Name - Port
Channel stringSubinterface Primary Interface Name Variable - Variable name
- Port
Channel stringSubinterface Secondary Interface Name - Port
Channel stringSubinterface Secondary Interface Name Variable - Variable name
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed
- Speed
Variable string - Variable name
- Static
Nats List<GetService Lan Vpn Interface Ethernet Feature Static Nat> - static NAT
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Tcp
Mss stringVariable - Variable name
- Trustsec
Enable boolEnforced Propogation - Enable/Disable SGT Enforcement on an interface
- Trustsec
Enable boolSgt Propogation - Indicates that the interface is trustworthy for CTS
- Trustsec
Enforced intSecurity Group Tag - SGT value between 2 and 65519
- Trustsec
Enforced stringSecurity Group Tag Variable - Variable name
- Trustsec
Propogate bool - Enables the interface for CTS SGT authorization and forwarding
- Trustsec
Security intGroup Tag - SGT value between 2 and 65519
- Trustsec
Security stringGroup Tag Variable - Variable name
- Version int
- The version of the Feature
- Xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- Xconnect
Variable string - Variable name
- Acl
Ipv4Egress stringPolicy Id - Acl
Ipv4Ingress stringPolicy Id - Acl
Ipv6Egress stringPolicy Id - Acl
Ipv6Ingress stringPolicy Id - Acl
Shaping intRate - Shaping Rate (Kbps)
- Acl
Shaping stringRate Variable - Variable name
- Arp
Timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- Arp
Timeout stringVariable - Variable name
- Arps
[]Get
Service Lan Vpn Interface Ethernet Feature Arp - Configure ARP entries
- Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6
- Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Icmp
Redirect stringDisable Variable - Variable name
- Id string
- The id of the Feature
- Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Ip
Directed stringBroadcast Variable - Variable name
- Ip
Mtu int - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- Ip
Mtu stringVariable - Variable name
- Ipv4Address string
- IP Address
- Ipv4Address
Variable string - Variable name
- Ipv4Configuration
Type string - IPv4 Configuration Type
- Ipv4Dhcp
Distance int - DHCP Distance
- Ipv4Dhcp
Distance stringVariable - Variable name
- Ipv4Dhcp
Helper stringVariable - Variable name
- Ipv4Dhcp
Helpers []string - List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Nat bool
- enable Network Address Translation on this interface
- Ipv4Nat
Loopback string - NAT Inside Source Loopback Interface
- Ipv4Nat
Loopback stringVariable - Variable name
- Ipv4Nat
Overload bool - NAT Overload
- Ipv4Nat
Overload stringVariable - Variable name
- Ipv4Nat
Prefix intLength - NAT Pool Prefix Length
- Ipv4Nat
Prefix stringLength Variable - Variable name
- Ipv4Nat
Range stringEnd - NAT Pool Range End
- Ipv4Nat
Range stringEnd Variable - Variable name
- Ipv4Nat
Range stringStart - NAT Pool Range Start
- Ipv4Nat
Range stringStart Variable - Variable name
- Ipv4Nat
Tcp intTimeout - Set NAT TCP session timeout, in minutes
- Ipv4Nat
Tcp stringTimeout Variable - Variable name
- Ipv4Nat
Udp intTimeout - Set NAT UDP session timeout, in minutes
- Ipv4Nat
Udp stringTimeout Variable - Variable name
- Ipv4Secondary
Addresses []GetService Lan Vpn Interface Ethernet Feature Ipv4Secondary Address - Secondary IpV4 Addresses
- Ipv4Subnet
Mask string - Subnet Mask
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv4Vrrps
[]Get
Service Lan Vpn Interface Ethernet Feature Ipv4Vrrp - Enable VRRP
- Ipv6Address string
- IPv6 Address Secondary
- Ipv6Address
Variable string - Variable name
- Ipv6Configuration
Type string - IPv6 Configuration Type
- Ipv6Dhcp
Helpers []GetService Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper - DHCPv6 Helper
- Ipv6Dhcp
Secondary []GetAddresses Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address - secondary IPv6 addresses
- Ipv6Nat bool
- enable Network Address Translation ipv6 on this interface
- Ipv6Secondary
Addresses []GetService Lan Vpn Interface Ethernet Feature Ipv6Secondary Address - Static secondary IPv6 addresses
- Ipv6Vrrps
[]Get
Service Lan Vpn Interface Ethernet Feature Ipv6Vrrp - Enable VRRP Ipv6
- Load
Interval int - Interval for interface load calculation
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Media
Type string - Media type
- Media
Type stringVariable - Variable name
- Name string
- The name of the Feature
- Nat64 bool
- NAT64 on this interface
- Port
Channel boolInterface - Port-Channel interface on/off
- Port
Channel boolLacp Fast Switchover - Eanble lacp fast switchover
- Port
Channel stringLacp Fast Switchover Variable - Variable name
- Port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate
- Port
Channel stringLacp Load Balance Variable - Variable name
- Port
Channel intLacp Max Bundle - Set LACP max bundle
- Port
Channel stringLacp Max Bundle Variable - Variable name
- Port
Channel []GetLacp Member Links Service Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link - Configure Port-Channel member links
- Port
Channel intLacp Min Bundle - Set LACP min bundle
- Port
Channel stringLacp Min Bundle Variable - Variable name
- Port
Channel boolLacp Qos Aggregate - Enable QoS Port-Channel aggregate
- Port
Channel stringLacp Qos Aggregate Variable - Variable name
- Port
Channel boolMember Interface - Port-Channel member interface on/off
- Port
Channel stringMode - Port Channel Mode
- Port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate
- Port
Channel stringStatic Load Balance Variable - Variable name
- Port
Channel []GetStatic Member Links Service Lan Vpn Interface Ethernet Feature Port Channel Static Member Link - Configure Port-Channel member links
- Port
Channel boolStatic Qos Aggregate - Enable QoS Port-Channel aggregate
- Port
Channel stringStatic Qos Aggregate Variable - Variable name
- Port
Channel boolSubinterface - Port Channel Sub Interface on/off
- Port
Channel stringSubinterface Primary Interface Name - Port
Channel stringSubinterface Primary Interface Name Variable - Variable name
- Port
Channel stringSubinterface Secondary Interface Name - Port
Channel stringSubinterface Secondary Interface Name Variable - Variable name
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed
- Speed
Variable string - Variable name
- Static
Nats []GetService Lan Vpn Interface Ethernet Feature Static Nat - static NAT
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Tcp
Mss stringVariable - Variable name
- Trustsec
Enable boolEnforced Propogation - Enable/Disable SGT Enforcement on an interface
- Trustsec
Enable boolSgt Propogation - Indicates that the interface is trustworthy for CTS
- Trustsec
Enforced intSecurity Group Tag - SGT value between 2 and 65519
- Trustsec
Enforced stringSecurity Group Tag Variable - Variable name
- Trustsec
Propogate bool - Enables the interface for CTS SGT authorization and forwarding
- Trustsec
Security intGroup Tag - SGT value between 2 and 65519
- Trustsec
Security stringGroup Tag Variable - Variable name
- Version int
- The version of the Feature
- Xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- Xconnect
Variable string - Variable name
- acl
Ipv4Egress StringPolicy Id - acl
Ipv4Ingress StringPolicy Id - acl
Ipv6Egress StringPolicy Id - acl
Ipv6Ingress StringPolicy Id - acl
Shaping IntegerRate - Shaping Rate (Kbps)
- acl
Shaping StringRate Variable - Variable name
- arp
Timeout Integer - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout StringVariable - Variable name
- arps
List<Get
Service Lan Vpn Interface Ethernet Feature Arp> - Configure ARP entries
- autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6
- feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect StringDisable Variable - Variable name
- id String
- The id of the Feature
- interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Integer - Interface MTU
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu Integer - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address
- ipv4Address
Variable String - Variable name
- ipv4Configuration
Type String - IPv4 Configuration Type
- ipv4Dhcp
Distance Integer - DHCP Distance
- ipv4Dhcp
Distance StringVariable - Variable name
- ipv4Dhcp
Helper StringVariable - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Nat Boolean
- enable Network Address Translation on this interface
- ipv4Nat
Loopback String - NAT Inside Source Loopback Interface
- ipv4Nat
Loopback StringVariable - Variable name
- ipv4Nat
Overload Boolean - NAT Overload
- ipv4Nat
Overload StringVariable - Variable name
- ipv4Nat
Prefix IntegerLength - NAT Pool Prefix Length
- ipv4Nat
Prefix StringLength Variable - Variable name
- ipv4Nat
Range StringEnd - NAT Pool Range End
- ipv4Nat
Range StringEnd Variable - Variable name
- ipv4Nat
Range StringStart - NAT Pool Range Start
- ipv4Nat
Range StringStart Variable - Variable name
- ipv4Nat
Tcp IntegerTimeout - Set NAT TCP session timeout, in minutes
- ipv4Nat
Tcp StringTimeout Variable - Variable name
- ipv4Nat
Udp IntegerTimeout - Set NAT UDP session timeout, in minutes
- ipv4Nat
Udp StringTimeout Variable - Variable name
- ipv4Secondary
Addresses List<GetService Lan Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses
- ipv4Subnet
Mask String - Subnet Mask
- ipv4Subnet
Mask StringVariable - Variable name
- ipv4Vrrps
List<Get
Service Lan Vpn Interface Ethernet Feature Ipv4Vrrp> - Enable VRRP
- ipv6Address String
- IPv6 Address Secondary
- ipv6Address
Variable String - Variable name
- ipv6Configuration
Type String - IPv6 Configuration Type
- ipv6Dhcp
Helpers List<GetService Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper> - DHCPv6 Helper
- ipv6Dhcp
Secondary List<GetAddresses Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address> - secondary IPv6 addresses
- ipv6Nat Boolean
- enable Network Address Translation ipv6 on this interface
- ipv6Secondary
Addresses List<GetService Lan Vpn Interface Ethernet Feature Ipv6Secondary Address> - Static secondary IPv6 addresses
- ipv6Vrrps
List<Get
Service Lan Vpn Interface Ethernet Feature Ipv6Vrrp> - Enable VRRP Ipv6
- load
Interval Integer - Interval for interface load calculation
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- media
Type String - Media type
- media
Type StringVariable - Variable name
- name String
- The name of the Feature
- nat64 Boolean
- NAT64 on this interface
- port
Channel BooleanInterface - Port-Channel interface on/off
- port
Channel BooleanLacp Fast Switchover - Eanble lacp fast switchover
- port
Channel StringLacp Fast Switchover Variable - Variable name
- port
Channel StringLacp Load Balance - Enable QoS Port-Channel aggregate
- port
Channel StringLacp Load Balance Variable - Variable name
- port
Channel IntegerLacp Max Bundle - Set LACP max bundle
- port
Channel StringLacp Max Bundle Variable - Variable name
- port
Channel List<GetLacp Member Links Service Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link> - Configure Port-Channel member links
- port
Channel IntegerLacp Min Bundle - Set LACP min bundle
- port
Channel StringLacp Min Bundle Variable - Variable name
- port
Channel BooleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel StringLacp Qos Aggregate Variable - Variable name
- port
Channel BooleanMember Interface - Port-Channel member interface on/off
- port
Channel StringMode - Port Channel Mode
- port
Channel StringStatic Load Balance - Enable QoS Port-Channel aggregate
- port
Channel StringStatic Load Balance Variable - Variable name
- port
Channel List<GetStatic Member Links Service Lan Vpn Interface Ethernet Feature Port Channel Static Member Link> - Configure Port-Channel member links
- port
Channel BooleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel StringStatic Qos Aggregate Variable - Variable name
- port
Channel BooleanSubinterface - Port Channel Sub Interface on/off
- port
Channel StringSubinterface Primary Interface Name - port
Channel StringSubinterface Primary Interface Name Variable - Variable name
- port
Channel StringSubinterface Secondary Interface Name - port
Channel StringSubinterface Secondary Interface Name Variable - Variable name
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- shutdown
Variable String - Variable name
- speed String
- Set interface speed
- speed
Variable String - Variable name
- static
Nats List<GetService Lan Vpn Interface Ethernet Feature Static Nat> - static NAT
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes
- tcp
Mss StringVariable - Variable name
- trustsec
Enable BooleanEnforced Propogation - Enable/Disable SGT Enforcement on an interface
- trustsec
Enable BooleanSgt Propogation - Indicates that the interface is trustworthy for CTS
- trustsec
Enforced IntegerSecurity Group Tag - SGT value between 2 and 65519
- trustsec
Enforced StringSecurity Group Tag Variable - Variable name
- trustsec
Propogate Boolean - Enables the interface for CTS SGT authorization and forwarding
- trustsec
Security IntegerGroup Tag - SGT value between 2 and 65519
- trustsec
Security StringGroup Tag Variable - Variable name
- version Integer
- The version of the Feature
- xconnect String
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- xconnect
Variable String - Variable name
- acl
Ipv4Egress stringPolicy Id - acl
Ipv4Ingress stringPolicy Id - acl
Ipv6Egress stringPolicy Id - acl
Ipv6Ingress stringPolicy Id - acl
Shaping numberRate - Shaping Rate (Kbps)
- acl
Shaping stringRate Variable - Variable name
- arp
Timeout number - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout stringVariable - Variable name
- arps
Get
Service Lan Vpn Interface Ethernet Feature Arp[] - Configure ARP entries
- autonegotiate boolean
- Link autonegotiation
- autonegotiate
Variable string - Variable name
- description string
- The description of the Feature
- duplex string
- Duplex mode
- duplex
Variable string - Variable name
- enable
Dhcpv6 boolean - Enable DHCPv6
- feature
Profile stringId - Feature Profile ID
- icmp
Redirect booleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect stringDisable Variable - Variable name
- id string
- The id of the Feature
- interface
Description string - interface
Description stringVariable - Variable name
- interface
Mtu number - Interface MTU
- interface
Mtu stringVariable - Variable name
- interface
Name string - interface
Name stringVariable - Variable name
- ip
Directed booleanBroadcast - IP Directed-Broadcast
- ip
Directed stringBroadcast Variable - Variable name
- ip
Mtu number - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip
Mtu stringVariable - Variable name
- ipv4Address string
- IP Address
- ipv4Address
Variable string - Variable name
- ipv4Configuration
Type string - IPv4 Configuration Type
- ipv4Dhcp
Distance number - DHCP Distance
- ipv4Dhcp
Distance stringVariable - Variable name
- ipv4Dhcp
Helper stringVariable - Variable name
- ipv4Dhcp
Helpers string[] - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Nat boolean
- enable Network Address Translation on this interface
- ipv4Nat
Loopback string - NAT Inside Source Loopback Interface
- ipv4Nat
Loopback stringVariable - Variable name
- ipv4Nat
Overload boolean - NAT Overload
- ipv4Nat
Overload stringVariable - Variable name
- ipv4Nat
Prefix numberLength - NAT Pool Prefix Length
- ipv4Nat
Prefix stringLength Variable - Variable name
- ipv4Nat
Range stringEnd - NAT Pool Range End
- ipv4Nat
Range stringEnd Variable - Variable name
- ipv4Nat
Range stringStart - NAT Pool Range Start
- ipv4Nat
Range stringStart Variable - Variable name
- ipv4Nat
Tcp numberTimeout - Set NAT TCP session timeout, in minutes
- ipv4Nat
Tcp stringTimeout Variable - Variable name
- ipv4Nat
Udp numberTimeout - Set NAT UDP session timeout, in minutes
- ipv4Nat
Udp stringTimeout Variable - Variable name
- ipv4Secondary
Addresses GetService Lan Vpn Interface Ethernet Feature Ipv4Secondary Address[] - Secondary IpV4 Addresses
- ipv4Subnet
Mask string - Subnet Mask
- ipv4Subnet
Mask stringVariable - Variable name
- ipv4Vrrps
Get
Service Lan Vpn Interface Ethernet Feature Ipv4Vrrp[] - Enable VRRP
- ipv6Address string
- IPv6 Address Secondary
- ipv6Address
Variable string - Variable name
- ipv6Configuration
Type string - IPv6 Configuration Type
- ipv6Dhcp
Helpers GetService Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper[] - DHCPv6 Helper
- ipv6Dhcp
Secondary GetAddresses Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address[] - secondary IPv6 addresses
- ipv6Nat boolean
- enable Network Address Translation ipv6 on this interface
- ipv6Secondary
Addresses GetService Lan Vpn Interface Ethernet Feature Ipv6Secondary Address[] - Static secondary IPv6 addresses
- ipv6Vrrps
Get
Service Lan Vpn Interface Ethernet Feature Ipv6Vrrp[] - Enable VRRP Ipv6
- load
Interval number - Interval for interface load calculation
- load
Interval stringVariable - Variable name
- mac
Address string - MAC Address
- mac
Address stringVariable - Variable name
- media
Type string - Media type
- media
Type stringVariable - Variable name
- name string
- The name of the Feature
- nat64 boolean
- NAT64 on this interface
- port
Channel booleanInterface - Port-Channel interface on/off
- port
Channel booleanLacp Fast Switchover - Eanble lacp fast switchover
- port
Channel stringLacp Fast Switchover Variable - Variable name
- port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate
- port
Channel stringLacp Load Balance Variable - Variable name
- port
Channel numberLacp Max Bundle - Set LACP max bundle
- port
Channel stringLacp Max Bundle Variable - Variable name
- port
Channel GetLacp Member Links Service Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link[] - Configure Port-Channel member links
- port
Channel numberLacp Min Bundle - Set LACP min bundle
- port
Channel stringLacp Min Bundle Variable - Variable name
- port
Channel booleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel stringLacp Qos Aggregate Variable - Variable name
- port
Channel booleanMember Interface - Port-Channel member interface on/off
- port
Channel stringMode - Port Channel Mode
- port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate
- port
Channel stringStatic Load Balance Variable - Variable name
- port
Channel GetStatic Member Links Service Lan Vpn Interface Ethernet Feature Port Channel Static Member Link[] - Configure Port-Channel member links
- port
Channel booleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel stringStatic Qos Aggregate Variable - Variable name
- port
Channel booleanSubinterface - Port Channel Sub Interface on/off
- port
Channel stringSubinterface Primary Interface Name - port
Channel stringSubinterface Primary Interface Name Variable - Variable name
- port
Channel stringSubinterface Secondary Interface Name - port
Channel stringSubinterface Secondary Interface Name Variable - Variable name
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- shutdown boolean
- shutdown
Variable string - Variable name
- speed string
- Set interface speed
- speed
Variable string - Variable name
- static
Nats GetService Lan Vpn Interface Ethernet Feature Static Nat[] - static NAT
- tcp
Mss number - TCP MSS on SYN packets, in bytes
- tcp
Mss stringVariable - Variable name
- trustsec
Enable booleanEnforced Propogation - Enable/Disable SGT Enforcement on an interface
- trustsec
Enable booleanSgt Propogation - Indicates that the interface is trustworthy for CTS
- trustsec
Enforced numberSecurity Group Tag - SGT value between 2 and 65519
- trustsec
Enforced stringSecurity Group Tag Variable - Variable name
- trustsec
Propogate boolean - Enables the interface for CTS SGT authorization and forwarding
- trustsec
Security numberGroup Tag - SGT value between 2 and 65519
- trustsec
Security stringGroup Tag Variable - Variable name
- version number
- The version of the Feature
- xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- xconnect
Variable string - Variable name
- acl_
ipv4_ stregress_ policy_ id - acl_
ipv4_ stringress_ policy_ id - acl_
ipv6_ stregress_ policy_ id - acl_
ipv6_ stringress_ policy_ id - acl_
shaping_ intrate - Shaping Rate (Kbps)
- acl_
shaping_ strrate_ variable - Variable name
- arp_
timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp_
timeout_ strvariable - Variable name
- arps
Sequence[Get
Service Lan Vpn Interface Ethernet Feature Arp] - Configure ARP entries
- autonegotiate bool
- Link autonegotiation
- autonegotiate_
variable str - Variable name
- description str
- The description of the Feature
- duplex str
- Duplex mode
- duplex_
variable str - Variable name
- enable_
dhcpv6 bool - Enable DHCPv6
- feature_
profile_ strid - Feature Profile ID
- icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable
- icmp_
redirect_ strdisable_ variable - Variable name
- id str
- The id of the Feature
- interface_
description str - interface_
description_ strvariable - Variable name
- interface_
mtu int - Interface MTU
- interface_
mtu_ strvariable - Variable name
- interface_
name str - interface_
name_ strvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast
- ip_
directed_ strbroadcast_ variable - Variable name
- ip_
mtu int - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip_
mtu_ strvariable - Variable name
- ipv4_
address str - IP Address
- ipv4_
address_ strvariable - Variable name
- ipv4_
configuration_ strtype - IPv4 Configuration Type
- ipv4_
dhcp_ intdistance - DHCP Distance
- ipv4_
dhcp_ strdistance_ variable - Variable name
- ipv4_
dhcp_ strhelper_ variable - Variable name
- ipv4_
dhcp_ Sequence[str]helpers - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4_
nat bool - enable Network Address Translation on this interface
- ipv4_
nat_ strloopback - NAT Inside Source Loopback Interface
- ipv4_
nat_ strloopback_ variable - Variable name
- ipv4_
nat_ booloverload - NAT Overload
- ipv4_
nat_ stroverload_ variable - Variable name
- ipv4_
nat_ intprefix_ length - NAT Pool Prefix Length
- ipv4_
nat_ strprefix_ length_ variable - Variable name
- ipv4_
nat_ strrange_ end - NAT Pool Range End
- ipv4_
nat_ strrange_ end_ variable - Variable name
- ipv4_
nat_ strrange_ start - NAT Pool Range Start
- ipv4_
nat_ strrange_ start_ variable - Variable name
- ipv4_
nat_ inttcp_ timeout - Set NAT TCP session timeout, in minutes
- ipv4_
nat_ strtcp_ timeout_ variable - Variable name
- ipv4_
nat_ intudp_ timeout - Set NAT UDP session timeout, in minutes
- ipv4_
nat_ strudp_ timeout_ variable - Variable name
- ipv4_
secondary_ Sequence[Getaddresses Service Lan Vpn Interface Ethernet Feature Ipv4Secondary Address] - Secondary IpV4 Addresses
- ipv4_
subnet_ strmask - Subnet Mask
- ipv4_
subnet_ strmask_ variable - Variable name
- ipv4_
vrrps Sequence[GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp] - Enable VRRP
- ipv6_
address str - IPv6 Address Secondary
- ipv6_
address_ strvariable - Variable name
- ipv6_
configuration_ strtype - IPv6 Configuration Type
- ipv6_
dhcp_ Sequence[Gethelpers Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper] - DHCPv6 Helper
- ipv6_
dhcp_ Sequence[Getsecondary_ addresses Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address] - secondary IPv6 addresses
- ipv6_
nat bool - enable Network Address Translation ipv6 on this interface
- ipv6_
secondary_ Sequence[Getaddresses Service Lan Vpn Interface Ethernet Feature Ipv6Secondary Address] - Static secondary IPv6 addresses
- ipv6_
vrrps Sequence[GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp] - Enable VRRP Ipv6
- load_
interval int - Interval for interface load calculation
- load_
interval_ strvariable - Variable name
- mac_
address str - MAC Address
- mac_
address_ strvariable - Variable name
- media_
type str - Media type
- media_
type_ strvariable - Variable name
- name str
- The name of the Feature
- nat64 bool
- NAT64 on this interface
- port_
channel_ boolinterface - Port-Channel interface on/off
- port_
channel_ boollacp_ fast_ switchover - Eanble lacp fast switchover
- port_
channel_ strlacp_ fast_ switchover_ variable - Variable name
- port_
channel_ strlacp_ load_ balance - Enable QoS Port-Channel aggregate
- port_
channel_ strlacp_ load_ balance_ variable - Variable name
- port_
channel_ intlacp_ max_ bundle - Set LACP max bundle
- port_
channel_ strlacp_ max_ bundle_ variable - Variable name
- port_
channel_ Sequence[Getlacp_ member_ links Service Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link] - Configure Port-Channel member links
- port_
channel_ intlacp_ min_ bundle - Set LACP min bundle
- port_
channel_ strlacp_ min_ bundle_ variable - Variable name
- port_
channel_ boollacp_ qos_ aggregate - Enable QoS Port-Channel aggregate
- port_
channel_ strlacp_ qos_ aggregate_ variable - Variable name
- port_
channel_ boolmember_ interface - Port-Channel member interface on/off
- port_
channel_ strmode - Port Channel Mode
- port_
channel_ strstatic_ load_ balance - Enable QoS Port-Channel aggregate
- port_
channel_ strstatic_ load_ balance_ variable - Variable name
- port_
channel_ Sequence[Getstatic_ member_ links Service Lan Vpn Interface Ethernet Feature Port Channel Static Member Link] - Configure Port-Channel member links
- port_
channel_ boolstatic_ qos_ aggregate - Enable QoS Port-Channel aggregate
- port_
channel_ strstatic_ qos_ aggregate_ variable - Variable name
- port_
channel_ boolsubinterface - Port Channel Sub Interface on/off
- port_
channel_ strsubinterface_ primary_ interface_ name - port_
channel_ strsubinterface_ primary_ interface_ name_ variable - Variable name
- port_
channel_ strsubinterface_ secondary_ interface_ name - port_
channel_ strsubinterface_ secondary_ interface_ name_ variable - Variable name
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- shutdown bool
- shutdown_
variable str - Variable name
- speed str
- Set interface speed
- speed_
variable str - Variable name
- static_
nats Sequence[GetService Lan Vpn Interface Ethernet Feature Static Nat] - static NAT
- tcp_
mss int - TCP MSS on SYN packets, in bytes
- tcp_
mss_ strvariable - Variable name
- trustsec_
enable_ boolenforced_ propogation - Enable/Disable SGT Enforcement on an interface
- trustsec_
enable_ boolsgt_ propogation - Indicates that the interface is trustworthy for CTS
- trustsec_
enforced_ intsecurity_ group_ tag - SGT value between 2 and 65519
- trustsec_
enforced_ strsecurity_ group_ tag_ variable - Variable name
- trustsec_
propogate bool - Enables the interface for CTS SGT authorization and forwarding
- trustsec_
security_ intgroup_ tag - SGT value between 2 and 65519
- trustsec_
security_ strgroup_ tag_ variable - Variable name
- version int
- The version of the Feature
- xconnect str
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- xconnect_
variable str - Variable name
- acl
Ipv4Egress StringPolicy Id - acl
Ipv4Ingress StringPolicy Id - acl
Ipv6Egress StringPolicy Id - acl
Ipv6Ingress StringPolicy Id - acl
Shaping NumberRate - Shaping Rate (Kbps)
- acl
Shaping StringRate Variable - Variable name
- arp
Timeout Number - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout StringVariable - Variable name
- arps List<Property Map>
- Configure ARP entries
- autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6
- feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect StringDisable Variable - Variable name
- id String
- The id of the Feature
- interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Number - Interface MTU
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu Number - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address
- ipv4Address
Variable String - Variable name
- ipv4Configuration
Type String - IPv4 Configuration Type
- ipv4Dhcp
Distance Number - DHCP Distance
- ipv4Dhcp
Distance StringVariable - Variable name
- ipv4Dhcp
Helper StringVariable - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Nat Boolean
- enable Network Address Translation on this interface
- ipv4Nat
Loopback String - NAT Inside Source Loopback Interface
- ipv4Nat
Loopback StringVariable - Variable name
- ipv4Nat
Overload Boolean - NAT Overload
- ipv4Nat
Overload StringVariable - Variable name
- ipv4Nat
Prefix NumberLength - NAT Pool Prefix Length
- ipv4Nat
Prefix StringLength Variable - Variable name
- ipv4Nat
Range StringEnd - NAT Pool Range End
- ipv4Nat
Range StringEnd Variable - Variable name
- ipv4Nat
Range StringStart - NAT Pool Range Start
- ipv4Nat
Range StringStart Variable - Variable name
- ipv4Nat
Tcp NumberTimeout - Set NAT TCP session timeout, in minutes
- ipv4Nat
Tcp StringTimeout Variable - Variable name
- ipv4Nat
Udp NumberTimeout - Set NAT UDP session timeout, in minutes
- ipv4Nat
Udp StringTimeout Variable - Variable name
- ipv4Secondary
Addresses List<Property Map> - Secondary IpV4 Addresses
- ipv4Subnet
Mask String - Subnet Mask
- ipv4Subnet
Mask StringVariable - Variable name
- ipv4Vrrps List<Property Map>
- Enable VRRP
- ipv6Address String
- IPv6 Address Secondary
- ipv6Address
Variable String - Variable name
- ipv6Configuration
Type String - IPv6 Configuration Type
- ipv6Dhcp
Helpers List<Property Map> - DHCPv6 Helper
- ipv6Dhcp
Secondary List<Property Map>Addresses - secondary IPv6 addresses
- ipv6Nat Boolean
- enable Network Address Translation ipv6 on this interface
- ipv6Secondary
Addresses List<Property Map> - Static secondary IPv6 addresses
- ipv6Vrrps List<Property Map>
- Enable VRRP Ipv6
- load
Interval Number - Interval for interface load calculation
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- media
Type String - Media type
- media
Type StringVariable - Variable name
- name String
- The name of the Feature
- nat64 Boolean
- NAT64 on this interface
- port
Channel BooleanInterface - Port-Channel interface on/off
- port
Channel BooleanLacp Fast Switchover - Eanble lacp fast switchover
- port
Channel StringLacp Fast Switchover Variable - Variable name
- port
Channel StringLacp Load Balance - Enable QoS Port-Channel aggregate
- port
Channel StringLacp Load Balance Variable - Variable name
- port
Channel NumberLacp Max Bundle - Set LACP max bundle
- port
Channel StringLacp Max Bundle Variable - Variable name
- port
Channel List<Property Map>Lacp Member Links - Configure Port-Channel member links
- port
Channel NumberLacp Min Bundle - Set LACP min bundle
- port
Channel StringLacp Min Bundle Variable - Variable name
- port
Channel BooleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel StringLacp Qos Aggregate Variable - Variable name
- port
Channel BooleanMember Interface - Port-Channel member interface on/off
- port
Channel StringMode - Port Channel Mode
- port
Channel StringStatic Load Balance - Enable QoS Port-Channel aggregate
- port
Channel StringStatic Load Balance Variable - Variable name
- port
Channel List<Property Map>Static Member Links - Configure Port-Channel member links
- port
Channel BooleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel StringStatic Qos Aggregate Variable - Variable name
- port
Channel BooleanSubinterface - Port Channel Sub Interface on/off
- port
Channel StringSubinterface Primary Interface Name - port
Channel StringSubinterface Primary Interface Name Variable - Variable name
- port
Channel StringSubinterface Secondary Interface Name - port
Channel StringSubinterface Secondary Interface Name Variable - Variable name
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- shutdown
Variable String - Variable name
- speed String
- Set interface speed
- speed
Variable String - Variable name
- static
Nats List<Property Map> - static NAT
- tcp
Mss Number - TCP MSS on SYN packets, in bytes
- tcp
Mss StringVariable - Variable name
- trustsec
Enable BooleanEnforced Propogation - Enable/Disable SGT Enforcement on an interface
- trustsec
Enable BooleanSgt Propogation - Indicates that the interface is trustworthy for CTS
- trustsec
Enforced NumberSecurity Group Tag - SGT value between 2 and 65519
- trustsec
Enforced StringSecurity Group Tag Variable - Variable name
- trustsec
Propogate Boolean - Enables the interface for CTS SGT authorization and forwarding
- trustsec
Security NumberGroup Tag - SGT value between 2 and 65519
- trustsec
Security StringGroup Tag Variable - Variable name
- version Number
- The version of the Feature
- xconnect String
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- xconnect
Variable String - Variable name
Supporting Types
GetServiceLanVpnInterfaceEthernetFeatureArp
- Ip
Address string - IPV4 Address
- Ip
Address stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Ip
Address string - IPV4 Address
- Ip
Address stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- ip
Address String - IPV4 Address
- ip
Address StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- ip
Address string - IPV4 Address
- ip
Address stringVariable - Variable name
- mac
Address string - MAC Address
- mac
Address stringVariable - Variable name
- ip_
address str - IPV4 Address
- ip_
address_ strvariable - Variable name
- mac_
address str - MAC Address
- mac_
address_ strvariable - Variable name
- ip
Address String - IPV4 Address
- ip
Address StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddress
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Subnet
Mask stringVariable - Variable name
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Subnet
Mask stringVariable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- subnet
Mask StringVariable - Variable name
- address string
- IpV4 Address
- address
Variable string - Variable name
- subnet
Mask string - Subnet Mask
- subnet
Mask stringVariable - Variable name
- address str
- IpV4 Address
- address_
variable str - Variable name
- subnet_
mask str - Subnet Mask
- subnet_
mask_ strvariable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- subnet
Mask StringVariable - Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv4Vrrp
- Address string
- VRRP Ip Address
- Address
Variable string - Variable name
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Group
Id int - Group ID
- Group
Id stringVariable - Variable name
- Min
Preempt intDelay - Minimum preempt delay in seconds
- Min
Preempt stringDelay Variable - Variable name
- Priority int
- Set priority
- Priority
Variable string - Variable name
- Secondary
Addresses List<GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address> - VRRP Secondary Ip Addresses
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Timer
Variable string - Variable name
- Tloc
Pref intChange Value - Timer interval for successive advertisements, in milliseconds
- Tloc
Prefix boolChange - Timer interval for successive advertisements, in milliseconds
- Track
Omp bool - Track OMP status
- Tracking
Objects List<GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object> - Tracking object for VRRP configuration
- Address string
- VRRP Ip Address
- Address
Variable string - Variable name
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Group
Id int - Group ID
- Group
Id stringVariable - Variable name
- Min
Preempt intDelay - Minimum preempt delay in seconds
- Min
Preempt stringDelay Variable - Variable name
- Priority int
- Set priority
- Priority
Variable string - Variable name
- Secondary
Addresses []GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address - VRRP Secondary Ip Addresses
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Timer
Variable string - Variable name
- Tloc
Pref intChange Value - Timer interval for successive advertisements, in milliseconds
- Tloc
Prefix boolChange - Timer interval for successive advertisements, in milliseconds
- Track
Omp bool - Track OMP status
- Tracking
Objects []GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object - Tracking object for VRRP configuration
- address String
- VRRP Ip Address
- address
Variable String - Variable name
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id Integer - Group ID
- group
Id StringVariable - Variable name
- min
Preempt IntegerDelay - Minimum preempt delay in seconds
- min
Preempt StringDelay Variable - Variable name
- priority Integer
- Set priority
- priority
Variable String - Variable name
- secondary
Addresses List<GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address> - VRRP Secondary Ip Addresses
- timer Integer
- Timer interval for successive advertisements, in milliseconds
- timer
Variable String - Variable name
- tloc
Pref IntegerChange Value - Timer interval for successive advertisements, in milliseconds
- tloc
Prefix BooleanChange - Timer interval for successive advertisements, in milliseconds
- track
Omp Boolean - Track OMP status
- tracking
Objects List<GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object> - Tracking object for VRRP configuration
- address string
- VRRP Ip Address
- address
Variable string - Variable name
- follow
Dual booleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id number - Group ID
- group
Id stringVariable - Variable name
- min
Preempt numberDelay - Minimum preempt delay in seconds
- min
Preempt stringDelay Variable - Variable name
- priority number
- Set priority
- priority
Variable string - Variable name
- secondary
Addresses GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address[] - VRRP Secondary Ip Addresses
- timer number
- Timer interval for successive advertisements, in milliseconds
- timer
Variable string - Variable name
- tloc
Pref numberChange Value - Timer interval for successive advertisements, in milliseconds
- tloc
Prefix booleanChange - Timer interval for successive advertisements, in milliseconds
- track
Omp boolean - Track OMP status
- tracking
Objects GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object[] - Tracking object for VRRP configuration
- address str
- VRRP Ip Address
- address_
variable str - Variable name
- follow_
dual_ boolrouter_ high_ availability - Follow RG state by default when B2B HA is configured
- group_
id int - Group ID
- group_
id_ strvariable - Variable name
- min_
preempt_ intdelay - Minimum preempt delay in seconds
- min_
preempt_ strdelay_ variable - Variable name
- priority int
- Set priority
- priority_
variable str - Variable name
- secondary_
addresses Sequence[GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address] - VRRP Secondary Ip Addresses
- timer int
- Timer interval for successive advertisements, in milliseconds
- timer_
variable str - Variable name
- tloc_
pref_ intchange_ value - Timer interval for successive advertisements, in milliseconds
- tloc_
prefix_ boolchange - Timer interval for successive advertisements, in milliseconds
- track_
omp bool - Track OMP status
- tracking_
objects Sequence[GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object] - Tracking object for VRRP configuration
- address String
- VRRP Ip Address
- address
Variable String - Variable name
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id Number - Group ID
- group
Id StringVariable - Variable name
- min
Preempt NumberDelay - Minimum preempt delay in seconds
- min
Preempt StringDelay Variable - Variable name
- priority Number
- Set priority
- priority
Variable String - Variable name
- secondary
Addresses List<Property Map> - VRRP Secondary Ip Addresses
- timer Number
- Timer interval for successive advertisements, in milliseconds
- timer
Variable String - Variable name
- tloc
Pref NumberChange Value - Timer interval for successive advertisements, in milliseconds
- tloc
Prefix BooleanChange - Timer interval for successive advertisements, in milliseconds
- track
Omp Boolean - Track OMP status
- tracking
Objects List<Property Map> - Tracking object for VRRP configuration
GetServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddress
- Address string
- Ip Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Subnet
Mask stringVariable - Variable name
- Address string
- Ip Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Subnet
Mask stringVariable - Variable name
- address String
- Ip Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- subnet
Mask StringVariable - Variable name
- address string
- Ip Address
- address
Variable string - Variable name
- subnet
Mask string - Subnet Mask
- subnet
Mask stringVariable - Variable name
- address str
- Ip Address
- address_
variable str - Variable name
- subnet_
mask str - Subnet Mask
- subnet_
mask_ strvariable - Variable name
- address String
- Ip Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- subnet
Mask StringVariable - Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObject
- Decrement
Value int - Decrement Value for VRRP priority
- Decrement
Value stringVariable - Variable name
- Tracker
Action string - Track Action
- Tracker
Action stringVariable - Variable name
- Tracker
Id string
- Decrement
Value int - Decrement Value for VRRP priority
- Decrement
Value stringVariable - Variable name
- Tracker
Action string - Track Action
- Tracker
Action stringVariable - Variable name
- Tracker
Id string
- decrement
Value Integer - Decrement Value for VRRP priority
- decrement
Value StringVariable - Variable name
- tracker
Action String - Track Action
- tracker
Action StringVariable - Variable name
- tracker
Id String
- decrement
Value number - Decrement Value for VRRP priority
- decrement
Value stringVariable - Variable name
- tracker
Action string - Track Action
- tracker
Action stringVariable - Variable name
- tracker
Id string
- decrement_
value int - Decrement Value for VRRP priority
- decrement_
value_ strvariable - Variable name
- tracker_
action str - Track Action
- tracker_
action_ strvariable - Variable name
- tracker_
id str
- decrement
Value Number - Decrement Value for VRRP priority
- decrement
Value StringVariable - Variable name
- tracker
Action String - Track Action
- tracker
Action StringVariable - Variable name
- tracker
Id String
GetServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelper
- Address string
- DHCPv6 Helper address
- Address
Variable string - Variable name
- Dhcpv6Helper
Vpn int - DHCPv6 Helper VPN
- Dhcpv6Helper
Vpn stringVariable - Variable name
- Address string
- DHCPv6 Helper address
- Address
Variable string - Variable name
- Dhcpv6Helper
Vpn int - DHCPv6 Helper VPN
- Dhcpv6Helper
Vpn stringVariable - Variable name
- address String
- DHCPv6 Helper address
- address
Variable String - Variable name
- dhcpv6Helper
Vpn Integer - DHCPv6 Helper VPN
- dhcpv6Helper
Vpn StringVariable - Variable name
- address string
- DHCPv6 Helper address
- address
Variable string - Variable name
- dhcpv6Helper
Vpn number - DHCPv6 Helper VPN
- dhcpv6Helper
Vpn stringVariable - Variable name
- address str
- DHCPv6 Helper address
- address_
variable str - Variable name
- dhcpv6_
helper_ intvpn - DHCPv6 Helper VPN
- dhcpv6_
helper_ strvpn_ variable - Variable name
- address String
- DHCPv6 Helper address
- address
Variable String - Variable name
- dhcpv6Helper
Vpn Number - DHCPv6 Helper VPN
- dhcpv6Helper
Vpn StringVariable - Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddress
- Address string
- IPv6 Address Secondary
- Address
Variable string - Variable name
- Address string
- IPv6 Address Secondary
- Address
Variable string - Variable name
- address String
- IPv6 Address Secondary
- address
Variable String - Variable name
- address string
- IPv6 Address Secondary
- address
Variable string - Variable name
- address str
- IPv6 Address Secondary
- address_
variable str - Variable name
- address String
- IPv6 Address Secondary
- address
Variable String - Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddress
- Address string
- IPv6 Address Secondary
- Address
Variable string - Variable name
- Address string
- IPv6 Address Secondary
- Address
Variable string - Variable name
- address String
- IPv6 Address Secondary
- address
Variable String - Variable name
- address string
- IPv6 Address Secondary
- address
Variable string - Variable name
- address str
- IPv6 Address Secondary
- address_
variable str - Variable name
- address String
- IPv6 Address Secondary
- address
Variable String - Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv6Vrrp
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Group
Id int - Group ID
- Group
Id stringVariable - Variable name
- Ipv6Addresses
List<Get
Service Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address> - IPv6 VRRP
- Min
Preempt intDelay - Minimum preempt delay in seconds
- Min
Preempt stringDelay Variable - Variable name
- Priority int
- Set priority
- Priority
Variable string - Variable name
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Timer
Variable string - Variable name
- Track
Omp bool - Track OMP status
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Group
Id int - Group ID
- Group
Id stringVariable - Variable name
- Ipv6Addresses
[]Get
Service Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address - IPv6 VRRP
- Min
Preempt intDelay - Minimum preempt delay in seconds
- Min
Preempt stringDelay Variable - Variable name
- Priority int
- Set priority
- Priority
Variable string - Variable name
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Timer
Variable string - Variable name
- Track
Omp bool - Track OMP status
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id Integer - Group ID
- group
Id StringVariable - Variable name
- ipv6Addresses
List<Get
Service Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address> - IPv6 VRRP
- min
Preempt IntegerDelay - Minimum preempt delay in seconds
- min
Preempt StringDelay Variable - Variable name
- priority Integer
- Set priority
- priority
Variable String - Variable name
- timer Integer
- Timer interval for successive advertisements, in milliseconds
- timer
Variable String - Variable name
- track
Omp Boolean - Track OMP status
- follow
Dual booleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id number - Group ID
- group
Id stringVariable - Variable name
- ipv6Addresses
Get
Service Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address[] - IPv6 VRRP
- min
Preempt numberDelay - Minimum preempt delay in seconds
- min
Preempt stringDelay Variable - Variable name
- priority number
- Set priority
- priority
Variable string - Variable name
- timer number
- Timer interval for successive advertisements, in milliseconds
- timer
Variable string - Variable name
- track
Omp boolean - Track OMP status
- follow_
dual_ boolrouter_ high_ availability - Follow RG state by default when B2B HA is configured
- group_
id int - Group ID
- group_
id_ strvariable - Variable name
- ipv6_
addresses Sequence[GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address] - IPv6 VRRP
- min_
preempt_ intdelay - Minimum preempt delay in seconds
- min_
preempt_ strdelay_ variable - Variable name
- priority int
- Set priority
- priority_
variable str - Variable name
- timer int
- Timer interval for successive advertisements, in milliseconds
- timer_
variable str - Variable name
- track_
omp bool - Track OMP status
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id Number - Group ID
- group
Id StringVariable - Variable name
- ipv6Addresses List<Property Map>
- IPv6 VRRP
- min
Preempt NumberDelay - Minimum preempt delay in seconds
- min
Preempt StringDelay Variable - Variable name
- priority Number
- Set priority
- priority
Variable String - Variable name
- timer Number
- Timer interval for successive advertisements, in milliseconds
- timer
Variable String - Variable name
- track
Omp Boolean - Track OMP status
GetServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6Address
- Global
Address string - Assign Global IPv6 Prefix
- Global
Address stringVariable - Variable name
- Link
Local stringAddress - Use link-local IPv6 Address
- Link
Local stringAddress Variable - Variable name
- Global
Address string - Assign Global IPv6 Prefix
- Global
Address stringVariable - Variable name
- Link
Local stringAddress - Use link-local IPv6 Address
- Link
Local stringAddress Variable - Variable name
- global
Address String - Assign Global IPv6 Prefix
- global
Address StringVariable - Variable name
- link
Local StringAddress - Use link-local IPv6 Address
- link
Local StringAddress Variable - Variable name
- global
Address string - Assign Global IPv6 Prefix
- global
Address stringVariable - Variable name
- link
Local stringAddress - Use link-local IPv6 Address
- link
Local stringAddress Variable - Variable name
- global_
address str - Assign Global IPv6 Prefix
- global_
address_ strvariable - Variable name
- link_
local_ straddress - Use link-local IPv6 Address
- link_
local_ straddress_ variable - Variable name
- global
Address String - Assign Global IPv6 Prefix
- global
Address StringVariable - Variable name
- link
Local StringAddress - Use link-local IPv6 Address
- link
Local StringAddress Variable - Variable name
GetServiceLanVpnInterfaceEthernetFeaturePortChannelLacpMemberLink
- Interface
Id string - Lacp
Mode string - Set lacp mode
- Lacp
Mode stringVariable - Variable name
- Lacp
Port intPriority - Set lacp port priority
- Lacp
Port stringPriority Variable - Variable name
- Lacp
Rate string - Set lacp rate
- Lacp
Rate stringVariable - Variable name
- Interface
Id string - Lacp
Mode string - Set lacp mode
- Lacp
Mode stringVariable - Variable name
- Lacp
Port intPriority - Set lacp port priority
- Lacp
Port stringPriority Variable - Variable name
- Lacp
Rate string - Set lacp rate
- Lacp
Rate stringVariable - Variable name
- interface
Id String - lacp
Mode String - Set lacp mode
- lacp
Mode StringVariable - Variable name
- lacp
Port IntegerPriority - Set lacp port priority
- lacp
Port StringPriority Variable - Variable name
- lacp
Rate String - Set lacp rate
- lacp
Rate StringVariable - Variable name
- interface
Id string - lacp
Mode string - Set lacp mode
- lacp
Mode stringVariable - Variable name
- lacp
Port numberPriority - Set lacp port priority
- lacp
Port stringPriority Variable - Variable name
- lacp
Rate string - Set lacp rate
- lacp
Rate stringVariable - Variable name
- interface_
id str - lacp_
mode str - Set lacp mode
- lacp_
mode_ strvariable - Variable name
- lacp_
port_ intpriority - Set lacp port priority
- lacp_
port_ strpriority_ variable - Variable name
- lacp_
rate str - Set lacp rate
- lacp_
rate_ strvariable - Variable name
- interface
Id String - lacp
Mode String - Set lacp mode
- lacp
Mode StringVariable - Variable name
- lacp
Port NumberPriority - Set lacp port priority
- lacp
Port StringPriority Variable - Variable name
- lacp
Rate String - Set lacp rate
- lacp
Rate StringVariable - Variable name
GetServiceLanVpnInterfaceEthernetFeaturePortChannelStaticMemberLink
- Interface
Id string
- Interface
Id string
- interface
Id String
- interface
Id string
- interface_
id str
- interface
Id String
GetServiceLanVpnInterfaceEthernetFeatureStaticNat
- Direction string
- Direction of static NAT translation
- Source
Ip string - Source IP address to be translated
- Source
Ip stringVariable - Variable name
- Source
Vpn int - Source VPN ID
- Source
Vpn stringVariable - Variable name
- Translate
Ip string - Statically translated source IP address
- Translate
Ip stringVariable - Variable name
- Direction string
- Direction of static NAT translation
- Source
Ip string - Source IP address to be translated
- Source
Ip stringVariable - Variable name
- Source
Vpn int - Source VPN ID
- Source
Vpn stringVariable - Variable name
- Translate
Ip string - Statically translated source IP address
- Translate
Ip stringVariable - Variable name
- direction String
- Direction of static NAT translation
- source
Ip String - Source IP address to be translated
- source
Ip StringVariable - Variable name
- source
Vpn Integer - Source VPN ID
- source
Vpn StringVariable - Variable name
- translate
Ip String - Statically translated source IP address
- translate
Ip StringVariable - Variable name
- direction string
- Direction of static NAT translation
- source
Ip string - Source IP address to be translated
- source
Ip stringVariable - Variable name
- source
Vpn number - Source VPN ID
- source
Vpn stringVariable - Variable name
- translate
Ip string - Statically translated source IP address
- translate
Ip stringVariable - Variable name
- direction str
- Direction of static NAT translation
- source_
ip str - Source IP address to be translated
- source_
ip_ strvariable - Variable name
- source_
vpn int - Source VPN ID
- source_
vpn_ strvariable - Variable name
- translate_
ip str - Statically translated source IP address
- translate_
ip_ strvariable - Variable name
- direction String
- Direction of static NAT translation
- source
Ip String - Source IP address to be translated
- source
Ip StringVariable - Variable name
- source
Vpn Number - Source VPN ID
- source
Vpn StringVariable - Variable name
- translate
Ip String - Statically translated source IP address
- translate
Ip StringVariable - Variable name
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwanTerraform Provider.
Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi
published on Tuesday, Feb 24, 2026 by Pulumi
