Cisco Catalyst SD-WAN v0.2.5 published on Saturday, Mar 15, 2025 by Pulumi
sdwan.getServiceLanVpnInterfaceSviFeature
Explore with Pulumi AI
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:
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- ServiceLan stringVpn Feature Id 
- Service LAN VPN Feature ID
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- ServiceLan stringVpn Feature Id 
- Service LAN VPN Feature ID
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- serviceLan StringVpn Feature Id 
- Service LAN VPN Feature ID
- featureProfile stringId 
- Feature Profile ID
- id string
- The id of the Feature
- serviceLan 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
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- serviceLan StringVpn Feature Id 
- Service LAN VPN Feature ID
getServiceLanVpnInterfaceSviFeature Result
The following output properties are available:
- AclIpv4Egress stringFeature Id 
- AclIpv4Ingress stringFeature Id 
- AclIpv6Egress stringFeature Id 
- AclIpv6Ingress stringFeature Id 
- ArpTimeout int
- Timeout value for dynamically learned ARP entries, \n\n seconds
- ArpTimeout stringVariable 
- Variable name
- Arps
List<GetService Lan Vpn Interface Svi Feature Arp> 
- Configure static ARP entries
- Description string
- The description of the Feature
- EnableDhcpv6 bool
- Enable DHCPv6
- EnableDhcpv6Variable string
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- IcmpRedirect boolDisable 
- ICMP/ICMPv6 Redirect Disable
- IcmpRedirect stringDisable Variable 
- Variable name
- Id string
- The id of the Feature
- InterfaceDescription string
- Interface description
- InterfaceDescription stringVariable 
- Variable name
- InterfaceMtu int
- Interface MTU \n\n in bytes
- InterfaceMtu stringVariable 
- Variable name
- InterfaceName string
- Interface name: VLAN 1 - VLAN 4094 when present
- InterfaceName stringVariable 
- Variable name
- IpDirected boolBroadcast 
- IP Directed-Broadcast
- IpDirected stringBroadcast Variable 
- Variable name
- IpMtu int
- IP MTU \n\n, in bytes
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- IP Address
- Ipv4AddressVariable string
- Variable name
- Ipv4DhcpHelpers List<string>
- List of DHCP helper addresses
- Ipv4DhcpHelpers stringVariable 
- Variable name
- Ipv4SecondaryAddresses List<GetService Lan Vpn Interface Svi Feature Ipv4Secondary Address> 
- Assign secondary IP addresses
- Ipv4SubnetMask string
- Subnet Mask
- Ipv4SubnetMask stringVariable 
- Variable name
- Ipv4Vrrps
List<GetService Lan Vpn Interface Svi Feature Ipv4Vrrp> 
- Enable ipv4 VRRP
- Ipv6Address string
- Assign IPv6 address
- Ipv6AddressVariable string
- Variable name
- Ipv6DhcpHelpers List<GetService Lan Vpn Interface Svi Feature Ipv6Dhcp Helper> 
- DHCPv6 Helper
- Ipv6SecondaryAddresses List<GetService Lan Vpn Interface Svi Feature Ipv6Secondary Address> 
- Assign secondary IPv6 addresses
- Ipv6Vrrps
List<GetService Lan Vpn Interface Svi Feature Ipv6Vrrp> 
- Enable ipv6 VRRP
- Name string
- The name of the Feature
- ServiceLan stringVpn Feature Id 
- Service LAN VPN Feature ID
- Shutdown bool
- Administrative state
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes
- TcpMss stringVariable 
- Variable name
- Version int
- The version of the Feature
- AclIpv4Egress stringFeature Id 
- AclIpv4Ingress stringFeature Id 
- AclIpv6Egress stringFeature Id 
- AclIpv6Ingress stringFeature Id 
- ArpTimeout int
- Timeout value for dynamically learned ARP entries, \n\n seconds
- ArpTimeout stringVariable 
- Variable name
- Arps
[]GetService Lan Vpn Interface Svi Feature Arp 
- Configure static ARP entries
- Description string
- The description of the Feature
- EnableDhcpv6 bool
- Enable DHCPv6
- EnableDhcpv6Variable string
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- IcmpRedirect boolDisable 
- ICMP/ICMPv6 Redirect Disable
- IcmpRedirect stringDisable Variable 
- Variable name
- Id string
- The id of the Feature
- InterfaceDescription string
- Interface description
- InterfaceDescription stringVariable 
- Variable name
- InterfaceMtu int
- Interface MTU \n\n in bytes
- InterfaceMtu stringVariable 
- Variable name
- InterfaceName string
- Interface name: VLAN 1 - VLAN 4094 when present
- InterfaceName stringVariable 
- Variable name
- IpDirected boolBroadcast 
- IP Directed-Broadcast
- IpDirected stringBroadcast Variable 
- Variable name
- IpMtu int
- IP MTU \n\n, in bytes
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- IP Address
- Ipv4AddressVariable string
- Variable name
- Ipv4DhcpHelpers []string
- List of DHCP helper addresses
- Ipv4DhcpHelpers stringVariable 
- Variable name
- Ipv4SecondaryAddresses []GetService Lan Vpn Interface Svi Feature Ipv4Secondary Address 
- Assign secondary IP addresses
- Ipv4SubnetMask string
- Subnet Mask
- Ipv4SubnetMask stringVariable 
- Variable name
- Ipv4Vrrps
[]GetService Lan Vpn Interface Svi Feature Ipv4Vrrp 
- Enable ipv4 VRRP
- Ipv6Address string
- Assign IPv6 address
- Ipv6AddressVariable string
- Variable name
- Ipv6DhcpHelpers []GetService Lan Vpn Interface Svi Feature Ipv6Dhcp Helper 
- DHCPv6 Helper
- Ipv6SecondaryAddresses []GetService Lan Vpn Interface Svi Feature Ipv6Secondary Address 
- Assign secondary IPv6 addresses
- Ipv6Vrrps
[]GetService Lan Vpn Interface Svi Feature Ipv6Vrrp 
- Enable ipv6 VRRP
- Name string
- The name of the Feature
- ServiceLan stringVpn Feature Id 
- Service LAN VPN Feature ID
- Shutdown bool
- Administrative state
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes
- TcpMss stringVariable 
- Variable name
- Version int
- The version of the Feature
- aclIpv4Egress StringFeature Id 
- aclIpv4Ingress StringFeature Id 
- aclIpv6Egress StringFeature Id 
- aclIpv6Ingress StringFeature Id 
- arpTimeout Integer
- Timeout value for dynamically learned ARP entries, \n\n seconds
- arpTimeout StringVariable 
- Variable name
- arps
List<GetService Lan Vpn Interface Svi Feature Arp> 
- Configure static ARP entries
- description String
- The description of the Feature
- enableDhcpv6 Boolean
- Enable DHCPv6
- enableDhcpv6Variable String
- Variable name
- featureProfile StringId 
- Feature Profile ID
- icmpRedirect BooleanDisable 
- ICMP/ICMPv6 Redirect Disable
- icmpRedirect StringDisable Variable 
- Variable name
- id String
- The id of the Feature
- interfaceDescription String
- Interface description
- interfaceDescription StringVariable 
- Variable name
- interfaceMtu Integer
- Interface MTU \n\n in bytes
- interfaceMtu StringVariable 
- Variable name
- interfaceName String
- Interface name: VLAN 1 - VLAN 4094 when present
- interfaceName StringVariable 
- Variable name
- ipDirected BooleanBroadcast 
- IP Directed-Broadcast
- ipDirected StringBroadcast Variable 
- Variable name
- ipMtu Integer
- IP MTU \n\n, in bytes
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- IP Address
- ipv4AddressVariable String
- Variable name
- ipv4DhcpHelpers List<String>
- List of DHCP helper addresses
- ipv4DhcpHelpers StringVariable 
- Variable name
- ipv4SecondaryAddresses List<GetService Lan Vpn Interface Svi Feature Ipv4Secondary Address> 
- Assign secondary IP addresses
- ipv4SubnetMask String
- Subnet Mask
- ipv4SubnetMask StringVariable 
- Variable name
- ipv4Vrrps
List<GetService Lan Vpn Interface Svi Feature Ipv4Vrrp> 
- Enable ipv4 VRRP
- ipv6Address String
- Assign IPv6 address
- ipv6AddressVariable String
- Variable name
- ipv6DhcpHelpers List<GetService Lan Vpn Interface Svi Feature Ipv6Dhcp Helper> 
- DHCPv6 Helper
- ipv6SecondaryAddresses List<GetService Lan Vpn Interface Svi Feature Ipv6Secondary Address> 
- Assign secondary IPv6 addresses
- ipv6Vrrps
List<GetService Lan Vpn Interface Svi Feature Ipv6Vrrp> 
- Enable ipv6 VRRP
- name String
- The name of the Feature
- serviceLan StringVpn Feature Id 
- Service LAN VPN Feature ID
- shutdown Boolean
- Administrative state
- shutdownVariable String
- Variable name
- tcpMss Integer
- TCP MSS on SYN packets, in bytes
- tcpMss StringVariable 
- Variable name
- version Integer
- The version of the Feature
- aclIpv4Egress stringFeature Id 
- aclIpv4Ingress stringFeature Id 
- aclIpv6Egress stringFeature Id 
- aclIpv6Ingress stringFeature Id 
- arpTimeout number
- Timeout value for dynamically learned ARP entries, \n\n seconds
- arpTimeout stringVariable 
- Variable name
- arps
GetService Lan Vpn Interface Svi Feature Arp[] 
- Configure static ARP entries
- description string
- The description of the Feature
- enableDhcpv6 boolean
- Enable DHCPv6
- enableDhcpv6Variable string
- Variable name
- featureProfile stringId 
- Feature Profile ID
- icmpRedirect booleanDisable 
- ICMP/ICMPv6 Redirect Disable
- icmpRedirect stringDisable Variable 
- Variable name
- id string
- The id of the Feature
- interfaceDescription string
- Interface description
- interfaceDescription stringVariable 
- Variable name
- interfaceMtu number
- Interface MTU \n\n in bytes
- interfaceMtu stringVariable 
- Variable name
- interfaceName string
- Interface name: VLAN 1 - VLAN 4094 when present
- interfaceName stringVariable 
- Variable name
- ipDirected booleanBroadcast 
- IP Directed-Broadcast
- ipDirected stringBroadcast Variable 
- Variable name
- ipMtu number
- IP MTU \n\n, in bytes
- ipMtu stringVariable 
- Variable name
- ipv4Address string
- IP Address
- ipv4AddressVariable string
- Variable name
- ipv4DhcpHelpers string[]
- List of DHCP helper addresses
- ipv4DhcpHelpers stringVariable 
- Variable name
- ipv4SecondaryAddresses GetService Lan Vpn Interface Svi Feature Ipv4Secondary Address[] 
- Assign secondary IP addresses
- ipv4SubnetMask string
- Subnet Mask
- ipv4SubnetMask stringVariable 
- Variable name
- ipv4Vrrps
GetService Lan Vpn Interface Svi Feature Ipv4Vrrp[] 
- Enable ipv4 VRRP
- ipv6Address string
- Assign IPv6 address
- ipv6AddressVariable string
- Variable name
- ipv6DhcpHelpers GetService Lan Vpn Interface Svi Feature Ipv6Dhcp Helper[] 
- DHCPv6 Helper
- ipv6SecondaryAddresses GetService Lan Vpn Interface Svi Feature Ipv6Secondary Address[] 
- Assign secondary IPv6 addresses
- ipv6Vrrps
GetService Lan Vpn Interface Svi Feature Ipv6Vrrp[] 
- Enable ipv6 VRRP
- name string
- The name of the Feature
- serviceLan stringVpn Feature Id 
- Service LAN VPN Feature ID
- shutdown boolean
- Administrative state
- shutdownVariable string
- Variable name
- tcpMss number
- TCP MSS on SYN packets, in bytes
- tcpMss 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[GetService 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
- aclIpv4Egress StringFeature Id 
- aclIpv4Ingress StringFeature Id 
- aclIpv6Egress StringFeature Id 
- aclIpv6Ingress StringFeature Id 
- arpTimeout Number
- Timeout value for dynamically learned ARP entries, \n\n seconds
- arpTimeout StringVariable 
- Variable name
- arps List<Property Map>
- Configure static ARP entries
- description String
- The description of the Feature
- enableDhcpv6 Boolean
- Enable DHCPv6
- enableDhcpv6Variable String
- Variable name
- featureProfile StringId 
- Feature Profile ID
- icmpRedirect BooleanDisable 
- ICMP/ICMPv6 Redirect Disable
- icmpRedirect StringDisable Variable 
- Variable name
- id String
- The id of the Feature
- interfaceDescription String
- Interface description
- interfaceDescription StringVariable 
- Variable name
- interfaceMtu Number
- Interface MTU \n\n in bytes
- interfaceMtu StringVariable 
- Variable name
- interfaceName String
- Interface name: VLAN 1 - VLAN 4094 when present
- interfaceName StringVariable 
- Variable name
- ipDirected BooleanBroadcast 
- IP Directed-Broadcast
- ipDirected StringBroadcast Variable 
- Variable name
- ipMtu Number
- IP MTU \n\n, in bytes
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- IP Address
- ipv4AddressVariable String
- Variable name
- ipv4DhcpHelpers List<String>
- List of DHCP helper addresses
- ipv4DhcpHelpers StringVariable 
- Variable name
- ipv4SecondaryAddresses List<Property Map>
- Assign secondary IP addresses
- ipv4SubnetMask String
- Subnet Mask
- ipv4SubnetMask StringVariable 
- Variable name
- ipv4Vrrps List<Property Map>
- Enable ipv4 VRRP
- ipv6Address String
- Assign IPv6 address
- ipv6AddressVariable String
- Variable name
- ipv6DhcpHelpers List<Property Map>
- DHCPv6 Helper
- ipv6SecondaryAddresses List<Property Map>
- Assign secondary IPv6 addresses
- ipv6Vrrps List<Property Map>
- Enable ipv6 VRRP
- name String
- The name of the Feature
- serviceLan StringVpn Feature Id 
- Service LAN VPN Feature ID
- shutdown Boolean
- Administrative state
- shutdownVariable String
- Variable name
- tcpMss Number
- TCP MSS on SYN packets, in bytes
- tcpMss StringVariable 
- Variable name
- version Number
- The version of the Feature
Supporting Types
GetServiceLanVpnInterfaceSviFeatureArp       
- IpAddress string
- IP Address
- IpAddress stringVariable 
- Variable name
- MacAddress string
- MAC address
- MacAddress stringVariable 
- Variable name
- IpAddress string
- IP Address
- IpAddress stringVariable 
- Variable name
- MacAddress string
- MAC address
- MacAddress stringVariable 
- Variable name
- ipAddress String
- IP Address
- ipAddress StringVariable 
- Variable name
- macAddress String
- MAC address
- macAddress StringVariable 
- Variable name
- ipAddress string
- IP Address
- ipAddress stringVariable 
- Variable name
- macAddress string
- MAC address
- macAddress stringVariable 
- Variable name
- ip_address str
- IP Address
- ip_address_ strvariable 
- Variable name
- mac_address str
- MAC address
- mac_address_ strvariable 
- Variable name
- ipAddress String
- IP Address
- ipAddress StringVariable 
- Variable name
- macAddress String
- MAC address
- macAddress StringVariable 
- Variable name
GetServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress        
- Address string
- IpV4 Address
- AddressVariable string
- Variable name
- Ipv4SubnetMask string
- Subnet Mask
- Ipv4SubnetMask stringVariable 
- Variable name
- Address string
- IpV4 Address
- AddressVariable string
- Variable name
- Ipv4SubnetMask string
- Subnet Mask
- Ipv4SubnetMask stringVariable 
- Variable name
- address String
- IpV4 Address
- addressVariable String
- Variable name
- ipv4SubnetMask String
- Subnet Mask
- ipv4SubnetMask StringVariable 
- Variable name
- address string
- IpV4 Address
- addressVariable string
- Variable name
- ipv4SubnetMask string
- Subnet Mask
- ipv4SubnetMask 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
- addressVariable String
- Variable name
- ipv4SubnetMask String
- Subnet Mask
- ipv4SubnetMask StringVariable 
- Variable name
GetServiceLanVpnInterfaceSviFeatureIpv4Vrrp       
- Address string
- Assign IPV4 Address
- AddressVariable string
- Variable name
- GroupId int
- Group ID
- GroupId stringVariable 
- Variable name
- PrefixList string
- Track Prefix List
- PrefixList stringVariable 
- Variable name
- Priority int
- Set priority
- PriorityVariable string
- Variable name
- SecondaryAddresses List<GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Secondary Address> 
- VRRP Secondary IPV4 address
- Timer int
- Timer interval for successive advertisements, in milliseconds
- TimerVariable string
- Variable name
- TlocPrefix boolChange 
- change TLOC preference
- TlocPrefix intChange Value 
- Set tloc preference change value
- TlocPrefix stringChange Value Variable 
- Variable name
- TrackOmp bool
- Track OMP status
- TrackOmp stringVariable 
- Variable name
- TrackingObjects List<GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Tracking Object> 
- tracking object for VRRP configuration
- Address string
- Assign IPV4 Address
- AddressVariable string
- Variable name
- GroupId int
- Group ID
- GroupId stringVariable 
- Variable name
- PrefixList string
- Track Prefix List
- PrefixList stringVariable 
- Variable name
- Priority int
- Set priority
- PriorityVariable string
- Variable name
- SecondaryAddresses []GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Secondary Address 
- VRRP Secondary IPV4 address
- Timer int
- Timer interval for successive advertisements, in milliseconds
- TimerVariable string
- Variable name
- TlocPrefix boolChange 
- change TLOC preference
- TlocPrefix intChange Value 
- Set tloc preference change value
- TlocPrefix stringChange Value Variable 
- Variable name
- TrackOmp bool
- Track OMP status
- TrackOmp stringVariable 
- Variable name
- TrackingObjects []GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Tracking Object 
- tracking object for VRRP configuration
- address String
- Assign IPV4 Address
- addressVariable String
- Variable name
- groupId Integer
- Group ID
- groupId StringVariable 
- Variable name
- prefixList String
- Track Prefix List
- prefixList StringVariable 
- Variable name
- priority Integer
- Set priority
- priorityVariable String
- Variable name
- secondaryAddresses List<GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Secondary Address> 
- VRRP Secondary IPV4 address
- timer Integer
- Timer interval for successive advertisements, in milliseconds
- timerVariable String
- Variable name
- tlocPrefix BooleanChange 
- change TLOC preference
- tlocPrefix IntegerChange Value 
- Set tloc preference change value
- tlocPrefix StringChange Value Variable 
- Variable name
- trackOmp Boolean
- Track OMP status
- trackOmp StringVariable 
- Variable name
- trackingObjects List<GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Tracking Object> 
- tracking object for VRRP configuration
- address string
- Assign IPV4 Address
- addressVariable string
- Variable name
- groupId number
- Group ID
- groupId stringVariable 
- Variable name
- prefixList string
- Track Prefix List
- prefixList stringVariable 
- Variable name
- priority number
- Set priority
- priorityVariable string
- Variable name
- secondaryAddresses GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Secondary Address[] 
- VRRP Secondary IPV4 address
- timer number
- Timer interval for successive advertisements, in milliseconds
- timerVariable string
- Variable name
- tlocPrefix booleanChange 
- change TLOC preference
- tlocPrefix numberChange Value 
- Set tloc preference change value
- tlocPrefix stringChange Value Variable 
- Variable name
- trackOmp boolean
- Track OMP status
- trackOmp stringVariable 
- Variable name
- trackingObjects GetService Lan Vpn Interface Svi Feature Ipv4Vrrp Tracking Object[] 
- tracking object for VRRP configuration
- address str
- Assign IPV4 Address
- address_variable str
- Variable name
- 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
- addressVariable String
- Variable name
- groupId Number
- Group ID
- groupId StringVariable 
- Variable name
- prefixList String
- Track Prefix List
- prefixList StringVariable 
- Variable name
- priority Number
- Set priority
- priorityVariable String
- Variable name
- secondaryAddresses List<Property Map>
- VRRP Secondary IPV4 address
- timer Number
- Timer interval for successive advertisements, in milliseconds
- timerVariable String
- Variable name
- tlocPrefix BooleanChange 
- change TLOC preference
- tlocPrefix NumberChange Value 
- Set tloc preference change value
- tlocPrefix StringChange Value Variable 
- Variable name
- trackOmp Boolean
- Track OMP status
- trackOmp StringVariable 
- Variable name
- trackingObjects List<Property Map>
- tracking object for VRRP configuration
GetServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress         
- Address string
- VRRP Secondary IPV4 address
- AddressVariable string
- Variable name
- Address string
- VRRP Secondary IPV4 address
- AddressVariable string
- Variable name
- address String
- VRRP Secondary IPV4 address
- addressVariable String
- Variable name
- address string
- VRRP Secondary IPV4 address
- addressVariable string
- Variable name
- address str
- VRRP Secondary IPV4 address
- address_variable str
- Variable name
- address String
- VRRP Secondary IPV4 address
- addressVariable String
- Variable name
GetServiceLanVpnInterfaceSviFeatureIpv4VrrpTrackingObject         
- DecrementValue int
- Decrement Value for VRRP priority
- DecrementValue stringVariable 
- Variable name
- TrackAction string
- Track Action
- TrackAction stringVariable 
- Variable name
- TrackerId string
- DecrementValue int
- Decrement Value for VRRP priority
- DecrementValue stringVariable 
- Variable name
- TrackAction string
- Track Action
- TrackAction stringVariable 
- Variable name
- TrackerId string
- decrementValue Integer
- Decrement Value for VRRP priority
- decrementValue StringVariable 
- Variable name
- trackAction String
- Track Action
- trackAction StringVariable 
- Variable name
- trackerId String
- decrementValue number
- Decrement Value for VRRP priority
- decrementValue stringVariable 
- Variable name
- trackAction string
- Track Action
- trackAction stringVariable 
- Variable name
- trackerId 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
- decrementValue Number
- Decrement Value for VRRP priority
- decrementValue StringVariable 
- Variable name
- trackAction String
- Track Action
- trackAction StringVariable 
- Variable name
- trackerId String
GetServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper        
- Address string
- DHCPv6 Helper address
- AddressVariable string
- Variable name
- Vpn int
- DHCPv6 Helper VPN
- VpnVariable string
- Variable name
- Address string
- DHCPv6 Helper address
- AddressVariable string
- Variable name
- Vpn int
- DHCPv6 Helper VPN
- VpnVariable string
- Variable name
- address String
- DHCPv6 Helper address
- addressVariable String
- Variable name
- vpn Integer
- DHCPv6 Helper VPN
- vpnVariable String
- Variable name
- address string
- DHCPv6 Helper address
- addressVariable string
- Variable name
- vpn number
- DHCPv6 Helper VPN
- vpnVariable 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
- addressVariable String
- Variable name
- vpn Number
- DHCPv6 Helper VPN
- vpnVariable String
- Variable name
GetServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress        
- Address string
- IPv6 Address
- AddressVariable string
- Variable name
- Address string
- IPv6 Address
- AddressVariable string
- Variable name
- address String
- IPv6 Address
- addressVariable String
- Variable name
- address string
- IPv6 Address
- addressVariable string
- Variable name
- address str
- IPv6 Address
- address_variable str
- Variable name
- address String
- IPv6 Address
- addressVariable String
- Variable name
GetServiceLanVpnInterfaceSviFeatureIpv6Vrrp       
- Addresses
List<GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Address> 
- IPv6 VRRP
- GroupId int
- Group ID
- GroupId stringVariable 
- Variable name
- Priority int
- Set priority
- PriorityVariable string
- Variable name
- SecondaryAddresses List<GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Secondary Address> 
- IPv6 Secondary IP address
- Timer int
- Timer interval for successive advertisements, in milliseconds
- TimerVariable string
- Variable name
- TrackOmp bool
- Track OMP status
- TrackOmp stringVariable 
- Variable name
- TrackPrefix stringList 
- Track Prefix List
- TrackPrefix stringList Variable 
- Variable name
- Addresses
[]GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Address 
- IPv6 VRRP
- GroupId int
- Group ID
- GroupId stringVariable 
- Variable name
- Priority int
- Set priority
- PriorityVariable string
- Variable name
- SecondaryAddresses []GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Secondary Address 
- IPv6 Secondary IP address
- Timer int
- Timer interval for successive advertisements, in milliseconds
- TimerVariable string
- Variable name
- TrackOmp bool
- Track OMP status
- TrackOmp stringVariable 
- Variable name
- TrackPrefix stringList 
- Track Prefix List
- TrackPrefix stringList Variable 
- Variable name
- addresses
List<GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Address> 
- IPv6 VRRP
- groupId Integer
- Group ID
- groupId StringVariable 
- Variable name
- priority Integer
- Set priority
- priorityVariable String
- Variable name
- secondaryAddresses List<GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Secondary Address> 
- IPv6 Secondary IP address
- timer Integer
- Timer interval for successive advertisements, in milliseconds
- timerVariable String
- Variable name
- trackOmp Boolean
- Track OMP status
- trackOmp StringVariable 
- Variable name
- trackPrefix StringList 
- Track Prefix List
- trackPrefix StringList Variable 
- Variable name
- addresses
GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Address[] 
- IPv6 VRRP
- groupId number
- Group ID
- groupId stringVariable 
- Variable name
- priority number
- Set priority
- priorityVariable string
- Variable name
- secondaryAddresses GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Secondary Address[] 
- IPv6 Secondary IP address
- timer number
- Timer interval for successive advertisements, in milliseconds
- timerVariable string
- Variable name
- trackOmp boolean
- Track OMP status
- trackOmp stringVariable 
- Variable name
- trackPrefix stringList 
- Track Prefix List
- trackPrefix stringList Variable 
- Variable name
- addresses
Sequence[GetService Lan Vpn Interface Svi Feature Ipv6Vrrp Address] 
- IPv6 VRRP
- 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
- groupId Number
- Group ID
- groupId StringVariable 
- Variable name
- priority Number
- Set priority
- priorityVariable String
- Variable name
- secondaryAddresses List<Property Map>
- IPv6 Secondary IP address
- timer Number
- Timer interval for successive advertisements, in milliseconds
- timerVariable String
- Variable name
- trackOmp Boolean
- Track OMP status
- trackOmp StringVariable 
- Variable name
- trackPrefix StringList 
- Track Prefix List
- trackPrefix StringList Variable 
- Variable name
GetServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress        
- GlobalAddress string
- Assign Global IPv6 Prefix
- GlobalAddress stringVariable 
- Variable name
- LinkLocal stringAddress 
- Use link-local IPv6 Address
- LinkLocal stringAddress Variable 
- Variable name
- GlobalAddress string
- Assign Global IPv6 Prefix
- GlobalAddress stringVariable 
- Variable name
- LinkLocal stringAddress 
- Use link-local IPv6 Address
- LinkLocal stringAddress Variable 
- Variable name
- globalAddress String
- Assign Global IPv6 Prefix
- globalAddress StringVariable 
- Variable name
- linkLocal StringAddress 
- Use link-local IPv6 Address
- linkLocal StringAddress Variable 
- Variable name
- globalAddress string
- Assign Global IPv6 Prefix
- globalAddress stringVariable 
- Variable name
- linkLocal stringAddress 
- Use link-local IPv6 Address
- linkLocal 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
- globalAddress String
- Assign Global IPv6 Prefix
- globalAddress StringVariable 
- Variable name
- linkLocal StringAddress 
- Use link-local IPv6 Address
- linkLocal StringAddress Variable 
- Variable name
GetServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress         
- Prefix string
- IPv6 Secondary IP address
- PrefixVariable string
- Variable name
- Prefix string
- IPv6 Secondary IP address
- PrefixVariable string
- Variable name
- prefix String
- IPv6 Secondary IP address
- prefixVariable String
- Variable name
- prefix string
- IPv6 Secondary IP address
- prefixVariable string
- Variable name
- prefix str
- IPv6 Secondary IP address
- prefix_variable str
- Variable name
- prefix String
- IPv6 Secondary IP address
- prefixVariable String
- Variable name
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the sdwanTerraform Provider.
