Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi
sdwan.getTransportWanVpnInterfaceGreFeature
Explore with Pulumi AI
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 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
getTransportWanVpnInterfaceGreFeature Result
The following output properties are available:
- ApplicationTunnel stringType 
- Enable Application Tunnel Type
- ApplicationTunnel stringType Variable 
- Variable name
- ClearDont boolFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- ClearDont stringFragment Variable 
- Variable name
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- InterfaceDescription string
- Interface description
- InterfaceDescription stringVariable 
- Variable name
- InterfaceName string
- Interface name (1..255)
- InterfaceName stringVariable 
- Variable name
- IpMtu int
- Interface MTU \n\n, in bytes
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- Ipv4AddressVariable string
- Variable name
- Ipv4SubnetMask string
- Ipv4SubnetMask stringVariable 
- Variable name
- Name string
- The name of the Feature
- Shutdown bool
- Administrative state
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes
- TcpMss stringVariable 
- Variable name
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- TunnelDestination stringIpv4Address 
- Tunnel destination IP Address
- TunnelDestination stringIpv4Address Variable 
- Variable name
- TunnelRoute stringVia Loopback 
- \n\n Interface name, can't be Loopback interface
- TunnelRoute stringVia Loopback Variable 
- Variable name
- TunnelSource stringInterface 
- \n\n Interface name
- TunnelSource stringInterface Loopback 
- \n\n Interface name
- TunnelSource stringInterface Loopback Variable 
- Variable name
- TunnelSource stringInterface Variable 
- Variable name
- TunnelSource stringIpv4Address 
- Tunnel source IP Address
- TunnelSource stringIpv4Address Variable 
- Variable name
- Version int
- The version of the Feature
- ApplicationTunnel stringType 
- Enable Application Tunnel Type
- ApplicationTunnel stringType Variable 
- Variable name
- ClearDont boolFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- ClearDont stringFragment Variable 
- Variable name
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- InterfaceDescription string
- Interface description
- InterfaceDescription stringVariable 
- Variable name
- InterfaceName string
- Interface name (1..255)
- InterfaceName stringVariable 
- Variable name
- IpMtu int
- Interface MTU \n\n, in bytes
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- Ipv4AddressVariable string
- Variable name
- Ipv4SubnetMask string
- Ipv4SubnetMask stringVariable 
- Variable name
- Name string
- The name of the Feature
- Shutdown bool
- Administrative state
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes
- TcpMss stringVariable 
- Variable name
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- TunnelDestination stringIpv4Address 
- Tunnel destination IP Address
- TunnelDestination stringIpv4Address Variable 
- Variable name
- TunnelRoute stringVia Loopback 
- \n\n Interface name, can't be Loopback interface
- TunnelRoute stringVia Loopback Variable 
- Variable name
- TunnelSource stringInterface 
- \n\n Interface name
- TunnelSource stringInterface Loopback 
- \n\n Interface name
- TunnelSource stringInterface Loopback Variable 
- Variable name
- TunnelSource stringInterface Variable 
- Variable name
- TunnelSource stringIpv4Address 
- Tunnel source IP Address
- TunnelSource stringIpv4Address Variable 
- Variable name
- Version int
- The version of the Feature
- applicationTunnel StringType 
- Enable Application Tunnel Type
- applicationTunnel StringType Variable 
- Variable name
- clearDont BooleanFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- clearDont StringFragment Variable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- interfaceDescription String
- Interface description
- interfaceDescription StringVariable 
- Variable name
- interfaceName String
- Interface name (1..255)
- interfaceName StringVariable 
- Variable name
- ipMtu Integer
- Interface MTU \n\n, in bytes
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- ipv4AddressVariable String
- Variable name
- ipv4SubnetMask String
- ipv4SubnetMask StringVariable 
- Variable name
- name String
- The name of the Feature
- shutdown Boolean
- Administrative state
- shutdownVariable String
- Variable name
- tcpMss Integer
- TCP MSS on SYN packets, in bytes
- tcpMss StringVariable 
- Variable name
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelDestination StringIpv4Address 
- Tunnel destination IP Address
- tunnelDestination StringIpv4Address Variable 
- Variable name
- tunnelRoute StringVia Loopback 
- \n\n Interface name, can't be Loopback interface
- tunnelRoute StringVia Loopback Variable 
- Variable name
- tunnelSource StringInterface 
- \n\n Interface name
- tunnelSource StringInterface Loopback 
- \n\n Interface name
- tunnelSource StringInterface Loopback Variable 
- Variable name
- tunnelSource StringInterface Variable 
- Variable name
- tunnelSource StringIpv4Address 
- Tunnel source IP Address
- tunnelSource StringIpv4Address Variable 
- Variable name
- version Integer
- The version of the Feature
- applicationTunnel stringType 
- Enable Application Tunnel Type
- applicationTunnel stringType Variable 
- Variable name
- clearDont booleanFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- clearDont stringFragment Variable 
- Variable name
- description string
- The description of the Feature
- featureProfile stringId 
- Feature Profile ID
- id string
- The id of the Feature
- interfaceDescription string
- Interface description
- interfaceDescription stringVariable 
- Variable name
- interfaceName string
- Interface name (1..255)
- interfaceName stringVariable 
- Variable name
- ipMtu number
- Interface MTU \n\n, in bytes
- ipMtu stringVariable 
- Variable name
- ipv4Address string
- ipv4AddressVariable string
- Variable name
- ipv4SubnetMask string
- ipv4SubnetMask stringVariable 
- Variable name
- name string
- The name of the Feature
- shutdown boolean
- Administrative state
- shutdownVariable string
- Variable name
- tcpMss number
- TCP MSS on SYN packets, in bytes
- tcpMss stringVariable 
- Variable name
- transportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelDestination stringIpv4Address 
- Tunnel destination IP Address
- tunnelDestination stringIpv4Address Variable 
- Variable name
- tunnelRoute stringVia Loopback 
- \n\n Interface name, can't be Loopback interface
- tunnelRoute stringVia Loopback Variable 
- Variable name
- tunnelSource stringInterface 
- \n\n Interface name
- tunnelSource stringInterface Loopback 
- \n\n Interface name
- tunnelSource stringInterface Loopback Variable 
- Variable name
- tunnelSource stringInterface Variable 
- Variable name
- tunnelSource stringIpv4Address 
- Tunnel source IP Address
- tunnelSource stringIpv4Address Variable 
- Variable name
- version number
- The version of the Feature
- application_tunnel_ strtype 
- Enable Application Tunnel Type
- application_tunnel_ strtype_ variable 
- Variable name
- clear_dont_ boolfragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- clear_dont_ strfragment_ variable 
- 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
- interface_description_ strvariable 
- Variable name
- interface_name str
- Interface name (1..255)
- interface_name_ strvariable 
- Variable name
- ip_mtu int
- Interface MTU \n\n, in bytes
- ip_mtu_ strvariable 
- Variable name
- ipv4_address str
- ipv4_address_ strvariable 
- Variable name
- ipv4_subnet_ strmask 
- ipv4_subnet_ strmask_ variable 
- Variable name
- name str
- The name of the Feature
- shutdown bool
- Administrative state
- shutdown_variable str
- Variable name
- tcp_mss int
- TCP MSS on SYN packets, in bytes
- tcp_mss_ strvariable 
- Variable name
- transport_wan_ strvpn_ feature_ id 
- Transport WAN VPN Feature ID
- tunnel_destination_ stripv4_ address 
- Tunnel destination IP Address
- tunnel_destination_ stripv4_ address_ variable 
- Variable name
- tunnel_route_ strvia_ loopback 
- \n\n Interface name, can't be Loopback interface
- tunnel_route_ strvia_ loopback_ variable 
- Variable name
- tunnel_source_ strinterface 
- \n\n Interface name
- tunnel_source_ strinterface_ loopback 
- \n\n Interface name
- tunnel_source_ strinterface_ loopback_ variable 
- Variable name
- tunnel_source_ strinterface_ variable 
- Variable name
- tunnel_source_ stripv4_ address 
- Tunnel source IP Address
- tunnel_source_ stripv4_ address_ variable 
- Variable name
- version int
- The version of the Feature
- applicationTunnel StringType 
- Enable Application Tunnel Type
- applicationTunnel StringType Variable 
- Variable name
- clearDont BooleanFragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- clearDont StringFragment Variable 
- Variable name
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- interfaceDescription String
- Interface description
- interfaceDescription StringVariable 
- Variable name
- interfaceName String
- Interface name (1..255)
- interfaceName StringVariable 
- Variable name
- ipMtu Number
- Interface MTU \n\n, in bytes
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- ipv4AddressVariable String
- Variable name
- ipv4SubnetMask String
- ipv4SubnetMask StringVariable 
- Variable name
- name String
- The name of the Feature
- shutdown Boolean
- Administrative state
- shutdownVariable String
- Variable name
- tcpMss Number
- TCP MSS on SYN packets, in bytes
- tcpMss StringVariable 
- Variable name
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelDestination StringIpv4Address 
- Tunnel destination IP Address
- tunnelDestination StringIpv4Address Variable 
- Variable name
- tunnelRoute StringVia Loopback 
- \n\n Interface name, can't be Loopback interface
- tunnelRoute StringVia Loopback Variable 
- Variable name
- tunnelSource StringInterface 
- \n\n Interface name
- tunnelSource StringInterface Loopback 
- \n\n Interface name
- tunnelSource StringInterface Loopback Variable 
- Variable name
- tunnelSource StringInterface Variable 
- Variable name
- tunnelSource StringIpv4Address 
- Tunnel source IP Address
- tunnelSource StringIpv4Address Variable 
- 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 sdwanTerraform Provider.
