1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. getTransportWanVpnInterfaceGreFeature
Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi
sdwan logo
Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi

    This data source can read the Transport WAN VPN Interface GRE Feature.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = sdwan.getTransportWanVpnInterfaceGreFeature({
        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_gre_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.LookupTransportWanVpnInterfaceGreFeature(ctx, &sdwan.LookupTransportWanVpnInterfaceGreFeatureArgs{
    			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.GetTransportWanVpnInterfaceGreFeature.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.GetTransportWanVpnInterfaceGreFeatureArgs;
    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.getTransportWanVpnInterfaceGreFeature(GetTransportWanVpnInterfaceGreFeatureArgs.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:getTransportWanVpnInterfaceGreFeature
          arguments:
            id: f6b2c44c-693c-4763-b010-895aa3d236bd
            featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
            transportWanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
    

    Using getTransportWanVpnInterfaceGreFeature

    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 getTransportWanVpnInterfaceGreFeature(args: GetTransportWanVpnInterfaceGreFeatureArgs, opts?: InvokeOptions): Promise<GetTransportWanVpnInterfaceGreFeatureResult>
    function getTransportWanVpnInterfaceGreFeatureOutput(args: GetTransportWanVpnInterfaceGreFeatureOutputArgs, opts?: InvokeOptions): Output<GetTransportWanVpnInterfaceGreFeatureResult>
    def get_transport_wan_vpn_interface_gre_feature(feature_profile_id: Optional[str] = None,
                                                    id: Optional[str] = None,
                                                    transport_wan_vpn_feature_id: Optional[str] = None,
                                                    opts: Optional[InvokeOptions] = None) -> GetTransportWanVpnInterfaceGreFeatureResult
    def get_transport_wan_vpn_interface_gre_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[GetTransportWanVpnInterfaceGreFeatureResult]
    func LookupTransportWanVpnInterfaceGreFeature(ctx *Context, args *LookupTransportWanVpnInterfaceGreFeatureArgs, opts ...InvokeOption) (*LookupTransportWanVpnInterfaceGreFeatureResult, error)
    func LookupTransportWanVpnInterfaceGreFeatureOutput(ctx *Context, args *LookupTransportWanVpnInterfaceGreFeatureOutputArgs, opts ...InvokeOption) LookupTransportWanVpnInterfaceGreFeatureResultOutput

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

    public static class GetTransportWanVpnInterfaceGreFeature 
    {
        public static Task<GetTransportWanVpnInterfaceGreFeatureResult> InvokeAsync(GetTransportWanVpnInterfaceGreFeatureArgs args, InvokeOptions? opts = null)
        public static Output<GetTransportWanVpnInterfaceGreFeatureResult> Invoke(GetTransportWanVpnInterfaceGreFeatureInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTransportWanVpnInterfaceGreFeatureResult> getTransportWanVpnInterfaceGreFeature(GetTransportWanVpnInterfaceGreFeatureArgs args, InvokeOptions options)
    public static Output<GetTransportWanVpnInterfaceGreFeatureResult> getTransportWanVpnInterfaceGreFeature(GetTransportWanVpnInterfaceGreFeatureArgs args, InvokeOptions options)
    
    fn::invoke:
      function: sdwan:index/getTransportWanVpnInterfaceGreFeature:getTransportWanVpnInterfaceGreFeature
      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

    getTransportWanVpnInterfaceGreFeature Result

    The following output properties are available:

    ApplicationTunnelType string
    Enable Application Tunnel Type
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    DpdInterval int
    IKE keepalive interval (seconds)
    DpdIntervalVariable string
    Variable name
    DpdRetries int
    IKE keepalive retries
    DpdRetriesVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    IkeCiphersuite string
    IKE identity the IKE preshared secret belongs to
    IkeCiphersuiteVariable string
    Variable name
    IkeGroup string
    IKE Diffie Hellman Groups
    IkeGroupVariable string
    Variable name
    IkeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    IkeLocalIdVariable string
    Variable name
    IkeMode string
    IKE integrity protocol
    IkeModeVariable string
    Variable name
    IkeRekeyInterval int
    IKE rekey interval \n\n seconds
    IkeRekeyIntervalVariable string
    Variable name
    IkeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    IkeRemoteIdVariable string
    Variable name
    IkeVersion int
    IKE Version \n\n
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name (1..255)
    InterfaceNameVariable string
    Variable name
    IpsecCiphersuite string
    IPsec(ESP) encryption and integrity protocol
    IpsecCiphersuiteVariable string
    Variable name
    IpsecRekeyInterval int
    IPsec rekey interval \n\n seconds
    IpsecRekeyIntervalVariable string
    Variable name
    IpsecReplayWindow int
    Replay window size 32..8192 (must be a power of 2)
    IpsecReplayWindowVariable string
    Variable name
    Ipv4Address string
    Ipv4AddressVariable string
    Variable name
    Ipv4Mtu int
    Interface MTU \n\n, in bytes
    Ipv4MtuVariable string
    Variable name
    Ipv4SubnetMask string
    Ipv4SubnetMaskVariable string
    Variable name
    Ipv4TcpMss int
    TCP MSS on SYN packets, in bytes
    Ipv4TcpMssVariable string
    Variable name
    Ipv6Address string
    Assign IPv6 address
    Ipv6AddressVariable string
    Variable name
    Ipv6Mtu int
    Interface MTU \n\n, in bytes
    Ipv6MtuVariable string
    Variable name
    Ipv6TcpMss int
    IPv6 TCP MSS on SYN packets, in bytes
    Ipv6TcpMssVariable string
    Variable name
    Multiplexing bool
    Tunnel multiplexing state
    MultiplexingVariable string
    Variable name
    Name string
    The name of the Feature
    PerfectForwardSecrecy string
    IPsec perfect forward secrecy settings
    PerfectForwardSecrecyVariable string
    Variable name
    PreSharedSecret string
    Use preshared key to authenticate IKE peer
    PreSharedSecretVariable string
    Variable name
    Shutdown bool
    Administrative state
    ShutdownVariable string
    Variable name
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address
    TunnelDestinationIpv4AddressVariable string
    Variable name
    TunnelDestinationIpv6Address string
    Tunnel destination IPv6 Address
    TunnelDestinationIpv6AddressVariable string
    Variable name
    TunnelMode string
    GRE Tunnel Mode
    TunnelProtection bool
    Tunnel protection state
    TunnelRouteViaInterface string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaInterfaceVariable string
    Variable name
    TunnelRouteViaIpv4Address string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaIpv4AddressVariable string
    Variable name
    TunnelRouteViaIpv6Address string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaIpv6AddressVariable string
    Variable name
    TunnelRouteViaLoopback string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaLoopbackVariable string
    Variable name
    TunnelSourceInterface string
    \n\n Interface name
    TunnelSourceInterfaceLoopback string
    \n\n Interface name
    TunnelSourceInterfaceLoopbackVariable string
    Variable name
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceIpv4Address string
    Tunnel source IP Address
    TunnelSourceIpv4AddressVariable string
    Variable name
    TunnelSourceIpv6Address string
    Tunnel source IPv6 Address
    TunnelSourceIpv6AddressVariable string
    Variable name
    Version int
    The version of the Feature
    ApplicationTunnelType string
    Enable Application Tunnel Type
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    DpdInterval int
    IKE keepalive interval (seconds)
    DpdIntervalVariable string
    Variable name
    DpdRetries int
    IKE keepalive retries
    DpdRetriesVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    IkeCiphersuite string
    IKE identity the IKE preshared secret belongs to
    IkeCiphersuiteVariable string
    Variable name
    IkeGroup string
    IKE Diffie Hellman Groups
    IkeGroupVariable string
    Variable name
    IkeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    IkeLocalIdVariable string
    Variable name
    IkeMode string
    IKE integrity protocol
    IkeModeVariable string
    Variable name
    IkeRekeyInterval int
    IKE rekey interval \n\n seconds
    IkeRekeyIntervalVariable string
    Variable name
    IkeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    IkeRemoteIdVariable string
    Variable name
    IkeVersion int
    IKE Version \n\n
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name (1..255)
    InterfaceNameVariable string
    Variable name
    IpsecCiphersuite string
    IPsec(ESP) encryption and integrity protocol
    IpsecCiphersuiteVariable string
    Variable name
    IpsecRekeyInterval int
    IPsec rekey interval \n\n seconds
    IpsecRekeyIntervalVariable string
    Variable name
    IpsecReplayWindow int
    Replay window size 32..8192 (must be a power of 2)
    IpsecReplayWindowVariable string
    Variable name
    Ipv4Address string
    Ipv4AddressVariable string
    Variable name
    Ipv4Mtu int
    Interface MTU \n\n, in bytes
    Ipv4MtuVariable string
    Variable name
    Ipv4SubnetMask string
    Ipv4SubnetMaskVariable string
    Variable name
    Ipv4TcpMss int
    TCP MSS on SYN packets, in bytes
    Ipv4TcpMssVariable string
    Variable name
    Ipv6Address string
    Assign IPv6 address
    Ipv6AddressVariable string
    Variable name
    Ipv6Mtu int
    Interface MTU \n\n, in bytes
    Ipv6MtuVariable string
    Variable name
    Ipv6TcpMss int
    IPv6 TCP MSS on SYN packets, in bytes
    Ipv6TcpMssVariable string
    Variable name
    Multiplexing bool
    Tunnel multiplexing state
    MultiplexingVariable string
    Variable name
    Name string
    The name of the Feature
    PerfectForwardSecrecy string
    IPsec perfect forward secrecy settings
    PerfectForwardSecrecyVariable string
    Variable name
    PreSharedSecret string
    Use preshared key to authenticate IKE peer
    PreSharedSecretVariable string
    Variable name
    Shutdown bool
    Administrative state
    ShutdownVariable string
    Variable name
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address
    TunnelDestinationIpv4AddressVariable string
    Variable name
    TunnelDestinationIpv6Address string
    Tunnel destination IPv6 Address
    TunnelDestinationIpv6AddressVariable string
    Variable name
    TunnelMode string
    GRE Tunnel Mode
    TunnelProtection bool
    Tunnel protection state
    TunnelRouteViaInterface string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaInterfaceVariable string
    Variable name
    TunnelRouteViaIpv4Address string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaIpv4AddressVariable string
    Variable name
    TunnelRouteViaIpv6Address string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaIpv6AddressVariable string
    Variable name
    TunnelRouteViaLoopback string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaLoopbackVariable string
    Variable name
    TunnelSourceInterface string
    \n\n Interface name
    TunnelSourceInterfaceLoopback string
    \n\n Interface name
    TunnelSourceInterfaceLoopbackVariable string
    Variable name
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceIpv4Address string
    Tunnel source IP Address
    TunnelSourceIpv4AddressVariable string
    Variable name
    TunnelSourceIpv6Address string
    Tunnel source IPv6 Address
    TunnelSourceIpv6AddressVariable string
    Variable name
    Version int
    The version of the Feature
    applicationTunnelType String
    Enable Application Tunnel Type
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    dpdInterval Integer
    IKE keepalive interval (seconds)
    dpdIntervalVariable String
    Variable name
    dpdRetries Integer
    IKE keepalive retries
    dpdRetriesVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    ikeCiphersuite String
    IKE identity the IKE preshared secret belongs to
    ikeCiphersuiteVariable String
    Variable name
    ikeGroup String
    IKE Diffie Hellman Groups
    ikeGroupVariable String
    Variable name
    ikeLocalId String
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable String
    Variable name
    ikeMode String
    IKE integrity protocol
    ikeModeVariable String
    Variable name
    ikeRekeyInterval Integer
    IKE rekey interval \n\n seconds
    ikeRekeyIntervalVariable String
    Variable name
    ikeRemoteId String
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable String
    Variable name
    ikeVersion Integer
    IKE Version \n\n
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name (1..255)
    interfaceNameVariable String
    Variable name
    ipsecCiphersuite String
    IPsec(ESP) encryption and integrity protocol
    ipsecCiphersuiteVariable String
    Variable name
    ipsecRekeyInterval Integer
    IPsec rekey interval \n\n seconds
    ipsecRekeyIntervalVariable String
    Variable name
    ipsecReplayWindow Integer
    Replay window size 32..8192 (must be a power of 2)
    ipsecReplayWindowVariable String
    Variable name
    ipv4Address String
    ipv4AddressVariable String
    Variable name
    ipv4Mtu Integer
    Interface MTU \n\n, in bytes
    ipv4MtuVariable String
    Variable name
    ipv4SubnetMask String
    ipv4SubnetMaskVariable String
    Variable name
    ipv4TcpMss Integer
    TCP MSS on SYN packets, in bytes
    ipv4TcpMssVariable String
    Variable name
    ipv6Address String
    Assign IPv6 address
    ipv6AddressVariable String
    Variable name
    ipv6Mtu Integer
    Interface MTU \n\n, in bytes
    ipv6MtuVariable String
    Variable name
    ipv6TcpMss Integer
    IPv6 TCP MSS on SYN packets, in bytes
    ipv6TcpMssVariable String
    Variable name
    multiplexing Boolean
    Tunnel multiplexing state
    multiplexingVariable String
    Variable name
    name String
    The name of the Feature
    perfectForwardSecrecy String
    IPsec perfect forward secrecy settings
    perfectForwardSecrecyVariable String
    Variable name
    preSharedSecret String
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable String
    Variable name
    shutdown Boolean
    Administrative state
    shutdownVariable String
    Variable name
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address
    tunnelDestinationIpv4AddressVariable String
    Variable name
    tunnelDestinationIpv6Address String
    Tunnel destination IPv6 Address
    tunnelDestinationIpv6AddressVariable String
    Variable name
    tunnelMode String
    GRE Tunnel Mode
    tunnelProtection Boolean
    Tunnel protection state
    tunnelRouteViaInterface String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaInterfaceVariable String
    Variable name
    tunnelRouteViaIpv4Address String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaIpv4AddressVariable String
    Variable name
    tunnelRouteViaIpv6Address String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaIpv6AddressVariable String
    Variable name
    tunnelRouteViaLoopback String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaLoopbackVariable String
    Variable name
    tunnelSourceInterface String
    \n\n Interface name
    tunnelSourceInterfaceLoopback String
    \n\n Interface name
    tunnelSourceInterfaceLoopbackVariable String
    Variable name
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceIpv4Address String
    Tunnel source IP Address
    tunnelSourceIpv4AddressVariable String
    Variable name
    tunnelSourceIpv6Address String
    Tunnel source IPv6 Address
    tunnelSourceIpv6AddressVariable String
    Variable name
    version Integer
    The version of the Feature
    applicationTunnelType string
    Enable Application Tunnel Type
    applicationTunnelTypeVariable string
    Variable name
    clearDontFragment boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    clearDontFragmentVariable string
    Variable name
    description string
    The description of the Feature
    dpdInterval number
    IKE keepalive interval (seconds)
    dpdIntervalVariable string
    Variable name
    dpdRetries number
    IKE keepalive retries
    dpdRetriesVariable string
    Variable name
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Feature
    ikeCiphersuite string
    IKE identity the IKE preshared secret belongs to
    ikeCiphersuiteVariable string
    Variable name
    ikeGroup string
    IKE Diffie Hellman Groups
    ikeGroupVariable string
    Variable name
    ikeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable string
    Variable name
    ikeMode string
    IKE integrity protocol
    ikeModeVariable string
    Variable name
    ikeRekeyInterval number
    IKE rekey interval \n\n seconds
    ikeRekeyIntervalVariable string
    Variable name
    ikeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable string
    Variable name
    ikeVersion number
    IKE Version \n\n
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceName string
    Interface name (1..255)
    interfaceNameVariable string
    Variable name
    ipsecCiphersuite string
    IPsec(ESP) encryption and integrity protocol
    ipsecCiphersuiteVariable string
    Variable name
    ipsecRekeyInterval number
    IPsec rekey interval \n\n seconds
    ipsecRekeyIntervalVariable string
    Variable name
    ipsecReplayWindow number
    Replay window size 32..8192 (must be a power of 2)
    ipsecReplayWindowVariable string
    Variable name
    ipv4Address string
    ipv4AddressVariable string
    Variable name
    ipv4Mtu number
    Interface MTU \n\n, in bytes
    ipv4MtuVariable string
    Variable name
    ipv4SubnetMask string
    ipv4SubnetMaskVariable string
    Variable name
    ipv4TcpMss number
    TCP MSS on SYN packets, in bytes
    ipv4TcpMssVariable string
    Variable name
    ipv6Address string
    Assign IPv6 address
    ipv6AddressVariable string
    Variable name
    ipv6Mtu number
    Interface MTU \n\n, in bytes
    ipv6MtuVariable string
    Variable name
    ipv6TcpMss number
    IPv6 TCP MSS on SYN packets, in bytes
    ipv6TcpMssVariable string
    Variable name
    multiplexing boolean
    Tunnel multiplexing state
    multiplexingVariable string
    Variable name
    name string
    The name of the Feature
    perfectForwardSecrecy string
    IPsec perfect forward secrecy settings
    perfectForwardSecrecyVariable string
    Variable name
    preSharedSecret string
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable string
    Variable name
    shutdown boolean
    Administrative state
    shutdownVariable string
    Variable name
    transportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address string
    Tunnel destination IP Address
    tunnelDestinationIpv4AddressVariable string
    Variable name
    tunnelDestinationIpv6Address string
    Tunnel destination IPv6 Address
    tunnelDestinationIpv6AddressVariable string
    Variable name
    tunnelMode string
    GRE Tunnel Mode
    tunnelProtection boolean
    Tunnel protection state
    tunnelRouteViaInterface string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaInterfaceVariable string
    Variable name
    tunnelRouteViaIpv4Address string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaIpv4AddressVariable string
    Variable name
    tunnelRouteViaIpv6Address string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaIpv6AddressVariable string
    Variable name
    tunnelRouteViaLoopback string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaLoopbackVariable string
    Variable name
    tunnelSourceInterface string
    \n\n Interface name
    tunnelSourceInterfaceLoopback string
    \n\n Interface name
    tunnelSourceInterfaceLoopbackVariable string
    Variable name
    tunnelSourceInterfaceVariable string
    Variable name
    tunnelSourceIpv4Address string
    Tunnel source IP Address
    tunnelSourceIpv4AddressVariable string
    Variable name
    tunnelSourceIpv6Address string
    Tunnel source IPv6 Address
    tunnelSourceIpv6AddressVariable string
    Variable name
    version number
    The version of the Feature
    application_tunnel_type str
    Enable Application Tunnel Type
    application_tunnel_type_variable str
    Variable name
    clear_dont_fragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    clear_dont_fragment_variable str
    Variable name
    description str
    The description of the Feature
    dpd_interval int
    IKE keepalive interval (seconds)
    dpd_interval_variable str
    Variable name
    dpd_retries int
    IKE keepalive retries
    dpd_retries_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Feature
    ike_ciphersuite str
    IKE identity the IKE preshared secret belongs to
    ike_ciphersuite_variable str
    Variable name
    ike_group str
    IKE Diffie Hellman Groups
    ike_group_variable str
    Variable name
    ike_local_id str
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ike_local_id_variable str
    Variable name
    ike_mode str
    IKE integrity protocol
    ike_mode_variable str
    Variable name
    ike_rekey_interval int
    IKE rekey interval \n\n seconds
    ike_rekey_interval_variable str
    Variable name
    ike_remote_id str
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ike_remote_id_variable str
    Variable name
    ike_version int
    IKE Version \n\n
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_name str
    Interface name (1..255)
    interface_name_variable str
    Variable name
    ipsec_ciphersuite str
    IPsec(ESP) encryption and integrity protocol
    ipsec_ciphersuite_variable str
    Variable name
    ipsec_rekey_interval int
    IPsec rekey interval \n\n seconds
    ipsec_rekey_interval_variable str
    Variable name
    ipsec_replay_window int
    Replay window size 32..8192 (must be a power of 2)
    ipsec_replay_window_variable str
    Variable name
    ipv4_address str
    ipv4_address_variable str
    Variable name
    ipv4_mtu int
    Interface MTU \n\n, in bytes
    ipv4_mtu_variable str
    Variable name
    ipv4_subnet_mask str
    ipv4_subnet_mask_variable str
    Variable name
    ipv4_tcp_mss int
    TCP MSS on SYN packets, in bytes
    ipv4_tcp_mss_variable str
    Variable name
    ipv6_address str
    Assign IPv6 address
    ipv6_address_variable str
    Variable name
    ipv6_mtu int
    Interface MTU \n\n, in bytes
    ipv6_mtu_variable str
    Variable name
    ipv6_tcp_mss int
    IPv6 TCP MSS on SYN packets, in bytes
    ipv6_tcp_mss_variable str
    Variable name
    multiplexing bool
    Tunnel multiplexing state
    multiplexing_variable str
    Variable name
    name str
    The name of the Feature
    perfect_forward_secrecy str
    IPsec perfect forward secrecy settings
    perfect_forward_secrecy_variable str
    Variable name
    pre_shared_secret str
    Use preshared key to authenticate IKE peer
    pre_shared_secret_variable str
    Variable name
    shutdown bool
    Administrative state
    shutdown_variable str
    Variable name
    transport_wan_vpn_feature_id str
    Transport WAN VPN Feature ID
    tunnel_destination_ipv4_address str
    Tunnel destination IP Address
    tunnel_destination_ipv4_address_variable str
    Variable name
    tunnel_destination_ipv6_address str
    Tunnel destination IPv6 Address
    tunnel_destination_ipv6_address_variable str
    Variable name
    tunnel_mode str
    GRE Tunnel Mode
    tunnel_protection bool
    Tunnel protection state
    tunnel_route_via_interface str
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnel_route_via_interface_variable str
    Variable name
    tunnel_route_via_ipv4_address str
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnel_route_via_ipv4_address_variable str
    Variable name
    tunnel_route_via_ipv6_address str
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnel_route_via_ipv6_address_variable str
    Variable name
    tunnel_route_via_loopback str
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnel_route_via_loopback_variable str
    Variable name
    tunnel_source_interface str
    \n\n Interface name
    tunnel_source_interface_loopback str
    \n\n Interface name
    tunnel_source_interface_loopback_variable str
    Variable name
    tunnel_source_interface_variable str
    Variable name
    tunnel_source_ipv4_address str
    Tunnel source IP Address
    tunnel_source_ipv4_address_variable str
    Variable name
    tunnel_source_ipv6_address str
    Tunnel source IPv6 Address
    tunnel_source_ipv6_address_variable str
    Variable name
    version int
    The version of the Feature
    applicationTunnelType String
    Enable Application Tunnel Type
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    dpdInterval Number
    IKE keepalive interval (seconds)
    dpdIntervalVariable String
    Variable name
    dpdRetries Number
    IKE keepalive retries
    dpdRetriesVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    ikeCiphersuite String
    IKE identity the IKE preshared secret belongs to
    ikeCiphersuiteVariable String
    Variable name
    ikeGroup String
    IKE Diffie Hellman Groups
    ikeGroupVariable String
    Variable name
    ikeLocalId String
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable String
    Variable name
    ikeMode String
    IKE integrity protocol
    ikeModeVariable String
    Variable name
    ikeRekeyInterval Number
    IKE rekey interval \n\n seconds
    ikeRekeyIntervalVariable String
    Variable name
    ikeRemoteId String
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable String
    Variable name
    ikeVersion Number
    IKE Version \n\n
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name (1..255)
    interfaceNameVariable String
    Variable name
    ipsecCiphersuite String
    IPsec(ESP) encryption and integrity protocol
    ipsecCiphersuiteVariable String
    Variable name
    ipsecRekeyInterval Number
    IPsec rekey interval \n\n seconds
    ipsecRekeyIntervalVariable String
    Variable name
    ipsecReplayWindow Number
    Replay window size 32..8192 (must be a power of 2)
    ipsecReplayWindowVariable String
    Variable name
    ipv4Address String
    ipv4AddressVariable String
    Variable name
    ipv4Mtu Number
    Interface MTU \n\n, in bytes
    ipv4MtuVariable String
    Variable name
    ipv4SubnetMask String
    ipv4SubnetMaskVariable String
    Variable name
    ipv4TcpMss Number
    TCP MSS on SYN packets, in bytes
    ipv4TcpMssVariable String
    Variable name
    ipv6Address String
    Assign IPv6 address
    ipv6AddressVariable String
    Variable name
    ipv6Mtu Number
    Interface MTU \n\n, in bytes
    ipv6MtuVariable String
    Variable name
    ipv6TcpMss Number
    IPv6 TCP MSS on SYN packets, in bytes
    ipv6TcpMssVariable String
    Variable name
    multiplexing Boolean
    Tunnel multiplexing state
    multiplexingVariable String
    Variable name
    name String
    The name of the Feature
    perfectForwardSecrecy String
    IPsec perfect forward secrecy settings
    perfectForwardSecrecyVariable String
    Variable name
    preSharedSecret String
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable String
    Variable name
    shutdown Boolean
    Administrative state
    shutdownVariable String
    Variable name
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address
    tunnelDestinationIpv4AddressVariable String
    Variable name
    tunnelDestinationIpv6Address String
    Tunnel destination IPv6 Address
    tunnelDestinationIpv6AddressVariable String
    Variable name
    tunnelMode String
    GRE Tunnel Mode
    tunnelProtection Boolean
    Tunnel protection state
    tunnelRouteViaInterface String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaInterfaceVariable String
    Variable name
    tunnelRouteViaIpv4Address String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaIpv4AddressVariable String
    Variable name
    tunnelRouteViaIpv6Address String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaIpv6AddressVariable String
    Variable name
    tunnelRouteViaLoopback String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaLoopbackVariable String
    Variable name
    tunnelSourceInterface String
    \n\n Interface name
    tunnelSourceInterfaceLoopback String
    \n\n Interface name
    tunnelSourceInterfaceLoopbackVariable String
    Variable name
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceIpv4Address String
    Tunnel source IP Address
    tunnelSourceIpv4AddressVariable String
    Variable name
    tunnelSourceIpv6Address String
    Tunnel source IPv6 Address
    tunnelSourceIpv6AddressVariable String
    Variable name
    version Number
    The version of the Feature

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Viewing docs for Cisco Catalyst SD-WAN v0.7.0
    published on Tuesday, Feb 24, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.