1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. getTransportWanVpnInterfaceT1E1SerialFeature
Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi

sdwan.getTransportWanVpnInterfaceT1E1SerialFeature

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi

    This data source can read the Transport WAN VPN Interface T1 E1 Serial Feature.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = sdwan.getTransportWanVpnInterfaceT1E1SerialFeature({
        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_t1_e1_serial_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.LookupTransportWanVpnInterfaceT1E1SerialFeature(ctx, &sdwan.LookupTransportWanVpnInterfaceT1E1SerialFeatureArgs{
    			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.GetTransportWanVpnInterfaceT1E1SerialFeature.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.GetTransportWanVpnInterfaceT1E1SerialFeatureArgs;
    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.getTransportWanVpnInterfaceT1E1SerialFeature(GetTransportWanVpnInterfaceT1E1SerialFeatureArgs.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:getTransportWanVpnInterfaceT1E1SerialFeature
          Arguments:
            id: f6b2c44c-693c-4763-b010-895aa3d236bd
            featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
            transportWanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
    

    Using getTransportWanVpnInterfaceT1E1SerialFeature

    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 getTransportWanVpnInterfaceT1E1SerialFeature(args: GetTransportWanVpnInterfaceT1E1SerialFeatureArgs, opts?: InvokeOptions): Promise<GetTransportWanVpnInterfaceT1E1SerialFeatureResult>
    function getTransportWanVpnInterfaceT1E1SerialFeatureOutput(args: GetTransportWanVpnInterfaceT1E1SerialFeatureOutputArgs, opts?: InvokeOptions): Output<GetTransportWanVpnInterfaceT1E1SerialFeatureResult>
    def get_transport_wan_vpn_interface_t1_e1_serial_feature(feature_profile_id: Optional[str] = None,
                                                             id: Optional[str] = None,
                                                             transport_wan_vpn_feature_id: Optional[str] = None,
                                                             opts: Optional[InvokeOptions] = None) -> GetTransportWanVpnInterfaceT1E1SerialFeatureResult
    def get_transport_wan_vpn_interface_t1_e1_serial_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[GetTransportWanVpnInterfaceT1E1SerialFeatureResult]
    func LookupTransportWanVpnInterfaceT1E1SerialFeature(ctx *Context, args *LookupTransportWanVpnInterfaceT1E1SerialFeatureArgs, opts ...InvokeOption) (*LookupTransportWanVpnInterfaceT1E1SerialFeatureResult, error)
    func LookupTransportWanVpnInterfaceT1E1SerialFeatureOutput(ctx *Context, args *LookupTransportWanVpnInterfaceT1E1SerialFeatureOutputArgs, opts ...InvokeOption) LookupTransportWanVpnInterfaceT1E1SerialFeatureResultOutput

    > Note: This function is named LookupTransportWanVpnInterfaceT1E1SerialFeature in the Go SDK.

    public static class GetTransportWanVpnInterfaceT1E1SerialFeature 
    {
        public static Task<GetTransportWanVpnInterfaceT1E1SerialFeatureResult> InvokeAsync(GetTransportWanVpnInterfaceT1E1SerialFeatureArgs args, InvokeOptions? opts = null)
        public static Output<GetTransportWanVpnInterfaceT1E1SerialFeatureResult> Invoke(GetTransportWanVpnInterfaceT1E1SerialFeatureInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTransportWanVpnInterfaceT1E1SerialFeatureResult> getTransportWanVpnInterfaceT1E1SerialFeature(GetTransportWanVpnInterfaceT1E1SerialFeatureArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: sdwan:index/getTransportWanVpnInterfaceT1E1SerialFeature:getTransportWanVpnInterfaceT1E1SerialFeature
      arguments:
        # arguments dictionary

    The following arguments are supported:

    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Feature
    transportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Feature
    transport_wan_vpn_feature_id str
    Transport WAN VPN Feature ID
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID

    getTransportWanVpnInterfaceT1E1SerialFeature Result

    The following output properties are available:

    Bandwidth int
    Interface bandwidth capacity, in kbps
    BandwidthDownstream int
    Interface downstream bandwidth capacity, in kbps
    BandwidthDownstreamVariable string
    Variable name
    BandwidthVariable string
    Variable name
    ClockRate string
    Set preference for interface Clock speed
    ClockRateVariable string
    Variable name
    Description string
    The description of the Feature
    Encapsulation string
    Configure Encapsulation for interface
    EncapsulationVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    InterfaceName string
    Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
    InterfaceNameVariable string
    Variable name
    IpMtu int
    Set ip mtu
    IpMtuVariable string
    Variable name
    Ipv4Address string
    Ipv4AddressVariable string
    Variable name
    Ipv4SubnetMask string
    Ipv4SubnetMaskVariable string
    Variable name
    Ipv6Address string
    Assign IPv6 address
    Ipv6AddressVariable string
    Variable name
    Mtu int
    Interface MTU \n\n, in bytes
    MtuVariable string
    Variable name
    Name string
    The name of the Feature
    PerTunnelQos bool
    Per-tunnel Qos
    PerTunnelQosAggregator bool
    Per-tunnel QoS Aggregator
    PerTunnelQosAggregatorVariable string
    Variable name
    PerTunnelQosVariable string
    Variable name
    QosShapingRate int
    1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
    QosShapingRateVariable string
    Variable name
    Shutdown bool
    Administrative state
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes
    TcpMssVariable string
    Variable name
    TlocExtension string
    Extends a local TLOC to a remote node only for vpn 0
    TlocExtensionVariable string
    Variable name
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    TunnelInterface bool
    Tunnel Interface
    TunnelInterfaceAllowAll bool
    Allow all traffic. Overrides all other allow-service options if allow-service all is set
    TunnelInterfaceAllowAllVariable string
    Variable name
    TunnelInterfaceAllowBfd bool
    Allow/Deny BFD
    TunnelInterfaceAllowBfdVariable string
    Variable name
    TunnelInterfaceAllowBgp bool
    Allow/deny BGP
    TunnelInterfaceAllowBgpVariable string
    Variable name
    TunnelInterfaceAllowDhcp bool
    Allow/Deny DHCP
    TunnelInterfaceAllowDhcpVariable string
    Variable name
    TunnelInterfaceAllowDns bool
    Allow/Deny DNS
    TunnelInterfaceAllowDnsVariable string
    Variable name
    TunnelInterfaceAllowHttps bool
    Allow/Deny Https
    TunnelInterfaceAllowHttpsVariable string
    Variable name
    TunnelInterfaceAllowIcmp bool
    Allow/Deny ICMP
    TunnelInterfaceAllowIcmpVariable string
    Variable name
    TunnelInterfaceAllowNetconf bool
    Allow/Deny NETCONF
    TunnelInterfaceAllowNetconfVariable string
    Variable name
    TunnelInterfaceAllowNtp bool
    Allow/Deny NTP
    TunnelInterfaceAllowNtpVariable string
    Variable name
    TunnelInterfaceAllowOspf bool
    Allow/Deny OSPF
    TunnelInterfaceAllowOspfVariable string
    Variable name
    TunnelInterfaceAllowSnmp bool
    Allow/Deny SNMP
    TunnelInterfaceAllowSnmpVariable string
    Variable name
    TunnelInterfaceAllowSsh bool
    Allow/Deny SSH
    TunnelInterfaceAllowSshVariable string
    Variable name
    TunnelInterfaceAllowStun bool
    Allow/Deny STUN
    TunnelInterfaceAllowStunVariable string
    Variable name
    TunnelInterfaceBindLoopbackTunnel string
    Bind loopback tunnel interface to a physical interface
    TunnelInterfaceBindLoopbackTunnelVariable string
    Variable name
    TunnelInterfaceBorder bool
    Set TLOC as border TLOC
    TunnelInterfaceBorderVariable string
    Variable name
    TunnelInterfaceCarrier string
    Set carrier for TLOC
    TunnelInterfaceCarrierVariable string
    Variable name
    TunnelInterfaceClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    TunnelInterfaceClearDontFragmentVariable string
    Variable name
    TunnelInterfaceClearNetworkBroadcast bool
    Accept and respond to network-prefix-directed broadcasts)
    TunnelInterfaceClearNetworkBroadcastVariable string
    Variable name
    TunnelInterfaceColor string
    Set color for TLOC
    TunnelInterfaceColorVariable string
    Variable name
    TunnelInterfaceEncapsulations List<GetTransportWanVpnInterfaceT1E1SerialFeatureTunnelInterfaceEncapsulation>
    Encapsulation for TLOC
    TunnelInterfaceExcludeControllerGroupListVariable string
    Variable name
    TunnelInterfaceExcludeControllerGroupLists List<int>
    Exclude the following controller groups defined in this list
    TunnelInterfaceGroups int
    List of groups
    TunnelInterfaceGroupsVariable string
    Variable name
    TunnelInterfaceHelloInterval int
    Set time period of control hello packets \n\n milli seconds
    TunnelInterfaceHelloIntervalVariable string
    Variable name
    TunnelInterfaceHelloTolerance int
    Set tolerance of control hello packets \n\n seconds
    TunnelInterfaceHelloToleranceVariable string
    Variable name
    TunnelInterfaceLastResortCircuit bool
    Set TLOC as last resort
    TunnelInterfaceLastResortCircuitVariable string
    Variable name
    TunnelInterfaceLowBandwidthLink bool
    Set the interface as a low-bandwidth circuit
    TunnelInterfaceLowBandwidthLinkVariable string
    Variable name
    TunnelInterfaceMaxControlConnections int
    Set the maximum number of control connections for this TLOC
    TunnelInterfaceMaxControlConnectionsVariable string
    Variable name
    TunnelInterfaceNatRefreshInterval int
    Set time period of nat refresh packets \n\n seconds
    TunnelInterfaceNatRefreshIntervalVariable string
    Variable name
    TunnelInterfacePortHop bool
    Disallow port hopping on the tunnel interface
    TunnelInterfacePortHopVariable string
    Variable name
    TunnelInterfaceRestrict bool
    Restrict this TLOC behavior
    TunnelInterfaceRestrictVariable string
    Variable name
    TunnelInterfaceTunnelTcpMss int
    Tunnel TCP MSS on SYN packets, in bytes
    TunnelInterfaceTunnelTcpMssVariable string
    Variable name
    TunnelInterfaceVbondAsStunServer bool
    Put this wan interface in STUN mode only
    TunnelInterfaceVbondAsStunServerVariable string
    Variable name
    TunnelInterfaceVmanageConnectionPreference int
    Set interface preference for control connection to vManage \n\n
    TunnelInterfaceVmanageConnectionPreferenceVariable string
    Variable name
    TunnelQosMode string
    Set tunnel QoS mode
    TunnelQosModeVariable string
    Variable name
    Version int
    The version of the Feature
    Bandwidth int
    Interface bandwidth capacity, in kbps
    BandwidthDownstream int
    Interface downstream bandwidth capacity, in kbps
    BandwidthDownstreamVariable string
    Variable name
    BandwidthVariable string
    Variable name
    ClockRate string
    Set preference for interface Clock speed
    ClockRateVariable string
    Variable name
    Description string
    The description of the Feature
    Encapsulation string
    Configure Encapsulation for interface
    EncapsulationVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    InterfaceName string
    Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
    InterfaceNameVariable string
    Variable name
    IpMtu int
    Set ip mtu
    IpMtuVariable string
    Variable name
    Ipv4Address string
    Ipv4AddressVariable string
    Variable name
    Ipv4SubnetMask string
    Ipv4SubnetMaskVariable string
    Variable name
    Ipv6Address string
    Assign IPv6 address
    Ipv6AddressVariable string
    Variable name
    Mtu int
    Interface MTU \n\n, in bytes
    MtuVariable string
    Variable name
    Name string
    The name of the Feature
    PerTunnelQos bool
    Per-tunnel Qos
    PerTunnelQosAggregator bool
    Per-tunnel QoS Aggregator
    PerTunnelQosAggregatorVariable string
    Variable name
    PerTunnelQosVariable string
    Variable name
    QosShapingRate int
    1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
    QosShapingRateVariable string
    Variable name
    Shutdown bool
    Administrative state
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes
    TcpMssVariable string
    Variable name
    TlocExtension string
    Extends a local TLOC to a remote node only for vpn 0
    TlocExtensionVariable string
    Variable name
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    TunnelInterface bool
    Tunnel Interface
    TunnelInterfaceAllowAll bool
    Allow all traffic. Overrides all other allow-service options if allow-service all is set
    TunnelInterfaceAllowAllVariable string
    Variable name
    TunnelInterfaceAllowBfd bool
    Allow/Deny BFD
    TunnelInterfaceAllowBfdVariable string
    Variable name
    TunnelInterfaceAllowBgp bool
    Allow/deny BGP
    TunnelInterfaceAllowBgpVariable string
    Variable name
    TunnelInterfaceAllowDhcp bool
    Allow/Deny DHCP
    TunnelInterfaceAllowDhcpVariable string
    Variable name
    TunnelInterfaceAllowDns bool
    Allow/Deny DNS
    TunnelInterfaceAllowDnsVariable string
    Variable name
    TunnelInterfaceAllowHttps bool
    Allow/Deny Https
    TunnelInterfaceAllowHttpsVariable string
    Variable name
    TunnelInterfaceAllowIcmp bool
    Allow/Deny ICMP
    TunnelInterfaceAllowIcmpVariable string
    Variable name
    TunnelInterfaceAllowNetconf bool
    Allow/Deny NETCONF
    TunnelInterfaceAllowNetconfVariable string
    Variable name
    TunnelInterfaceAllowNtp bool
    Allow/Deny NTP
    TunnelInterfaceAllowNtpVariable string
    Variable name
    TunnelInterfaceAllowOspf bool
    Allow/Deny OSPF
    TunnelInterfaceAllowOspfVariable string
    Variable name
    TunnelInterfaceAllowSnmp bool
    Allow/Deny SNMP
    TunnelInterfaceAllowSnmpVariable string
    Variable name
    TunnelInterfaceAllowSsh bool
    Allow/Deny SSH
    TunnelInterfaceAllowSshVariable string
    Variable name
    TunnelInterfaceAllowStun bool
    Allow/Deny STUN
    TunnelInterfaceAllowStunVariable string
    Variable name
    TunnelInterfaceBindLoopbackTunnel string
    Bind loopback tunnel interface to a physical interface
    TunnelInterfaceBindLoopbackTunnelVariable string
    Variable name
    TunnelInterfaceBorder bool
    Set TLOC as border TLOC
    TunnelInterfaceBorderVariable string
    Variable name
    TunnelInterfaceCarrier string
    Set carrier for TLOC
    TunnelInterfaceCarrierVariable string
    Variable name
    TunnelInterfaceClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    TunnelInterfaceClearDontFragmentVariable string
    Variable name
    TunnelInterfaceClearNetworkBroadcast bool
    Accept and respond to network-prefix-directed broadcasts)
    TunnelInterfaceClearNetworkBroadcastVariable string
    Variable name
    TunnelInterfaceColor string
    Set color for TLOC
    TunnelInterfaceColorVariable string
    Variable name
    TunnelInterfaceEncapsulations []GetTransportWanVpnInterfaceT1E1SerialFeatureTunnelInterfaceEncapsulation
    Encapsulation for TLOC
    TunnelInterfaceExcludeControllerGroupListVariable string
    Variable name
    TunnelInterfaceExcludeControllerGroupLists []int
    Exclude the following controller groups defined in this list
    TunnelInterfaceGroups int
    List of groups
    TunnelInterfaceGroupsVariable string
    Variable name
    TunnelInterfaceHelloInterval int
    Set time period of control hello packets \n\n milli seconds
    TunnelInterfaceHelloIntervalVariable string
    Variable name
    TunnelInterfaceHelloTolerance int
    Set tolerance of control hello packets \n\n seconds
    TunnelInterfaceHelloToleranceVariable string
    Variable name
    TunnelInterfaceLastResortCircuit bool
    Set TLOC as last resort
    TunnelInterfaceLastResortCircuitVariable string
    Variable name
    TunnelInterfaceLowBandwidthLink bool
    Set the interface as a low-bandwidth circuit
    TunnelInterfaceLowBandwidthLinkVariable string
    Variable name
    TunnelInterfaceMaxControlConnections int
    Set the maximum number of control connections for this TLOC
    TunnelInterfaceMaxControlConnectionsVariable string
    Variable name
    TunnelInterfaceNatRefreshInterval int
    Set time period of nat refresh packets \n\n seconds
    TunnelInterfaceNatRefreshIntervalVariable string
    Variable name
    TunnelInterfacePortHop bool
    Disallow port hopping on the tunnel interface
    TunnelInterfacePortHopVariable string
    Variable name
    TunnelInterfaceRestrict bool
    Restrict this TLOC behavior
    TunnelInterfaceRestrictVariable string
    Variable name
    TunnelInterfaceTunnelTcpMss int
    Tunnel TCP MSS on SYN packets, in bytes
    TunnelInterfaceTunnelTcpMssVariable string
    Variable name
    TunnelInterfaceVbondAsStunServer bool
    Put this wan interface in STUN mode only
    TunnelInterfaceVbondAsStunServerVariable string
    Variable name
    TunnelInterfaceVmanageConnectionPreference int
    Set interface preference for control connection to vManage \n\n
    TunnelInterfaceVmanageConnectionPreferenceVariable string
    Variable name
    TunnelQosMode string
    Set tunnel QoS mode
    TunnelQosModeVariable string
    Variable name
    Version int
    The version of the Feature
    bandwidth Integer
    Interface bandwidth capacity, in kbps
    bandwidthDownstream Integer
    Interface downstream bandwidth capacity, in kbps
    bandwidthDownstreamVariable String
    Variable name
    bandwidthVariable String
    Variable name
    clockRate String
    Set preference for interface Clock speed
    clockRateVariable String
    Variable name
    description String
    The description of the Feature
    encapsulation String
    Configure Encapsulation for interface
    encapsulationVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    interfaceName String
    Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
    interfaceNameVariable String
    Variable name
    ipMtu Integer
    Set ip mtu
    ipMtuVariable String
    Variable name
    ipv4Address String
    ipv4AddressVariable String
    Variable name
    ipv4SubnetMask String
    ipv4SubnetMaskVariable String
    Variable name
    ipv6Address String
    Assign IPv6 address
    ipv6AddressVariable String
    Variable name
    mtu Integer
    Interface MTU \n\n, in bytes
    mtuVariable String
    Variable name
    name String
    The name of the Feature
    perTunnelQos Boolean
    Per-tunnel Qos
    perTunnelQosAggregator Boolean
    Per-tunnel QoS Aggregator
    perTunnelQosAggregatorVariable String
    Variable name
    perTunnelQosVariable String
    Variable name
    qosShapingRate Integer
    1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
    qosShapingRateVariable String
    Variable name
    shutdown Boolean
    Administrative state
    shutdownVariable String
    Variable name
    tcpMss Integer
    TCP MSS on SYN packets, in bytes
    tcpMssVariable String
    Variable name
    tlocExtension String
    Extends a local TLOC to a remote node only for vpn 0
    tlocExtensionVariable String
    Variable name
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    tunnelInterface Boolean
    Tunnel Interface
    tunnelInterfaceAllowAll Boolean
    Allow all traffic. Overrides all other allow-service options if allow-service all is set
    tunnelInterfaceAllowAllVariable String
    Variable name
    tunnelInterfaceAllowBfd Boolean
    Allow/Deny BFD
    tunnelInterfaceAllowBfdVariable String
    Variable name
    tunnelInterfaceAllowBgp Boolean
    Allow/deny BGP
    tunnelInterfaceAllowBgpVariable String
    Variable name
    tunnelInterfaceAllowDhcp Boolean
    Allow/Deny DHCP
    tunnelInterfaceAllowDhcpVariable String
    Variable name
    tunnelInterfaceAllowDns Boolean
    Allow/Deny DNS
    tunnelInterfaceAllowDnsVariable String
    Variable name
    tunnelInterfaceAllowHttps Boolean
    Allow/Deny Https
    tunnelInterfaceAllowHttpsVariable String
    Variable name
    tunnelInterfaceAllowIcmp Boolean
    Allow/Deny ICMP
    tunnelInterfaceAllowIcmpVariable String
    Variable name
    tunnelInterfaceAllowNetconf Boolean
    Allow/Deny NETCONF
    tunnelInterfaceAllowNetconfVariable String
    Variable name
    tunnelInterfaceAllowNtp Boolean
    Allow/Deny NTP
    tunnelInterfaceAllowNtpVariable String
    Variable name
    tunnelInterfaceAllowOspf Boolean
    Allow/Deny OSPF
    tunnelInterfaceAllowOspfVariable String
    Variable name
    tunnelInterfaceAllowSnmp Boolean
    Allow/Deny SNMP
    tunnelInterfaceAllowSnmpVariable String
    Variable name
    tunnelInterfaceAllowSsh Boolean
    Allow/Deny SSH
    tunnelInterfaceAllowSshVariable String
    Variable name
    tunnelInterfaceAllowStun Boolean
    Allow/Deny STUN
    tunnelInterfaceAllowStunVariable String
    Variable name
    tunnelInterfaceBindLoopbackTunnel String
    Bind loopback tunnel interface to a physical interface
    tunnelInterfaceBindLoopbackTunnelVariable String
    Variable name
    tunnelInterfaceBorder Boolean
    Set TLOC as border TLOC
    tunnelInterfaceBorderVariable String
    Variable name
    tunnelInterfaceCarrier String
    Set carrier for TLOC
    tunnelInterfaceCarrierVariable String
    Variable name
    tunnelInterfaceClearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    tunnelInterfaceClearDontFragmentVariable String
    Variable name
    tunnelInterfaceClearNetworkBroadcast Boolean
    Accept and respond to network-prefix-directed broadcasts)
    tunnelInterfaceClearNetworkBroadcastVariable String
    Variable name
    tunnelInterfaceColor String
    Set color for TLOC
    tunnelInterfaceColorVariable String
    Variable name
    tunnelInterfaceEncapsulations List<GetTransportWanVpnInterfaceT1E1SerialFeatureTunnelInterfaceEncapsulation>
    Encapsulation for TLOC
    tunnelInterfaceExcludeControllerGroupListVariable String
    Variable name
    tunnelInterfaceExcludeControllerGroupLists List<Integer>
    Exclude the following controller groups defined in this list
    tunnelInterfaceGroups Integer
    List of groups
    tunnelInterfaceGroupsVariable String
    Variable name
    tunnelInterfaceHelloInterval Integer
    Set time period of control hello packets \n\n milli seconds
    tunnelInterfaceHelloIntervalVariable String
    Variable name
    tunnelInterfaceHelloTolerance Integer
    Set tolerance of control hello packets \n\n seconds
    tunnelInterfaceHelloToleranceVariable String
    Variable name
    tunnelInterfaceLastResortCircuit Boolean
    Set TLOC as last resort
    tunnelInterfaceLastResortCircuitVariable String
    Variable name
    tunnelInterfaceLowBandwidthLink Boolean
    Set the interface as a low-bandwidth circuit
    tunnelInterfaceLowBandwidthLinkVariable String
    Variable name
    tunnelInterfaceMaxControlConnections Integer
    Set the maximum number of control connections for this TLOC
    tunnelInterfaceMaxControlConnectionsVariable String
    Variable name
    tunnelInterfaceNatRefreshInterval Integer
    Set time period of nat refresh packets \n\n seconds
    tunnelInterfaceNatRefreshIntervalVariable String
    Variable name
    tunnelInterfacePortHop Boolean
    Disallow port hopping on the tunnel interface
    tunnelInterfacePortHopVariable String
    Variable name
    tunnelInterfaceRestrict Boolean
    Restrict this TLOC behavior
    tunnelInterfaceRestrictVariable String
    Variable name
    tunnelInterfaceTunnelTcpMss Integer
    Tunnel TCP MSS on SYN packets, in bytes
    tunnelInterfaceTunnelTcpMssVariable String
    Variable name
    tunnelInterfaceVbondAsStunServer Boolean
    Put this wan interface in STUN mode only
    tunnelInterfaceVbondAsStunServerVariable String
    Variable name
    tunnelInterfaceVmanageConnectionPreference Integer
    Set interface preference for control connection to vManage \n\n
    tunnelInterfaceVmanageConnectionPreferenceVariable String
    Variable name
    tunnelQosMode String
    Set tunnel QoS mode
    tunnelQosModeVariable String
    Variable name
    version Integer
    The version of the Feature
    bandwidth number
    Interface bandwidth capacity, in kbps
    bandwidthDownstream number
    Interface downstream bandwidth capacity, in kbps
    bandwidthDownstreamVariable string
    Variable name
    bandwidthVariable string
    Variable name
    clockRate string
    Set preference for interface Clock speed
    clockRateVariable string
    Variable name
    description string
    The description of the Feature
    encapsulation string
    Configure Encapsulation for interface
    encapsulationVariable string
    Variable name
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Feature
    interfaceName string
    Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
    interfaceNameVariable string
    Variable name
    ipMtu number
    Set ip mtu
    ipMtuVariable string
    Variable name
    ipv4Address string
    ipv4AddressVariable string
    Variable name
    ipv4SubnetMask string
    ipv4SubnetMaskVariable string
    Variable name
    ipv6Address string
    Assign IPv6 address
    ipv6AddressVariable string
    Variable name
    mtu number
    Interface MTU \n\n, in bytes
    mtuVariable string
    Variable name
    name string
    The name of the Feature
    perTunnelQos boolean
    Per-tunnel Qos
    perTunnelQosAggregator boolean
    Per-tunnel QoS Aggregator
    perTunnelQosAggregatorVariable string
    Variable name
    perTunnelQosVariable string
    Variable name
    qosShapingRate number
    1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
    qosShapingRateVariable string
    Variable name
    shutdown boolean
    Administrative state
    shutdownVariable string
    Variable name
    tcpMss number
    TCP MSS on SYN packets, in bytes
    tcpMssVariable string
    Variable name
    tlocExtension string
    Extends a local TLOC to a remote node only for vpn 0
    tlocExtensionVariable string
    Variable name
    transportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    tunnelInterface boolean
    Tunnel Interface
    tunnelInterfaceAllowAll boolean
    Allow all traffic. Overrides all other allow-service options if allow-service all is set
    tunnelInterfaceAllowAllVariable string
    Variable name
    tunnelInterfaceAllowBfd boolean
    Allow/Deny BFD
    tunnelInterfaceAllowBfdVariable string
    Variable name
    tunnelInterfaceAllowBgp boolean
    Allow/deny BGP
    tunnelInterfaceAllowBgpVariable string
    Variable name
    tunnelInterfaceAllowDhcp boolean
    Allow/Deny DHCP
    tunnelInterfaceAllowDhcpVariable string
    Variable name
    tunnelInterfaceAllowDns boolean
    Allow/Deny DNS
    tunnelInterfaceAllowDnsVariable string
    Variable name
    tunnelInterfaceAllowHttps boolean
    Allow/Deny Https
    tunnelInterfaceAllowHttpsVariable string
    Variable name
    tunnelInterfaceAllowIcmp boolean
    Allow/Deny ICMP
    tunnelInterfaceAllowIcmpVariable string
    Variable name
    tunnelInterfaceAllowNetconf boolean
    Allow/Deny NETCONF
    tunnelInterfaceAllowNetconfVariable string
    Variable name
    tunnelInterfaceAllowNtp boolean
    Allow/Deny NTP
    tunnelInterfaceAllowNtpVariable string
    Variable name
    tunnelInterfaceAllowOspf boolean
    Allow/Deny OSPF
    tunnelInterfaceAllowOspfVariable string
    Variable name
    tunnelInterfaceAllowSnmp boolean
    Allow/Deny SNMP
    tunnelInterfaceAllowSnmpVariable string
    Variable name
    tunnelInterfaceAllowSsh boolean
    Allow/Deny SSH
    tunnelInterfaceAllowSshVariable string
    Variable name
    tunnelInterfaceAllowStun boolean
    Allow/Deny STUN
    tunnelInterfaceAllowStunVariable string
    Variable name
    tunnelInterfaceBindLoopbackTunnel string
    Bind loopback tunnel interface to a physical interface
    tunnelInterfaceBindLoopbackTunnelVariable string
    Variable name
    tunnelInterfaceBorder boolean
    Set TLOC as border TLOC
    tunnelInterfaceBorderVariable string
    Variable name
    tunnelInterfaceCarrier string
    Set carrier for TLOC
    tunnelInterfaceCarrierVariable string
    Variable name
    tunnelInterfaceClearDontFragment boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    tunnelInterfaceClearDontFragmentVariable string
    Variable name
    tunnelInterfaceClearNetworkBroadcast boolean
    Accept and respond to network-prefix-directed broadcasts)
    tunnelInterfaceClearNetworkBroadcastVariable string
    Variable name
    tunnelInterfaceColor string
    Set color for TLOC
    tunnelInterfaceColorVariable string
    Variable name
    tunnelInterfaceEncapsulations GetTransportWanVpnInterfaceT1E1SerialFeatureTunnelInterfaceEncapsulation[]
    Encapsulation for TLOC
    tunnelInterfaceExcludeControllerGroupListVariable string
    Variable name
    tunnelInterfaceExcludeControllerGroupLists number[]
    Exclude the following controller groups defined in this list
    tunnelInterfaceGroups number
    List of groups
    tunnelInterfaceGroupsVariable string
    Variable name
    tunnelInterfaceHelloInterval number
    Set time period of control hello packets \n\n milli seconds
    tunnelInterfaceHelloIntervalVariable string
    Variable name
    tunnelInterfaceHelloTolerance number
    Set tolerance of control hello packets \n\n seconds
    tunnelInterfaceHelloToleranceVariable string
    Variable name
    tunnelInterfaceLastResortCircuit boolean
    Set TLOC as last resort
    tunnelInterfaceLastResortCircuitVariable string
    Variable name
    tunnelInterfaceLowBandwidthLink boolean
    Set the interface as a low-bandwidth circuit
    tunnelInterfaceLowBandwidthLinkVariable string
    Variable name
    tunnelInterfaceMaxControlConnections number
    Set the maximum number of control connections for this TLOC
    tunnelInterfaceMaxControlConnectionsVariable string
    Variable name
    tunnelInterfaceNatRefreshInterval number
    Set time period of nat refresh packets \n\n seconds
    tunnelInterfaceNatRefreshIntervalVariable string
    Variable name
    tunnelInterfacePortHop boolean
    Disallow port hopping on the tunnel interface
    tunnelInterfacePortHopVariable string
    Variable name
    tunnelInterfaceRestrict boolean
    Restrict this TLOC behavior
    tunnelInterfaceRestrictVariable string
    Variable name
    tunnelInterfaceTunnelTcpMss number
    Tunnel TCP MSS on SYN packets, in bytes
    tunnelInterfaceTunnelTcpMssVariable string
    Variable name
    tunnelInterfaceVbondAsStunServer boolean
    Put this wan interface in STUN mode only
    tunnelInterfaceVbondAsStunServerVariable string
    Variable name
    tunnelInterfaceVmanageConnectionPreference number
    Set interface preference for control connection to vManage \n\n
    tunnelInterfaceVmanageConnectionPreferenceVariable string
    Variable name
    tunnelQosMode string
    Set tunnel QoS mode
    tunnelQosModeVariable string
    Variable name
    version number
    The version of the Feature
    bandwidth int
    Interface bandwidth capacity, in kbps
    bandwidth_downstream int
    Interface downstream bandwidth capacity, in kbps
    bandwidth_downstream_variable str
    Variable name
    bandwidth_variable str
    Variable name
    clock_rate str
    Set preference for interface Clock speed
    clock_rate_variable str
    Variable name
    description str
    The description of the Feature
    encapsulation str
    Configure Encapsulation for interface
    encapsulation_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Feature
    interface_name str
    Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
    interface_name_variable str
    Variable name
    ip_mtu int
    Set ip mtu
    ip_mtu_variable str
    Variable name
    ipv4_address str
    ipv4_address_variable str
    Variable name
    ipv4_subnet_mask str
    ipv4_subnet_mask_variable str
    Variable name
    ipv6_address str
    Assign IPv6 address
    ipv6_address_variable str
    Variable name
    mtu int
    Interface MTU \n\n, in bytes
    mtu_variable str
    Variable name
    name str
    The name of the Feature
    per_tunnel_qos bool
    Per-tunnel Qos
    per_tunnel_qos_aggregator bool
    Per-tunnel QoS Aggregator
    per_tunnel_qos_aggregator_variable str
    Variable name
    per_tunnel_qos_variable str
    Variable name
    qos_shaping_rate int
    1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
    qos_shaping_rate_variable str
    Variable name
    shutdown bool
    Administrative state
    shutdown_variable str
    Variable name
    tcp_mss int
    TCP MSS on SYN packets, in bytes
    tcp_mss_variable str
    Variable name
    tloc_extension str
    Extends a local TLOC to a remote node only for vpn 0
    tloc_extension_variable str
    Variable name
    transport_wan_vpn_feature_id str
    Transport WAN VPN Feature ID
    tunnel_interface bool
    Tunnel Interface
    tunnel_interface_allow_all bool
    Allow all traffic. Overrides all other allow-service options if allow-service all is set
    tunnel_interface_allow_all_variable str
    Variable name
    tunnel_interface_allow_bfd bool
    Allow/Deny BFD
    tunnel_interface_allow_bfd_variable str
    Variable name
    tunnel_interface_allow_bgp bool
    Allow/deny BGP
    tunnel_interface_allow_bgp_variable str
    Variable name
    tunnel_interface_allow_dhcp bool
    Allow/Deny DHCP
    tunnel_interface_allow_dhcp_variable str
    Variable name
    tunnel_interface_allow_dns bool
    Allow/Deny DNS
    tunnel_interface_allow_dns_variable str
    Variable name
    tunnel_interface_allow_https bool
    Allow/Deny Https
    tunnel_interface_allow_https_variable str
    Variable name
    tunnel_interface_allow_icmp bool
    Allow/Deny ICMP
    tunnel_interface_allow_icmp_variable str
    Variable name
    tunnel_interface_allow_netconf bool
    Allow/Deny NETCONF
    tunnel_interface_allow_netconf_variable str
    Variable name
    tunnel_interface_allow_ntp bool
    Allow/Deny NTP
    tunnel_interface_allow_ntp_variable str
    Variable name
    tunnel_interface_allow_ospf bool
    Allow/Deny OSPF
    tunnel_interface_allow_ospf_variable str
    Variable name
    tunnel_interface_allow_snmp bool
    Allow/Deny SNMP
    tunnel_interface_allow_snmp_variable str
    Variable name
    tunnel_interface_allow_ssh bool
    Allow/Deny SSH
    tunnel_interface_allow_ssh_variable str
    Variable name
    tunnel_interface_allow_stun bool
    Allow/Deny STUN
    tunnel_interface_allow_stun_variable str
    Variable name
    tunnel_interface_bind_loopback_tunnel str
    Bind loopback tunnel interface to a physical interface
    tunnel_interface_bind_loopback_tunnel_variable str
    Variable name
    tunnel_interface_border bool
    Set TLOC as border TLOC
    tunnel_interface_border_variable str
    Variable name
    tunnel_interface_carrier str
    Set carrier for TLOC
    tunnel_interface_carrier_variable str
    Variable name
    tunnel_interface_clear_dont_fragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    tunnel_interface_clear_dont_fragment_variable str
    Variable name
    tunnel_interface_clear_network_broadcast bool
    Accept and respond to network-prefix-directed broadcasts)
    tunnel_interface_clear_network_broadcast_variable str
    Variable name
    tunnel_interface_color str
    Set color for TLOC
    tunnel_interface_color_variable str
    Variable name
    tunnel_interface_encapsulations Sequence[GetTransportWanVpnInterfaceT1E1SerialFeatureTunnelInterfaceEncapsulation]
    Encapsulation for TLOC
    tunnel_interface_exclude_controller_group_list_variable str
    Variable name
    tunnel_interface_exclude_controller_group_lists Sequence[int]
    Exclude the following controller groups defined in this list
    tunnel_interface_groups int
    List of groups
    tunnel_interface_groups_variable str
    Variable name
    tunnel_interface_hello_interval int
    Set time period of control hello packets \n\n milli seconds
    tunnel_interface_hello_interval_variable str
    Variable name
    tunnel_interface_hello_tolerance int
    Set tolerance of control hello packets \n\n seconds
    tunnel_interface_hello_tolerance_variable str
    Variable name
    tunnel_interface_last_resort_circuit bool
    Set TLOC as last resort
    tunnel_interface_last_resort_circuit_variable str
    Variable name
    tunnel_interface_low_bandwidth_link bool
    Set the interface as a low-bandwidth circuit
    tunnel_interface_low_bandwidth_link_variable str
    Variable name
    tunnel_interface_max_control_connections int
    Set the maximum number of control connections for this TLOC
    tunnel_interface_max_control_connections_variable str
    Variable name
    tunnel_interface_nat_refresh_interval int
    Set time period of nat refresh packets \n\n seconds
    tunnel_interface_nat_refresh_interval_variable str
    Variable name
    tunnel_interface_port_hop bool
    Disallow port hopping on the tunnel interface
    tunnel_interface_port_hop_variable str
    Variable name
    tunnel_interface_restrict bool
    Restrict this TLOC behavior
    tunnel_interface_restrict_variable str
    Variable name
    tunnel_interface_tunnel_tcp_mss int
    Tunnel TCP MSS on SYN packets, in bytes
    tunnel_interface_tunnel_tcp_mss_variable str
    Variable name
    tunnel_interface_vbond_as_stun_server bool
    Put this wan interface in STUN mode only
    tunnel_interface_vbond_as_stun_server_variable str
    Variable name
    tunnel_interface_vmanage_connection_preference int
    Set interface preference for control connection to vManage \n\n
    tunnel_interface_vmanage_connection_preference_variable str
    Variable name
    tunnel_qos_mode str
    Set tunnel QoS mode
    tunnel_qos_mode_variable str
    Variable name
    version int
    The version of the Feature
    bandwidth Number
    Interface bandwidth capacity, in kbps
    bandwidthDownstream Number
    Interface downstream bandwidth capacity, in kbps
    bandwidthDownstreamVariable String
    Variable name
    bandwidthVariable String
    Variable name
    clockRate String
    Set preference for interface Clock speed
    clockRateVariable String
    Variable name
    description String
    The description of the Feature
    encapsulation String
    Configure Encapsulation for interface
    encapsulationVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    interfaceName String
    Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
    interfaceNameVariable String
    Variable name
    ipMtu Number
    Set ip mtu
    ipMtuVariable String
    Variable name
    ipv4Address String
    ipv4AddressVariable String
    Variable name
    ipv4SubnetMask String
    ipv4SubnetMaskVariable String
    Variable name
    ipv6Address String
    Assign IPv6 address
    ipv6AddressVariable String
    Variable name
    mtu Number
    Interface MTU \n\n, in bytes
    mtuVariable String
    Variable name
    name String
    The name of the Feature
    perTunnelQos Boolean
    Per-tunnel Qos
    perTunnelQosAggregator Boolean
    Per-tunnel QoS Aggregator
    perTunnelQosAggregatorVariable String
    Variable name
    perTunnelQosVariable String
    Variable name
    qosShapingRate Number
    1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
    qosShapingRateVariable String
    Variable name
    shutdown Boolean
    Administrative state
    shutdownVariable String
    Variable name
    tcpMss Number
    TCP MSS on SYN packets, in bytes
    tcpMssVariable String
    Variable name
    tlocExtension String
    Extends a local TLOC to a remote node only for vpn 0
    tlocExtensionVariable String
    Variable name
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    tunnelInterface Boolean
    Tunnel Interface
    tunnelInterfaceAllowAll Boolean
    Allow all traffic. Overrides all other allow-service options if allow-service all is set
    tunnelInterfaceAllowAllVariable String
    Variable name
    tunnelInterfaceAllowBfd Boolean
    Allow/Deny BFD
    tunnelInterfaceAllowBfdVariable String
    Variable name
    tunnelInterfaceAllowBgp Boolean
    Allow/deny BGP
    tunnelInterfaceAllowBgpVariable String
    Variable name
    tunnelInterfaceAllowDhcp Boolean
    Allow/Deny DHCP
    tunnelInterfaceAllowDhcpVariable String
    Variable name
    tunnelInterfaceAllowDns Boolean
    Allow/Deny DNS
    tunnelInterfaceAllowDnsVariable String
    Variable name
    tunnelInterfaceAllowHttps Boolean
    Allow/Deny Https
    tunnelInterfaceAllowHttpsVariable String
    Variable name
    tunnelInterfaceAllowIcmp Boolean
    Allow/Deny ICMP
    tunnelInterfaceAllowIcmpVariable String
    Variable name
    tunnelInterfaceAllowNetconf Boolean
    Allow/Deny NETCONF
    tunnelInterfaceAllowNetconfVariable String
    Variable name
    tunnelInterfaceAllowNtp Boolean
    Allow/Deny NTP
    tunnelInterfaceAllowNtpVariable String
    Variable name
    tunnelInterfaceAllowOspf Boolean
    Allow/Deny OSPF
    tunnelInterfaceAllowOspfVariable String
    Variable name
    tunnelInterfaceAllowSnmp Boolean
    Allow/Deny SNMP
    tunnelInterfaceAllowSnmpVariable String
    Variable name
    tunnelInterfaceAllowSsh Boolean
    Allow/Deny SSH
    tunnelInterfaceAllowSshVariable String
    Variable name
    tunnelInterfaceAllowStun Boolean
    Allow/Deny STUN
    tunnelInterfaceAllowStunVariable String
    Variable name
    tunnelInterfaceBindLoopbackTunnel String
    Bind loopback tunnel interface to a physical interface
    tunnelInterfaceBindLoopbackTunnelVariable String
    Variable name
    tunnelInterfaceBorder Boolean
    Set TLOC as border TLOC
    tunnelInterfaceBorderVariable String
    Variable name
    tunnelInterfaceCarrier String
    Set carrier for TLOC
    tunnelInterfaceCarrierVariable String
    Variable name
    tunnelInterfaceClearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    tunnelInterfaceClearDontFragmentVariable String
    Variable name
    tunnelInterfaceClearNetworkBroadcast Boolean
    Accept and respond to network-prefix-directed broadcasts)
    tunnelInterfaceClearNetworkBroadcastVariable String
    Variable name
    tunnelInterfaceColor String
    Set color for TLOC
    tunnelInterfaceColorVariable String
    Variable name
    tunnelInterfaceEncapsulations List<Property Map>
    Encapsulation for TLOC
    tunnelInterfaceExcludeControllerGroupListVariable String
    Variable name
    tunnelInterfaceExcludeControllerGroupLists List<Number>
    Exclude the following controller groups defined in this list
    tunnelInterfaceGroups Number
    List of groups
    tunnelInterfaceGroupsVariable String
    Variable name
    tunnelInterfaceHelloInterval Number
    Set time period of control hello packets \n\n milli seconds
    tunnelInterfaceHelloIntervalVariable String
    Variable name
    tunnelInterfaceHelloTolerance Number
    Set tolerance of control hello packets \n\n seconds
    tunnelInterfaceHelloToleranceVariable String
    Variable name
    tunnelInterfaceLastResortCircuit Boolean
    Set TLOC as last resort
    tunnelInterfaceLastResortCircuitVariable String
    Variable name
    tunnelInterfaceLowBandwidthLink Boolean
    Set the interface as a low-bandwidth circuit
    tunnelInterfaceLowBandwidthLinkVariable String
    Variable name
    tunnelInterfaceMaxControlConnections Number
    Set the maximum number of control connections for this TLOC
    tunnelInterfaceMaxControlConnectionsVariable String
    Variable name
    tunnelInterfaceNatRefreshInterval Number
    Set time period of nat refresh packets \n\n seconds
    tunnelInterfaceNatRefreshIntervalVariable String
    Variable name
    tunnelInterfacePortHop Boolean
    Disallow port hopping on the tunnel interface
    tunnelInterfacePortHopVariable String
    Variable name
    tunnelInterfaceRestrict Boolean
    Restrict this TLOC behavior
    tunnelInterfaceRestrictVariable String
    Variable name
    tunnelInterfaceTunnelTcpMss Number
    Tunnel TCP MSS on SYN packets, in bytes
    tunnelInterfaceTunnelTcpMssVariable String
    Variable name
    tunnelInterfaceVbondAsStunServer Boolean
    Put this wan interface in STUN mode only
    tunnelInterfaceVbondAsStunServerVariable String
    Variable name
    tunnelInterfaceVmanageConnectionPreference Number
    Set interface preference for control connection to vManage \n\n
    tunnelInterfaceVmanageConnectionPreferenceVariable String
    Variable name
    tunnelQosMode String
    Set tunnel QoS mode
    tunnelQosModeVariable String
    Variable name
    version Number
    The version of the Feature

    Supporting Types

    GetTransportWanVpnInterfaceT1E1SerialFeatureTunnelInterfaceEncapsulation

    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 sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi