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 Service LAN VPN Interface SVI Feature.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = sdwan.getServiceLanVpnInterfaceSviFeature({
id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.get_service_lan_vpn_interface_svi_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
service_lan_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.LookupServiceLanVpnInterfaceSviFeature(ctx, &sdwan.LookupServiceLanVpnInterfaceSviFeatureArgs{
Id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
FeatureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
ServiceLanVpnFeatureId: "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.GetServiceLanVpnInterfaceSviFeature.Invoke(new()
{
Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
ServiceLanVpnFeatureId = "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.GetServiceLanVpnInterfaceSviFeatureArgs;
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.getServiceLanVpnInterfaceSviFeature(GetServiceLanVpnInterfaceSviFeatureArgs.builder()
.id("f6b2c44c-693c-4763-b010-895aa3d236bd")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.serviceLanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.build());
}
}
variables:
example:
fn::invoke:
function: sdwan:getServiceLanVpnInterfaceSviFeature
arguments:
id: f6b2c44c-693c-4763-b010-895aa3d236bd
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
serviceLanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
Using getServiceLanVpnInterfaceSviFeature
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 getServiceLanVpnInterfaceSviFeature(args: GetServiceLanVpnInterfaceSviFeatureArgs, opts?: InvokeOptions): Promise<GetServiceLanVpnInterfaceSviFeatureResult>
function getServiceLanVpnInterfaceSviFeatureOutput(args: GetServiceLanVpnInterfaceSviFeatureOutputArgs, opts?: InvokeOptions): Output<GetServiceLanVpnInterfaceSviFeatureResult>def get_service_lan_vpn_interface_svi_feature(feature_profile_id: Optional[str] = None,
id: Optional[str] = None,
service_lan_vpn_feature_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetServiceLanVpnInterfaceSviFeatureResult
def get_service_lan_vpn_interface_svi_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetServiceLanVpnInterfaceSviFeatureResult]func LookupServiceLanVpnInterfaceSviFeature(ctx *Context, args *LookupServiceLanVpnInterfaceSviFeatureArgs, opts ...InvokeOption) (*LookupServiceLanVpnInterfaceSviFeatureResult, error)
func LookupServiceLanVpnInterfaceSviFeatureOutput(ctx *Context, args *LookupServiceLanVpnInterfaceSviFeatureOutputArgs, opts ...InvokeOption) LookupServiceLanVpnInterfaceSviFeatureResultOutput> Note: This function is named LookupServiceLanVpnInterfaceSviFeature in the Go SDK.
public static class GetServiceLanVpnInterfaceSviFeature
{
public static Task<GetServiceLanVpnInterfaceSviFeatureResult> InvokeAsync(GetServiceLanVpnInterfaceSviFeatureArgs args, InvokeOptions? opts = null)
public static Output<GetServiceLanVpnInterfaceSviFeatureResult> Invoke(GetServiceLanVpnInterfaceSviFeatureInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetServiceLanVpnInterfaceSviFeatureResult> getServiceLanVpnInterfaceSviFeature(GetServiceLanVpnInterfaceSviFeatureArgs args, InvokeOptions options)
public static Output<GetServiceLanVpnInterfaceSviFeatureResult> getServiceLanVpnInterfaceSviFeature(GetServiceLanVpnInterfaceSviFeatureArgs args, InvokeOptions options)
fn::invoke:
function: sdwan:index/getServiceLanVpnInterfaceSviFeature:getServiceLanVpnInterfaceSviFeature
arguments:
# arguments dictionaryThe following arguments are supported:
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the Feature
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the Feature
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the Feature
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- feature
Profile stringId - Feature Profile ID
- id string
- The id of the Feature
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- feature_
profile_ strid - Feature Profile ID
- id str
- The id of the Feature
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the Feature
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
getServiceLanVpnInterfaceSviFeature Result
The following output properties are available:
- Acl
Ipv4Egress stringFeature Id - Acl
Ipv4Ingress stringFeature Id - Acl
Ipv6Egress stringFeature Id - Acl
Ipv6Ingress stringFeature Id - Arp
Timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- Arp
Timeout stringVariable - Variable name
- Arps
List<Get
Service Lan Vpn Interface Svi Feature Arp> - Configure static ARP entries
- Description string
- The description of the Feature
- Enable
Dhcpv6 bool - Enable DHCPv6
- Enable
Dhcpv6Variable string - Variable name
- Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Icmp
Redirect stringDisable Variable - Variable name
- Id string
- The id of the Feature
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU \n\n in bytes
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface name: VLAN 1 - VLAN 4094 when present
- Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Ip
Directed stringBroadcast Variable - Variable name
- Ip
Mtu int - IP MTU \n\n, in bytes
- Ip
Mtu stringVariable - Variable name
- Ipv4Address string
- IP Address
- Ipv4Address
Variable string - Variable name
- Ipv4Dhcp
Helpers List<string> - List of DHCP helper addresses
- Ipv4Dhcp
Helpers stringVariable - Variable name
- Ipv4Secondary
Addresses List<GetService Lan Vpn Interface Svi Feature Ipv4Secondary Address> - Assign secondary IP addresses
- Ipv4Subnet
Mask string - Subnet Mask
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv4Vrrps
List<Get
Service Lan Vpn Interface Svi Feature Ipv4Vrrp> - Enable ipv4 VRRP
- Ipv6Address string
- Assign IPv6 address
- Ipv6Address
Variable string - Variable name
- Ipv6Dhcp
Helpers List<GetService Lan Vpn Interface Svi Feature Ipv6Dhcp Helper> - DHCPv6 Helper
- Ipv6Secondary
Addresses List<GetService Lan Vpn Interface Svi Feature Ipv6Secondary Address> - Assign secondary IPv6 addresses
- Ipv6Vrrps
List<Get
Service Lan Vpn Interface Svi Feature Ipv6Vrrp> - Enable ipv6 VRRP
- Name string
- The name of the Feature
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Administrative state
- Shutdown
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Tcp
Mss stringVariable - Variable name
- Version int
- The version of the Feature
- Acl
Ipv4Egress stringFeature Id - Acl
Ipv4Ingress stringFeature Id - Acl
Ipv6Egress stringFeature Id - Acl
Ipv6Ingress stringFeature Id - Arp
Timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- Arp
Timeout stringVariable - Variable name
- Arps
[]Get
Service Lan Vpn Interface Svi Feature Arp - Configure static ARP entries
- Description string
- The description of the Feature
- Enable
Dhcpv6 bool - Enable DHCPv6
- Enable
Dhcpv6Variable string - Variable name
- Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Icmp
Redirect stringDisable Variable - Variable name
- Id string
- The id of the Feature
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU \n\n in bytes
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface name: VLAN 1 - VLAN 4094 when present
- Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Ip
Directed stringBroadcast Variable - Variable name
- Ip
Mtu int - IP MTU \n\n, in bytes
- Ip
Mtu stringVariable - Variable name
- Ipv4Address string
- IP Address
- Ipv4Address
Variable string - Variable name
- Ipv4Dhcp
Helpers []string - List of DHCP helper addresses
- Ipv4Dhcp
Helpers stringVariable - Variable name
- Ipv4Secondary
Addresses []GetService Lan Vpn Interface Svi Feature Ipv4Secondary Address - Assign secondary IP addresses
- Ipv4Subnet
Mask string - Subnet Mask
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv4Vrrps
[]Get
Service Lan Vpn Interface Svi Feature Ipv4Vrrp - Enable ipv4 VRRP
- Ipv6Address string
- Assign IPv6 address
- Ipv6Address
Variable string - Variable name
- Ipv6Dhcp
Helpers []GetService Lan Vpn Interface Svi Feature Ipv6Dhcp Helper - DHCPv6 Helper
- Ipv6Secondary
Addresses []GetService Lan Vpn Interface Svi Feature Ipv6Secondary Address - Assign secondary IPv6 addresses
- Ipv6Vrrps
[]Get
Service Lan Vpn Interface Svi Feature Ipv6Vrrp - Enable ipv6 VRRP
- Name string
- The name of the Feature
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Administrative state
- Shutdown
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Tcp
Mss stringVariable - Variable name
- Version int
- The version of the Feature
- acl
Ipv4Egress StringFeature Id - acl
Ipv4Ingress StringFeature Id - acl
Ipv6Egress StringFeature Id - acl
Ipv6Ingress StringFeature Id - arp
Timeout Integer - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout StringVariable - Variable name
- arps
List<Get
Service Lan Vpn Interface Svi Feature Arp> - Configure static ARP entries
- description String
- The description of the Feature
- enable
Dhcpv6 Boolean - Enable DHCPv6
- enable
Dhcpv6Variable String - Variable name
- feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect StringDisable Variable - Variable name
- id String
- The id of the Feature
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Mtu Integer - Interface MTU \n\n in bytes
- interface
Mtu StringVariable - Variable name
- interface
Name String - Interface name: VLAN 1 - VLAN 4094 when present
- interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu Integer - IP MTU \n\n, in bytes
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address
- ipv4Address
Variable String - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP helper addresses
- ipv4Dhcp
Helpers StringVariable - Variable name
- ipv4Secondary
Addresses List<GetService Lan Vpn Interface Svi Feature Ipv4Secondary Address> - Assign secondary IP addresses
- ipv4Subnet
Mask String - Subnet Mask
- ipv4Subnet
Mask StringVariable - Variable name
- ipv4Vrrps
List<Get
Service Lan Vpn Interface Svi Feature Ipv4Vrrp> - Enable ipv4 VRRP
- ipv6Address String
- Assign IPv6 address
- ipv6Address
Variable String - Variable name
- ipv6Dhcp
Helpers List<GetService Lan Vpn Interface Svi Feature Ipv6Dhcp Helper> - DHCPv6 Helper
- ipv6Secondary
Addresses List<GetService Lan Vpn Interface Svi Feature Ipv6Secondary Address> - Assign secondary IPv6 addresses
- ipv6Vrrps
List<Get
Service Lan Vpn Interface Svi Feature Ipv6Vrrp> - Enable ipv6 VRRP
- name String
- The name of the Feature
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- Administrative state
- shutdown
Variable String - Variable name
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes
- tcp
Mss StringVariable - Variable name
- version Integer
- The version of the Feature
- acl
Ipv4Egress stringFeature Id - acl
Ipv4Ingress stringFeature Id - acl
Ipv6Egress stringFeature Id - acl
Ipv6Ingress stringFeature Id - arp
Timeout number - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout stringVariable - Variable name
- arps
Get
Service Lan Vpn Interface Svi Feature Arp[] - Configure static ARP entries
- description string
- The description of the Feature
- enable
Dhcpv6 boolean - Enable DHCPv6
- enable
Dhcpv6Variable string - Variable name
- feature
Profile stringId - Feature Profile ID
- icmp
Redirect booleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect stringDisable Variable - Variable name
- id string
- The id of the Feature
- interface
Description string - Interface description
- interface
Description stringVariable - Variable name
- interface
Mtu number - Interface MTU \n\n in bytes
- interface
Mtu stringVariable - Variable name
- interface
Name string - Interface name: VLAN 1 - VLAN 4094 when present
- interface
Name stringVariable - Variable name
- ip
Directed booleanBroadcast - IP Directed-Broadcast
- ip
Directed stringBroadcast Variable - Variable name
- ip
Mtu number - IP MTU \n\n, in bytes
- ip
Mtu stringVariable - Variable name
- ipv4Address string
- IP Address
- ipv4Address
Variable string - Variable name
- ipv4Dhcp
Helpers string[] - List of DHCP helper addresses
- ipv4Dhcp
Helpers stringVariable - Variable name
- ipv4Secondary
Addresses GetService Lan Vpn Interface Svi Feature Ipv4Secondary Address[] - Assign secondary IP addresses
- ipv4Subnet
Mask string - Subnet Mask
- ipv4Subnet
Mask stringVariable - Variable name
- ipv4Vrrps
Get
Service Lan Vpn Interface Svi Feature Ipv4Vrrp[] - Enable ipv4 VRRP
- ipv6Address string
- Assign IPv6 address
- ipv6Address
Variable string - Variable name
- ipv6Dhcp
Helpers GetService Lan Vpn Interface Svi Feature Ipv6Dhcp Helper[] - DHCPv6 Helper
- ipv6Secondary
Addresses GetService Lan Vpn Interface Svi Feature Ipv6Secondary Address[] - Assign secondary IPv6 addresses
- ipv6Vrrps
Get
Service Lan Vpn Interface Svi Feature Ipv6Vrrp[] - Enable ipv6 VRRP
- name string
- The name of the Feature
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- shutdown boolean
- Administrative state
- shutdown
Variable string - Variable name
- tcp
Mss number - TCP MSS on SYN packets, in bytes
- tcp
Mss stringVariable - Variable name
- version number
- The version of the Feature
- acl_
ipv4_ stregress_ feature_ id - acl_
ipv4_ stringress_ feature_ id - acl_
ipv6_ stregress_ feature_ id - acl_
ipv6_ stringress_ feature_ id - arp_
timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp_
timeout_ strvariable - Variable name
- arps
Sequence[Get
Service Lan Vpn Interface Svi Feature Arp] - Configure static ARP entries
- description str
- The description of the Feature
- enable_
dhcpv6 bool - Enable DHCPv6
- enable_
dhcpv6_ strvariable - Variable name
- feature_
profile_ strid - Feature Profile ID
- icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable
- icmp_
redirect_ strdisable_ variable - Variable name
- id str
- The id of the Feature
- interface_
description str - Interface description
- interface_
description_ strvariable - Variable name
- interface_
mtu int - Interface MTU \n\n in bytes
- interface_
mtu_ strvariable - Variable name
- interface_
name str - Interface name: VLAN 1 - VLAN 4094 when present
- interface_
name_ strvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast
- ip_
directed_ strbroadcast_ variable - Variable name
- ip_
mtu int - IP MTU \n\n, in bytes
- ip_
mtu_ strvariable - Variable name
- ipv4_
address str - IP Address
- ipv4_
address_ strvariable - Variable name
- ipv4_
dhcp_ Sequence[str]helpers - List of DHCP helper addresses
- ipv4_
dhcp_ strhelpers_ variable - Variable name
- ipv4_
secondary_ Sequence[Getaddresses Service Lan Vpn Interface Svi Feature Ipv4Secondary Address] - Assign secondary IP addresses
- ipv4_
subnet_ strmask - Subnet Mask
- ipv4_
subnet_ strmask_ variable - Variable name
- ipv4_
vrrps Sequence[GetService Lan Vpn Interface Svi Feature Ipv4Vrrp] - Enable ipv4 VRRP
- ipv6_
address str - Assign IPv6 address
- ipv6_
address_ strvariable - Variable name
- ipv6_
dhcp_ Sequence[Gethelpers Service Lan Vpn Interface Svi Feature Ipv6Dhcp Helper] - DHCPv6 Helper
- ipv6_
secondary_ Sequence[Getaddresses Service Lan Vpn Interface Svi Feature Ipv6Secondary Address] - Assign secondary IPv6 addresses
- ipv6_
vrrps Sequence[GetService Lan Vpn Interface Svi Feature Ipv6Vrrp] - Enable ipv6 VRRP
- name str
- The name of the Feature
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- shutdown bool
- Administrative state
- shutdown_
variable str - Variable name
- tcp_
mss int - TCP MSS on SYN packets, in bytes
- tcp_
mss_ strvariable - Variable name
- version int
- The version of the Feature
- acl
Ipv4Egress StringFeature Id - acl
Ipv4Ingress StringFeature Id - acl
Ipv6Egress StringFeature Id - acl
Ipv6Ingress StringFeature Id - arp
Timeout Number - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout StringVariable - Variable name
- arps List<Property Map>
- Configure static ARP entries
- description String
- The description of the Feature
- enable
Dhcpv6 Boolean - Enable DHCPv6
- enable
Dhcpv6Variable String - Variable name
- feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect StringDisable Variable - Variable name
- id String
- The id of the Feature
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Mtu Number - Interface MTU \n\n in bytes
- interface
Mtu StringVariable - Variable name
- interface
Name String - Interface name: VLAN 1 - VLAN 4094 when present
- interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu Number - IP MTU \n\n, in bytes
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address
- ipv4Address
Variable String - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP helper addresses
- ipv4Dhcp
Helpers StringVariable - Variable name
- ipv4Secondary
Addresses List<Property Map> - Assign secondary IP addresses
- ipv4Subnet
Mask String - Subnet Mask
- ipv4Subnet
Mask StringVariable - Variable name
- ipv4Vrrps List<Property Map>
- Enable ipv4 VRRP
- ipv6Address String
- Assign IPv6 address
- ipv6Address
Variable String - Variable name
- ipv6Dhcp
Helpers List<Property Map> - DHCPv6 Helper
- ipv6Secondary
Addresses List<Property Map> - Assign secondary IPv6 addresses
- ipv6Vrrps List<Property Map>
- Enable ipv6 VRRP
- name String
- The name of the Feature
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- Administrative state
- shutdown
Variable String - Variable name
- tcp
Mss Number - TCP MSS on SYN packets, in bytes
- tcp
Mss StringVariable - Variable name
- version Number
- The version of the Feature
Supporting Types
GetServiceLanVpnInterfaceSviFeatureArp
- Ip
Address string - IP Address
- Ip
Address stringVariable - Variable name
- Mac
Address string - MAC address
- Mac
Address stringVariable - Variable name
- Ip
Address string - IP Address
- Ip
Address stringVariable - Variable name
- Mac
Address string - MAC address
- Mac
Address stringVariable - Variable name
- ip
Address String - IP Address
- ip
Address StringVariable - Variable name
- mac
Address String - MAC address
- mac
Address StringVariable - Variable name
- ip
Address string - IP Address
- ip
Address stringVariable - Variable name
- mac
Address string - MAC address
- mac
Address stringVariable - Variable name
- ip_
address str - IP Address
- ip_
address_ strvariable - Variable name
- mac_
address str - MAC address
- mac_
address_ strvariable - Variable name
- ip
Address String - IP Address
- ip
Address StringVariable - Variable name
- mac
Address String - MAC address
- mac
Address StringVariable - Variable name
GetServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Ipv4Subnet
Mask string - Subnet Mask
- Ipv4Subnet
Mask stringVariable - Variable name
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Ipv4Subnet
Mask string - Subnet Mask
- Ipv4Subnet
Mask stringVariable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- ipv4Subnet
Mask String - Subnet Mask
- ipv4Subnet
Mask StringVariable - Variable name
- address string
- IpV4 Address
- address
Variable string - Variable name
- ipv4Subnet
Mask string - Subnet Mask
- ipv4Subnet
Mask stringVariable - Variable name
- address str
- IpV4 Address
- address_
variable str - Variable name
- ipv4_
subnet_ strmask - Subnet Mask
- ipv4_
subnet_ strmask_ variable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- ipv4Subnet
Mask String - Subnet Mask
- ipv4Subnet
Mask StringVariable - Variable name
GetServiceLanVpnInterfaceSviFeatureIpv4Vrrp
- Address string
- Assign IPV4 Address
- Address
Variable string - Variable name
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Group
Id int - Group ID
- Group
Id stringVariable - Variable name
- Prefix
List string - Track Prefix List
- Prefix
List stringVariable - Variable name
- Priority int
- Set priority
- Priority
Variable string - Variable name
- Secondary
Addresses List<GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Secondary Address> - VRRP Secondary IPV4 address
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Timer
Variable string - Variable name
- Tloc
Prefix boolChange - change TLOC preference
- Tloc
Prefix intChange Value - Set tloc preference change value
- Tloc
Prefix stringChange Value Variable - Variable name
- Track
Omp bool - Track OMP status
- Track
Omp stringVariable - Variable name
- Tracking
Objects List<GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Tracking Object> - tracking object for VRRP configuration
- Address string
- Assign IPV4 Address
- Address
Variable string - Variable name
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Group
Id int - Group ID
- Group
Id stringVariable - Variable name
- Prefix
List string - Track Prefix List
- Prefix
List stringVariable - Variable name
- Priority int
- Set priority
- Priority
Variable string - Variable name
- Secondary
Addresses []GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Secondary Address - VRRP Secondary IPV4 address
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Timer
Variable string - Variable name
- Tloc
Prefix boolChange - change TLOC preference
- Tloc
Prefix intChange Value - Set tloc preference change value
- Tloc
Prefix stringChange Value Variable - Variable name
- Track
Omp bool - Track OMP status
- Track
Omp stringVariable - Variable name
- Tracking
Objects []GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Tracking Object - tracking object for VRRP configuration
- address String
- Assign IPV4 Address
- address
Variable String - Variable name
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id Integer - Group ID
- group
Id StringVariable - Variable name
- prefix
List String - Track Prefix List
- prefix
List StringVariable - Variable name
- priority Integer
- Set priority
- priority
Variable String - Variable name
- secondary
Addresses List<GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Secondary Address> - VRRP Secondary IPV4 address
- timer Integer
- Timer interval for successive advertisements, in milliseconds
- timer
Variable String - Variable name
- tloc
Prefix BooleanChange - change TLOC preference
- tloc
Prefix IntegerChange Value - Set tloc preference change value
- tloc
Prefix StringChange Value Variable - Variable name
- track
Omp Boolean - Track OMP status
- track
Omp StringVariable - Variable name
- tracking
Objects List<GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Tracking Object> - tracking object for VRRP configuration
- address string
- Assign IPV4 Address
- address
Variable string - Variable name
- follow
Dual booleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id number - Group ID
- group
Id stringVariable - Variable name
- prefix
List string - Track Prefix List
- prefix
List stringVariable - Variable name
- priority number
- Set priority
- priority
Variable string - Variable name
- secondary
Addresses GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Secondary Address[] - VRRP Secondary IPV4 address
- timer number
- Timer interval for successive advertisements, in milliseconds
- timer
Variable string - Variable name
- tloc
Prefix booleanChange - change TLOC preference
- tloc
Prefix numberChange Value - Set tloc preference change value
- tloc
Prefix stringChange Value Variable - Variable name
- track
Omp boolean - Track OMP status
- track
Omp stringVariable - Variable name
- tracking
Objects GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Tracking Object[] - tracking object for VRRP configuration
- address str
- Assign IPV4 Address
- address_
variable str - Variable name
- follow_
dual_ boolrouter_ high_ availability - Follow RG state by default when B2B HA is configured
- group_
id int - Group ID
- group_
id_ strvariable - Variable name
- prefix_
list str - Track Prefix List
- prefix_
list_ strvariable - Variable name
- priority int
- Set priority
- priority_
variable str - Variable name
- secondary_
addresses Sequence[GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Secondary Address] - VRRP Secondary IPV4 address
- timer int
- Timer interval for successive advertisements, in milliseconds
- timer_
variable str - Variable name
- tloc_
prefix_ boolchange - change TLOC preference
- tloc_
prefix_ intchange_ value - Set tloc preference change value
- tloc_
prefix_ strchange_ value_ variable - Variable name
- track_
omp bool - Track OMP status
- track_
omp_ strvariable - Variable name
- tracking_
objects Sequence[GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Tracking Object] - tracking object for VRRP configuration
- address String
- Assign IPV4 Address
- address
Variable String - Variable name
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id Number - Group ID
- group
Id StringVariable - Variable name
- prefix
List String - Track Prefix List
- prefix
List StringVariable - Variable name
- priority Number
- Set priority
- priority
Variable String - Variable name
- secondary
Addresses List<Property Map> - VRRP Secondary IPV4 address
- timer Number
- Timer interval for successive advertisements, in milliseconds
- timer
Variable String - Variable name
- tloc
Prefix BooleanChange - change TLOC preference
- tloc
Prefix NumberChange Value - Set tloc preference change value
- tloc
Prefix StringChange Value Variable - Variable name
- track
Omp Boolean - Track OMP status
- track
Omp StringVariable - Variable name
- tracking
Objects List<Property Map> - tracking object for VRRP configuration
GetServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress
- Address string
- VRRP Secondary IPV4 address
- Address
Variable string - Variable name
- Address string
- VRRP Secondary IPV4 address
- Address
Variable string - Variable name
- address String
- VRRP Secondary IPV4 address
- address
Variable String - Variable name
- address string
- VRRP Secondary IPV4 address
- address
Variable string - Variable name
- address str
- VRRP Secondary IPV4 address
- address_
variable str - Variable name
- address String
- VRRP Secondary IPV4 address
- address
Variable String - Variable name
GetServiceLanVpnInterfaceSviFeatureIpv4VrrpTrackingObject
- Decrement
Value int - Decrement Value for VRRP priority
- Decrement
Value stringVariable - Variable name
- Track
Action string - Track Action
- Track
Action stringVariable - Variable name
- Tracker
Id string
- Decrement
Value int - Decrement Value for VRRP priority
- Decrement
Value stringVariable - Variable name
- Track
Action string - Track Action
- Track
Action stringVariable - Variable name
- Tracker
Id string
- decrement
Value Integer - Decrement Value for VRRP priority
- decrement
Value StringVariable - Variable name
- track
Action String - Track Action
- track
Action StringVariable - Variable name
- tracker
Id String
- decrement
Value number - Decrement Value for VRRP priority
- decrement
Value stringVariable - Variable name
- track
Action string - Track Action
- track
Action stringVariable - Variable name
- tracker
Id string
- decrement_
value int - Decrement Value for VRRP priority
- decrement_
value_ strvariable - Variable name
- track_
action str - Track Action
- track_
action_ strvariable - Variable name
- tracker_
id str
- decrement
Value Number - Decrement Value for VRRP priority
- decrement
Value StringVariable - Variable name
- track
Action String - Track Action
- track
Action StringVariable - Variable name
- tracker
Id String
GetServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper
- Address string
- DHCPv6 Helper address
- Address
Variable string - Variable name
- Vpn int
- DHCPv6 Helper VPN
- Vpn
Variable string - Variable name
- Address string
- DHCPv6 Helper address
- Address
Variable string - Variable name
- Vpn int
- DHCPv6 Helper VPN
- Vpn
Variable string - Variable name
- address String
- DHCPv6 Helper address
- address
Variable String - Variable name
- vpn Integer
- DHCPv6 Helper VPN
- vpn
Variable String - Variable name
- address string
- DHCPv6 Helper address
- address
Variable string - Variable name
- vpn number
- DHCPv6 Helper VPN
- vpn
Variable string - Variable name
- address str
- DHCPv6 Helper address
- address_
variable str - Variable name
- vpn int
- DHCPv6 Helper VPN
- vpn_
variable str - Variable name
- address String
- DHCPv6 Helper address
- address
Variable String - Variable name
- vpn Number
- DHCPv6 Helper VPN
- vpn
Variable String - Variable name
GetServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress
- Address string
- IPv6 Address
- Address
Variable string - Variable name
- Address string
- IPv6 Address
- Address
Variable string - Variable name
- address String
- IPv6 Address
- address
Variable String - Variable name
- address string
- IPv6 Address
- address
Variable string - Variable name
- address str
- IPv6 Address
- address_
variable str - Variable name
- address String
- IPv6 Address
- address
Variable String - Variable name
GetServiceLanVpnInterfaceSviFeatureIpv6Vrrp
- Addresses
List<Get
Service Lan Vpn Interface Svi Feature Ipv6Vrrp Address> - IPv6 VRRP
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Group
Id int - Group ID
- Group
Id stringVariable - Variable name
- Priority int
- Set priority
- Priority
Variable string - Variable name
- Secondary
Addresses List<GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Secondary Address> - IPv6 Secondary IP address
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Timer
Variable string - Variable name
- Track
Omp bool - Track OMP status
- Track
Omp stringVariable - Variable name
- Track
Prefix stringList - Track Prefix List
- Track
Prefix stringList Variable - Variable name
- Addresses
[]Get
Service Lan Vpn Interface Svi Feature Ipv6Vrrp Address - IPv6 VRRP
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Group
Id int - Group ID
- Group
Id stringVariable - Variable name
- Priority int
- Set priority
- Priority
Variable string - Variable name
- Secondary
Addresses []GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Secondary Address - IPv6 Secondary IP address
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Timer
Variable string - Variable name
- Track
Omp bool - Track OMP status
- Track
Omp stringVariable - Variable name
- Track
Prefix stringList - Track Prefix List
- Track
Prefix stringList Variable - Variable name
- addresses
List<Get
Service Lan Vpn Interface Svi Feature Ipv6Vrrp Address> - IPv6 VRRP
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id Integer - Group ID
- group
Id StringVariable - Variable name
- priority Integer
- Set priority
- priority
Variable String - Variable name
- secondary
Addresses List<GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Secondary Address> - IPv6 Secondary IP address
- timer Integer
- Timer interval for successive advertisements, in milliseconds
- timer
Variable String - Variable name
- track
Omp Boolean - Track OMP status
- track
Omp StringVariable - Variable name
- track
Prefix StringList - Track Prefix List
- track
Prefix StringList Variable - Variable name
- addresses
Get
Service Lan Vpn Interface Svi Feature Ipv6Vrrp Address[] - IPv6 VRRP
- follow
Dual booleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id number - Group ID
- group
Id stringVariable - Variable name
- priority number
- Set priority
- priority
Variable string - Variable name
- secondary
Addresses GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Secondary Address[] - IPv6 Secondary IP address
- timer number
- Timer interval for successive advertisements, in milliseconds
- timer
Variable string - Variable name
- track
Omp boolean - Track OMP status
- track
Omp stringVariable - Variable name
- track
Prefix stringList - Track Prefix List
- track
Prefix stringList Variable - Variable name
- addresses
Sequence[Get
Service Lan Vpn Interface Svi Feature Ipv6Vrrp Address] - IPv6 VRRP
- follow_
dual_ boolrouter_ high_ availability - Follow RG state by default when B2B HA is configured
- group_
id int - Group ID
- group_
id_ strvariable - Variable name
- priority int
- Set priority
- priority_
variable str - Variable name
- secondary_
addresses Sequence[GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Secondary Address] - IPv6 Secondary IP address
- timer int
- Timer interval for successive advertisements, in milliseconds
- timer_
variable str - Variable name
- track_
omp bool - Track OMP status
- track_
omp_ strvariable - Variable name
- track_
prefix_ strlist - Track Prefix List
- track_
prefix_ strlist_ variable - Variable name
- addresses List<Property Map>
- IPv6 VRRP
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- group
Id Number - Group ID
- group
Id StringVariable - Variable name
- priority Number
- Set priority
- priority
Variable String - Variable name
- secondary
Addresses List<Property Map> - IPv6 Secondary IP address
- timer Number
- Timer interval for successive advertisements, in milliseconds
- timer
Variable String - Variable name
- track
Omp Boolean - Track OMP status
- track
Omp StringVariable - Variable name
- track
Prefix StringList - Track Prefix List
- track
Prefix StringList Variable - Variable name
GetServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress
- Global
Address string - Assign Global IPv6 Prefix
- Global
Address stringVariable - Variable name
- Link
Local stringAddress - Use link-local IPv6 Address
- Link
Local stringAddress Variable - Variable name
- Global
Address string - Assign Global IPv6 Prefix
- Global
Address stringVariable - Variable name
- Link
Local stringAddress - Use link-local IPv6 Address
- Link
Local stringAddress Variable - Variable name
- global
Address String - Assign Global IPv6 Prefix
- global
Address StringVariable - Variable name
- link
Local StringAddress - Use link-local IPv6 Address
- link
Local StringAddress Variable - Variable name
- global
Address string - Assign Global IPv6 Prefix
- global
Address stringVariable - Variable name
- link
Local stringAddress - Use link-local IPv6 Address
- link
Local stringAddress Variable - Variable name
- global_
address str - Assign Global IPv6 Prefix
- global_
address_ strvariable - Variable name
- link_
local_ straddress - Use link-local IPv6 Address
- link_
local_ straddress_ variable - Variable name
- global
Address String - Assign Global IPv6 Prefix
- global
Address StringVariable - Variable name
- link
Local StringAddress - Use link-local IPv6 Address
- link
Local StringAddress Variable - Variable name
GetServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress
- Prefix string
- IPv6 Secondary IP address
- Prefix
Variable string - Variable name
- Prefix string
- IPv6 Secondary IP address
- Prefix
Variable string - Variable name
- prefix String
- IPv6 Secondary IP address
- prefix
Variable String - Variable name
- prefix string
- IPv6 Secondary IP address
- prefix
Variable string - Variable name
- prefix str
- IPv6 Secondary IP address
- prefix_
variable str - Variable name
- prefix String
- IPv6 Secondary IP address
- prefix
Variable String - Variable name
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
