Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi
published on Tuesday, Feb 24, 2026 by Pulumi
Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi
published on Tuesday, Feb 24, 2026 by Pulumi
This data source can read the Transport WAN VPN Interface GRE Feature.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = sdwan.getTransportWanVpnInterfaceGreFeature({
id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.get_transport_wan_vpn_interface_gre_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037")
package main
import (
"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdwan.LookupTransportWanVpnInterfaceGreFeature(ctx, &sdwan.LookupTransportWanVpnInterfaceGreFeatureArgs{
Id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
FeatureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
TransportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() =>
{
var example = Sdwan.GetTransportWanVpnInterfaceGreFeature.Invoke(new()
{
Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
TransportWanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SdwanFunctions;
import com.pulumi.sdwan.inputs.GetTransportWanVpnInterfaceGreFeatureArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = SdwanFunctions.getTransportWanVpnInterfaceGreFeature(GetTransportWanVpnInterfaceGreFeatureArgs.builder()
.id("f6b2c44c-693c-4763-b010-895aa3d236bd")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.transportWanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.build());
}
}
variables:
example:
fn::invoke:
function: sdwan:getTransportWanVpnInterfaceGreFeature
arguments:
id: f6b2c44c-693c-4763-b010-895aa3d236bd
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
transportWanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
Using getTransportWanVpnInterfaceGreFeature
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getTransportWanVpnInterfaceGreFeature(args: GetTransportWanVpnInterfaceGreFeatureArgs, opts?: InvokeOptions): Promise<GetTransportWanVpnInterfaceGreFeatureResult>
function getTransportWanVpnInterfaceGreFeatureOutput(args: GetTransportWanVpnInterfaceGreFeatureOutputArgs, opts?: InvokeOptions): Output<GetTransportWanVpnInterfaceGreFeatureResult>def get_transport_wan_vpn_interface_gre_feature(feature_profile_id: Optional[str] = None,
id: Optional[str] = None,
transport_wan_vpn_feature_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetTransportWanVpnInterfaceGreFeatureResult
def get_transport_wan_vpn_interface_gre_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetTransportWanVpnInterfaceGreFeatureResult]func LookupTransportWanVpnInterfaceGreFeature(ctx *Context, args *LookupTransportWanVpnInterfaceGreFeatureArgs, opts ...InvokeOption) (*LookupTransportWanVpnInterfaceGreFeatureResult, error)
func LookupTransportWanVpnInterfaceGreFeatureOutput(ctx *Context, args *LookupTransportWanVpnInterfaceGreFeatureOutputArgs, opts ...InvokeOption) LookupTransportWanVpnInterfaceGreFeatureResultOutput> Note: This function is named LookupTransportWanVpnInterfaceGreFeature in the Go SDK.
public static class GetTransportWanVpnInterfaceGreFeature
{
public static Task<GetTransportWanVpnInterfaceGreFeatureResult> InvokeAsync(GetTransportWanVpnInterfaceGreFeatureArgs args, InvokeOptions? opts = null)
public static Output<GetTransportWanVpnInterfaceGreFeatureResult> Invoke(GetTransportWanVpnInterfaceGreFeatureInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetTransportWanVpnInterfaceGreFeatureResult> getTransportWanVpnInterfaceGreFeature(GetTransportWanVpnInterfaceGreFeatureArgs args, InvokeOptions options)
public static Output<GetTransportWanVpnInterfaceGreFeatureResult> getTransportWanVpnInterfaceGreFeature(GetTransportWanVpnInterfaceGreFeatureArgs args, InvokeOptions options)
fn::invoke:
function: sdwan:index/getTransportWanVpnInterfaceGreFeature:getTransportWanVpnInterfaceGreFeature
arguments:
# arguments dictionaryThe following arguments are supported:
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the Feature
- Transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the Feature
- Transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the Feature
- transport
Wan StringVpn Feature Id - Transport WAN VPN Feature ID
- feature
Profile stringId - Feature Profile ID
- id string
- The id of the Feature
- transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- feature_
profile_ strid - Feature Profile ID
- id str
- The id of the Feature
- transport_
wan_ strvpn_ feature_ id - Transport WAN VPN Feature ID
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the Feature
- transport
Wan StringVpn Feature Id - Transport WAN VPN Feature ID
getTransportWanVpnInterfaceGreFeature Result
The following output properties are available:
- Application
Tunnel stringType - Enable Application Tunnel Type
- Application
Tunnel stringType Variable - Variable name
- Clear
Dont boolFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Clear
Dont stringFragment Variable - Variable name
- Description string
- The description of the Feature
- Dpd
Interval int - IKE keepalive interval (seconds)
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries
- Dpd
Retries stringVariable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the Feature
- Ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Group string - IKE Diffie Hellman Groups
- Ike
Group stringVariable - Variable name
- Ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Local stringId Variable - Variable name
- Ike
Mode string - IKE integrity protocol
- Ike
Mode stringVariable - Variable name
- Ike
Rekey intInterval - IKE rekey interval \n\n seconds
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Remote stringId Variable - Variable name
- Ike
Version int - IKE Version \n\n
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name (1..255)
- Interface
Name stringVariable - Variable name
- Ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval \n\n seconds
- Ipsec
Rekey stringInterval Variable - Variable name
- Ipsec
Replay intWindow - Replay window size 32..8192 (must be a power of 2)
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- Ipv4Address
Variable string - Variable name
- Ipv4Mtu int
- Interface MTU \n\n, in bytes
- Ipv4Mtu
Variable string - Variable name
- Ipv4Subnet
Mask string - Ipv4Subnet
Mask stringVariable - Variable name
- Ipv4Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Ipv4Tcp
Mss stringVariable - Variable name
- Ipv6Address string
- Assign IPv6 address
- Ipv6Address
Variable string - Variable name
- Ipv6Mtu int
- Interface MTU \n\n, in bytes
- Ipv6Mtu
Variable string - Variable name
- Ipv6Tcp
Mss int - IPv6 TCP MSS on SYN packets, in bytes
- Ipv6Tcp
Mss stringVariable - Variable name
- Multiplexing bool
- Tunnel multiplexing state
- Multiplexing
Variable string - Variable name
- Name string
- The name of the Feature
- Perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings
- Perfect
Forward stringSecrecy Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Shutdown bool
- Administrative state
- Shutdown
Variable string - Variable name
- Transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- Tunnel
Destination stringIpv4Address - Tunnel destination IP Address
- Tunnel
Destination stringIpv4Address Variable - Variable name
- Tunnel
Destination stringIpv6Address - Tunnel destination IPv6 Address
- Tunnel
Destination stringIpv6Address Variable - Variable name
- Tunnel
Mode string - GRE Tunnel Mode
- Tunnel
Protection bool - Tunnel protection state
- Tunnel
Route stringVia Interface - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- Tunnel
Route stringVia Interface Variable - Variable name
- Tunnel
Route stringVia Ipv4Address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- Tunnel
Route stringVia Ipv4Address Variable - Variable name
- Tunnel
Route stringVia Ipv6Address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- Tunnel
Route stringVia Ipv6Address Variable - Variable name
- Tunnel
Route stringVia Loopback - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- Tunnel
Route stringVia Loopback Variable - Variable name
- Tunnel
Source stringInterface - \n\n Interface name
- Tunnel
Source stringInterface Loopback - \n\n Interface name
- Tunnel
Source stringInterface Loopback Variable - Variable name
- Tunnel
Source stringInterface Variable - Variable name
- Tunnel
Source stringIpv4Address - Tunnel source IP Address
- Tunnel
Source stringIpv4Address Variable - Variable name
- Tunnel
Source stringIpv6Address - Tunnel source IPv6 Address
- Tunnel
Source stringIpv6Address Variable - Variable name
- Version int
- The version of the Feature
- Application
Tunnel stringType - Enable Application Tunnel Type
- Application
Tunnel stringType Variable - Variable name
- Clear
Dont boolFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Clear
Dont stringFragment Variable - Variable name
- Description string
- The description of the Feature
- Dpd
Interval int - IKE keepalive interval (seconds)
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries
- Dpd
Retries stringVariable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the Feature
- Ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Group string - IKE Diffie Hellman Groups
- Ike
Group stringVariable - Variable name
- Ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Local stringId Variable - Variable name
- Ike
Mode string - IKE integrity protocol
- Ike
Mode stringVariable - Variable name
- Ike
Rekey intInterval - IKE rekey interval \n\n seconds
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Remote stringId Variable - Variable name
- Ike
Version int - IKE Version \n\n
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name (1..255)
- Interface
Name stringVariable - Variable name
- Ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval \n\n seconds
- Ipsec
Rekey stringInterval Variable - Variable name
- Ipsec
Replay intWindow - Replay window size 32..8192 (must be a power of 2)
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- Ipv4Address
Variable string - Variable name
- Ipv4Mtu int
- Interface MTU \n\n, in bytes
- Ipv4Mtu
Variable string - Variable name
- Ipv4Subnet
Mask string - Ipv4Subnet
Mask stringVariable - Variable name
- Ipv4Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Ipv4Tcp
Mss stringVariable - Variable name
- Ipv6Address string
- Assign IPv6 address
- Ipv6Address
Variable string - Variable name
- Ipv6Mtu int
- Interface MTU \n\n, in bytes
- Ipv6Mtu
Variable string - Variable name
- Ipv6Tcp
Mss int - IPv6 TCP MSS on SYN packets, in bytes
- Ipv6Tcp
Mss stringVariable - Variable name
- Multiplexing bool
- Tunnel multiplexing state
- Multiplexing
Variable string - Variable name
- Name string
- The name of the Feature
- Perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings
- Perfect
Forward stringSecrecy Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Shutdown bool
- Administrative state
- Shutdown
Variable string - Variable name
- Transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- Tunnel
Destination stringIpv4Address - Tunnel destination IP Address
- Tunnel
Destination stringIpv4Address Variable - Variable name
- Tunnel
Destination stringIpv6Address - Tunnel destination IPv6 Address
- Tunnel
Destination stringIpv6Address Variable - Variable name
- Tunnel
Mode string - GRE Tunnel Mode
- Tunnel
Protection bool - Tunnel protection state
- Tunnel
Route stringVia Interface - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- Tunnel
Route stringVia Interface Variable - Variable name
- Tunnel
Route stringVia Ipv4Address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- Tunnel
Route stringVia Ipv4Address Variable - Variable name
- Tunnel
Route stringVia Ipv6Address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- Tunnel
Route stringVia Ipv6Address Variable - Variable name
- Tunnel
Route stringVia Loopback - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- Tunnel
Route stringVia Loopback Variable - Variable name
- Tunnel
Source stringInterface - \n\n Interface name
- Tunnel
Source stringInterface Loopback - \n\n Interface name
- Tunnel
Source stringInterface Loopback Variable - Variable name
- Tunnel
Source stringInterface Variable - Variable name
- Tunnel
Source stringIpv4Address - Tunnel source IP Address
- Tunnel
Source stringIpv4Address Variable - Variable name
- Tunnel
Source stringIpv6Address - Tunnel source IPv6 Address
- Tunnel
Source stringIpv6Address Variable - Variable name
- Version int
- The version of the Feature
- application
Tunnel StringType - Enable Application Tunnel Type
- application
Tunnel StringType Variable - Variable name
- clear
Dont BooleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- clear
Dont StringFragment Variable - Variable name
- description String
- The description of the Feature
- dpd
Interval Integer - IKE keepalive interval (seconds)
- dpd
Interval StringVariable - Variable name
- dpd
Retries Integer - IKE keepalive retries
- dpd
Retries StringVariable - Variable name
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the Feature
- ike
Ciphersuite String - IKE identity the IKE preshared secret belongs to
- ike
Ciphersuite StringVariable - Variable name
- ike
Group String - IKE Diffie Hellman Groups
- ike
Group StringVariable - Variable name
- ike
Local StringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local StringId Variable - Variable name
- ike
Mode String - IKE integrity protocol
- ike
Mode StringVariable - Variable name
- ike
Rekey IntegerInterval - IKE rekey interval \n\n seconds
- ike
Rekey StringInterval Variable - Variable name
- ike
Remote StringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote StringId Variable - Variable name
- ike
Version Integer - IKE Version \n\n
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name (1..255)
- interface
Name StringVariable - Variable name
- ipsec
Ciphersuite String - IPsec(ESP) encryption and integrity protocol
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey IntegerInterval - IPsec rekey interval \n\n seconds
- ipsec
Rekey StringInterval Variable - Variable name
- ipsec
Replay IntegerWindow - Replay window size 32..8192 (must be a power of 2)
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- ipv4Address
Variable String - Variable name
- ipv4Mtu Integer
- Interface MTU \n\n, in bytes
- ipv4Mtu
Variable String - Variable name
- ipv4Subnet
Mask String - ipv4Subnet
Mask StringVariable - Variable name
- ipv4Tcp
Mss Integer - TCP MSS on SYN packets, in bytes
- ipv4Tcp
Mss StringVariable - Variable name
- ipv6Address String
- Assign IPv6 address
- ipv6Address
Variable String - Variable name
- ipv6Mtu Integer
- Interface MTU \n\n, in bytes
- ipv6Mtu
Variable String - Variable name
- ipv6Tcp
Mss Integer - IPv6 TCP MSS on SYN packets, in bytes
- ipv6Tcp
Mss StringVariable - Variable name
- multiplexing Boolean
- Tunnel multiplexing state
- multiplexing
Variable String - Variable name
- name String
- The name of the Feature
- perfect
Forward StringSecrecy - IPsec perfect forward secrecy settings
- perfect
Forward StringSecrecy Variable - Variable name
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- shutdown Boolean
- Administrative state
- shutdown
Variable String - Variable name
- transport
Wan StringVpn Feature Id - Transport WAN VPN Feature ID
- tunnel
Destination StringIpv4Address - Tunnel destination IP Address
- tunnel
Destination StringIpv4Address Variable - Variable name
- tunnel
Destination StringIpv6Address - Tunnel destination IPv6 Address
- tunnel
Destination StringIpv6Address Variable - Variable name
- tunnel
Mode String - GRE Tunnel Mode
- tunnel
Protection Boolean - Tunnel protection state
- tunnel
Route StringVia Interface - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route StringVia Interface Variable - Variable name
- tunnel
Route StringVia Ipv4Address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route StringVia Ipv4Address Variable - Variable name
- tunnel
Route StringVia Ipv6Address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route StringVia Ipv6Address Variable - Variable name
- tunnel
Route StringVia Loopback - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route StringVia Loopback Variable - Variable name
- tunnel
Source StringInterface - \n\n Interface name
- tunnel
Source StringInterface Loopback - \n\n Interface name
- tunnel
Source StringInterface Loopback Variable - Variable name
- tunnel
Source StringInterface Variable - Variable name
- tunnel
Source StringIpv4Address - Tunnel source IP Address
- tunnel
Source StringIpv4Address Variable - Variable name
- tunnel
Source StringIpv6Address - Tunnel source IPv6 Address
- tunnel
Source StringIpv6Address Variable - Variable name
- version Integer
- The version of the Feature
- application
Tunnel stringType - Enable Application Tunnel Type
- application
Tunnel stringType Variable - Variable name
- clear
Dont booleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- clear
Dont stringFragment Variable - Variable name
- description string
- The description of the Feature
- dpd
Interval number - IKE keepalive interval (seconds)
- dpd
Interval stringVariable - Variable name
- dpd
Retries number - IKE keepalive retries
- dpd
Retries stringVariable - Variable name
- feature
Profile stringId - Feature Profile ID
- id string
- The id of the Feature
- ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to
- ike
Ciphersuite stringVariable - Variable name
- ike
Group string - IKE Diffie Hellman Groups
- ike
Group stringVariable - Variable name
- ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local stringId Variable - Variable name
- ike
Mode string - IKE integrity protocol
- ike
Mode stringVariable - Variable name
- ike
Rekey numberInterval - IKE rekey interval \n\n seconds
- ike
Rekey stringInterval Variable - Variable name
- ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote stringId Variable - Variable name
- ike
Version number - IKE Version \n\n
- interface
Description string - Interface description
- interface
Description stringVariable - Variable name
- interface
Name string - Interface name (1..255)
- interface
Name stringVariable - Variable name
- ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol
- ipsec
Ciphersuite stringVariable - Variable name
- ipsec
Rekey numberInterval - IPsec rekey interval \n\n seconds
- ipsec
Rekey stringInterval Variable - Variable name
- ipsec
Replay numberWindow - Replay window size 32..8192 (must be a power of 2)
- ipsec
Replay stringWindow Variable - Variable name
- ipv4Address string
- ipv4Address
Variable string - Variable name
- ipv4Mtu number
- Interface MTU \n\n, in bytes
- ipv4Mtu
Variable string - Variable name
- ipv4Subnet
Mask string - ipv4Subnet
Mask stringVariable - Variable name
- ipv4Tcp
Mss number - TCP MSS on SYN packets, in bytes
- ipv4Tcp
Mss stringVariable - Variable name
- ipv6Address string
- Assign IPv6 address
- ipv6Address
Variable string - Variable name
- ipv6Mtu number
- Interface MTU \n\n, in bytes
- ipv6Mtu
Variable string - Variable name
- ipv6Tcp
Mss number - IPv6 TCP MSS on SYN packets, in bytes
- ipv6Tcp
Mss stringVariable - Variable name
- multiplexing boolean
- Tunnel multiplexing state
- multiplexing
Variable string - Variable name
- name string
- The name of the Feature
- perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings
- perfect
Forward stringSecrecy Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- shutdown boolean
- Administrative state
- shutdown
Variable string - Variable name
- transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- tunnel
Destination stringIpv4Address - Tunnel destination IP Address
- tunnel
Destination stringIpv4Address Variable - Variable name
- tunnel
Destination stringIpv6Address - Tunnel destination IPv6 Address
- tunnel
Destination stringIpv6Address Variable - Variable name
- tunnel
Mode string - GRE Tunnel Mode
- tunnel
Protection boolean - Tunnel protection state
- tunnel
Route stringVia Interface - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route stringVia Interface Variable - Variable name
- tunnel
Route stringVia Ipv4Address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route stringVia Ipv4Address Variable - Variable name
- tunnel
Route stringVia Ipv6Address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route stringVia Ipv6Address Variable - Variable name
- tunnel
Route stringVia Loopback - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route stringVia Loopback Variable - Variable name
- tunnel
Source stringInterface - \n\n Interface name
- tunnel
Source stringInterface Loopback - \n\n Interface name
- tunnel
Source stringInterface Loopback Variable - Variable name
- tunnel
Source stringInterface Variable - Variable name
- tunnel
Source stringIpv4Address - Tunnel source IP Address
- tunnel
Source stringIpv4Address Variable - Variable name
- tunnel
Source stringIpv6Address - Tunnel source IPv6 Address
- tunnel
Source stringIpv6Address Variable - Variable name
- version number
- The version of the Feature
- application_
tunnel_ strtype - Enable Application Tunnel Type
- application_
tunnel_ strtype_ variable - Variable name
- clear_
dont_ boolfragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- clear_
dont_ strfragment_ variable - Variable name
- description str
- The description of the Feature
- dpd_
interval int - IKE keepalive interval (seconds)
- dpd_
interval_ strvariable - Variable name
- dpd_
retries int - IKE keepalive retries
- dpd_
retries_ strvariable - Variable name
- feature_
profile_ strid - Feature Profile ID
- id str
- The id of the Feature
- ike_
ciphersuite str - IKE identity the IKE preshared secret belongs to
- ike_
ciphersuite_ strvariable - Variable name
- ike_
group str - IKE Diffie Hellman Groups
- ike_
group_ strvariable - Variable name
- ike_
local_ strid - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike_
local_ strid_ variable - Variable name
- ike_
mode str - IKE integrity protocol
- ike_
mode_ strvariable - Variable name
- ike_
rekey_ intinterval - IKE rekey interval \n\n seconds
- ike_
rekey_ strinterval_ variable - Variable name
- ike_
remote_ strid - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike_
remote_ strid_ variable - Variable name
- ike_
version int - IKE Version \n\n
- interface_
description str - Interface description
- interface_
description_ strvariable - Variable name
- interface_
name str - Interface name (1..255)
- interface_
name_ strvariable - Variable name
- ipsec_
ciphersuite str - IPsec(ESP) encryption and integrity protocol
- ipsec_
ciphersuite_ strvariable - Variable name
- ipsec_
rekey_ intinterval - IPsec rekey interval \n\n seconds
- ipsec_
rekey_ strinterval_ variable - Variable name
- ipsec_
replay_ intwindow - Replay window size 32..8192 (must be a power of 2)
- ipsec_
replay_ strwindow_ variable - Variable name
- ipv4_
address str - ipv4_
address_ strvariable - Variable name
- ipv4_
mtu int - Interface MTU \n\n, in bytes
- ipv4_
mtu_ strvariable - Variable name
- ipv4_
subnet_ strmask - ipv4_
subnet_ strmask_ variable - Variable name
- ipv4_
tcp_ intmss - TCP MSS on SYN packets, in bytes
- ipv4_
tcp_ strmss_ variable - Variable name
- ipv6_
address str - Assign IPv6 address
- ipv6_
address_ strvariable - Variable name
- ipv6_
mtu int - Interface MTU \n\n, in bytes
- ipv6_
mtu_ strvariable - Variable name
- ipv6_
tcp_ intmss - IPv6 TCP MSS on SYN packets, in bytes
- ipv6_
tcp_ strmss_ variable - Variable name
- multiplexing bool
- Tunnel multiplexing state
- multiplexing_
variable str - Variable name
- name str
- The name of the Feature
- perfect_
forward_ strsecrecy - IPsec perfect forward secrecy settings
- perfect_
forward_ strsecrecy_ variable - Variable name
- str
- Use preshared key to authenticate IKE peer
- str
- Variable name
- shutdown bool
- Administrative state
- shutdown_
variable str - Variable name
- transport_
wan_ strvpn_ feature_ id - Transport WAN VPN Feature ID
- tunnel_
destination_ stripv4_ address - Tunnel destination IP Address
- tunnel_
destination_ stripv4_ address_ variable - Variable name
- tunnel_
destination_ stripv6_ address - Tunnel destination IPv6 Address
- tunnel_
destination_ stripv6_ address_ variable - Variable name
- tunnel_
mode str - GRE Tunnel Mode
- tunnel_
protection bool - Tunnel protection state
- tunnel_
route_ strvia_ interface - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel_
route_ strvia_ interface_ variable - Variable name
- tunnel_
route_ strvia_ ipv4_ address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel_
route_ strvia_ ipv4_ address_ variable - Variable name
- tunnel_
route_ strvia_ ipv6_ address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel_
route_ strvia_ ipv6_ address_ variable - Variable name
- tunnel_
route_ strvia_ loopback - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel_
route_ strvia_ loopback_ variable - Variable name
- tunnel_
source_ strinterface - \n\n Interface name
- tunnel_
source_ strinterface_ loopback - \n\n Interface name
- tunnel_
source_ strinterface_ loopback_ variable - Variable name
- tunnel_
source_ strinterface_ variable - Variable name
- tunnel_
source_ stripv4_ address - Tunnel source IP Address
- tunnel_
source_ stripv4_ address_ variable - Variable name
- tunnel_
source_ stripv6_ address - Tunnel source IPv6 Address
- tunnel_
source_ stripv6_ address_ variable - Variable name
- version int
- The version of the Feature
- application
Tunnel StringType - Enable Application Tunnel Type
- application
Tunnel StringType Variable - Variable name
- clear
Dont BooleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- clear
Dont StringFragment Variable - Variable name
- description String
- The description of the Feature
- dpd
Interval Number - IKE keepalive interval (seconds)
- dpd
Interval StringVariable - Variable name
- dpd
Retries Number - IKE keepalive retries
- dpd
Retries StringVariable - Variable name
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the Feature
- ike
Ciphersuite String - IKE identity the IKE preshared secret belongs to
- ike
Ciphersuite StringVariable - Variable name
- ike
Group String - IKE Diffie Hellman Groups
- ike
Group StringVariable - Variable name
- ike
Local StringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local StringId Variable - Variable name
- ike
Mode String - IKE integrity protocol
- ike
Mode StringVariable - Variable name
- ike
Rekey NumberInterval - IKE rekey interval \n\n seconds
- ike
Rekey StringInterval Variable - Variable name
- ike
Remote StringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote StringId Variable - Variable name
- ike
Version Number - IKE Version \n\n
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name (1..255)
- interface
Name StringVariable - Variable name
- ipsec
Ciphersuite String - IPsec(ESP) encryption and integrity protocol
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey NumberInterval - IPsec rekey interval \n\n seconds
- ipsec
Rekey StringInterval Variable - Variable name
- ipsec
Replay NumberWindow - Replay window size 32..8192 (must be a power of 2)
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- ipv4Address
Variable String - Variable name
- ipv4Mtu Number
- Interface MTU \n\n, in bytes
- ipv4Mtu
Variable String - Variable name
- ipv4Subnet
Mask String - ipv4Subnet
Mask StringVariable - Variable name
- ipv4Tcp
Mss Number - TCP MSS on SYN packets, in bytes
- ipv4Tcp
Mss StringVariable - Variable name
- ipv6Address String
- Assign IPv6 address
- ipv6Address
Variable String - Variable name
- ipv6Mtu Number
- Interface MTU \n\n, in bytes
- ipv6Mtu
Variable String - Variable name
- ipv6Tcp
Mss Number - IPv6 TCP MSS on SYN packets, in bytes
- ipv6Tcp
Mss StringVariable - Variable name
- multiplexing Boolean
- Tunnel multiplexing state
- multiplexing
Variable String - Variable name
- name String
- The name of the Feature
- perfect
Forward StringSecrecy - IPsec perfect forward secrecy settings
- perfect
Forward StringSecrecy Variable - Variable name
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- shutdown Boolean
- Administrative state
- shutdown
Variable String - Variable name
- transport
Wan StringVpn Feature Id - Transport WAN VPN Feature ID
- tunnel
Destination StringIpv4Address - Tunnel destination IP Address
- tunnel
Destination StringIpv4Address Variable - Variable name
- tunnel
Destination StringIpv6Address - Tunnel destination IPv6 Address
- tunnel
Destination StringIpv6Address Variable - Variable name
- tunnel
Mode String - GRE Tunnel Mode
- tunnel
Protection Boolean - Tunnel protection state
- tunnel
Route StringVia Interface - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route StringVia Interface Variable - Variable name
- tunnel
Route StringVia Ipv4Address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route StringVia Ipv4Address Variable - Variable name
- tunnel
Route StringVia Ipv6Address - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route StringVia Ipv6Address Variable - Variable name
- tunnel
Route StringVia Loopback - \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
- tunnel
Route StringVia Loopback Variable - Variable name
- tunnel
Source StringInterface - \n\n Interface name
- tunnel
Source StringInterface Loopback - \n\n Interface name
- tunnel
Source StringInterface Loopback Variable - Variable name
- tunnel
Source StringInterface Variable - Variable name
- tunnel
Source StringIpv4Address - Tunnel source IP Address
- tunnel
Source StringIpv4Address Variable - Variable name
- tunnel
Source StringIpv6Address - Tunnel source IPv6 Address
- tunnel
Source StringIpv6Address Variable - Variable name
- version Number
- The version of the Feature
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwanTerraform Provider.
Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi
published on Tuesday, Feb 24, 2026 by Pulumi
