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

sdwan.TransportWanVpnInterfaceGreFeature

Explore with Pulumi AI

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

    This resource can manage a Transport WAN VPN Interface GRE Feature.

    • Minimum SD-WAN Manager version: 20.12.0

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = new sdwan.TransportWanVpnInterfaceGreFeature("example", {
        name: "Example",
        description: "My Example",
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
        interfaceName: "gre1",
        interfaceDescription: "gre1",
        ipv4Address: "70.1.1.1",
        ipv4SubnetMask: "255.255.255.0",
        shutdown: true,
        tunnelSourceIpv4Address: "78.1.1.1",
        tunnelDestinationIpv4Address: "79.1.1.1",
        ipMtu: 1500,
        tcpMss: 1460,
        clearDontFragment: false,
        applicationTunnelType: "none",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.TransportWanVpnInterfaceGreFeature("example",
        name="Example",
        description="My Example",
        feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
        interface_name="gre1",
        interface_description="gre1",
        ipv4_address="70.1.1.1",
        ipv4_subnet_mask="255.255.255.0",
        shutdown=True,
        tunnel_source_ipv4_address="78.1.1.1",
        tunnel_destination_ipv4_address="79.1.1.1",
        ip_mtu=1500,
        tcp_mss=1460,
        clear_dont_fragment=False,
        application_tunnel_type="none")
    
    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.NewTransportWanVpnInterfaceGreFeature(ctx, "example", &sdwan.TransportWanVpnInterfaceGreFeatureArgs{
    			Name:                         pulumi.String("Example"),
    			Description:                  pulumi.String("My Example"),
    			FeatureProfileId:             pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
    			TransportWanVpnFeatureId:     pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
    			InterfaceName:                pulumi.String("gre1"),
    			InterfaceDescription:         pulumi.String("gre1"),
    			Ipv4Address:                  pulumi.String("70.1.1.1"),
    			Ipv4SubnetMask:               pulumi.String("255.255.255.0"),
    			Shutdown:                     pulumi.Bool(true),
    			TunnelSourceIpv4Address:      pulumi.String("78.1.1.1"),
    			TunnelDestinationIpv4Address: pulumi.String("79.1.1.1"),
    			IpMtu:                        pulumi.Int(1500),
    			TcpMss:                       pulumi.Int(1460),
    			ClearDontFragment:            pulumi.Bool(false),
    			ApplicationTunnelType:        pulumi.String("none"),
    		})
    		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 = new Sdwan.TransportWanVpnInterfaceGreFeature("example", new()
        {
            Name = "Example",
            Description = "My Example",
            FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
            TransportWanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
            InterfaceName = "gre1",
            InterfaceDescription = "gre1",
            Ipv4Address = "70.1.1.1",
            Ipv4SubnetMask = "255.255.255.0",
            Shutdown = true,
            TunnelSourceIpv4Address = "78.1.1.1",
            TunnelDestinationIpv4Address = "79.1.1.1",
            IpMtu = 1500,
            TcpMss = 1460,
            ClearDontFragment = false,
            ApplicationTunnelType = "none",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.TransportWanVpnInterfaceGreFeature;
    import com.pulumi.sdwan.TransportWanVpnInterfaceGreFeatureArgs;
    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) {
            var example = new TransportWanVpnInterfaceGreFeature("example", TransportWanVpnInterfaceGreFeatureArgs.builder()
                .name("Example")
                .description("My Example")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .transportWanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
                .interfaceName("gre1")
                .interfaceDescription("gre1")
                .ipv4Address("70.1.1.1")
                .ipv4SubnetMask("255.255.255.0")
                .shutdown(true)
                .tunnelSourceIpv4Address("78.1.1.1")
                .tunnelDestinationIpv4Address("79.1.1.1")
                .ipMtu(1500)
                .tcpMss(1460)
                .clearDontFragment(false)
                .applicationTunnelType("none")
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:TransportWanVpnInterfaceGreFeature
        properties:
          name: Example
          description: My Example
          featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
          transportWanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
          interfaceName: gre1
          interfaceDescription: gre1
          ipv4Address: 70.1.1.1
          ipv4SubnetMask: 255.255.255.0
          shutdown: true
          tunnelSourceIpv4Address: 78.1.1.1
          tunnelDestinationIpv4Address: 79.1.1.1
          ipMtu: 1500
          tcpMss: 1460
          clearDontFragment: false
          applicationTunnelType: none
    

    Create TransportWanVpnInterfaceGreFeature Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new TransportWanVpnInterfaceGreFeature(name: string, args: TransportWanVpnInterfaceGreFeatureArgs, opts?: CustomResourceOptions);
    @overload
    def TransportWanVpnInterfaceGreFeature(resource_name: str,
                                           args: TransportWanVpnInterfaceGreFeatureArgs,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def TransportWanVpnInterfaceGreFeature(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           feature_profile_id: Optional[str] = None,
                                           name: Optional[str] = None,
                                           tunnel_source_ipv4_address_variable: Optional[str] = None,
                                           ipv4_subnet_mask_variable: Optional[str] = None,
                                           description: Optional[str] = None,
                                           application_tunnel_type_variable: Optional[str] = None,
                                           interface_description: Optional[str] = None,
                                           interface_description_variable: Optional[str] = None,
                                           interface_name: Optional[str] = None,
                                           interface_name_variable: Optional[str] = None,
                                           ip_mtu: Optional[int] = None,
                                           ip_mtu_variable: Optional[str] = None,
                                           ipv4_address: Optional[str] = None,
                                           ipv4_address_variable: Optional[str] = None,
                                           ipv4_subnet_mask: Optional[str] = None,
                                           clear_dont_fragment_variable: Optional[str] = None,
                                           shutdown: Optional[bool] = None,
                                           clear_dont_fragment: Optional[bool] = None,
                                           shutdown_variable: Optional[str] = None,
                                           tcp_mss: Optional[int] = None,
                                           tcp_mss_variable: Optional[str] = None,
                                           transport_wan_vpn_feature_id: Optional[str] = None,
                                           tunnel_destination_ipv4_address: Optional[str] = None,
                                           tunnel_destination_ipv4_address_variable: Optional[str] = None,
                                           tunnel_route_via_loopback: Optional[str] = None,
                                           tunnel_route_via_loopback_variable: Optional[str] = None,
                                           tunnel_source_interface: Optional[str] = None,
                                           tunnel_source_interface_loopback: Optional[str] = None,
                                           tunnel_source_interface_loopback_variable: Optional[str] = None,
                                           tunnel_source_interface_variable: Optional[str] = None,
                                           tunnel_source_ipv4_address: Optional[str] = None,
                                           application_tunnel_type: Optional[str] = None)
    func NewTransportWanVpnInterfaceGreFeature(ctx *Context, name string, args TransportWanVpnInterfaceGreFeatureArgs, opts ...ResourceOption) (*TransportWanVpnInterfaceGreFeature, error)
    public TransportWanVpnInterfaceGreFeature(string name, TransportWanVpnInterfaceGreFeatureArgs args, CustomResourceOptions? opts = null)
    public TransportWanVpnInterfaceGreFeature(String name, TransportWanVpnInterfaceGreFeatureArgs args)
    public TransportWanVpnInterfaceGreFeature(String name, TransportWanVpnInterfaceGreFeatureArgs args, CustomResourceOptions options)
    
    type: sdwan:TransportWanVpnInterfaceGreFeature
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args TransportWanVpnInterfaceGreFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TransportWanVpnInterfaceGreFeatureArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TransportWanVpnInterfaceGreFeatureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TransportWanVpnInterfaceGreFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TransportWanVpnInterfaceGreFeatureArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var transportWanVpnInterfaceGreFeatureResource = new Sdwan.TransportWanVpnInterfaceGreFeature("transportWanVpnInterfaceGreFeatureResource", new()
    {
        FeatureProfileId = "string",
        Name = "string",
        TunnelSourceIpv4AddressVariable = "string",
        Ipv4SubnetMaskVariable = "string",
        Description = "string",
        ApplicationTunnelTypeVariable = "string",
        InterfaceDescription = "string",
        InterfaceDescriptionVariable = "string",
        InterfaceName = "string",
        InterfaceNameVariable = "string",
        IpMtu = 0,
        IpMtuVariable = "string",
        Ipv4Address = "string",
        Ipv4AddressVariable = "string",
        Ipv4SubnetMask = "string",
        ClearDontFragmentVariable = "string",
        Shutdown = false,
        ClearDontFragment = false,
        ShutdownVariable = "string",
        TcpMss = 0,
        TcpMssVariable = "string",
        TransportWanVpnFeatureId = "string",
        TunnelDestinationIpv4Address = "string",
        TunnelDestinationIpv4AddressVariable = "string",
        TunnelRouteViaLoopback = "string",
        TunnelRouteViaLoopbackVariable = "string",
        TunnelSourceInterface = "string",
        TunnelSourceInterfaceLoopback = "string",
        TunnelSourceInterfaceLoopbackVariable = "string",
        TunnelSourceInterfaceVariable = "string",
        TunnelSourceIpv4Address = "string",
        ApplicationTunnelType = "string",
    });
    
    example, err := sdwan.NewTransportWanVpnInterfaceGreFeature(ctx, "transportWanVpnInterfaceGreFeatureResource", &sdwan.TransportWanVpnInterfaceGreFeatureArgs{
    	FeatureProfileId:                      pulumi.String("string"),
    	Name:                                  pulumi.String("string"),
    	TunnelSourceIpv4AddressVariable:       pulumi.String("string"),
    	Ipv4SubnetMaskVariable:                pulumi.String("string"),
    	Description:                           pulumi.String("string"),
    	ApplicationTunnelTypeVariable:         pulumi.String("string"),
    	InterfaceDescription:                  pulumi.String("string"),
    	InterfaceDescriptionVariable:          pulumi.String("string"),
    	InterfaceName:                         pulumi.String("string"),
    	InterfaceNameVariable:                 pulumi.String("string"),
    	IpMtu:                                 pulumi.Int(0),
    	IpMtuVariable:                         pulumi.String("string"),
    	Ipv4Address:                           pulumi.String("string"),
    	Ipv4AddressVariable:                   pulumi.String("string"),
    	Ipv4SubnetMask:                        pulumi.String("string"),
    	ClearDontFragmentVariable:             pulumi.String("string"),
    	Shutdown:                              pulumi.Bool(false),
    	ClearDontFragment:                     pulumi.Bool(false),
    	ShutdownVariable:                      pulumi.String("string"),
    	TcpMss:                                pulumi.Int(0),
    	TcpMssVariable:                        pulumi.String("string"),
    	TransportWanVpnFeatureId:              pulumi.String("string"),
    	TunnelDestinationIpv4Address:          pulumi.String("string"),
    	TunnelDestinationIpv4AddressVariable:  pulumi.String("string"),
    	TunnelRouteViaLoopback:                pulumi.String("string"),
    	TunnelRouteViaLoopbackVariable:        pulumi.String("string"),
    	TunnelSourceInterface:                 pulumi.String("string"),
    	TunnelSourceInterfaceLoopback:         pulumi.String("string"),
    	TunnelSourceInterfaceLoopbackVariable: pulumi.String("string"),
    	TunnelSourceInterfaceVariable:         pulumi.String("string"),
    	TunnelSourceIpv4Address:               pulumi.String("string"),
    	ApplicationTunnelType:                 pulumi.String("string"),
    })
    
    var transportWanVpnInterfaceGreFeatureResource = new TransportWanVpnInterfaceGreFeature("transportWanVpnInterfaceGreFeatureResource", TransportWanVpnInterfaceGreFeatureArgs.builder()
        .featureProfileId("string")
        .name("string")
        .tunnelSourceIpv4AddressVariable("string")
        .ipv4SubnetMaskVariable("string")
        .description("string")
        .applicationTunnelTypeVariable("string")
        .interfaceDescription("string")
        .interfaceDescriptionVariable("string")
        .interfaceName("string")
        .interfaceNameVariable("string")
        .ipMtu(0)
        .ipMtuVariable("string")
        .ipv4Address("string")
        .ipv4AddressVariable("string")
        .ipv4SubnetMask("string")
        .clearDontFragmentVariable("string")
        .shutdown(false)
        .clearDontFragment(false)
        .shutdownVariable("string")
        .tcpMss(0)
        .tcpMssVariable("string")
        .transportWanVpnFeatureId("string")
        .tunnelDestinationIpv4Address("string")
        .tunnelDestinationIpv4AddressVariable("string")
        .tunnelRouteViaLoopback("string")
        .tunnelRouteViaLoopbackVariable("string")
        .tunnelSourceInterface("string")
        .tunnelSourceInterfaceLoopback("string")
        .tunnelSourceInterfaceLoopbackVariable("string")
        .tunnelSourceInterfaceVariable("string")
        .tunnelSourceIpv4Address("string")
        .applicationTunnelType("string")
        .build());
    
    transport_wan_vpn_interface_gre_feature_resource = sdwan.TransportWanVpnInterfaceGreFeature("transportWanVpnInterfaceGreFeatureResource",
        feature_profile_id="string",
        name="string",
        tunnel_source_ipv4_address_variable="string",
        ipv4_subnet_mask_variable="string",
        description="string",
        application_tunnel_type_variable="string",
        interface_description="string",
        interface_description_variable="string",
        interface_name="string",
        interface_name_variable="string",
        ip_mtu=0,
        ip_mtu_variable="string",
        ipv4_address="string",
        ipv4_address_variable="string",
        ipv4_subnet_mask="string",
        clear_dont_fragment_variable="string",
        shutdown=False,
        clear_dont_fragment=False,
        shutdown_variable="string",
        tcp_mss=0,
        tcp_mss_variable="string",
        transport_wan_vpn_feature_id="string",
        tunnel_destination_ipv4_address="string",
        tunnel_destination_ipv4_address_variable="string",
        tunnel_route_via_loopback="string",
        tunnel_route_via_loopback_variable="string",
        tunnel_source_interface="string",
        tunnel_source_interface_loopback="string",
        tunnel_source_interface_loopback_variable="string",
        tunnel_source_interface_variable="string",
        tunnel_source_ipv4_address="string",
        application_tunnel_type="string")
    
    const transportWanVpnInterfaceGreFeatureResource = new sdwan.TransportWanVpnInterfaceGreFeature("transportWanVpnInterfaceGreFeatureResource", {
        featureProfileId: "string",
        name: "string",
        tunnelSourceIpv4AddressVariable: "string",
        ipv4SubnetMaskVariable: "string",
        description: "string",
        applicationTunnelTypeVariable: "string",
        interfaceDescription: "string",
        interfaceDescriptionVariable: "string",
        interfaceName: "string",
        interfaceNameVariable: "string",
        ipMtu: 0,
        ipMtuVariable: "string",
        ipv4Address: "string",
        ipv4AddressVariable: "string",
        ipv4SubnetMask: "string",
        clearDontFragmentVariable: "string",
        shutdown: false,
        clearDontFragment: false,
        shutdownVariable: "string",
        tcpMss: 0,
        tcpMssVariable: "string",
        transportWanVpnFeatureId: "string",
        tunnelDestinationIpv4Address: "string",
        tunnelDestinationIpv4AddressVariable: "string",
        tunnelRouteViaLoopback: "string",
        tunnelRouteViaLoopbackVariable: "string",
        tunnelSourceInterface: "string",
        tunnelSourceInterfaceLoopback: "string",
        tunnelSourceInterfaceLoopbackVariable: "string",
        tunnelSourceInterfaceVariable: "string",
        tunnelSourceIpv4Address: "string",
        applicationTunnelType: "string",
    });
    
    type: sdwan:TransportWanVpnInterfaceGreFeature
    properties:
        applicationTunnelType: string
        applicationTunnelTypeVariable: string
        clearDontFragment: false
        clearDontFragmentVariable: string
        description: string
        featureProfileId: string
        interfaceDescription: string
        interfaceDescriptionVariable: string
        interfaceName: string
        interfaceNameVariable: string
        ipMtu: 0
        ipMtuVariable: string
        ipv4Address: string
        ipv4AddressVariable: string
        ipv4SubnetMask: string
        ipv4SubnetMaskVariable: string
        name: string
        shutdown: false
        shutdownVariable: string
        tcpMss: 0
        tcpMssVariable: string
        transportWanVpnFeatureId: string
        tunnelDestinationIpv4Address: string
        tunnelDestinationIpv4AddressVariable: string
        tunnelRouteViaLoopback: string
        tunnelRouteViaLoopbackVariable: string
        tunnelSourceInterface: string
        tunnelSourceInterfaceLoopback: string
        tunnelSourceInterfaceLoopbackVariable: string
        tunnelSourceInterfaceVariable: string
        tunnelSourceIpv4Address: string
        tunnelSourceIpv4AddressVariable: string
    

    TransportWanVpnInterfaceGreFeature Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The TransportWanVpnInterfaceGreFeature resource accepts the following input properties:

    FeatureProfileId string
    Feature Profile ID
    ApplicationTunnelType string
    Enable Application Tunnel Type - Choices: none, sig
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name (1..255)
    InterfaceNameVariable string
    Variable name
    IpMtu int
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4Address string
    Ipv4AddressVariable string
    Variable name
    Ipv4SubnetMask string
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    Ipv4SubnetMaskVariable string
    Variable name
    Name string
    The name of the Feature
    Shutdown bool
    Administrative state - Default value: false
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssVariable string
    Variable name
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address
    TunnelDestinationIpv4AddressVariable string
    Variable name
    TunnelRouteViaLoopback string
    <1..32 characters> Interface name, can't be Loopback interface
    TunnelRouteViaLoopbackVariable string
    Variable name
    TunnelSourceInterface string
    <1..32 characters> Interface name
    TunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name
    TunnelSourceInterfaceLoopbackVariable string
    Variable name
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceIpv4Address string
    Tunnel source IP Address
    TunnelSourceIpv4AddressVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    ApplicationTunnelType string
    Enable Application Tunnel Type - Choices: none, sig
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name (1..255)
    InterfaceNameVariable string
    Variable name
    IpMtu int
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4Address string
    Ipv4AddressVariable string
    Variable name
    Ipv4SubnetMask string
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    Ipv4SubnetMaskVariable string
    Variable name
    Name string
    The name of the Feature
    Shutdown bool
    Administrative state - Default value: false
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssVariable string
    Variable name
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address
    TunnelDestinationIpv4AddressVariable string
    Variable name
    TunnelRouteViaLoopback string
    <1..32 characters> Interface name, can't be Loopback interface
    TunnelRouteViaLoopbackVariable string
    Variable name
    TunnelSourceInterface string
    <1..32 characters> Interface name
    TunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name
    TunnelSourceInterfaceLoopbackVariable string
    Variable name
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceIpv4Address string
    Tunnel source IP Address
    TunnelSourceIpv4AddressVariable string
    Variable name
    featureProfileId String
    Feature Profile ID
    applicationTunnelType String
    Enable Application Tunnel Type - Choices: none, sig
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name (1..255)
    interfaceNameVariable String
    Variable name
    ipMtu Integer
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4Address String
    ipv4AddressVariable String
    Variable name
    ipv4SubnetMask String
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable String
    Variable name
    name String
    The name of the Feature
    shutdown Boolean
    Administrative state - Default value: false
    shutdownVariable String
    Variable name
    tcpMss Integer
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable String
    Variable name
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address
    tunnelDestinationIpv4AddressVariable String
    Variable name
    tunnelRouteViaLoopback String
    <1..32 characters> Interface name, can't be Loopback interface
    tunnelRouteViaLoopbackVariable String
    Variable name
    tunnelSourceInterface String
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopback String
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopbackVariable String
    Variable name
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceIpv4Address String
    Tunnel source IP Address
    tunnelSourceIpv4AddressVariable String
    Variable name
    featureProfileId string
    Feature Profile ID
    applicationTunnelType string
    Enable Application Tunnel Type - Choices: none, sig
    applicationTunnelTypeVariable string
    Variable name
    clearDontFragment boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable string
    Variable name
    description string
    The description of the Feature
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceName string
    Interface name (1..255)
    interfaceNameVariable string
    Variable name
    ipMtu number
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    ipMtuVariable string
    Variable name
    ipv4Address string
    ipv4AddressVariable string
    Variable name
    ipv4SubnetMask string
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable string
    Variable name
    name string
    The name of the Feature
    shutdown boolean
    Administrative state - Default value: false
    shutdownVariable string
    Variable name
    tcpMss number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable string
    Variable name
    transportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address string
    Tunnel destination IP Address
    tunnelDestinationIpv4AddressVariable string
    Variable name
    tunnelRouteViaLoopback string
    <1..32 characters> Interface name, can't be Loopback interface
    tunnelRouteViaLoopbackVariable string
    Variable name
    tunnelSourceInterface string
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopbackVariable string
    Variable name
    tunnelSourceInterfaceVariable string
    Variable name
    tunnelSourceIpv4Address string
    Tunnel source IP Address
    tunnelSourceIpv4AddressVariable string
    Variable name
    feature_profile_id str
    Feature Profile ID
    application_tunnel_type str
    Enable Application Tunnel Type - Choices: none, sig
    application_tunnel_type_variable str
    Variable name
    clear_dont_fragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clear_dont_fragment_variable str
    Variable name
    description str
    The description of the Feature
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_name str
    Interface name (1..255)
    interface_name_variable str
    Variable name
    ip_mtu int
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    ip_mtu_variable str
    Variable name
    ipv4_address str
    ipv4_address_variable str
    Variable name
    ipv4_subnet_mask str
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4_subnet_mask_variable str
    Variable name
    name str
    The name of the Feature
    shutdown bool
    Administrative state - Default value: false
    shutdown_variable str
    Variable name
    tcp_mss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcp_mss_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_route_via_loopback str
    <1..32 characters> Interface name, can't be Loopback interface
    tunnel_route_via_loopback_variable str
    Variable name
    tunnel_source_interface str
    <1..32 characters> Interface name
    tunnel_source_interface_loopback str
    <1..32 characters> 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
    featureProfileId String
    Feature Profile ID
    applicationTunnelType String
    Enable Application Tunnel Type - Choices: none, sig
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name (1..255)
    interfaceNameVariable String
    Variable name
    ipMtu Number
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4Address String
    ipv4AddressVariable String
    Variable name
    ipv4SubnetMask String
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable String
    Variable name
    name String
    The name of the Feature
    shutdown Boolean
    Administrative state - Default value: false
    shutdownVariable String
    Variable name
    tcpMss Number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable String
    Variable name
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address
    tunnelDestinationIpv4AddressVariable String
    Variable name
    tunnelRouteViaLoopback String
    <1..32 characters> Interface name, can't be Loopback interface
    tunnelRouteViaLoopbackVariable String
    Variable name
    tunnelSourceInterface String
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopback String
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopbackVariable String
    Variable name
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceIpv4Address String
    Tunnel source IP Address
    tunnelSourceIpv4AddressVariable String
    Variable name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TransportWanVpnInterfaceGreFeature resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    The version of the Feature
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    The version of the Feature
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    The version of the Feature

    Look up Existing TransportWanVpnInterfaceGreFeature Resource

    Get an existing TransportWanVpnInterfaceGreFeature resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: TransportWanVpnInterfaceGreFeatureState, opts?: CustomResourceOptions): TransportWanVpnInterfaceGreFeature
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_tunnel_type: Optional[str] = None,
            application_tunnel_type_variable: Optional[str] = None,
            clear_dont_fragment: Optional[bool] = None,
            clear_dont_fragment_variable: Optional[str] = None,
            description: Optional[str] = None,
            feature_profile_id: Optional[str] = None,
            interface_description: Optional[str] = None,
            interface_description_variable: Optional[str] = None,
            interface_name: Optional[str] = None,
            interface_name_variable: Optional[str] = None,
            ip_mtu: Optional[int] = None,
            ip_mtu_variable: Optional[str] = None,
            ipv4_address: Optional[str] = None,
            ipv4_address_variable: Optional[str] = None,
            ipv4_subnet_mask: Optional[str] = None,
            ipv4_subnet_mask_variable: Optional[str] = None,
            name: Optional[str] = None,
            shutdown: Optional[bool] = None,
            shutdown_variable: Optional[str] = None,
            tcp_mss: Optional[int] = None,
            tcp_mss_variable: Optional[str] = None,
            transport_wan_vpn_feature_id: Optional[str] = None,
            tunnel_destination_ipv4_address: Optional[str] = None,
            tunnel_destination_ipv4_address_variable: Optional[str] = None,
            tunnel_route_via_loopback: Optional[str] = None,
            tunnel_route_via_loopback_variable: Optional[str] = None,
            tunnel_source_interface: Optional[str] = None,
            tunnel_source_interface_loopback: Optional[str] = None,
            tunnel_source_interface_loopback_variable: Optional[str] = None,
            tunnel_source_interface_variable: Optional[str] = None,
            tunnel_source_ipv4_address: Optional[str] = None,
            tunnel_source_ipv4_address_variable: Optional[str] = None,
            version: Optional[int] = None) -> TransportWanVpnInterfaceGreFeature
    func GetTransportWanVpnInterfaceGreFeature(ctx *Context, name string, id IDInput, state *TransportWanVpnInterfaceGreFeatureState, opts ...ResourceOption) (*TransportWanVpnInterfaceGreFeature, error)
    public static TransportWanVpnInterfaceGreFeature Get(string name, Input<string> id, TransportWanVpnInterfaceGreFeatureState? state, CustomResourceOptions? opts = null)
    public static TransportWanVpnInterfaceGreFeature get(String name, Output<String> id, TransportWanVpnInterfaceGreFeatureState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ApplicationTunnelType string
    Enable Application Tunnel Type - Choices: none, sig
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    FeatureProfileId string
    Feature Profile ID
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name (1..255)
    InterfaceNameVariable string
    Variable name
    IpMtu int
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4Address string
    Ipv4AddressVariable string
    Variable name
    Ipv4SubnetMask string
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    Ipv4SubnetMaskVariable string
    Variable name
    Name string
    The name of the Feature
    Shutdown bool
    Administrative state - Default value: false
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssVariable string
    Variable name
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address
    TunnelDestinationIpv4AddressVariable string
    Variable name
    TunnelRouteViaLoopback string
    <1..32 characters> Interface name, can't be Loopback interface
    TunnelRouteViaLoopbackVariable string
    Variable name
    TunnelSourceInterface string
    <1..32 characters> Interface name
    TunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name
    TunnelSourceInterfaceLoopbackVariable string
    Variable name
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceIpv4Address string
    Tunnel source IP Address
    TunnelSourceIpv4AddressVariable string
    Variable name
    Version int
    The version of the Feature
    ApplicationTunnelType string
    Enable Application Tunnel Type - Choices: none, sig
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    FeatureProfileId string
    Feature Profile ID
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name (1..255)
    InterfaceNameVariable string
    Variable name
    IpMtu int
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4Address string
    Ipv4AddressVariable string
    Variable name
    Ipv4SubnetMask string
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    Ipv4SubnetMaskVariable string
    Variable name
    Name string
    The name of the Feature
    Shutdown bool
    Administrative state - Default value: false
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssVariable string
    Variable name
    TransportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address
    TunnelDestinationIpv4AddressVariable string
    Variable name
    TunnelRouteViaLoopback string
    <1..32 characters> Interface name, can't be Loopback interface
    TunnelRouteViaLoopbackVariable string
    Variable name
    TunnelSourceInterface string
    <1..32 characters> Interface name
    TunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name
    TunnelSourceInterfaceLoopbackVariable string
    Variable name
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceIpv4Address string
    Tunnel source IP Address
    TunnelSourceIpv4AddressVariable string
    Variable name
    Version int
    The version of the Feature
    applicationTunnelType String
    Enable Application Tunnel Type - Choices: none, sig
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    featureProfileId String
    Feature Profile ID
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name (1..255)
    interfaceNameVariable String
    Variable name
    ipMtu Integer
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4Address String
    ipv4AddressVariable String
    Variable name
    ipv4SubnetMask String
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable String
    Variable name
    name String
    The name of the Feature
    shutdown Boolean
    Administrative state - Default value: false
    shutdownVariable String
    Variable name
    tcpMss Integer
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable String
    Variable name
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address
    tunnelDestinationIpv4AddressVariable String
    Variable name
    tunnelRouteViaLoopback String
    <1..32 characters> Interface name, can't be Loopback interface
    tunnelRouteViaLoopbackVariable String
    Variable name
    tunnelSourceInterface String
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopback String
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopbackVariable String
    Variable name
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceIpv4Address String
    Tunnel source IP Address
    tunnelSourceIpv4AddressVariable String
    Variable name
    version Integer
    The version of the Feature
    applicationTunnelType string
    Enable Application Tunnel Type - Choices: none, sig
    applicationTunnelTypeVariable string
    Variable name
    clearDontFragment boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable string
    Variable name
    description string
    The description of the Feature
    featureProfileId string
    Feature Profile ID
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceName string
    Interface name (1..255)
    interfaceNameVariable string
    Variable name
    ipMtu number
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    ipMtuVariable string
    Variable name
    ipv4Address string
    ipv4AddressVariable string
    Variable name
    ipv4SubnetMask string
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable string
    Variable name
    name string
    The name of the Feature
    shutdown boolean
    Administrative state - Default value: false
    shutdownVariable string
    Variable name
    tcpMss number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable string
    Variable name
    transportWanVpnFeatureId string
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address string
    Tunnel destination IP Address
    tunnelDestinationIpv4AddressVariable string
    Variable name
    tunnelRouteViaLoopback string
    <1..32 characters> Interface name, can't be Loopback interface
    tunnelRouteViaLoopbackVariable string
    Variable name
    tunnelSourceInterface string
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopbackVariable string
    Variable name
    tunnelSourceInterfaceVariable string
    Variable name
    tunnelSourceIpv4Address string
    Tunnel source IP Address
    tunnelSourceIpv4AddressVariable string
    Variable name
    version number
    The version of the Feature
    application_tunnel_type str
    Enable Application Tunnel Type - Choices: none, sig
    application_tunnel_type_variable str
    Variable name
    clear_dont_fragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clear_dont_fragment_variable str
    Variable name
    description str
    The description of the Feature
    feature_profile_id str
    Feature Profile ID
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_name str
    Interface name (1..255)
    interface_name_variable str
    Variable name
    ip_mtu int
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    ip_mtu_variable str
    Variable name
    ipv4_address str
    ipv4_address_variable str
    Variable name
    ipv4_subnet_mask str
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4_subnet_mask_variable str
    Variable name
    name str
    The name of the Feature
    shutdown bool
    Administrative state - Default value: false
    shutdown_variable str
    Variable name
    tcp_mss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcp_mss_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_route_via_loopback str
    <1..32 characters> Interface name, can't be Loopback interface
    tunnel_route_via_loopback_variable str
    Variable name
    tunnel_source_interface str
    <1..32 characters> Interface name
    tunnel_source_interface_loopback str
    <1..32 characters> 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
    version int
    The version of the Feature
    applicationTunnelType String
    Enable Application Tunnel Type - Choices: none, sig
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value: false
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    featureProfileId String
    Feature Profile ID
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name (1..255)
    interfaceNameVariable String
    Variable name
    ipMtu Number
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4Address String
    ipv4AddressVariable String
    Variable name
    ipv4SubnetMask String
    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable String
    Variable name
    name String
    The name of the Feature
    shutdown Boolean
    Administrative state - Default value: false
    shutdownVariable String
    Variable name
    tcpMss Number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable String
    Variable name
    transportWanVpnFeatureId String
    Transport WAN VPN Feature ID
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address
    tunnelDestinationIpv4AddressVariable String
    Variable name
    tunnelRouteViaLoopback String
    <1..32 characters> Interface name, can't be Loopback interface
    tunnelRouteViaLoopbackVariable String
    Variable name
    tunnelSourceInterface String
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopback String
    <1..32 characters> Interface name
    tunnelSourceInterfaceLoopbackVariable String
    Variable name
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceIpv4Address String
    Tunnel source IP Address
    tunnelSourceIpv4AddressVariable String
    Variable name
    version Number
    The version of the Feature

    Import

    $ pulumi import sdwan:index/transportWanVpnInterfaceGreFeature:TransportWanVpnInterfaceGreFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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