Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi
sdwan.getTransportWanVpnInterfaceCellularFeature
Explore with Pulumi AI
This data source can read the Transport WAN VPN Interface Cellular Feature.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = sdwan.getTransportWanVpnInterfaceCellularFeature({
    id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
    featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.get_transport_wan_vpn_interface_cellular_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
    feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    transport_wan_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.LookupTransportWanVpnInterfaceCellularFeature(ctx, &sdwan.LookupTransportWanVpnInterfaceCellularFeatureArgs{
			Id:                       "f6b2c44c-693c-4763-b010-895aa3d236bd",
			FeatureProfileId:         "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
			TransportWanVpnFeatureId: "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.GetTransportWanVpnInterfaceCellularFeature.Invoke(new()
    {
        Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
        FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        TransportWanVpnFeatureId = "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.GetTransportWanVpnInterfaceCellularFeatureArgs;
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.getTransportWanVpnInterfaceCellularFeature(GetTransportWanVpnInterfaceCellularFeatureArgs.builder()
            .id("f6b2c44c-693c-4763-b010-895aa3d236bd")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .transportWanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
            .build());
    }
}
variables:
  example:
    fn::invoke:
      function: sdwan:getTransportWanVpnInterfaceCellularFeature
      arguments:
        id: f6b2c44c-693c-4763-b010-895aa3d236bd
        featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
        transportWanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
Using getTransportWanVpnInterfaceCellularFeature
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 getTransportWanVpnInterfaceCellularFeature(args: GetTransportWanVpnInterfaceCellularFeatureArgs, opts?: InvokeOptions): Promise<GetTransportWanVpnInterfaceCellularFeatureResult>
function getTransportWanVpnInterfaceCellularFeatureOutput(args: GetTransportWanVpnInterfaceCellularFeatureOutputArgs, opts?: InvokeOptions): Output<GetTransportWanVpnInterfaceCellularFeatureResult>def get_transport_wan_vpn_interface_cellular_feature(feature_profile_id: Optional[str] = None,
                                                     id: Optional[str] = None,
                                                     transport_wan_vpn_feature_id: Optional[str] = None,
                                                     opts: Optional[InvokeOptions] = None) -> GetTransportWanVpnInterfaceCellularFeatureResult
def get_transport_wan_vpn_interface_cellular_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
                                                     id: Optional[pulumi.Input[str]] = None,
                                                     transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
                                                     opts: Optional[InvokeOptions] = None) -> Output[GetTransportWanVpnInterfaceCellularFeatureResult]func LookupTransportWanVpnInterfaceCellularFeature(ctx *Context, args *LookupTransportWanVpnInterfaceCellularFeatureArgs, opts ...InvokeOption) (*LookupTransportWanVpnInterfaceCellularFeatureResult, error)
func LookupTransportWanVpnInterfaceCellularFeatureOutput(ctx *Context, args *LookupTransportWanVpnInterfaceCellularFeatureOutputArgs, opts ...InvokeOption) LookupTransportWanVpnInterfaceCellularFeatureResultOutput> Note: This function is named LookupTransportWanVpnInterfaceCellularFeature in the Go SDK.
public static class GetTransportWanVpnInterfaceCellularFeature 
{
    public static Task<GetTransportWanVpnInterfaceCellularFeatureResult> InvokeAsync(GetTransportWanVpnInterfaceCellularFeatureArgs args, InvokeOptions? opts = null)
    public static Output<GetTransportWanVpnInterfaceCellularFeatureResult> Invoke(GetTransportWanVpnInterfaceCellularFeatureInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetTransportWanVpnInterfaceCellularFeatureResult> getTransportWanVpnInterfaceCellularFeature(GetTransportWanVpnInterfaceCellularFeatureArgs args, InvokeOptions options)
public static Output<GetTransportWanVpnInterfaceCellularFeatureResult> getTransportWanVpnInterfaceCellularFeature(GetTransportWanVpnInterfaceCellularFeatureArgs args, InvokeOptions options)
fn::invoke:
  function: sdwan:index/getTransportWanVpnInterfaceCellularFeature:getTransportWanVpnInterfaceCellularFeature
  arguments:
    # arguments dictionaryThe following arguments are supported:
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- featureProfile stringId 
- Feature Profile ID
- id string
- The id of the Feature
- transportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- feature_profile_ strid 
- Feature Profile ID
- id str
- The id of the Feature
- transport_wan_ strvpn_ feature_ id 
- Transport WAN VPN Feature ID
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
getTransportWanVpnInterfaceCellularFeature Result
The following output properties are available:
- AclIpv4Egress stringFeature Id 
- AclIpv4Ingress stringFeature Id 
- AclIpv6Egress stringFeature Id 
- AclIpv6Ingress stringFeature Id 
- Arps
List<GetTransport Wan Vpn Interface Cellular Feature Arp> 
- Configure ARP entries
- BandwidthDownstream int
- Interface downstream bandwidth capacity, in kbps
- BandwidthDownstream stringVariable 
- Variable name
- BandwidthUpstream int
- Interface upstream bandwidth capacity, in kbps
- BandwidthUpstream stringVariable 
- Variable name
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- InterfaceDescription string
- InterfaceDescription stringVariable 
- Variable name
- InterfaceMtu int
- Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- InterfaceMtu stringVariable 
- Variable name
- InterfaceName string
- InterfaceName stringVariable 
- Variable name
- IpDirected boolBroadcast 
- IP Directed-Broadcast
- IpDirected stringBroadcast Variable 
- Variable name
- IpMtu int
- IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- IpMtu stringVariable 
- Variable name
- Ipv4DhcpHelper stringVariable 
- Variable name
- Ipv4DhcpHelpers List<string>
- List of DHCP IPv4 helper addresses (min 1, max 8)
- Name string
- The name of the Feature
- NatIpv4 bool
- Network Address Translation on this interface
- NatIpv4Variable string
- Variable name
- NatTcp intTimeout 
- Set NAT TCP session timeout, in minutes
- NatTcp stringTimeout Variable 
- Variable name
- NatUdp intTimeout 
- Set NAT UDP session timeout, in minutes
- NatUdp stringTimeout Variable 
- Variable name
- PerTunnel boolQos 
- Per-tunnel Qos
- PerTunnel stringQos Variable 
- Variable name
- QosAdaptive bool
- Adaptive QoS
- QosAdaptive boolBandwidth Downstream 
- Shaping Rate Downstream
- QosAdaptive boolBandwidth Upstream 
- Shaping Rate Upstream
- QosAdaptive intDefault Downstream 
- Adaptive QoS default downstream bandwidth (kbps)
- QosAdaptive stringDefault Downstream Variable 
- Variable name
- QosAdaptive intDefault Upstream 
- Adaptive QoS default upstream bandwidth (kbps)
- QosAdaptive stringDefault Upstream Variable 
- Variable name
- QosAdaptive intMax Downstream 
- Downstream max bandwidth limit (kbps)
- QosAdaptive stringMax Downstream Variable 
- Variable name
- QosAdaptive intMax Upstream 
- Upstream max bandwidth limit (kbps)
- QosAdaptive stringMax Upstream Variable 
- Variable name
- QosAdaptive intMin Downstream 
- Downstream min bandwidth limit (kbps)
- QosAdaptive stringMin Downstream Variable 
- Variable name
- QosAdaptive intMin Upstream 
- Upstream min bandwidth limit (kbps)
- QosAdaptive stringMin Upstream Variable 
- Variable name
- QosAdaptive intPeriod 
- Adapt Period(Minutes)
- QosAdaptive stringPeriod Variable 
- Variable name
- QosShaping intRate 
- Shaping Rate (Kbps)
- QosShaping stringRate Variable 
- Variable name
- ServiceProvider string
- Service Provider Name
- ServiceProvider stringVariable 
- Variable name
- Shutdown bool
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes
- TcpMss stringVariable 
- Variable name
- TlocExtension string
- Extends a local TLOC to a remote node only for vpn 0
- TlocExtension stringVariable 
- Variable name
- Tracker string
- Enable tracker for this interface
- TrackerVariable string
- Variable name
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- TunnelBandwidth intPercent 
- Tunnels Bandwidth Percent
- TunnelBandwidth stringPercent Variable 
- Variable name
- TunnelInterface bool
- Tunnel Interface on/off
- TunnelInterface boolAllow All 
- Allow all traffic. Overrides all other allow-service options if allow-service all is set
- TunnelInterface stringAllow All Variable 
- Variable name
- TunnelInterface boolAllow Bfd 
- Allow/Deny BFD
- TunnelInterface stringAllow Bfd Variable 
- Variable name
- TunnelInterface boolAllow Bgp 
- Allow/deny BGP
- TunnelInterface stringAllow Bgp Variable 
- Variable name
- TunnelInterface boolAllow Dhcp 
- Allow/Deny DHCP
- TunnelInterface stringAllow Dhcp Variable 
- Variable name
- TunnelInterface boolAllow Dns 
- Allow/Deny DNS
- TunnelInterface stringAllow Dns Variable 
- Variable name
- TunnelInterface boolAllow Https 
- Allow/Deny HTTPS
- TunnelInterface stringAllow Https Variable 
- Variable name
- TunnelInterface boolAllow Icmp 
- Allow/Deny ICMP
- TunnelInterface stringAllow Icmp Variable 
- Variable name
- TunnelInterface boolAllow Netconf 
- Allow/Deny NETCONF
- TunnelInterface stringAllow Netconf Variable 
- Variable name
- TunnelInterface boolAllow Ntp 
- Allow/Deny NTP
- TunnelInterface stringAllow Ntp Variable 
- Variable name
- TunnelInterface boolAllow Ospf 
- Allow/Deny OSPF
- TunnelInterface stringAllow Ospf Variable 
- Variable name
- TunnelInterface boolAllow Snmp 
- Allow/Deny SNMP
- TunnelInterface stringAllow Snmp Variable 
- Variable name
- TunnelInterface boolAllow Ssh 
- Allow/Deny SSH
- TunnelInterface stringAllow Ssh Variable 
- Variable name
- TunnelInterface boolAllow Stun 
- Allow/Deny STUN
- TunnelInterface stringAllow Stun Variable 
- Variable name
- TunnelInterface stringBind Loopback Tunnel 
- Bind loopback tunnel interface to a physical interface
- TunnelInterface stringBind Loopback Tunnel Variable 
- Variable name
- TunnelInterface boolBorder 
- Set TLOC as border TLOC
- TunnelInterface stringBorder Variable 
- Variable name
- TunnelInterface stringCarrier 
- Set carrier for TLOC
- TunnelInterface stringCarrier Variable 
- Variable name
- TunnelInterface boolClear Dont Fragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- TunnelInterface stringClear Dont Fragment Variable 
- Variable name
- TunnelInterface stringColor 
- Set color for TLOC
- TunnelInterface boolColor Restrict 
- Restrict this TLOC behavior
- TunnelInterface stringColor Restrict Variable 
- Variable name
- TunnelInterface stringColor Variable 
- Variable name
- TunnelInterface List<GetEncapsulations Transport Wan Vpn Interface Cellular Feature Tunnel Interface Encapsulation> 
- Encapsulation for TLOC
- TunnelInterface stringExclude Controller Group List Variable 
- Variable name
- TunnelInterface List<int>Exclude Controller Group Lists 
- Exclude the following controller groups defined in this list.
- TunnelInterface intGroups 
- List of groups
- TunnelInterface stringGroups Variable 
- Variable name
- TunnelInterface intHello Interval 
- Set time period of control hello packets \n\n milli seconds
- TunnelInterface stringHello Interval Variable 
- Variable name
- TunnelInterface intHello Tolerance 
- Set tolerance of control hello packets \n\n seconds
- TunnelInterface stringHello Tolerance Variable 
- Variable name
- TunnelInterface boolLast Resort Circuit 
- Set TLOC as last resort
- TunnelInterface stringLast Resort Circuit Variable 
- Variable name
- TunnelInterface boolLow Bandwidth Link 
- Set the interface as a low-bandwidth circuit
- TunnelInterface stringLow Bandwidth Link Variable 
- Variable name
- TunnelInterface intMax Control Connections 
- Maximum Control Connections
- TunnelInterface stringMax Control Connections Variable 
- Variable name
- TunnelInterface intNat Refresh Interval 
- Set time period of nat refresh packets \n\n seconds
- TunnelInterface stringNat Refresh Interval Variable 
- Variable name
- TunnelInterface boolNetwork Broadcast 
- Accept and respond to network-prefix-directed broadcasts
- TunnelInterface stringNetwork Broadcast Variable 
- Variable name
- TunnelInterface boolPort Hop 
- Disallow port hopping on the tunnel interface
- TunnelInterface stringPort Hop Variable 
- Variable name
- TunnelInterface intTunnel Tcp Mss 
- Tunnel TCP MSS on SYN packets, in bytes
- TunnelInterface stringTunnel Tcp Mss Variable 
- Variable name
- TunnelInterface boolVbond As Stun Server 
- Put this wan interface in STUN mode only
- TunnelInterface stringVbond As Stun Server Variable 
- Variable name
- TunnelInterface intVmanage Connection Preference 
- Set interface preference for control connection to vManage \n\n
- TunnelInterface stringVmanage Connection Preference Variable 
- Variable name
- TunnelQos stringMode 
- Set tunnel QoS mode
- TunnelQos stringMode Variable 
- Variable name
- Version int
- The version of the Feature
- AclIpv4Egress stringFeature Id 
- AclIpv4Ingress stringFeature Id 
- AclIpv6Egress stringFeature Id 
- AclIpv6Ingress stringFeature Id 
- Arps
[]GetTransport Wan Vpn Interface Cellular Feature Arp 
- Configure ARP entries
- BandwidthDownstream int
- Interface downstream bandwidth capacity, in kbps
- BandwidthDownstream stringVariable 
- Variable name
- BandwidthUpstream int
- Interface upstream bandwidth capacity, in kbps
- BandwidthUpstream stringVariable 
- Variable name
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- InterfaceDescription string
- InterfaceDescription stringVariable 
- Variable name
- InterfaceMtu int
- Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- InterfaceMtu stringVariable 
- Variable name
- InterfaceName string
- InterfaceName stringVariable 
- Variable name
- IpDirected boolBroadcast 
- IP Directed-Broadcast
- IpDirected stringBroadcast Variable 
- Variable name
- IpMtu int
- IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- IpMtu stringVariable 
- Variable name
- Ipv4DhcpHelper stringVariable 
- Variable name
- Ipv4DhcpHelpers []string
- List of DHCP IPv4 helper addresses (min 1, max 8)
- Name string
- The name of the Feature
- NatIpv4 bool
- Network Address Translation on this interface
- NatIpv4Variable string
- Variable name
- NatTcp intTimeout 
- Set NAT TCP session timeout, in minutes
- NatTcp stringTimeout Variable 
- Variable name
- NatUdp intTimeout 
- Set NAT UDP session timeout, in minutes
- NatUdp stringTimeout Variable 
- Variable name
- PerTunnel boolQos 
- Per-tunnel Qos
- PerTunnel stringQos Variable 
- Variable name
- QosAdaptive bool
- Adaptive QoS
- QosAdaptive boolBandwidth Downstream 
- Shaping Rate Downstream
- QosAdaptive boolBandwidth Upstream 
- Shaping Rate Upstream
- QosAdaptive intDefault Downstream 
- Adaptive QoS default downstream bandwidth (kbps)
- QosAdaptive stringDefault Downstream Variable 
- Variable name
- QosAdaptive intDefault Upstream 
- Adaptive QoS default upstream bandwidth (kbps)
- QosAdaptive stringDefault Upstream Variable 
- Variable name
- QosAdaptive intMax Downstream 
- Downstream max bandwidth limit (kbps)
- QosAdaptive stringMax Downstream Variable 
- Variable name
- QosAdaptive intMax Upstream 
- Upstream max bandwidth limit (kbps)
- QosAdaptive stringMax Upstream Variable 
- Variable name
- QosAdaptive intMin Downstream 
- Downstream min bandwidth limit (kbps)
- QosAdaptive stringMin Downstream Variable 
- Variable name
- QosAdaptive intMin Upstream 
- Upstream min bandwidth limit (kbps)
- QosAdaptive stringMin Upstream Variable 
- Variable name
- QosAdaptive intPeriod 
- Adapt Period(Minutes)
- QosAdaptive stringPeriod Variable 
- Variable name
- QosShaping intRate 
- Shaping Rate (Kbps)
- QosShaping stringRate Variable 
- Variable name
- ServiceProvider string
- Service Provider Name
- ServiceProvider stringVariable 
- Variable name
- Shutdown bool
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes
- TcpMss stringVariable 
- Variable name
- TlocExtension string
- Extends a local TLOC to a remote node only for vpn 0
- TlocExtension stringVariable 
- Variable name
- Tracker string
- Enable tracker for this interface
- TrackerVariable string
- Variable name
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- TunnelBandwidth intPercent 
- Tunnels Bandwidth Percent
- TunnelBandwidth stringPercent Variable 
- Variable name
- TunnelInterface bool
- Tunnel Interface on/off
- TunnelInterface boolAllow All 
- Allow all traffic. Overrides all other allow-service options if allow-service all is set
- TunnelInterface stringAllow All Variable 
- Variable name
- TunnelInterface boolAllow Bfd 
- Allow/Deny BFD
- TunnelInterface stringAllow Bfd Variable 
- Variable name
- TunnelInterface boolAllow Bgp 
- Allow/deny BGP
- TunnelInterface stringAllow Bgp Variable 
- Variable name
- TunnelInterface boolAllow Dhcp 
- Allow/Deny DHCP
- TunnelInterface stringAllow Dhcp Variable 
- Variable name
- TunnelInterface boolAllow Dns 
- Allow/Deny DNS
- TunnelInterface stringAllow Dns Variable 
- Variable name
- TunnelInterface boolAllow Https 
- Allow/Deny HTTPS
- TunnelInterface stringAllow Https Variable 
- Variable name
- TunnelInterface boolAllow Icmp 
- Allow/Deny ICMP
- TunnelInterface stringAllow Icmp Variable 
- Variable name
- TunnelInterface boolAllow Netconf 
- Allow/Deny NETCONF
- TunnelInterface stringAllow Netconf Variable 
- Variable name
- TunnelInterface boolAllow Ntp 
- Allow/Deny NTP
- TunnelInterface stringAllow Ntp Variable 
- Variable name
- TunnelInterface boolAllow Ospf 
- Allow/Deny OSPF
- TunnelInterface stringAllow Ospf Variable 
- Variable name
- TunnelInterface boolAllow Snmp 
- Allow/Deny SNMP
- TunnelInterface stringAllow Snmp Variable 
- Variable name
- TunnelInterface boolAllow Ssh 
- Allow/Deny SSH
- TunnelInterface stringAllow Ssh Variable 
- Variable name
- TunnelInterface boolAllow Stun 
- Allow/Deny STUN
- TunnelInterface stringAllow Stun Variable 
- Variable name
- TunnelInterface stringBind Loopback Tunnel 
- Bind loopback tunnel interface to a physical interface
- TunnelInterface stringBind Loopback Tunnel Variable 
- Variable name
- TunnelInterface boolBorder 
- Set TLOC as border TLOC
- TunnelInterface stringBorder Variable 
- Variable name
- TunnelInterface stringCarrier 
- Set carrier for TLOC
- TunnelInterface stringCarrier Variable 
- Variable name
- TunnelInterface boolClear Dont Fragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- TunnelInterface stringClear Dont Fragment Variable 
- Variable name
- TunnelInterface stringColor 
- Set color for TLOC
- TunnelInterface boolColor Restrict 
- Restrict this TLOC behavior
- TunnelInterface stringColor Restrict Variable 
- Variable name
- TunnelInterface stringColor Variable 
- Variable name
- TunnelInterface []GetEncapsulations Transport Wan Vpn Interface Cellular Feature Tunnel Interface Encapsulation 
- Encapsulation for TLOC
- TunnelInterface stringExclude Controller Group List Variable 
- Variable name
- TunnelInterface []intExclude Controller Group Lists 
- Exclude the following controller groups defined in this list.
- TunnelInterface intGroups 
- List of groups
- TunnelInterface stringGroups Variable 
- Variable name
- TunnelInterface intHello Interval 
- Set time period of control hello packets \n\n milli seconds
- TunnelInterface stringHello Interval Variable 
- Variable name
- TunnelInterface intHello Tolerance 
- Set tolerance of control hello packets \n\n seconds
- TunnelInterface stringHello Tolerance Variable 
- Variable name
- TunnelInterface boolLast Resort Circuit 
- Set TLOC as last resort
- TunnelInterface stringLast Resort Circuit Variable 
- Variable name
- TunnelInterface boolLow Bandwidth Link 
- Set the interface as a low-bandwidth circuit
- TunnelInterface stringLow Bandwidth Link Variable 
- Variable name
- TunnelInterface intMax Control Connections 
- Maximum Control Connections
- TunnelInterface stringMax Control Connections Variable 
- Variable name
- TunnelInterface intNat Refresh Interval 
- Set time period of nat refresh packets \n\n seconds
- TunnelInterface stringNat Refresh Interval Variable 
- Variable name
- TunnelInterface boolNetwork Broadcast 
- Accept and respond to network-prefix-directed broadcasts
- TunnelInterface stringNetwork Broadcast Variable 
- Variable name
- TunnelInterface boolPort Hop 
- Disallow port hopping on the tunnel interface
- TunnelInterface stringPort Hop Variable 
- Variable name
- TunnelInterface intTunnel Tcp Mss 
- Tunnel TCP MSS on SYN packets, in bytes
- TunnelInterface stringTunnel Tcp Mss Variable 
- Variable name
- TunnelInterface boolVbond As Stun Server 
- Put this wan interface in STUN mode only
- TunnelInterface stringVbond As Stun Server Variable 
- Variable name
- TunnelInterface intVmanage Connection Preference 
- Set interface preference for control connection to vManage \n\n
- TunnelInterface stringVmanage Connection Preference Variable 
- Variable name
- TunnelQos stringMode 
- Set tunnel QoS mode
- TunnelQos stringMode Variable 
- Variable name
- Version int
- The version of the Feature
- aclIpv4Egress StringFeature Id 
- aclIpv4Ingress StringFeature Id 
- aclIpv6Egress StringFeature Id 
- aclIpv6Ingress StringFeature Id 
- arps
List<GetTransport Wan Vpn Interface Cellular Feature Arp> 
- Configure ARP entries
- bandwidthDownstream Integer
- Interface downstream bandwidth capacity, in kbps
- bandwidthDownstream StringVariable 
- Variable name
- bandwidthUpstream Integer
- Interface upstream bandwidth capacity, in kbps
- bandwidthUpstream StringVariable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- interfaceDescription String
- interfaceDescription StringVariable 
- Variable name
- interfaceMtu Integer
- Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- interfaceMtu StringVariable 
- Variable name
- interfaceName String
- interfaceName StringVariable 
- Variable name
- ipDirected BooleanBroadcast 
- IP Directed-Broadcast
- ipDirected StringBroadcast Variable 
- Variable name
- ipMtu Integer
- IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ipMtu StringVariable 
- Variable name
- ipv4DhcpHelper StringVariable 
- Variable name
- ipv4DhcpHelpers List<String>
- List of DHCP IPv4 helper addresses (min 1, max 8)
- name String
- The name of the Feature
- natIpv4 Boolean
- Network Address Translation on this interface
- natIpv4Variable String
- Variable name
- natTcp IntegerTimeout 
- Set NAT TCP session timeout, in minutes
- natTcp StringTimeout Variable 
- Variable name
- natUdp IntegerTimeout 
- Set NAT UDP session timeout, in minutes
- natUdp StringTimeout Variable 
- Variable name
- perTunnel BooleanQos 
- Per-tunnel Qos
- perTunnel StringQos Variable 
- Variable name
- qosAdaptive Boolean
- Adaptive QoS
- qosAdaptive BooleanBandwidth Downstream 
- Shaping Rate Downstream
- qosAdaptive BooleanBandwidth Upstream 
- Shaping Rate Upstream
- qosAdaptive IntegerDefault Downstream 
- Adaptive QoS default downstream bandwidth (kbps)
- qosAdaptive StringDefault Downstream Variable 
- Variable name
- qosAdaptive IntegerDefault Upstream 
- Adaptive QoS default upstream bandwidth (kbps)
- qosAdaptive StringDefault Upstream Variable 
- Variable name
- qosAdaptive IntegerMax Downstream 
- Downstream max bandwidth limit (kbps)
- qosAdaptive StringMax Downstream Variable 
- Variable name
- qosAdaptive IntegerMax Upstream 
- Upstream max bandwidth limit (kbps)
- qosAdaptive StringMax Upstream Variable 
- Variable name
- qosAdaptive IntegerMin Downstream 
- Downstream min bandwidth limit (kbps)
- qosAdaptive StringMin Downstream Variable 
- Variable name
- qosAdaptive IntegerMin Upstream 
- Upstream min bandwidth limit (kbps)
- qosAdaptive StringMin Upstream Variable 
- Variable name
- qosAdaptive IntegerPeriod 
- Adapt Period(Minutes)
- qosAdaptive StringPeriod Variable 
- Variable name
- qosShaping IntegerRate 
- Shaping Rate (Kbps)
- qosShaping StringRate Variable 
- Variable name
- serviceProvider String
- Service Provider Name
- serviceProvider StringVariable 
- Variable name
- shutdown Boolean
- shutdownVariable String
- Variable name
- tcpMss Integer
- TCP MSS on SYN packets, in bytes
- tcpMss StringVariable 
- Variable name
- tlocExtension String
- Extends a local TLOC to a remote node only for vpn 0
- tlocExtension StringVariable 
- Variable name
- tracker String
- Enable tracker for this interface
- trackerVariable String
- Variable name
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelBandwidth IntegerPercent 
- Tunnels Bandwidth Percent
- tunnelBandwidth StringPercent Variable 
- Variable name
- tunnelInterface Boolean
- Tunnel Interface on/off
- tunnelInterface BooleanAllow All 
- Allow all traffic. Overrides all other allow-service options if allow-service all is set
- tunnelInterface StringAllow All Variable 
- Variable name
- tunnelInterface BooleanAllow Bfd 
- Allow/Deny BFD
- tunnelInterface StringAllow Bfd Variable 
- Variable name
- tunnelInterface BooleanAllow Bgp 
- Allow/deny BGP
- tunnelInterface StringAllow Bgp Variable 
- Variable name
- tunnelInterface BooleanAllow Dhcp 
- Allow/Deny DHCP
- tunnelInterface StringAllow Dhcp Variable 
- Variable name
- tunnelInterface BooleanAllow Dns 
- Allow/Deny DNS
- tunnelInterface StringAllow Dns Variable 
- Variable name
- tunnelInterface BooleanAllow Https 
- Allow/Deny HTTPS
- tunnelInterface StringAllow Https Variable 
- Variable name
- tunnelInterface BooleanAllow Icmp 
- Allow/Deny ICMP
- tunnelInterface StringAllow Icmp Variable 
- Variable name
- tunnelInterface BooleanAllow Netconf 
- Allow/Deny NETCONF
- tunnelInterface StringAllow Netconf Variable 
- Variable name
- tunnelInterface BooleanAllow Ntp 
- Allow/Deny NTP
- tunnelInterface StringAllow Ntp Variable 
- Variable name
- tunnelInterface BooleanAllow Ospf 
- Allow/Deny OSPF
- tunnelInterface StringAllow Ospf Variable 
- Variable name
- tunnelInterface BooleanAllow Snmp 
- Allow/Deny SNMP
- tunnelInterface StringAllow Snmp Variable 
- Variable name
- tunnelInterface BooleanAllow Ssh 
- Allow/Deny SSH
- tunnelInterface StringAllow Ssh Variable 
- Variable name
- tunnelInterface BooleanAllow Stun 
- Allow/Deny STUN
- tunnelInterface StringAllow Stun Variable 
- Variable name
- tunnelInterface StringBind Loopback Tunnel 
- Bind loopback tunnel interface to a physical interface
- tunnelInterface StringBind Loopback Tunnel Variable 
- Variable name
- tunnelInterface BooleanBorder 
- Set TLOC as border TLOC
- tunnelInterface StringBorder Variable 
- Variable name
- tunnelInterface StringCarrier 
- Set carrier for TLOC
- tunnelInterface StringCarrier Variable 
- Variable name
- tunnelInterface BooleanClear Dont Fragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- tunnelInterface StringClear Dont Fragment Variable 
- Variable name
- tunnelInterface StringColor 
- Set color for TLOC
- tunnelInterface BooleanColor Restrict 
- Restrict this TLOC behavior
- tunnelInterface StringColor Restrict Variable 
- Variable name
- tunnelInterface StringColor Variable 
- Variable name
- tunnelInterface List<GetEncapsulations Transport Wan Vpn Interface Cellular Feature Tunnel Interface Encapsulation> 
- Encapsulation for TLOC
- tunnelInterface StringExclude Controller Group List Variable 
- Variable name
- tunnelInterface List<Integer>Exclude Controller Group Lists 
- Exclude the following controller groups defined in this list.
- tunnelInterface IntegerGroups 
- List of groups
- tunnelInterface StringGroups Variable 
- Variable name
- tunnelInterface IntegerHello Interval 
- Set time period of control hello packets \n\n milli seconds
- tunnelInterface StringHello Interval Variable 
- Variable name
- tunnelInterface IntegerHello Tolerance 
- Set tolerance of control hello packets \n\n seconds
- tunnelInterface StringHello Tolerance Variable 
- Variable name
- tunnelInterface BooleanLast Resort Circuit 
- Set TLOC as last resort
- tunnelInterface StringLast Resort Circuit Variable 
- Variable name
- tunnelInterface BooleanLow Bandwidth Link 
- Set the interface as a low-bandwidth circuit
- tunnelInterface StringLow Bandwidth Link Variable 
- Variable name
- tunnelInterface IntegerMax Control Connections 
- Maximum Control Connections
- tunnelInterface StringMax Control Connections Variable 
- Variable name
- tunnelInterface IntegerNat Refresh Interval 
- Set time period of nat refresh packets \n\n seconds
- tunnelInterface StringNat Refresh Interval Variable 
- Variable name
- tunnelInterface BooleanNetwork Broadcast 
- Accept and respond to network-prefix-directed broadcasts
- tunnelInterface StringNetwork Broadcast Variable 
- Variable name
- tunnelInterface BooleanPort Hop 
- Disallow port hopping on the tunnel interface
- tunnelInterface StringPort Hop Variable 
- Variable name
- tunnelInterface IntegerTunnel Tcp Mss 
- Tunnel TCP MSS on SYN packets, in bytes
- tunnelInterface StringTunnel Tcp Mss Variable 
- Variable name
- tunnelInterface BooleanVbond As Stun Server 
- Put this wan interface in STUN mode only
- tunnelInterface StringVbond As Stun Server Variable 
- Variable name
- tunnelInterface IntegerVmanage Connection Preference 
- Set interface preference for control connection to vManage \n\n
- tunnelInterface StringVmanage Connection Preference Variable 
- Variable name
- tunnelQos StringMode 
- Set tunnel QoS mode
- tunnelQos StringMode Variable 
- Variable name
- version Integer
- The version of the Feature
- aclIpv4Egress stringFeature Id 
- aclIpv4Ingress stringFeature Id 
- aclIpv6Egress stringFeature Id 
- aclIpv6Ingress stringFeature Id 
- arps
GetTransport Wan Vpn Interface Cellular Feature Arp[] 
- Configure ARP entries
- bandwidthDownstream number
- Interface downstream bandwidth capacity, in kbps
- bandwidthDownstream stringVariable 
- Variable name
- bandwidthUpstream number
- Interface upstream bandwidth capacity, in kbps
- bandwidthUpstream stringVariable 
- Variable name
- description string
- The description of the Feature
- featureProfile stringId 
- Feature Profile ID
- id string
- The id of the Feature
- interfaceDescription string
- interfaceDescription stringVariable 
- Variable name
- interfaceMtu number
- Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- interfaceMtu stringVariable 
- Variable name
- interfaceName string
- interfaceName stringVariable 
- Variable name
- ipDirected booleanBroadcast 
- IP Directed-Broadcast
- ipDirected stringBroadcast Variable 
- Variable name
- ipMtu number
- IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ipMtu stringVariable 
- Variable name
- ipv4DhcpHelper stringVariable 
- Variable name
- ipv4DhcpHelpers string[]
- List of DHCP IPv4 helper addresses (min 1, max 8)
- name string
- The name of the Feature
- natIpv4 boolean
- Network Address Translation on this interface
- natIpv4Variable string
- Variable name
- natTcp numberTimeout 
- Set NAT TCP session timeout, in minutes
- natTcp stringTimeout Variable 
- Variable name
- natUdp numberTimeout 
- Set NAT UDP session timeout, in minutes
- natUdp stringTimeout Variable 
- Variable name
- perTunnel booleanQos 
- Per-tunnel Qos
- perTunnel stringQos Variable 
- Variable name
- qosAdaptive boolean
- Adaptive QoS
- qosAdaptive booleanBandwidth Downstream 
- Shaping Rate Downstream
- qosAdaptive booleanBandwidth Upstream 
- Shaping Rate Upstream
- qosAdaptive numberDefault Downstream 
- Adaptive QoS default downstream bandwidth (kbps)
- qosAdaptive stringDefault Downstream Variable 
- Variable name
- qosAdaptive numberDefault Upstream 
- Adaptive QoS default upstream bandwidth (kbps)
- qosAdaptive stringDefault Upstream Variable 
- Variable name
- qosAdaptive numberMax Downstream 
- Downstream max bandwidth limit (kbps)
- qosAdaptive stringMax Downstream Variable 
- Variable name
- qosAdaptive numberMax Upstream 
- Upstream max bandwidth limit (kbps)
- qosAdaptive stringMax Upstream Variable 
- Variable name
- qosAdaptive numberMin Downstream 
- Downstream min bandwidth limit (kbps)
- qosAdaptive stringMin Downstream Variable 
- Variable name
- qosAdaptive numberMin Upstream 
- Upstream min bandwidth limit (kbps)
- qosAdaptive stringMin Upstream Variable 
- Variable name
- qosAdaptive numberPeriod 
- Adapt Period(Minutes)
- qosAdaptive stringPeriod Variable 
- Variable name
- qosShaping numberRate 
- Shaping Rate (Kbps)
- qosShaping stringRate Variable 
- Variable name
- serviceProvider string
- Service Provider Name
- serviceProvider stringVariable 
- Variable name
- shutdown boolean
- shutdownVariable string
- Variable name
- tcpMss number
- TCP MSS on SYN packets, in bytes
- tcpMss stringVariable 
- Variable name
- tlocExtension string
- Extends a local TLOC to a remote node only for vpn 0
- tlocExtension stringVariable 
- Variable name
- tracker string
- Enable tracker for this interface
- trackerVariable string
- Variable name
- transportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelBandwidth numberPercent 
- Tunnels Bandwidth Percent
- tunnelBandwidth stringPercent Variable 
- Variable name
- tunnelInterface boolean
- Tunnel Interface on/off
- tunnelInterface booleanAllow All 
- Allow all traffic. Overrides all other allow-service options if allow-service all is set
- tunnelInterface stringAllow All Variable 
- Variable name
- tunnelInterface booleanAllow Bfd 
- Allow/Deny BFD
- tunnelInterface stringAllow Bfd Variable 
- Variable name
- tunnelInterface booleanAllow Bgp 
- Allow/deny BGP
- tunnelInterface stringAllow Bgp Variable 
- Variable name
- tunnelInterface booleanAllow Dhcp 
- Allow/Deny DHCP
- tunnelInterface stringAllow Dhcp Variable 
- Variable name
- tunnelInterface booleanAllow Dns 
- Allow/Deny DNS
- tunnelInterface stringAllow Dns Variable 
- Variable name
- tunnelInterface booleanAllow Https 
- Allow/Deny HTTPS
- tunnelInterface stringAllow Https Variable 
- Variable name
- tunnelInterface booleanAllow Icmp 
- Allow/Deny ICMP
- tunnelInterface stringAllow Icmp Variable 
- Variable name
- tunnelInterface booleanAllow Netconf 
- Allow/Deny NETCONF
- tunnelInterface stringAllow Netconf Variable 
- Variable name
- tunnelInterface booleanAllow Ntp 
- Allow/Deny NTP
- tunnelInterface stringAllow Ntp Variable 
- Variable name
- tunnelInterface booleanAllow Ospf 
- Allow/Deny OSPF
- tunnelInterface stringAllow Ospf Variable 
- Variable name
- tunnelInterface booleanAllow Snmp 
- Allow/Deny SNMP
- tunnelInterface stringAllow Snmp Variable 
- Variable name
- tunnelInterface booleanAllow Ssh 
- Allow/Deny SSH
- tunnelInterface stringAllow Ssh Variable 
- Variable name
- tunnelInterface booleanAllow Stun 
- Allow/Deny STUN
- tunnelInterface stringAllow Stun Variable 
- Variable name
- tunnelInterface stringBind Loopback Tunnel 
- Bind loopback tunnel interface to a physical interface
- tunnelInterface stringBind Loopback Tunnel Variable 
- Variable name
- tunnelInterface booleanBorder 
- Set TLOC as border TLOC
- tunnelInterface stringBorder Variable 
- Variable name
- tunnelInterface stringCarrier 
- Set carrier for TLOC
- tunnelInterface stringCarrier Variable 
- Variable name
- tunnelInterface booleanClear Dont Fragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- tunnelInterface stringClear Dont Fragment Variable 
- Variable name
- tunnelInterface stringColor 
- Set color for TLOC
- tunnelInterface booleanColor Restrict 
- Restrict this TLOC behavior
- tunnelInterface stringColor Restrict Variable 
- Variable name
- tunnelInterface stringColor Variable 
- Variable name
- tunnelInterface GetEncapsulations Transport Wan Vpn Interface Cellular Feature Tunnel Interface Encapsulation[] 
- Encapsulation for TLOC
- tunnelInterface stringExclude Controller Group List Variable 
- Variable name
- tunnelInterface number[]Exclude Controller Group Lists 
- Exclude the following controller groups defined in this list.
- tunnelInterface numberGroups 
- List of groups
- tunnelInterface stringGroups Variable 
- Variable name
- tunnelInterface numberHello Interval 
- Set time period of control hello packets \n\n milli seconds
- tunnelInterface stringHello Interval Variable 
- Variable name
- tunnelInterface numberHello Tolerance 
- Set tolerance of control hello packets \n\n seconds
- tunnelInterface stringHello Tolerance Variable 
- Variable name
- tunnelInterface booleanLast Resort Circuit 
- Set TLOC as last resort
- tunnelInterface stringLast Resort Circuit Variable 
- Variable name
- tunnelInterface booleanLow Bandwidth Link 
- Set the interface as a low-bandwidth circuit
- tunnelInterface stringLow Bandwidth Link Variable 
- Variable name
- tunnelInterface numberMax Control Connections 
- Maximum Control Connections
- tunnelInterface stringMax Control Connections Variable 
- Variable name
- tunnelInterface numberNat Refresh Interval 
- Set time period of nat refresh packets \n\n seconds
- tunnelInterface stringNat Refresh Interval Variable 
- Variable name
- tunnelInterface booleanNetwork Broadcast 
- Accept and respond to network-prefix-directed broadcasts
- tunnelInterface stringNetwork Broadcast Variable 
- Variable name
- tunnelInterface booleanPort Hop 
- Disallow port hopping on the tunnel interface
- tunnelInterface stringPort Hop Variable 
- Variable name
- tunnelInterface numberTunnel Tcp Mss 
- Tunnel TCP MSS on SYN packets, in bytes
- tunnelInterface stringTunnel Tcp Mss Variable 
- Variable name
- tunnelInterface booleanVbond As Stun Server 
- Put this wan interface in STUN mode only
- tunnelInterface stringVbond As Stun Server Variable 
- Variable name
- tunnelInterface numberVmanage Connection Preference 
- Set interface preference for control connection to vManage \n\n
- tunnelInterface stringVmanage Connection Preference Variable 
- Variable name
- tunnelQos stringMode 
- Set tunnel QoS mode
- tunnelQos stringMode Variable 
- Variable name
- version number
- The version of the Feature
- acl_ipv4_ stregress_ feature_ id 
- acl_ipv4_ stringress_ feature_ id 
- acl_ipv6_ stregress_ feature_ id 
- acl_ipv6_ stringress_ feature_ id 
- arps
Sequence[GetTransport Wan Vpn Interface Cellular Feature Arp] 
- Configure ARP entries
- bandwidth_downstream int
- Interface downstream bandwidth capacity, in kbps
- bandwidth_downstream_ strvariable 
- Variable name
- bandwidth_upstream int
- Interface upstream bandwidth capacity, in kbps
- bandwidth_upstream_ strvariable 
- Variable name
- description str
- The description of the Feature
- feature_profile_ strid 
- Feature Profile ID
- id str
- The id of the Feature
- interface_description str
- interface_description_ strvariable 
- Variable name
- interface_mtu int
- Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- 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_dhcp_ strhelper_ variable 
- Variable name
- ipv4_dhcp_ Sequence[str]helpers 
- List of DHCP IPv4 helper addresses (min 1, max 8)
- name str
- The name of the Feature
- nat_ipv4 bool
- Network Address Translation on this interface
- nat_ipv4_ strvariable 
- Variable name
- nat_tcp_ inttimeout 
- Set NAT TCP session timeout, in minutes
- nat_tcp_ strtimeout_ variable 
- Variable name
- nat_udp_ inttimeout 
- Set NAT UDP session timeout, in minutes
- nat_udp_ strtimeout_ variable 
- Variable name
- per_tunnel_ boolqos 
- Per-tunnel Qos
- per_tunnel_ strqos_ variable 
- Variable name
- qos_adaptive bool
- Adaptive QoS
- qos_adaptive_ boolbandwidth_ downstream 
- Shaping Rate Downstream
- qos_adaptive_ boolbandwidth_ upstream 
- Shaping Rate Upstream
- qos_adaptive_ intdefault_ downstream 
- Adaptive QoS default downstream bandwidth (kbps)
- qos_adaptive_ strdefault_ downstream_ variable 
- Variable name
- qos_adaptive_ intdefault_ upstream 
- Adaptive QoS default upstream bandwidth (kbps)
- qos_adaptive_ strdefault_ upstream_ variable 
- Variable name
- qos_adaptive_ intmax_ downstream 
- Downstream max bandwidth limit (kbps)
- qos_adaptive_ strmax_ downstream_ variable 
- Variable name
- qos_adaptive_ intmax_ upstream 
- Upstream max bandwidth limit (kbps)
- qos_adaptive_ strmax_ upstream_ variable 
- Variable name
- qos_adaptive_ intmin_ downstream 
- Downstream min bandwidth limit (kbps)
- qos_adaptive_ strmin_ downstream_ variable 
- Variable name
- qos_adaptive_ intmin_ upstream 
- Upstream min bandwidth limit (kbps)
- qos_adaptive_ strmin_ upstream_ variable 
- Variable name
- qos_adaptive_ intperiod 
- Adapt Period(Minutes)
- qos_adaptive_ strperiod_ variable 
- Variable name
- qos_shaping_ intrate 
- Shaping Rate (Kbps)
- qos_shaping_ strrate_ variable 
- Variable name
- service_provider str
- Service Provider Name
- service_provider_ strvariable 
- Variable name
- shutdown bool
- shutdown_variable str
- Variable name
- tcp_mss int
- TCP MSS on SYN packets, in bytes
- tcp_mss_ strvariable 
- Variable name
- tloc_extension str
- Extends a local TLOC to a remote node only for vpn 0
- tloc_extension_ strvariable 
- Variable name
- tracker str
- Enable tracker for this interface
- tracker_variable str
- Variable name
- transport_wan_ strvpn_ feature_ id 
- Transport WAN VPN Feature ID
- tunnel_bandwidth_ intpercent 
- Tunnels Bandwidth Percent
- tunnel_bandwidth_ strpercent_ variable 
- Variable name
- tunnel_interface bool
- Tunnel Interface on/off
- tunnel_interface_ boolallow_ all 
- Allow all traffic. Overrides all other allow-service options if allow-service all is set
- tunnel_interface_ strallow_ all_ variable 
- Variable name
- tunnel_interface_ boolallow_ bfd 
- Allow/Deny BFD
- tunnel_interface_ strallow_ bfd_ variable 
- Variable name
- tunnel_interface_ boolallow_ bgp 
- Allow/deny BGP
- tunnel_interface_ strallow_ bgp_ variable 
- Variable name
- tunnel_interface_ boolallow_ dhcp 
- Allow/Deny DHCP
- tunnel_interface_ strallow_ dhcp_ variable 
- Variable name
- tunnel_interface_ boolallow_ dns 
- Allow/Deny DNS
- tunnel_interface_ strallow_ dns_ variable 
- Variable name
- tunnel_interface_ boolallow_ https 
- Allow/Deny HTTPS
- tunnel_interface_ strallow_ https_ variable 
- Variable name
- tunnel_interface_ boolallow_ icmp 
- Allow/Deny ICMP
- tunnel_interface_ strallow_ icmp_ variable 
- Variable name
- tunnel_interface_ boolallow_ netconf 
- Allow/Deny NETCONF
- tunnel_interface_ strallow_ netconf_ variable 
- Variable name
- tunnel_interface_ boolallow_ ntp 
- Allow/Deny NTP
- tunnel_interface_ strallow_ ntp_ variable 
- Variable name
- tunnel_interface_ boolallow_ ospf 
- Allow/Deny OSPF
- tunnel_interface_ strallow_ ospf_ variable 
- Variable name
- tunnel_interface_ boolallow_ snmp 
- Allow/Deny SNMP
- tunnel_interface_ strallow_ snmp_ variable 
- Variable name
- tunnel_interface_ boolallow_ ssh 
- Allow/Deny SSH
- tunnel_interface_ strallow_ ssh_ variable 
- Variable name
- tunnel_interface_ boolallow_ stun 
- Allow/Deny STUN
- tunnel_interface_ strallow_ stun_ variable 
- Variable name
- tunnel_interface_ strbind_ loopback_ tunnel 
- Bind loopback tunnel interface to a physical interface
- tunnel_interface_ strbind_ loopback_ tunnel_ variable 
- Variable name
- tunnel_interface_ boolborder 
- Set TLOC as border TLOC
- tunnel_interface_ strborder_ variable 
- Variable name
- tunnel_interface_ strcarrier 
- Set carrier for TLOC
- tunnel_interface_ strcarrier_ variable 
- Variable name
- tunnel_interface_ boolclear_ dont_ fragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- tunnel_interface_ strclear_ dont_ fragment_ variable 
- Variable name
- tunnel_interface_ strcolor 
- Set color for TLOC
- tunnel_interface_ boolcolor_ restrict 
- Restrict this TLOC behavior
- tunnel_interface_ strcolor_ restrict_ variable 
- Variable name
- tunnel_interface_ strcolor_ variable 
- Variable name
- tunnel_interface_ Sequence[Getencapsulations Transport Wan Vpn Interface Cellular Feature Tunnel Interface Encapsulation] 
- Encapsulation for TLOC
- tunnel_interface_ strexclude_ controller_ group_ list_ variable 
- Variable name
- tunnel_interface_ Sequence[int]exclude_ controller_ group_ lists 
- Exclude the following controller groups defined in this list.
- tunnel_interface_ intgroups 
- List of groups
- tunnel_interface_ strgroups_ variable 
- Variable name
- tunnel_interface_ inthello_ interval 
- Set time period of control hello packets \n\n milli seconds
- tunnel_interface_ strhello_ interval_ variable 
- Variable name
- tunnel_interface_ inthello_ tolerance 
- Set tolerance of control hello packets \n\n seconds
- tunnel_interface_ strhello_ tolerance_ variable 
- Variable name
- tunnel_interface_ boollast_ resort_ circuit 
- Set TLOC as last resort
- tunnel_interface_ strlast_ resort_ circuit_ variable 
- Variable name
- tunnel_interface_ boollow_ bandwidth_ link 
- Set the interface as a low-bandwidth circuit
- tunnel_interface_ strlow_ bandwidth_ link_ variable 
- Variable name
- tunnel_interface_ intmax_ control_ connections 
- Maximum Control Connections
- tunnel_interface_ strmax_ control_ connections_ variable 
- Variable name
- tunnel_interface_ intnat_ refresh_ interval 
- Set time period of nat refresh packets \n\n seconds
- tunnel_interface_ strnat_ refresh_ interval_ variable 
- Variable name
- tunnel_interface_ boolnetwork_ broadcast 
- Accept and respond to network-prefix-directed broadcasts
- tunnel_interface_ strnetwork_ broadcast_ variable 
- Variable name
- tunnel_interface_ boolport_ hop 
- Disallow port hopping on the tunnel interface
- tunnel_interface_ strport_ hop_ variable 
- Variable name
- tunnel_interface_ inttunnel_ tcp_ mss 
- Tunnel TCP MSS on SYN packets, in bytes
- tunnel_interface_ strtunnel_ tcp_ mss_ variable 
- Variable name
- tunnel_interface_ boolvbond_ as_ stun_ server 
- Put this wan interface in STUN mode only
- tunnel_interface_ strvbond_ as_ stun_ server_ variable 
- Variable name
- tunnel_interface_ intvmanage_ connection_ preference 
- Set interface preference for control connection to vManage \n\n
- tunnel_interface_ strvmanage_ connection_ preference_ variable 
- Variable name
- tunnel_qos_ strmode 
- Set tunnel QoS mode
- tunnel_qos_ strmode_ variable 
- Variable name
- version int
- The version of the Feature
- aclIpv4Egress StringFeature Id 
- aclIpv4Ingress StringFeature Id 
- aclIpv6Egress StringFeature Id 
- aclIpv6Ingress StringFeature Id 
- arps List<Property Map>
- Configure ARP entries
- bandwidthDownstream Number
- Interface downstream bandwidth capacity, in kbps
- bandwidthDownstream StringVariable 
- Variable name
- bandwidthUpstream Number
- Interface upstream bandwidth capacity, in kbps
- bandwidthUpstream StringVariable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- interfaceDescription String
- interfaceDescription StringVariable 
- Variable name
- interfaceMtu Number
- Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- interfaceMtu StringVariable 
- Variable name
- interfaceName String
- interfaceName StringVariable 
- Variable name
- ipDirected BooleanBroadcast 
- IP Directed-Broadcast
- ipDirected StringBroadcast Variable 
- Variable name
- ipMtu Number
- IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ipMtu StringVariable 
- Variable name
- ipv4DhcpHelper StringVariable 
- Variable name
- ipv4DhcpHelpers List<String>
- List of DHCP IPv4 helper addresses (min 1, max 8)
- name String
- The name of the Feature
- natIpv4 Boolean
- Network Address Translation on this interface
- natIpv4Variable String
- Variable name
- natTcp NumberTimeout 
- Set NAT TCP session timeout, in minutes
- natTcp StringTimeout Variable 
- Variable name
- natUdp NumberTimeout 
- Set NAT UDP session timeout, in minutes
- natUdp StringTimeout Variable 
- Variable name
- perTunnel BooleanQos 
- Per-tunnel Qos
- perTunnel StringQos Variable 
- Variable name
- qosAdaptive Boolean
- Adaptive QoS
- qosAdaptive BooleanBandwidth Downstream 
- Shaping Rate Downstream
- qosAdaptive BooleanBandwidth Upstream 
- Shaping Rate Upstream
- qosAdaptive NumberDefault Downstream 
- Adaptive QoS default downstream bandwidth (kbps)
- qosAdaptive StringDefault Downstream Variable 
- Variable name
- qosAdaptive NumberDefault Upstream 
- Adaptive QoS default upstream bandwidth (kbps)
- qosAdaptive StringDefault Upstream Variable 
- Variable name
- qosAdaptive NumberMax Downstream 
- Downstream max bandwidth limit (kbps)
- qosAdaptive StringMax Downstream Variable 
- Variable name
- qosAdaptive NumberMax Upstream 
- Upstream max bandwidth limit (kbps)
- qosAdaptive StringMax Upstream Variable 
- Variable name
- qosAdaptive NumberMin Downstream 
- Downstream min bandwidth limit (kbps)
- qosAdaptive StringMin Downstream Variable 
- Variable name
- qosAdaptive NumberMin Upstream 
- Upstream min bandwidth limit (kbps)
- qosAdaptive StringMin Upstream Variable 
- Variable name
- qosAdaptive NumberPeriod 
- Adapt Period(Minutes)
- qosAdaptive StringPeriod Variable 
- Variable name
- qosShaping NumberRate 
- Shaping Rate (Kbps)
- qosShaping StringRate Variable 
- Variable name
- serviceProvider String
- Service Provider Name
- serviceProvider StringVariable 
- Variable name
- shutdown Boolean
- shutdownVariable String
- Variable name
- tcpMss Number
- TCP MSS on SYN packets, in bytes
- tcpMss StringVariable 
- Variable name
- tlocExtension String
- Extends a local TLOC to a remote node only for vpn 0
- tlocExtension StringVariable 
- Variable name
- tracker String
- Enable tracker for this interface
- trackerVariable String
- Variable name
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelBandwidth NumberPercent 
- Tunnels Bandwidth Percent
- tunnelBandwidth StringPercent Variable 
- Variable name
- tunnelInterface Boolean
- Tunnel Interface on/off
- tunnelInterface BooleanAllow All 
- Allow all traffic. Overrides all other allow-service options if allow-service all is set
- tunnelInterface StringAllow All Variable 
- Variable name
- tunnelInterface BooleanAllow Bfd 
- Allow/Deny BFD
- tunnelInterface StringAllow Bfd Variable 
- Variable name
- tunnelInterface BooleanAllow Bgp 
- Allow/deny BGP
- tunnelInterface StringAllow Bgp Variable 
- Variable name
- tunnelInterface BooleanAllow Dhcp 
- Allow/Deny DHCP
- tunnelInterface StringAllow Dhcp Variable 
- Variable name
- tunnelInterface BooleanAllow Dns 
- Allow/Deny DNS
- tunnelInterface StringAllow Dns Variable 
- Variable name
- tunnelInterface BooleanAllow Https 
- Allow/Deny HTTPS
- tunnelInterface StringAllow Https Variable 
- Variable name
- tunnelInterface BooleanAllow Icmp 
- Allow/Deny ICMP
- tunnelInterface StringAllow Icmp Variable 
- Variable name
- tunnelInterface BooleanAllow Netconf 
- Allow/Deny NETCONF
- tunnelInterface StringAllow Netconf Variable 
- Variable name
- tunnelInterface BooleanAllow Ntp 
- Allow/Deny NTP
- tunnelInterface StringAllow Ntp Variable 
- Variable name
- tunnelInterface BooleanAllow Ospf 
- Allow/Deny OSPF
- tunnelInterface StringAllow Ospf Variable 
- Variable name
- tunnelInterface BooleanAllow Snmp 
- Allow/Deny SNMP
- tunnelInterface StringAllow Snmp Variable 
- Variable name
- tunnelInterface BooleanAllow Ssh 
- Allow/Deny SSH
- tunnelInterface StringAllow Ssh Variable 
- Variable name
- tunnelInterface BooleanAllow Stun 
- Allow/Deny STUN
- tunnelInterface StringAllow Stun Variable 
- Variable name
- tunnelInterface StringBind Loopback Tunnel 
- Bind loopback tunnel interface to a physical interface
- tunnelInterface StringBind Loopback Tunnel Variable 
- Variable name
- tunnelInterface BooleanBorder 
- Set TLOC as border TLOC
- tunnelInterface StringBorder Variable 
- Variable name
- tunnelInterface StringCarrier 
- Set carrier for TLOC
- tunnelInterface StringCarrier Variable 
- Variable name
- tunnelInterface BooleanClear Dont Fragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- tunnelInterface StringClear Dont Fragment Variable 
- Variable name
- tunnelInterface StringColor 
- Set color for TLOC
- tunnelInterface BooleanColor Restrict 
- Restrict this TLOC behavior
- tunnelInterface StringColor Restrict Variable 
- Variable name
- tunnelInterface StringColor Variable 
- Variable name
- tunnelInterface List<Property Map>Encapsulations 
- Encapsulation for TLOC
- tunnelInterface StringExclude Controller Group List Variable 
- Variable name
- tunnelInterface List<Number>Exclude Controller Group Lists 
- Exclude the following controller groups defined in this list.
- tunnelInterface NumberGroups 
- List of groups
- tunnelInterface StringGroups Variable 
- Variable name
- tunnelInterface NumberHello Interval 
- Set time period of control hello packets \n\n milli seconds
- tunnelInterface StringHello Interval Variable 
- Variable name
- tunnelInterface NumberHello Tolerance 
- Set tolerance of control hello packets \n\n seconds
- tunnelInterface StringHello Tolerance Variable 
- Variable name
- tunnelInterface BooleanLast Resort Circuit 
- Set TLOC as last resort
- tunnelInterface StringLast Resort Circuit Variable 
- Variable name
- tunnelInterface BooleanLow Bandwidth Link 
- Set the interface as a low-bandwidth circuit
- tunnelInterface StringLow Bandwidth Link Variable 
- Variable name
- tunnelInterface NumberMax Control Connections 
- Maximum Control Connections
- tunnelInterface StringMax Control Connections Variable 
- Variable name
- tunnelInterface NumberNat Refresh Interval 
- Set time period of nat refresh packets \n\n seconds
- tunnelInterface StringNat Refresh Interval Variable 
- Variable name
- tunnelInterface BooleanNetwork Broadcast 
- Accept and respond to network-prefix-directed broadcasts
- tunnelInterface StringNetwork Broadcast Variable 
- Variable name
- tunnelInterface BooleanPort Hop 
- Disallow port hopping on the tunnel interface
- tunnelInterface StringPort Hop Variable 
- Variable name
- tunnelInterface NumberTunnel Tcp Mss 
- Tunnel TCP MSS on SYN packets, in bytes
- tunnelInterface StringTunnel Tcp Mss Variable 
- Variable name
- tunnelInterface BooleanVbond As Stun Server 
- Put this wan interface in STUN mode only
- tunnelInterface StringVbond As Stun Server Variable 
- Variable name
- tunnelInterface NumberVmanage Connection Preference 
- Set interface preference for control connection to vManage \n\n
- tunnelInterface StringVmanage Connection Preference Variable 
- Variable name
- tunnelQos StringMode 
- Set tunnel QoS mode
- tunnelQos StringMode Variable 
- Variable name
- version Number
- The version of the Feature
Supporting Types
GetTransportWanVpnInterfaceCellularFeatureArp       
- IpAddress string
- IP V4 Address
- IpAddress stringVariable 
- Variable name
- MacAddress string
- MAC Address
- MacAddress stringVariable 
- Variable name
- IpAddress string
- IP V4 Address
- IpAddress stringVariable 
- Variable name
- MacAddress string
- MAC Address
- MacAddress stringVariable 
- Variable name
- ipAddress String
- IP V4 Address
- ipAddress StringVariable 
- Variable name
- macAddress String
- MAC Address
- macAddress StringVariable 
- Variable name
- ipAddress string
- IP V4 Address
- ipAddress stringVariable 
- Variable name
- macAddress string
- MAC Address
- macAddress stringVariable 
- Variable name
- ip_address str
- IP V4 Address
- ip_address_ strvariable 
- Variable name
- mac_address str
- MAC Address
- mac_address_ strvariable 
- Variable name
- ipAddress String
- IP V4 Address
- ipAddress StringVariable 
- Variable name
- macAddress String
- MAC Address
- macAddress StringVariable 
- Variable name
GetTransportWanVpnInterfaceCellularFeatureTunnelInterfaceEncapsulation         
- Encapsulation string
- Encapsulation
- Preference int
- Set preference for TLOC
- PreferenceVariable string
- Variable name
- Weight int
- Set weight for TLOC
- WeightVariable string
- Variable name
- Encapsulation string
- Encapsulation
- Preference int
- Set preference for TLOC
- PreferenceVariable string
- Variable name
- Weight int
- Set weight for TLOC
- WeightVariable string
- Variable name
- encapsulation String
- Encapsulation
- preference Integer
- Set preference for TLOC
- preferenceVariable String
- Variable name
- weight Integer
- Set weight for TLOC
- weightVariable String
- Variable name
- encapsulation string
- Encapsulation
- preference number
- Set preference for TLOC
- preferenceVariable string
- Variable name
- weight number
- Set weight for TLOC
- weightVariable string
- Variable name
- encapsulation str
- Encapsulation
- preference int
- Set preference for TLOC
- preference_variable str
- Variable name
- weight int
- Set weight for TLOC
- weight_variable str
- Variable name
- encapsulation String
- Encapsulation
- preference Number
- Set preference for TLOC
- preferenceVariable String
- Variable name
- weight Number
- Set weight for TLOC
- weightVariable String
- Variable name
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the sdwanTerraform Provider.
