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

sdwan.getServiceLanVpnInterfaceSviFeature

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: sdwan:index/getServiceLanVpnInterfaceSviFeature:getServiceLanVpnInterfaceSviFeature
      arguments:
        # arguments dictionary

    The following arguments are supported:

    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Feature
    serviceLanVpnFeatureId string
    Service LAN VPN Feature ID
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Feature
    service_lan_vpn_feature_id str
    Service LAN VPN Feature ID
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID

    getServiceLanVpnInterfaceSviFeature Result

    The following output properties are available:

    ArpTimeout int
    Timeout value for dynamically learned ARP entries, \n\n seconds
    ArpTimeoutVariable string
    Variable name
    Arps List<GetServiceLanVpnInterfaceSviFeatureArp>
    Configure static ARP entries
    Description string
    The description of the Feature
    EnableDhcpv6 bool
    Enable DHCPv6
    EnableDhcpv6Variable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    IcmpRedirectDisable bool
    ICMP/ICMPv6 Redirect Disable
    IcmpRedirectDisableVariable string
    Variable name
    Id string
    The id of the Feature
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceMtu int
    Interface MTU \n\n in bytes
    InterfaceMtuVariable string
    Variable name
    InterfaceName string
    Interface name: VLAN 1 - VLAN 4094 when present
    InterfaceNameVariable string
    Variable name
    IpDirectedBroadcast bool
    IP Directed-Broadcast
    IpDirectedBroadcastVariable string
    Variable name
    IpMtu int
    IP MTU \n\n, in bytes
    IpMtuVariable string
    Variable name
    Ipv4Address string
    IP Address
    Ipv4AddressVariable string
    Variable name
    Ipv4DhcpHelpers List<string>
    List of DHCP helper addresses
    Ipv4DhcpHelpersVariable string
    Variable name
    Ipv4SecondaryAddresses List<GetServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress>
    Assign secondary IP addresses
    Ipv4SubnetMask string
    Subnet Mask
    Ipv4SubnetMaskVariable string
    Variable name
    Ipv4Vrrps List<GetServiceLanVpnInterfaceSviFeatureIpv4Vrrp>
    Enable ipv4 VRRP
    Ipv6Address string
    Assign IPv6 address
    Ipv6AddressVariable string
    Variable name
    Ipv6DhcpHelpers List<GetServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper>
    DHCPv6 Helper
    Ipv6SecondaryAddresses List<GetServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress>
    Assign secondary IPv6 addresses
    Ipv6Vrrps List<GetServiceLanVpnInterfaceSviFeatureIpv6Vrrp>
    Enable ipv6 VRRP
    Name string
    The name of the Feature
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    Administrative state
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes
    TcpMssVariable string
    Variable name
    Version int
    The version of the Feature
    ArpTimeout int
    Timeout value for dynamically learned ARP entries, \n\n seconds
    ArpTimeoutVariable string
    Variable name
    Arps []GetServiceLanVpnInterfaceSviFeatureArp
    Configure static ARP entries
    Description string
    The description of the Feature
    EnableDhcpv6 bool
    Enable DHCPv6
    EnableDhcpv6Variable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    IcmpRedirectDisable bool
    ICMP/ICMPv6 Redirect Disable
    IcmpRedirectDisableVariable string
    Variable name
    Id string
    The id of the Feature
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceMtu int
    Interface MTU \n\n in bytes
    InterfaceMtuVariable string
    Variable name
    InterfaceName string
    Interface name: VLAN 1 - VLAN 4094 when present
    InterfaceNameVariable string
    Variable name
    IpDirectedBroadcast bool
    IP Directed-Broadcast
    IpDirectedBroadcastVariable string
    Variable name
    IpMtu int
    IP MTU \n\n, in bytes
    IpMtuVariable string
    Variable name
    Ipv4Address string
    IP Address
    Ipv4AddressVariable string
    Variable name
    Ipv4DhcpHelpers []string
    List of DHCP helper addresses
    Ipv4DhcpHelpersVariable string
    Variable name
    Ipv4SecondaryAddresses []GetServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress
    Assign secondary IP addresses
    Ipv4SubnetMask string
    Subnet Mask
    Ipv4SubnetMaskVariable string
    Variable name
    Ipv4Vrrps []GetServiceLanVpnInterfaceSviFeatureIpv4Vrrp
    Enable ipv4 VRRP
    Ipv6Address string
    Assign IPv6 address
    Ipv6AddressVariable string
    Variable name
    Ipv6DhcpHelpers []GetServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper
    DHCPv6 Helper
    Ipv6SecondaryAddresses []GetServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress
    Assign secondary IPv6 addresses
    Ipv6Vrrps []GetServiceLanVpnInterfaceSviFeatureIpv6Vrrp
    Enable ipv6 VRRP
    Name string
    The name of the Feature
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    Administrative state
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes
    TcpMssVariable string
    Variable name
    Version int
    The version of the Feature
    arpTimeout Integer
    Timeout value for dynamically learned ARP entries, \n\n seconds
    arpTimeoutVariable String
    Variable name
    arps List<GetServiceLanVpnInterfaceSviFeatureArp>
    Configure static ARP entries
    description String
    The description of the Feature
    enableDhcpv6 Boolean
    Enable DHCPv6
    enableDhcpv6Variable String
    Variable name
    featureProfileId String
    Feature Profile ID
    icmpRedirectDisable Boolean
    ICMP/ICMPv6 Redirect Disable
    icmpRedirectDisableVariable String
    Variable name
    id String
    The id of the Feature
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceMtu Integer
    Interface MTU \n\n in bytes
    interfaceMtuVariable String
    Variable name
    interfaceName String
    Interface name: VLAN 1 - VLAN 4094 when present
    interfaceNameVariable String
    Variable name
    ipDirectedBroadcast Boolean
    IP Directed-Broadcast
    ipDirectedBroadcastVariable String
    Variable name
    ipMtu Integer
    IP MTU \n\n, in bytes
    ipMtuVariable String
    Variable name
    ipv4Address String
    IP Address
    ipv4AddressVariable String
    Variable name
    ipv4DhcpHelpers List<String>
    List of DHCP helper addresses
    ipv4DhcpHelpersVariable String
    Variable name
    ipv4SecondaryAddresses List<GetServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress>
    Assign secondary IP addresses
    ipv4SubnetMask String
    Subnet Mask
    ipv4SubnetMaskVariable String
    Variable name
    ipv4Vrrps List<GetServiceLanVpnInterfaceSviFeatureIpv4Vrrp>
    Enable ipv4 VRRP
    ipv6Address String
    Assign IPv6 address
    ipv6AddressVariable String
    Variable name
    ipv6DhcpHelpers List<GetServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper>
    DHCPv6 Helper
    ipv6SecondaryAddresses List<GetServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress>
    Assign secondary IPv6 addresses
    ipv6Vrrps List<GetServiceLanVpnInterfaceSviFeatureIpv6Vrrp>
    Enable ipv6 VRRP
    name String
    The name of the Feature
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    shutdown Boolean
    Administrative state
    shutdownVariable String
    Variable name
    tcpMss Integer
    TCP MSS on SYN packets, in bytes
    tcpMssVariable String
    Variable name
    version Integer
    The version of the Feature
    arpTimeout number
    Timeout value for dynamically learned ARP entries, \n\n seconds
    arpTimeoutVariable string
    Variable name
    arps GetServiceLanVpnInterfaceSviFeatureArp[]
    Configure static ARP entries
    description string
    The description of the Feature
    enableDhcpv6 boolean
    Enable DHCPv6
    enableDhcpv6Variable string
    Variable name
    featureProfileId string
    Feature Profile ID
    icmpRedirectDisable boolean
    ICMP/ICMPv6 Redirect Disable
    icmpRedirectDisableVariable string
    Variable name
    id string
    The id of the Feature
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceMtu number
    Interface MTU \n\n in bytes
    interfaceMtuVariable string
    Variable name
    interfaceName string
    Interface name: VLAN 1 - VLAN 4094 when present
    interfaceNameVariable string
    Variable name
    ipDirectedBroadcast boolean
    IP Directed-Broadcast
    ipDirectedBroadcastVariable string
    Variable name
    ipMtu number
    IP MTU \n\n, in bytes
    ipMtuVariable string
    Variable name
    ipv4Address string
    IP Address
    ipv4AddressVariable string
    Variable name
    ipv4DhcpHelpers string[]
    List of DHCP helper addresses
    ipv4DhcpHelpersVariable string
    Variable name
    ipv4SecondaryAddresses GetServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress[]
    Assign secondary IP addresses
    ipv4SubnetMask string
    Subnet Mask
    ipv4SubnetMaskVariable string
    Variable name
    ipv4Vrrps GetServiceLanVpnInterfaceSviFeatureIpv4Vrrp[]
    Enable ipv4 VRRP
    ipv6Address string
    Assign IPv6 address
    ipv6AddressVariable string
    Variable name
    ipv6DhcpHelpers GetServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper[]
    DHCPv6 Helper
    ipv6SecondaryAddresses GetServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress[]
    Assign secondary IPv6 addresses
    ipv6Vrrps GetServiceLanVpnInterfaceSviFeatureIpv6Vrrp[]
    Enable ipv6 VRRP
    name string
    The name of the Feature
    serviceLanVpnFeatureId string
    Service LAN VPN Feature ID
    shutdown boolean
    Administrative state
    shutdownVariable string
    Variable name
    tcpMss number
    TCP MSS on SYN packets, in bytes
    tcpMssVariable string
    Variable name
    version number
    The version of the Feature
    arp_timeout int
    Timeout value for dynamically learned ARP entries, \n\n seconds
    arp_timeout_variable str
    Variable name
    arps Sequence[GetServiceLanVpnInterfaceSviFeatureArp]
    Configure static ARP entries
    description str
    The description of the Feature
    enable_dhcpv6 bool
    Enable DHCPv6
    enable_dhcpv6_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    icmp_redirect_disable bool
    ICMP/ICMPv6 Redirect Disable
    icmp_redirect_disable_variable str
    Variable name
    id str
    The id of the Feature
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_mtu int
    Interface MTU \n\n in bytes
    interface_mtu_variable str
    Variable name
    interface_name str
    Interface name: VLAN 1 - VLAN 4094 when present
    interface_name_variable str
    Variable name
    ip_directed_broadcast bool
    IP Directed-Broadcast
    ip_directed_broadcast_variable str
    Variable name
    ip_mtu int
    IP MTU \n\n, in bytes
    ip_mtu_variable str
    Variable name
    ipv4_address str
    IP Address
    ipv4_address_variable str
    Variable name
    ipv4_dhcp_helpers Sequence[str]
    List of DHCP helper addresses
    ipv4_dhcp_helpers_variable str
    Variable name
    ipv4_secondary_addresses Sequence[GetServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress]
    Assign secondary IP addresses
    ipv4_subnet_mask str
    Subnet Mask
    ipv4_subnet_mask_variable str
    Variable name
    ipv4_vrrps Sequence[GetServiceLanVpnInterfaceSviFeatureIpv4Vrrp]
    Enable ipv4 VRRP
    ipv6_address str
    Assign IPv6 address
    ipv6_address_variable str
    Variable name
    ipv6_dhcp_helpers Sequence[GetServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper]
    DHCPv6 Helper
    ipv6_secondary_addresses Sequence[GetServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress]
    Assign secondary IPv6 addresses
    ipv6_vrrps Sequence[GetServiceLanVpnInterfaceSviFeatureIpv6Vrrp]
    Enable ipv6 VRRP
    name str
    The name of the Feature
    service_lan_vpn_feature_id str
    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_variable str
    Variable name
    version int
    The version of the Feature
    arpTimeout Number
    Timeout value for dynamically learned ARP entries, \n\n seconds
    arpTimeoutVariable String
    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
    featureProfileId String
    Feature Profile ID
    icmpRedirectDisable Boolean
    ICMP/ICMPv6 Redirect Disable
    icmpRedirectDisableVariable String
    Variable name
    id String
    The id of the Feature
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceMtu Number
    Interface MTU \n\n in bytes
    interfaceMtuVariable String
    Variable name
    interfaceName String
    Interface name: VLAN 1 - VLAN 4094 when present
    interfaceNameVariable String
    Variable name
    ipDirectedBroadcast Boolean
    IP Directed-Broadcast
    ipDirectedBroadcastVariable String
    Variable name
    ipMtu Number
    IP MTU \n\n, in bytes
    ipMtuVariable String
    Variable name
    ipv4Address String
    IP Address
    ipv4AddressVariable String
    Variable name
    ipv4DhcpHelpers List<String>
    List of DHCP helper addresses
    ipv4DhcpHelpersVariable String
    Variable name
    ipv4SecondaryAddresses List<Property Map>
    Assign secondary IP addresses
    ipv4SubnetMask String
    Subnet Mask
    ipv4SubnetMaskVariable String
    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
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    shutdown Boolean
    Administrative state
    shutdownVariable String
    Variable name
    tcpMss Number
    TCP MSS on SYN packets, in bytes
    tcpMssVariable String
    Variable name
    version Number
    The version of the Feature

    Supporting Types

    GetServiceLanVpnInterfaceSviFeatureArp

    IpAddress string
    IP Address
    IpAddressVariable string
    Variable name
    MacAddress string
    MAC address
    MacAddressVariable string
    Variable name
    IpAddress string
    IP Address
    IpAddressVariable string
    Variable name
    MacAddress string
    MAC address
    MacAddressVariable string
    Variable name
    ipAddress String
    IP Address
    ipAddressVariable String
    Variable name
    macAddress String
    MAC address
    macAddressVariable String
    Variable name
    ipAddress string
    IP Address
    ipAddressVariable string
    Variable name
    macAddress string
    MAC address
    macAddressVariable string
    Variable name
    ip_address str
    IP Address
    ip_address_variable str
    Variable name
    mac_address str
    MAC address
    mac_address_variable str
    Variable name
    ipAddress String
    IP Address
    ipAddressVariable String
    Variable name
    macAddress String
    MAC address
    macAddressVariable String
    Variable name

    GetServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress

    Address string
    IpV4 Address
    AddressVariable string
    Variable name
    Ipv4SubnetMask string
    Subnet Mask
    Ipv4SubnetMaskVariable string
    Variable name
    Address string
    IpV4 Address
    AddressVariable string
    Variable name
    Ipv4SubnetMask string
    Subnet Mask
    Ipv4SubnetMaskVariable string
    Variable name
    address String
    IpV4 Address
    addressVariable String
    Variable name
    ipv4SubnetMask String
    Subnet Mask
    ipv4SubnetMaskVariable String
    Variable name
    address string
    IpV4 Address
    addressVariable string
    Variable name
    ipv4SubnetMask string
    Subnet Mask
    ipv4SubnetMaskVariable string
    Variable name
    address str
    IpV4 Address
    address_variable str
    Variable name
    ipv4_subnet_mask str
    Subnet Mask
    ipv4_subnet_mask_variable str
    Variable name
    address String
    IpV4 Address
    addressVariable String
    Variable name
    ipv4SubnetMask String
    Subnet Mask
    ipv4SubnetMaskVariable String
    Variable name

    GetServiceLanVpnInterfaceSviFeatureIpv4Vrrp

    Address string
    Assign IPV4 Address
    AddressVariable string
    Variable name
    GroupId int
    Group ID
    GroupIdVariable string
    Variable name
    PrefixList string
    Track Prefix List
    PrefixListVariable string
    Variable name
    Priority int
    Set priority
    PriorityVariable string
    Variable name
    SecondaryAddresses List<GetServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress>
    VRRP Secondary IPV4 address
    Timer int
    Timer interval for successive advertisements, in milliseconds
    TimerVariable string
    Variable name
    TlocPrefixChange bool
    change TLOC preference
    TlocPrefixChangeValue int
    Set tloc preference change value
    TlocPrefixChangeValueVariable string
    Variable name
    TrackOmp bool
    Track OMP status
    TrackOmpVariable string
    Variable name
    Address string
    Assign IPV4 Address
    AddressVariable string
    Variable name
    GroupId int
    Group ID
    GroupIdVariable string
    Variable name
    PrefixList string
    Track Prefix List
    PrefixListVariable string
    Variable name
    Priority int
    Set priority
    PriorityVariable string
    Variable name
    SecondaryAddresses []GetServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress
    VRRP Secondary IPV4 address
    Timer int
    Timer interval for successive advertisements, in milliseconds
    TimerVariable string
    Variable name
    TlocPrefixChange bool
    change TLOC preference
    TlocPrefixChangeValue int
    Set tloc preference change value
    TlocPrefixChangeValueVariable string
    Variable name
    TrackOmp bool
    Track OMP status
    TrackOmpVariable string
    Variable name
    address String
    Assign IPV4 Address
    addressVariable String
    Variable name
    groupId Integer
    Group ID
    groupIdVariable String
    Variable name
    prefixList String
    Track Prefix List
    prefixListVariable String
    Variable name
    priority Integer
    Set priority
    priorityVariable String
    Variable name
    secondaryAddresses List<GetServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress>
    VRRP Secondary IPV4 address
    timer Integer
    Timer interval for successive advertisements, in milliseconds
    timerVariable String
    Variable name
    tlocPrefixChange Boolean
    change TLOC preference
    tlocPrefixChangeValue Integer
    Set tloc preference change value
    tlocPrefixChangeValueVariable String
    Variable name
    trackOmp Boolean
    Track OMP status
    trackOmpVariable String
    Variable name
    address string
    Assign IPV4 Address
    addressVariable string
    Variable name
    groupId number
    Group ID
    groupIdVariable string
    Variable name
    prefixList string
    Track Prefix List
    prefixListVariable string
    Variable name
    priority number
    Set priority
    priorityVariable string
    Variable name
    secondaryAddresses GetServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress[]
    VRRP Secondary IPV4 address
    timer number
    Timer interval for successive advertisements, in milliseconds
    timerVariable string
    Variable name
    tlocPrefixChange boolean
    change TLOC preference
    tlocPrefixChangeValue number
    Set tloc preference change value
    tlocPrefixChangeValueVariable string
    Variable name
    trackOmp boolean
    Track OMP status
    trackOmpVariable string
    Variable name
    address str
    Assign IPV4 Address
    address_variable str
    Variable name
    group_id int
    Group ID
    group_id_variable str
    Variable name
    prefix_list str
    Track Prefix List
    prefix_list_variable str
    Variable name
    priority int
    Set priority
    priority_variable str
    Variable name
    secondary_addresses Sequence[GetServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress]
    VRRP Secondary IPV4 address
    timer int
    Timer interval for successive advertisements, in milliseconds
    timer_variable str
    Variable name
    tloc_prefix_change bool
    change TLOC preference
    tloc_prefix_change_value int
    Set tloc preference change value
    tloc_prefix_change_value_variable str
    Variable name
    track_omp bool
    Track OMP status
    track_omp_variable str
    Variable name
    address String
    Assign IPV4 Address
    addressVariable String
    Variable name
    groupId Number
    Group ID
    groupIdVariable String
    Variable name
    prefixList String
    Track Prefix List
    prefixListVariable String
    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
    tlocPrefixChange Boolean
    change TLOC preference
    tlocPrefixChangeValue Number
    Set tloc preference change value
    tlocPrefixChangeValueVariable String
    Variable name
    trackOmp Boolean
    Track OMP status
    trackOmpVariable String
    Variable name

    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

    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<GetServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress>
    IPv6 VRRP
    GroupId int
    Group ID
    GroupIdVariable string
    Variable name
    Priority int
    Set priority
    PriorityVariable string
    Variable name
    SecondaryAddresses List<GetServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress>
    IPv6 Secondary IP address
    Timer int
    Timer interval for successive advertisements, in milliseconds
    TimerVariable string
    Variable name
    TrackOmp bool
    Track OMP status
    TrackOmpVariable string
    Variable name
    TrackPrefixList string
    Track Prefix List
    TrackPrefixListVariable string
    Variable name
    Addresses []GetServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress
    IPv6 VRRP
    GroupId int
    Group ID
    GroupIdVariable string
    Variable name
    Priority int
    Set priority
    PriorityVariable string
    Variable name
    SecondaryAddresses []GetServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress
    IPv6 Secondary IP address
    Timer int
    Timer interval for successive advertisements, in milliseconds
    TimerVariable string
    Variable name
    TrackOmp bool
    Track OMP status
    TrackOmpVariable string
    Variable name
    TrackPrefixList string
    Track Prefix List
    TrackPrefixListVariable string
    Variable name
    addresses List<GetServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress>
    IPv6 VRRP
    groupId Integer
    Group ID
    groupIdVariable String
    Variable name
    priority Integer
    Set priority
    priorityVariable String
    Variable name
    secondaryAddresses List<GetServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress>
    IPv6 Secondary IP address
    timer Integer
    Timer interval for successive advertisements, in milliseconds
    timerVariable String
    Variable name
    trackOmp Boolean
    Track OMP status
    trackOmpVariable String
    Variable name
    trackPrefixList String
    Track Prefix List
    trackPrefixListVariable String
    Variable name
    addresses GetServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress[]
    IPv6 VRRP
    groupId number
    Group ID
    groupIdVariable string
    Variable name
    priority number
    Set priority
    priorityVariable string
    Variable name
    secondaryAddresses GetServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress[]
    IPv6 Secondary IP address
    timer number
    Timer interval for successive advertisements, in milliseconds
    timerVariable string
    Variable name
    trackOmp boolean
    Track OMP status
    trackOmpVariable string
    Variable name
    trackPrefixList string
    Track Prefix List
    trackPrefixListVariable string
    Variable name
    addresses Sequence[GetServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress]
    IPv6 VRRP
    group_id int
    Group ID
    group_id_variable str
    Variable name
    priority int
    Set priority
    priority_variable str
    Variable name
    secondary_addresses Sequence[GetServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress]
    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_variable str
    Variable name
    track_prefix_list str
    Track Prefix List
    track_prefix_list_variable str
    Variable name
    addresses List<Property Map>
    IPv6 VRRP
    groupId Number
    Group ID
    groupIdVariable String
    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
    trackOmpVariable String
    Variable name
    trackPrefixList String
    Track Prefix List
    trackPrefixListVariable String
    Variable name

    GetServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress

    GlobalAddress string
    Assign Global IPv6 Prefix
    GlobalAddressVariable string
    Variable name
    LinkLocalAddress string
    Use link-local IPv6 Address
    LinkLocalAddressVariable string
    Variable name
    GlobalAddress string
    Assign Global IPv6 Prefix
    GlobalAddressVariable string
    Variable name
    LinkLocalAddress string
    Use link-local IPv6 Address
    LinkLocalAddressVariable string
    Variable name
    globalAddress String
    Assign Global IPv6 Prefix
    globalAddressVariable String
    Variable name
    linkLocalAddress String
    Use link-local IPv6 Address
    linkLocalAddressVariable String
    Variable name
    globalAddress string
    Assign Global IPv6 Prefix
    globalAddressVariable string
    Variable name
    linkLocalAddress string
    Use link-local IPv6 Address
    linkLocalAddressVariable string
    Variable name
    global_address str
    Assign Global IPv6 Prefix
    global_address_variable str
    Variable name
    link_local_address str
    Use link-local IPv6 Address
    link_local_address_variable str
    Variable name
    globalAddress String
    Assign Global IPv6 Prefix
    globalAddressVariable String
    Variable name
    linkLocalAddress String
    Use link-local IPv6 Address
    linkLocalAddressVariable String
    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 sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi