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

sdwan.ServiceLanVpnInterfaceGreFeature

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 Service LAN 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.ServiceLanVpnInterfaceGreFeature("example", {
        name: "Example",
        description: "My Example",
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        serviceLanVpnFeatureId: "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.ServiceLanVpnInterfaceGreFeature("example",
        name="Example",
        description="My Example",
        feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        service_lan_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.NewServiceLanVpnInterfaceGreFeature(ctx, "example", &sdwan.ServiceLanVpnInterfaceGreFeatureArgs{
    			Name:                         pulumi.String("Example"),
    			Description:                  pulumi.String("My Example"),
    			FeatureProfileId:             pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
    			ServiceLanVpnFeatureId:       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.ServiceLanVpnInterfaceGreFeature("example", new()
        {
            Name = "Example",
            Description = "My Example",
            FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
            ServiceLanVpnFeatureId = "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.ServiceLanVpnInterfaceGreFeature;
    import com.pulumi.sdwan.ServiceLanVpnInterfaceGreFeatureArgs;
    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 ServiceLanVpnInterfaceGreFeature("example", ServiceLanVpnInterfaceGreFeatureArgs.builder()
                .name("Example")
                .description("My Example")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .serviceLanVpnFeatureId("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:ServiceLanVpnInterfaceGreFeature
        properties:
          name: Example
          description: My Example
          featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
          serviceLanVpnFeatureId: 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 ServiceLanVpnInterfaceGreFeature Resource

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

    Constructor syntax

    new ServiceLanVpnInterfaceGreFeature(name: string, args: ServiceLanVpnInterfaceGreFeatureArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceLanVpnInterfaceGreFeature(resource_name: str,
                                         args: ServiceLanVpnInterfaceGreFeatureArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceLanVpnInterfaceGreFeature(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         feature_profile_id: Optional[str] = None,
                                         tunnel_destination_ipv4_address: Optional[str] = None,
                                         ipv4_subnet_mask: Optional[str] = None,
                                         ipv4_address: Optional[str] = None,
                                         interface_name: Optional[str] = None,
                                         name: Optional[str] = None,
                                         shutdown: Optional[bool] = None,
                                         interface_description_variable: Optional[str] = None,
                                         description: Optional[str] = None,
                                         interface_name_variable: Optional[str] = None,
                                         ip_mtu: Optional[int] = None,
                                         ip_mtu_variable: Optional[str] = None,
                                         clear_dont_fragment_variable: Optional[str] = None,
                                         ipv4_address_variable: Optional[str] = None,
                                         clear_dont_fragment: Optional[bool] = None,
                                         ipv4_subnet_mask_variable: Optional[str] = None,
                                         application_tunnel_type: Optional[str] = None,
                                         service_lan_vpn_feature_id: Optional[str] = None,
                                         interface_description: Optional[str] = None,
                                         shutdown_variable: Optional[str] = None,
                                         tcp_mss: Optional[int] = None,
                                         tcp_mss_variable: Optional[str] = None,
                                         application_tunnel_type_variable: 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)
    func NewServiceLanVpnInterfaceGreFeature(ctx *Context, name string, args ServiceLanVpnInterfaceGreFeatureArgs, opts ...ResourceOption) (*ServiceLanVpnInterfaceGreFeature, error)
    public ServiceLanVpnInterfaceGreFeature(string name, ServiceLanVpnInterfaceGreFeatureArgs args, CustomResourceOptions? opts = null)
    public ServiceLanVpnInterfaceGreFeature(String name, ServiceLanVpnInterfaceGreFeatureArgs args)
    public ServiceLanVpnInterfaceGreFeature(String name, ServiceLanVpnInterfaceGreFeatureArgs args, CustomResourceOptions options)
    
    type: sdwan:ServiceLanVpnInterfaceGreFeature
    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 ServiceLanVpnInterfaceGreFeatureArgs
    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 ServiceLanVpnInterfaceGreFeatureArgs
    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 ServiceLanVpnInterfaceGreFeatureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceLanVpnInterfaceGreFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceLanVpnInterfaceGreFeatureArgs
    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 serviceLanVpnInterfaceGreFeatureResource = new Sdwan.ServiceLanVpnInterfaceGreFeature("serviceLanVpnInterfaceGreFeatureResource", new()
    {
        FeatureProfileId = "string",
        TunnelDestinationIpv4Address = "string",
        Ipv4SubnetMask = "string",
        Ipv4Address = "string",
        InterfaceName = "string",
        Name = "string",
        Shutdown = false,
        InterfaceDescriptionVariable = "string",
        Description = "string",
        InterfaceNameVariable = "string",
        IpMtu = 0,
        IpMtuVariable = "string",
        ClearDontFragmentVariable = "string",
        Ipv4AddressVariable = "string",
        ClearDontFragment = false,
        Ipv4SubnetMaskVariable = "string",
        ApplicationTunnelType = "string",
        ServiceLanVpnFeatureId = "string",
        InterfaceDescription = "string",
        ShutdownVariable = "string",
        TcpMss = 0,
        TcpMssVariable = "string",
        ApplicationTunnelTypeVariable = "string",
        TunnelDestinationIpv4AddressVariable = "string",
        TunnelRouteViaLoopback = "string",
        TunnelRouteViaLoopbackVariable = "string",
        TunnelSourceInterface = "string",
        TunnelSourceInterfaceLoopback = "string",
        TunnelSourceInterfaceLoopbackVariable = "string",
        TunnelSourceInterfaceVariable = "string",
        TunnelSourceIpv4Address = "string",
        TunnelSourceIpv4AddressVariable = "string",
    });
    
    example, err := sdwan.NewServiceLanVpnInterfaceGreFeature(ctx, "serviceLanVpnInterfaceGreFeatureResource", &sdwan.ServiceLanVpnInterfaceGreFeatureArgs{
    	FeatureProfileId:                      pulumi.String("string"),
    	TunnelDestinationIpv4Address:          pulumi.String("string"),
    	Ipv4SubnetMask:                        pulumi.String("string"),
    	Ipv4Address:                           pulumi.String("string"),
    	InterfaceName:                         pulumi.String("string"),
    	Name:                                  pulumi.String("string"),
    	Shutdown:                              pulumi.Bool(false),
    	InterfaceDescriptionVariable:          pulumi.String("string"),
    	Description:                           pulumi.String("string"),
    	InterfaceNameVariable:                 pulumi.String("string"),
    	IpMtu:                                 pulumi.Int(0),
    	IpMtuVariable:                         pulumi.String("string"),
    	ClearDontFragmentVariable:             pulumi.String("string"),
    	Ipv4AddressVariable:                   pulumi.String("string"),
    	ClearDontFragment:                     pulumi.Bool(false),
    	Ipv4SubnetMaskVariable:                pulumi.String("string"),
    	ApplicationTunnelType:                 pulumi.String("string"),
    	ServiceLanVpnFeatureId:                pulumi.String("string"),
    	InterfaceDescription:                  pulumi.String("string"),
    	ShutdownVariable:                      pulumi.String("string"),
    	TcpMss:                                pulumi.Int(0),
    	TcpMssVariable:                        pulumi.String("string"),
    	ApplicationTunnelTypeVariable:         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"),
    	TunnelSourceIpv4AddressVariable:       pulumi.String("string"),
    })
    
    var serviceLanVpnInterfaceGreFeatureResource = new ServiceLanVpnInterfaceGreFeature("serviceLanVpnInterfaceGreFeatureResource", ServiceLanVpnInterfaceGreFeatureArgs.builder()
        .featureProfileId("string")
        .tunnelDestinationIpv4Address("string")
        .ipv4SubnetMask("string")
        .ipv4Address("string")
        .interfaceName("string")
        .name("string")
        .shutdown(false)
        .interfaceDescriptionVariable("string")
        .description("string")
        .interfaceNameVariable("string")
        .ipMtu(0)
        .ipMtuVariable("string")
        .clearDontFragmentVariable("string")
        .ipv4AddressVariable("string")
        .clearDontFragment(false)
        .ipv4SubnetMaskVariable("string")
        .applicationTunnelType("string")
        .serviceLanVpnFeatureId("string")
        .interfaceDescription("string")
        .shutdownVariable("string")
        .tcpMss(0)
        .tcpMssVariable("string")
        .applicationTunnelTypeVariable("string")
        .tunnelDestinationIpv4AddressVariable("string")
        .tunnelRouteViaLoopback("string")
        .tunnelRouteViaLoopbackVariable("string")
        .tunnelSourceInterface("string")
        .tunnelSourceInterfaceLoopback("string")
        .tunnelSourceInterfaceLoopbackVariable("string")
        .tunnelSourceInterfaceVariable("string")
        .tunnelSourceIpv4Address("string")
        .tunnelSourceIpv4AddressVariable("string")
        .build());
    
    service_lan_vpn_interface_gre_feature_resource = sdwan.ServiceLanVpnInterfaceGreFeature("serviceLanVpnInterfaceGreFeatureResource",
        feature_profile_id="string",
        tunnel_destination_ipv4_address="string",
        ipv4_subnet_mask="string",
        ipv4_address="string",
        interface_name="string",
        name="string",
        shutdown=False,
        interface_description_variable="string",
        description="string",
        interface_name_variable="string",
        ip_mtu=0,
        ip_mtu_variable="string",
        clear_dont_fragment_variable="string",
        ipv4_address_variable="string",
        clear_dont_fragment=False,
        ipv4_subnet_mask_variable="string",
        application_tunnel_type="string",
        service_lan_vpn_feature_id="string",
        interface_description="string",
        shutdown_variable="string",
        tcp_mss=0,
        tcp_mss_variable="string",
        application_tunnel_type_variable="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",
        tunnel_source_ipv4_address_variable="string")
    
    const serviceLanVpnInterfaceGreFeatureResource = new sdwan.ServiceLanVpnInterfaceGreFeature("serviceLanVpnInterfaceGreFeatureResource", {
        featureProfileId: "string",
        tunnelDestinationIpv4Address: "string",
        ipv4SubnetMask: "string",
        ipv4Address: "string",
        interfaceName: "string",
        name: "string",
        shutdown: false,
        interfaceDescriptionVariable: "string",
        description: "string",
        interfaceNameVariable: "string",
        ipMtu: 0,
        ipMtuVariable: "string",
        clearDontFragmentVariable: "string",
        ipv4AddressVariable: "string",
        clearDontFragment: false,
        ipv4SubnetMaskVariable: "string",
        applicationTunnelType: "string",
        serviceLanVpnFeatureId: "string",
        interfaceDescription: "string",
        shutdownVariable: "string",
        tcpMss: 0,
        tcpMssVariable: "string",
        applicationTunnelTypeVariable: "string",
        tunnelDestinationIpv4AddressVariable: "string",
        tunnelRouteViaLoopback: "string",
        tunnelRouteViaLoopbackVariable: "string",
        tunnelSourceInterface: "string",
        tunnelSourceInterfaceLoopback: "string",
        tunnelSourceInterfaceLoopbackVariable: "string",
        tunnelSourceInterfaceVariable: "string",
        tunnelSourceIpv4Address: "string",
        tunnelSourceIpv4AddressVariable: "string",
    });
    
    type: sdwan:ServiceLanVpnInterfaceGreFeature
    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
        serviceLanVpnFeatureId: string
        shutdown: false
        shutdownVariable: string
        tcpMss: 0
        tcpMssVariable: string
        tunnelDestinationIpv4Address: string
        tunnelDestinationIpv4AddressVariable: string
        tunnelRouteViaLoopback: string
        tunnelRouteViaLoopbackVariable: string
        tunnelSourceInterface: string
        tunnelSourceInterfaceLoopback: string
        tunnelSourceInterfaceLoopbackVariable: string
        tunnelSourceInterfaceVariable: string
        tunnelSourceIpv4Address: string
        tunnelSourceIpv4AddressVariable: string
    

    ServiceLanVpnInterfaceGreFeature 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 ServiceLanVpnInterfaceGreFeature resource accepts the following input properties:

    FeatureProfileId string
    Feature Profile ID
    InterfaceName string
    Interface name (1..255)
    Ipv4Address string
    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
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address
    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
    InterfaceNameVariable string
    Variable name
    IpMtu int
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4AddressVariable string
    Variable name
    Ipv4SubnetMaskVariable string
    Variable name
    Name string
    The name of the Feature
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    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
    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
    InterfaceName string
    Interface name (1..255)
    Ipv4Address string
    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
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address
    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
    InterfaceNameVariable string
    Variable name
    IpMtu int
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4AddressVariable string
    Variable name
    Ipv4SubnetMaskVariable string
    Variable name
    Name string
    The name of the Feature
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    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
    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
    interfaceName String
    Interface name (1..255)
    ipv4Address String
    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
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address
    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
    interfaceNameVariable String
    Variable name
    ipMtu Integer
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4AddressVariable String
    Variable name
    ipv4SubnetMaskVariable String
    Variable name
    name String
    The name of the Feature
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    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
    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
    interfaceName string
    Interface name (1..255)
    ipv4Address string
    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
    tunnelDestinationIpv4Address string
    Tunnel destination IP Address
    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
    interfaceNameVariable string
    Variable name
    ipMtu number
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    ipMtuVariable string
    Variable name
    ipv4AddressVariable string
    Variable name
    ipv4SubnetMaskVariable string
    Variable name
    name string
    The name of the Feature
    serviceLanVpnFeatureId string
    Service LAN VPN Feature ID
    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
    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
    interface_name str
    Interface name (1..255)
    ipv4_address str
    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
    tunnel_destination_ipv4_address str
    Tunnel destination IP Address
    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_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_variable str
    Variable name
    ipv4_subnet_mask_variable str
    Variable name
    name str
    The name of the Feature
    service_lan_vpn_feature_id str
    Service LAN VPN Feature ID
    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
    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
    interfaceName String
    Interface name (1..255)
    ipv4Address String
    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
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address
    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
    interfaceNameVariable String
    Variable name
    ipMtu Number
    Interface MTU <576..9976>, in bytes - Range: 576-9976 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4AddressVariable String
    Variable name
    ipv4SubnetMaskVariable String
    Variable name
    name String
    The name of the Feature
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    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
    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 ServiceLanVpnInterfaceGreFeature 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 ServiceLanVpnInterfaceGreFeature Resource

    Get an existing ServiceLanVpnInterfaceGreFeature 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?: ServiceLanVpnInterfaceGreFeatureState, opts?: CustomResourceOptions): ServiceLanVpnInterfaceGreFeature
    @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,
            service_lan_vpn_feature_id: Optional[str] = None,
            shutdown: Optional[bool] = None,
            shutdown_variable: Optional[str] = None,
            tcp_mss: Optional[int] = None,
            tcp_mss_variable: 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) -> ServiceLanVpnInterfaceGreFeature
    func GetServiceLanVpnInterfaceGreFeature(ctx *Context, name string, id IDInput, state *ServiceLanVpnInterfaceGreFeatureState, opts ...ResourceOption) (*ServiceLanVpnInterfaceGreFeature, error)
    public static ServiceLanVpnInterfaceGreFeature Get(string name, Input<string> id, ServiceLanVpnInterfaceGreFeatureState? state, CustomResourceOptions? opts = null)
    public static ServiceLanVpnInterfaceGreFeature get(String name, Output<String> id, ServiceLanVpnInterfaceGreFeatureState 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
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    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
    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
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    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
    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
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    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
    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
    serviceLanVpnFeatureId string
    Service LAN VPN Feature ID
    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
    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
    service_lan_vpn_feature_id str
    Service LAN VPN Feature ID
    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
    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
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    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
    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/serviceLanVpnInterfaceGreFeature:ServiceLanVpnInterfaceGreFeature 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