1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. ServiceLanVpnInterfaceGreFeature
Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi

sdwan.ServiceLanVpnInterfaceGreFeature

Explore with Pulumi AI

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",
});
Copy
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")
Copy
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
	})
}
Copy
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",
    });

});
Copy
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());

    }
}
Copy
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
Copy

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,
                                     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,
                                     service_lan_vpn_feature_id: Optional[str] = None,
                                     clear_dont_fragment: Optional[bool] = 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,
                                     application_tunnel_type: 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 This property is required. string
The unique name of the resource.
args This property is required. ServiceLanVpnInterfaceGreFeatureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. ServiceLanVpnInterfaceGreFeatureArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ServiceLanVpnInterfaceGreFeatureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
    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",
    ServiceLanVpnFeatureId = "string",
    ClearDontFragment = false,
    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",
    ApplicationTunnelType = "string",
});
Copy
example, err := sdwan.NewServiceLanVpnInterfaceGreFeature(ctx, "serviceLanVpnInterfaceGreFeatureResource", &sdwan.ServiceLanVpnInterfaceGreFeatureArgs{
	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"),
	ServiceLanVpnFeatureId:                pulumi.String("string"),
	ClearDontFragment:                     pulumi.Bool(false),
	Shutdown:                              pulumi.Bool(false),
	ShutdownVariable:                      pulumi.String("string"),
	TcpMss:                                pulumi.Int(0),
	TcpMssVariable:                        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"),
})
Copy
var serviceLanVpnInterfaceGreFeatureResource = new ServiceLanVpnInterfaceGreFeature("serviceLanVpnInterfaceGreFeatureResource", ServiceLanVpnInterfaceGreFeatureArgs.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")
    .serviceLanVpnFeatureId("string")
    .clearDontFragment(false)
    .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")
    .applicationTunnelType("string")
    .build());
Copy
service_lan_vpn_interface_gre_feature_resource = sdwan.ServiceLanVpnInterfaceGreFeature("serviceLanVpnInterfaceGreFeatureResource",
    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",
    service_lan_vpn_feature_id="string",
    clear_dont_fragment=False,
    shutdown=False,
    shutdown_variable="string",
    tcp_mss=0,
    tcp_mss_variable="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")
Copy
const serviceLanVpnInterfaceGreFeatureResource = new sdwan.ServiceLanVpnInterfaceGreFeature("serviceLanVpnInterfaceGreFeatureResource", {
    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",
    serviceLanVpnFeatureId: "string",
    clearDontFragment: false,
    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",
    applicationTunnelType: "string",
});
Copy
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
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ServiceLanVpnInterfaceGreFeature resource accepts the following input properties:

FeatureProfileId This property is required. 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
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
FeatureProfileId This property is required. 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
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
featureProfileId This property is required. 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
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
featureProfileId This property is required. 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
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
feature_profile_id This property is required. 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
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
featureProfileId This property is required. 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
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

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)
resources:  _:    type: sdwan:ServiceLanVpnInterfaceGreFeature    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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

Expected import identifier with the format: “service_lan_vpn_interface_gre_feature_id,feature_profile_id,service_lan_vpn_feature_id”

$ pulumi import sdwan:index/serviceLanVpnInterfaceGreFeature:ServiceLanVpnInterfaceGreFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037"
Copy

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.