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

sdwan.ServiceLanVpnInterfaceSviFeature

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi

    This resource can manage a Service LAN VPN Interface SVI Feature.

    • Minimum SD-WAN Manager version: 20.12.0

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.ServiceLanVpnInterfaceSviFeature;
    import com.pulumi.sdwan.ServiceLanVpnInterfaceSviFeatureArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceSviFeatureArpArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new ServiceLanVpnInterfaceSviFeature("example", ServiceLanVpnInterfaceSviFeatureArgs.builder()
                .name("Example")
                .description("My Example")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .serviceLanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
                .shutdown(false)
                .interfaceName("Vlan1")
                .interfaceDescription("SVI")
                .interfaceMtu(1500)
                .ipMtu(1500)
                .ipv4Address("1.2.3.4")
                .ipv4SubnetMask("0.0.0.0")
                .ipv4SecondaryAddresses(ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs.builder()
                    .address("2.3.4.5")
                    .ipv4_subnet_mask("0.0.0.0")
                    .build())
                .ipv4DhcpHelpers("4.5.6.7")
                .ipv6Address("2001:0:0:1::0/32")
                .ipv6SecondaryAddresses(ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs.builder()
                    .address("::2/32")
                    .build())
                .ipv6DhcpHelpers(ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs.builder()
                    .address("2001:0:0:1::0")
                    .vpn(1)
                    .build())
                .arps(ServiceLanVpnInterfaceSviFeatureArpArgs.builder()
                    .ip_address("1.2.3.4")
                    .mac_address("00-B0-D0-63-C2-26")
                    .build())
                .ipv4Vrrps(ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs.builder()
                    .group_id(1)
                    .priority(100)
                    .timer(1000)
                    .track_omp(false)
                    .prefix_list("prefix")
                    .address("1.2.3.4")
                    .secondary_addresses(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .tloc_prefix_change(true)
                    .tloc_prefix_change_value(100)
                    .build())
                .ipv6Vrrps(ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs.builder()
                    .group_id(1)
                    .priority(100)
                    .timer(1000)
                    .track_omp(false)
                    .track_prefix_list("1")
                    .addresses(ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddressArgs.builder()
                        .linkLocalAddress("1::1")
                        .globalAddress("1::1/24")
                        .build())
                    .secondary_addresses(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .build())
                .enableDhcpv6(false)
                .tcpMss(1024)
                .arpTimeout(1200)
                .ipDirectedBroadcast(false)
                .icmpRedirectDisable(true)
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:ServiceLanVpnInterfaceSviFeature
        properties:
          name: Example
          description: My Example
          featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
          serviceLanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
          shutdown: false
          interfaceName: Vlan1
          interfaceDescription: SVI
          interfaceMtu: 1500
          ipMtu: 1500
          ipv4Address: 1.2.3.4
          ipv4SubnetMask: 0.0.0.0
          ipv4SecondaryAddresses:
            - address: 2.3.4.5
              ipv4_subnet_mask: 0.0.0.0
          ipv4DhcpHelpers:
            - 4.5.6.7
          ipv6Address: 2001:0:0:1::0/32
          ipv6SecondaryAddresses:
            - address: ::2/32
          ipv6DhcpHelpers:
            - address: 2001:0:0:1::0
              vpn: 1
          arps:
            - ip_address: 1.2.3.4
              mac_address: 00-B0-D0-63-C2-26
          ipv4Vrrps:
            - group_id: 1
              priority: 100
              timer: 1000
              track_omp: false
              prefix_list: prefix
              address: 1.2.3.4
              secondary_addresses:
                - address: 2.3.4.5
              tloc_prefix_change: true
              tloc_prefix_change_value: 100
          ipv6Vrrps:
            - group_id: 1
              priority: 100
              timer: 1000
              track_omp: false
              track_prefix_list: '1'
              addresses:
                - linkLocalAddress: 1::1
                  globalAddress: 1::1/24
              secondary_addresses:
                - prefix: ::20/32
          enableDhcpv6: false
          tcpMss: 1024
          arpTimeout: 1200
          ipDirectedBroadcast: false
          icmpRedirectDisable: true
    

    Create ServiceLanVpnInterfaceSviFeature Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ServiceLanVpnInterfaceSviFeature(name: string, args: ServiceLanVpnInterfaceSviFeatureArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceLanVpnInterfaceSviFeature(resource_name: str,
                                         args: ServiceLanVpnInterfaceSviFeatureArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceLanVpnInterfaceSviFeature(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         feature_profile_id: Optional[str] = None,
                                         ipv4_subnet_mask: Optional[str] = None,
                                         ipv4_address: Optional[str] = None,
                                         interface_name: Optional[str] = None,
                                         ip_mtu_variable: Optional[str] = None,
                                         ipv4_dhcp_helpers: Optional[Sequence[str]] = None,
                                         enable_dhcpv6: Optional[bool] = None,
                                         icmp_redirect_disable: Optional[bool] = None,
                                         icmp_redirect_disable_variable: Optional[str] = None,
                                         interface_description: Optional[str] = None,
                                         interface_description_variable: Optional[str] = None,
                                         interface_mtu: Optional[int] = None,
                                         interface_mtu_variable: Optional[str] = None,
                                         description: Optional[str] = None,
                                         interface_name_variable: Optional[str] = None,
                                         ip_directed_broadcast: Optional[bool] = None,
                                         ip_directed_broadcast_variable: Optional[str] = None,
                                         ip_mtu: Optional[int] = None,
                                         arp_timeout: Optional[int] = None,
                                         arps: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureArpArgs]] = None,
                                         ipv4_address_variable: Optional[str] = None,
                                         enable_dhcpv6_variable: Optional[str] = None,
                                         ipv4_dhcp_helpers_variable: Optional[str] = None,
                                         ipv4_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs]] = None,
                                         arp_timeout_variable: Optional[str] = None,
                                         ipv4_subnet_mask_variable: Optional[str] = None,
                                         ipv4_vrrps: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs]] = None,
                                         ipv6_address: Optional[str] = None,
                                         ipv6_address_variable: Optional[str] = None,
                                         ipv6_dhcp_helpers: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs]] = None,
                                         ipv6_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs]] = None,
                                         ipv6_vrrps: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs]] = None,
                                         name: Optional[str] = None,
                                         service_lan_vpn_feature_id: Optional[str] = None,
                                         shutdown: Optional[bool] = None,
                                         shutdown_variable: Optional[str] = None,
                                         tcp_mss: Optional[int] = None,
                                         tcp_mss_variable: Optional[str] = None)
    func NewServiceLanVpnInterfaceSviFeature(ctx *Context, name string, args ServiceLanVpnInterfaceSviFeatureArgs, opts ...ResourceOption) (*ServiceLanVpnInterfaceSviFeature, error)
    public ServiceLanVpnInterfaceSviFeature(string name, ServiceLanVpnInterfaceSviFeatureArgs args, CustomResourceOptions? opts = null)
    public ServiceLanVpnInterfaceSviFeature(String name, ServiceLanVpnInterfaceSviFeatureArgs args)
    public ServiceLanVpnInterfaceSviFeature(String name, ServiceLanVpnInterfaceSviFeatureArgs args, CustomResourceOptions options)
    
    type: sdwan:ServiceLanVpnInterfaceSviFeature
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ServiceLanVpnInterfaceSviFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ServiceLanVpnInterfaceSviFeatureArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ServiceLanVpnInterfaceSviFeatureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceLanVpnInterfaceSviFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceLanVpnInterfaceSviFeatureArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var serviceLanVpnInterfaceSviFeatureResource = new Sdwan.ServiceLanVpnInterfaceSviFeature("serviceLanVpnInterfaceSviFeatureResource", new()
    {
        FeatureProfileId = "string",
        Ipv4SubnetMask = "string",
        Ipv4Address = "string",
        InterfaceName = "string",
        IpMtuVariable = "string",
        Ipv4DhcpHelpers = new[]
        {
            "string",
        },
        EnableDhcpv6 = false,
        IcmpRedirectDisable = false,
        IcmpRedirectDisableVariable = "string",
        InterfaceDescription = "string",
        InterfaceDescriptionVariable = "string",
        InterfaceMtu = 0,
        InterfaceMtuVariable = "string",
        Description = "string",
        InterfaceNameVariable = "string",
        IpDirectedBroadcast = false,
        IpDirectedBroadcastVariable = "string",
        IpMtu = 0,
        ArpTimeout = 0,
        Arps = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceSviFeatureArpArgs
            {
                IpAddress = "string",
                IpAddressVariable = "string",
                MacAddress = "string",
                MacAddressVariable = "string",
            },
        },
        Ipv4AddressVariable = "string",
        EnableDhcpv6Variable = "string",
        Ipv4DhcpHelpersVariable = "string",
        Ipv4SecondaryAddresses = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs
            {
                Address = "string",
                AddressVariable = "string",
                Ipv4SubnetMask = "string",
                Ipv4SubnetMaskVariable = "string",
            },
        },
        ArpTimeoutVariable = "string",
        Ipv4SubnetMaskVariable = "string",
        Ipv4Vrrps = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs
            {
                Address = "string",
                AddressVariable = "string",
                GroupId = 0,
                GroupIdVariable = "string",
                PrefixList = "string",
                PrefixListVariable = "string",
                Priority = 0,
                PriorityVariable = "string",
                SecondaryAddresses = new[]
                {
                    new Sdwan.Inputs.ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddressArgs
                    {
                        Address = "string",
                        AddressVariable = "string",
                    },
                },
                Timer = 0,
                TimerVariable = "string",
                TlocPrefixChange = false,
                TlocPrefixChangeValue = 0,
                TlocPrefixChangeValueVariable = "string",
                TrackOmp = false,
                TrackOmpVariable = "string",
            },
        },
        Ipv6Address = "string",
        Ipv6AddressVariable = "string",
        Ipv6DhcpHelpers = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs
            {
                Address = "string",
                AddressVariable = "string",
                Vpn = 0,
                VpnVariable = "string",
            },
        },
        Ipv6SecondaryAddresses = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs
            {
                Address = "string",
                AddressVariable = "string",
            },
        },
        Ipv6Vrrps = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs
            {
                Addresses = new[]
                {
                    new Sdwan.Inputs.ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddressArgs
                    {
                        GlobalAddress = "string",
                        GlobalAddressVariable = "string",
                        LinkLocalAddress = "string",
                        LinkLocalAddressVariable = "string",
                    },
                },
                GroupId = 0,
                GroupIdVariable = "string",
                Priority = 0,
                PriorityVariable = "string",
                SecondaryAddresses = new[]
                {
                    new Sdwan.Inputs.ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddressArgs
                    {
                        Prefix = "string",
                        PrefixVariable = "string",
                    },
                },
                Timer = 0,
                TimerVariable = "string",
                TrackOmp = false,
                TrackOmpVariable = "string",
                TrackPrefixList = "string",
                TrackPrefixListVariable = "string",
            },
        },
        Name = "string",
        ServiceLanVpnFeatureId = "string",
        Shutdown = false,
        ShutdownVariable = "string",
        TcpMss = 0,
        TcpMssVariable = "string",
    });
    
    example, err := sdwan.NewServiceLanVpnInterfaceSviFeature(ctx, "serviceLanVpnInterfaceSviFeatureResource", &sdwan.ServiceLanVpnInterfaceSviFeatureArgs{
    	FeatureProfileId: pulumi.String("string"),
    	Ipv4SubnetMask:   pulumi.String("string"),
    	Ipv4Address:      pulumi.String("string"),
    	InterfaceName:    pulumi.String("string"),
    	IpMtuVariable:    pulumi.String("string"),
    	Ipv4DhcpHelpers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	EnableDhcpv6:                 pulumi.Bool(false),
    	IcmpRedirectDisable:          pulumi.Bool(false),
    	IcmpRedirectDisableVariable:  pulumi.String("string"),
    	InterfaceDescription:         pulumi.String("string"),
    	InterfaceDescriptionVariable: pulumi.String("string"),
    	InterfaceMtu:                 pulumi.Int(0),
    	InterfaceMtuVariable:         pulumi.String("string"),
    	Description:                  pulumi.String("string"),
    	InterfaceNameVariable:        pulumi.String("string"),
    	IpDirectedBroadcast:          pulumi.Bool(false),
    	IpDirectedBroadcastVariable:  pulumi.String("string"),
    	IpMtu:                        pulumi.Int(0),
    	ArpTimeout:                   pulumi.Int(0),
    	Arps: sdwan.ServiceLanVpnInterfaceSviFeatureArpArray{
    		&sdwan.ServiceLanVpnInterfaceSviFeatureArpArgs{
    			IpAddress:          pulumi.String("string"),
    			IpAddressVariable:  pulumi.String("string"),
    			MacAddress:         pulumi.String("string"),
    			MacAddressVariable: pulumi.String("string"),
    		},
    	},
    	Ipv4AddressVariable:     pulumi.String("string"),
    	EnableDhcpv6Variable:    pulumi.String("string"),
    	Ipv4DhcpHelpersVariable: pulumi.String("string"),
    	Ipv4SecondaryAddresses: sdwan.ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArray{
    		&sdwan.ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs{
    			Address:                pulumi.String("string"),
    			AddressVariable:        pulumi.String("string"),
    			Ipv4SubnetMask:         pulumi.String("string"),
    			Ipv4SubnetMaskVariable: pulumi.String("string"),
    		},
    	},
    	ArpTimeoutVariable:     pulumi.String("string"),
    	Ipv4SubnetMaskVariable: pulumi.String("string"),
    	Ipv4Vrrps: sdwan.ServiceLanVpnInterfaceSviFeatureIpv4VrrpArray{
    		&sdwan.ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs{
    			Address:            pulumi.String("string"),
    			AddressVariable:    pulumi.String("string"),
    			GroupId:            pulumi.Int(0),
    			GroupIdVariable:    pulumi.String("string"),
    			PrefixList:         pulumi.String("string"),
    			PrefixListVariable: pulumi.String("string"),
    			Priority:           pulumi.Int(0),
    			PriorityVariable:   pulumi.String("string"),
    			SecondaryAddresses: sdwan.ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddressArray{
    				&sdwan.ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddressArgs{
    					Address:         pulumi.String("string"),
    					AddressVariable: pulumi.String("string"),
    				},
    			},
    			Timer:                         pulumi.Int(0),
    			TimerVariable:                 pulumi.String("string"),
    			TlocPrefixChange:              pulumi.Bool(false),
    			TlocPrefixChangeValue:         pulumi.Int(0),
    			TlocPrefixChangeValueVariable: pulumi.String("string"),
    			TrackOmp:                      pulumi.Bool(false),
    			TrackOmpVariable:              pulumi.String("string"),
    		},
    	},
    	Ipv6Address:         pulumi.String("string"),
    	Ipv6AddressVariable: pulumi.String("string"),
    	Ipv6DhcpHelpers: sdwan.ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArray{
    		&sdwan.ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs{
    			Address:         pulumi.String("string"),
    			AddressVariable: pulumi.String("string"),
    			Vpn:             pulumi.Int(0),
    			VpnVariable:     pulumi.String("string"),
    		},
    	},
    	Ipv6SecondaryAddresses: sdwan.ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArray{
    		&sdwan.ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs{
    			Address:         pulumi.String("string"),
    			AddressVariable: pulumi.String("string"),
    		},
    	},
    	Ipv6Vrrps: sdwan.ServiceLanVpnInterfaceSviFeatureIpv6VrrpArray{
    		&sdwan.ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs{
    			Addresses: sdwan.ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddressArray{
    				&sdwan.ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddressArgs{
    					GlobalAddress:            pulumi.String("string"),
    					GlobalAddressVariable:    pulumi.String("string"),
    					LinkLocalAddress:         pulumi.String("string"),
    					LinkLocalAddressVariable: pulumi.String("string"),
    				},
    			},
    			GroupId:          pulumi.Int(0),
    			GroupIdVariable:  pulumi.String("string"),
    			Priority:         pulumi.Int(0),
    			PriorityVariable: pulumi.String("string"),
    			SecondaryAddresses: sdwan.ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddressArray{
    				&sdwan.ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddressArgs{
    					Prefix:         pulumi.String("string"),
    					PrefixVariable: pulumi.String("string"),
    				},
    			},
    			Timer:                   pulumi.Int(0),
    			TimerVariable:           pulumi.String("string"),
    			TrackOmp:                pulumi.Bool(false),
    			TrackOmpVariable:        pulumi.String("string"),
    			TrackPrefixList:         pulumi.String("string"),
    			TrackPrefixListVariable: pulumi.String("string"),
    		},
    	},
    	Name:                   pulumi.String("string"),
    	ServiceLanVpnFeatureId: pulumi.String("string"),
    	Shutdown:               pulumi.Bool(false),
    	ShutdownVariable:       pulumi.String("string"),
    	TcpMss:                 pulumi.Int(0),
    	TcpMssVariable:         pulumi.String("string"),
    })
    
    var serviceLanVpnInterfaceSviFeatureResource = new ServiceLanVpnInterfaceSviFeature("serviceLanVpnInterfaceSviFeatureResource", ServiceLanVpnInterfaceSviFeatureArgs.builder()
        .featureProfileId("string")
        .ipv4SubnetMask("string")
        .ipv4Address("string")
        .interfaceName("string")
        .ipMtuVariable("string")
        .ipv4DhcpHelpers("string")
        .enableDhcpv6(false)
        .icmpRedirectDisable(false)
        .icmpRedirectDisableVariable("string")
        .interfaceDescription("string")
        .interfaceDescriptionVariable("string")
        .interfaceMtu(0)
        .interfaceMtuVariable("string")
        .description("string")
        .interfaceNameVariable("string")
        .ipDirectedBroadcast(false)
        .ipDirectedBroadcastVariable("string")
        .ipMtu(0)
        .arpTimeout(0)
        .arps(ServiceLanVpnInterfaceSviFeatureArpArgs.builder()
            .ipAddress("string")
            .ipAddressVariable("string")
            .macAddress("string")
            .macAddressVariable("string")
            .build())
        .ipv4AddressVariable("string")
        .enableDhcpv6Variable("string")
        .ipv4DhcpHelpersVariable("string")
        .ipv4SecondaryAddresses(ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs.builder()
            .address("string")
            .addressVariable("string")
            .ipv4SubnetMask("string")
            .ipv4SubnetMaskVariable("string")
            .build())
        .arpTimeoutVariable("string")
        .ipv4SubnetMaskVariable("string")
        .ipv4Vrrps(ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs.builder()
            .address("string")
            .addressVariable("string")
            .groupId(0)
            .groupIdVariable("string")
            .prefixList("string")
            .prefixListVariable("string")
            .priority(0)
            .priorityVariable("string")
            .secondaryAddresses(ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddressArgs.builder()
                .address("string")
                .addressVariable("string")
                .build())
            .timer(0)
            .timerVariable("string")
            .tlocPrefixChange(false)
            .tlocPrefixChangeValue(0)
            .tlocPrefixChangeValueVariable("string")
            .trackOmp(false)
            .trackOmpVariable("string")
            .build())
        .ipv6Address("string")
        .ipv6AddressVariable("string")
        .ipv6DhcpHelpers(ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs.builder()
            .address("string")
            .addressVariable("string")
            .vpn(0)
            .vpnVariable("string")
            .build())
        .ipv6SecondaryAddresses(ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs.builder()
            .address("string")
            .addressVariable("string")
            .build())
        .ipv6Vrrps(ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs.builder()
            .addresses(ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddressArgs.builder()
                .globalAddress("string")
                .globalAddressVariable("string")
                .linkLocalAddress("string")
                .linkLocalAddressVariable("string")
                .build())
            .groupId(0)
            .groupIdVariable("string")
            .priority(0)
            .priorityVariable("string")
            .secondaryAddresses(ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddressArgs.builder()
                .prefix("string")
                .prefixVariable("string")
                .build())
            .timer(0)
            .timerVariable("string")
            .trackOmp(false)
            .trackOmpVariable("string")
            .trackPrefixList("string")
            .trackPrefixListVariable("string")
            .build())
        .name("string")
        .serviceLanVpnFeatureId("string")
        .shutdown(false)
        .shutdownVariable("string")
        .tcpMss(0)
        .tcpMssVariable("string")
        .build());
    
    service_lan_vpn_interface_svi_feature_resource = sdwan.ServiceLanVpnInterfaceSviFeature("serviceLanVpnInterfaceSviFeatureResource",
        feature_profile_id="string",
        ipv4_subnet_mask="string",
        ipv4_address="string",
        interface_name="string",
        ip_mtu_variable="string",
        ipv4_dhcp_helpers=["string"],
        enable_dhcpv6=False,
        icmp_redirect_disable=False,
        icmp_redirect_disable_variable="string",
        interface_description="string",
        interface_description_variable="string",
        interface_mtu=0,
        interface_mtu_variable="string",
        description="string",
        interface_name_variable="string",
        ip_directed_broadcast=False,
        ip_directed_broadcast_variable="string",
        ip_mtu=0,
        arp_timeout=0,
        arps=[sdwan.ServiceLanVpnInterfaceSviFeatureArpArgs(
            ip_address="string",
            ip_address_variable="string",
            mac_address="string",
            mac_address_variable="string",
        )],
        ipv4_address_variable="string",
        enable_dhcpv6_variable="string",
        ipv4_dhcp_helpers_variable="string",
        ipv4_secondary_addresses=[sdwan.ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs(
            address="string",
            address_variable="string",
            ipv4_subnet_mask="string",
            ipv4_subnet_mask_variable="string",
        )],
        arp_timeout_variable="string",
        ipv4_subnet_mask_variable="string",
        ipv4_vrrps=[sdwan.ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs(
            address="string",
            address_variable="string",
            group_id=0,
            group_id_variable="string",
            prefix_list="string",
            prefix_list_variable="string",
            priority=0,
            priority_variable="string",
            secondary_addresses=[sdwan.ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddressArgs(
                address="string",
                address_variable="string",
            )],
            timer=0,
            timer_variable="string",
            tloc_prefix_change=False,
            tloc_prefix_change_value=0,
            tloc_prefix_change_value_variable="string",
            track_omp=False,
            track_omp_variable="string",
        )],
        ipv6_address="string",
        ipv6_address_variable="string",
        ipv6_dhcp_helpers=[sdwan.ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs(
            address="string",
            address_variable="string",
            vpn=0,
            vpn_variable="string",
        )],
        ipv6_secondary_addresses=[sdwan.ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs(
            address="string",
            address_variable="string",
        )],
        ipv6_vrrps=[sdwan.ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs(
            addresses=[sdwan.ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddressArgs(
                global_address="string",
                global_address_variable="string",
                link_local_address="string",
                link_local_address_variable="string",
            )],
            group_id=0,
            group_id_variable="string",
            priority=0,
            priority_variable="string",
            secondary_addresses=[sdwan.ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddressArgs(
                prefix="string",
                prefix_variable="string",
            )],
            timer=0,
            timer_variable="string",
            track_omp=False,
            track_omp_variable="string",
            track_prefix_list="string",
            track_prefix_list_variable="string",
        )],
        name="string",
        service_lan_vpn_feature_id="string",
        shutdown=False,
        shutdown_variable="string",
        tcp_mss=0,
        tcp_mss_variable="string")
    
    const serviceLanVpnInterfaceSviFeatureResource = new sdwan.ServiceLanVpnInterfaceSviFeature("serviceLanVpnInterfaceSviFeatureResource", {
        featureProfileId: "string",
        ipv4SubnetMask: "string",
        ipv4Address: "string",
        interfaceName: "string",
        ipMtuVariable: "string",
        ipv4DhcpHelpers: ["string"],
        enableDhcpv6: false,
        icmpRedirectDisable: false,
        icmpRedirectDisableVariable: "string",
        interfaceDescription: "string",
        interfaceDescriptionVariable: "string",
        interfaceMtu: 0,
        interfaceMtuVariable: "string",
        description: "string",
        interfaceNameVariable: "string",
        ipDirectedBroadcast: false,
        ipDirectedBroadcastVariable: "string",
        ipMtu: 0,
        arpTimeout: 0,
        arps: [{
            ipAddress: "string",
            ipAddressVariable: "string",
            macAddress: "string",
            macAddressVariable: "string",
        }],
        ipv4AddressVariable: "string",
        enableDhcpv6Variable: "string",
        ipv4DhcpHelpersVariable: "string",
        ipv4SecondaryAddresses: [{
            address: "string",
            addressVariable: "string",
            ipv4SubnetMask: "string",
            ipv4SubnetMaskVariable: "string",
        }],
        arpTimeoutVariable: "string",
        ipv4SubnetMaskVariable: "string",
        ipv4Vrrps: [{
            address: "string",
            addressVariable: "string",
            groupId: 0,
            groupIdVariable: "string",
            prefixList: "string",
            prefixListVariable: "string",
            priority: 0,
            priorityVariable: "string",
            secondaryAddresses: [{
                address: "string",
                addressVariable: "string",
            }],
            timer: 0,
            timerVariable: "string",
            tlocPrefixChange: false,
            tlocPrefixChangeValue: 0,
            tlocPrefixChangeValueVariable: "string",
            trackOmp: false,
            trackOmpVariable: "string",
        }],
        ipv6Address: "string",
        ipv6AddressVariable: "string",
        ipv6DhcpHelpers: [{
            address: "string",
            addressVariable: "string",
            vpn: 0,
            vpnVariable: "string",
        }],
        ipv6SecondaryAddresses: [{
            address: "string",
            addressVariable: "string",
        }],
        ipv6Vrrps: [{
            addresses: [{
                globalAddress: "string",
                globalAddressVariable: "string",
                linkLocalAddress: "string",
                linkLocalAddressVariable: "string",
            }],
            groupId: 0,
            groupIdVariable: "string",
            priority: 0,
            priorityVariable: "string",
            secondaryAddresses: [{
                prefix: "string",
                prefixVariable: "string",
            }],
            timer: 0,
            timerVariable: "string",
            trackOmp: false,
            trackOmpVariable: "string",
            trackPrefixList: "string",
            trackPrefixListVariable: "string",
        }],
        name: "string",
        serviceLanVpnFeatureId: "string",
        shutdown: false,
        shutdownVariable: "string",
        tcpMss: 0,
        tcpMssVariable: "string",
    });
    
    type: sdwan:ServiceLanVpnInterfaceSviFeature
    properties:
        arpTimeout: 0
        arpTimeoutVariable: string
        arps:
            - ipAddress: string
              ipAddressVariable: string
              macAddress: string
              macAddressVariable: string
        description: string
        enableDhcpv6: false
        enableDhcpv6Variable: string
        featureProfileId: string
        icmpRedirectDisable: false
        icmpRedirectDisableVariable: string
        interfaceDescription: string
        interfaceDescriptionVariable: string
        interfaceMtu: 0
        interfaceMtuVariable: string
        interfaceName: string
        interfaceNameVariable: string
        ipDirectedBroadcast: false
        ipDirectedBroadcastVariable: string
        ipMtu: 0
        ipMtuVariable: string
        ipv4Address: string
        ipv4AddressVariable: string
        ipv4DhcpHelpers:
            - string
        ipv4DhcpHelpersVariable: string
        ipv4SecondaryAddresses:
            - address: string
              addressVariable: string
              ipv4SubnetMask: string
              ipv4SubnetMaskVariable: string
        ipv4SubnetMask: string
        ipv4SubnetMaskVariable: string
        ipv4Vrrps:
            - address: string
              addressVariable: string
              groupId: 0
              groupIdVariable: string
              prefixList: string
              prefixListVariable: string
              priority: 0
              priorityVariable: string
              secondaryAddresses:
                - address: string
                  addressVariable: string
              timer: 0
              timerVariable: string
              tlocPrefixChange: false
              tlocPrefixChangeValue: 0
              tlocPrefixChangeValueVariable: string
              trackOmp: false
              trackOmpVariable: string
        ipv6Address: string
        ipv6AddressVariable: string
        ipv6DhcpHelpers:
            - address: string
              addressVariable: string
              vpn: 0
              vpnVariable: string
        ipv6SecondaryAddresses:
            - address: string
              addressVariable: string
        ipv6Vrrps:
            - addresses:
                - globalAddress: string
                  globalAddressVariable: string
                  linkLocalAddress: string
                  linkLocalAddressVariable: string
              groupId: 0
              groupIdVariable: string
              priority: 0
              priorityVariable: string
              secondaryAddresses:
                - prefix: string
                  prefixVariable: string
              timer: 0
              timerVariable: string
              trackOmp: false
              trackOmpVariable: string
              trackPrefixList: string
              trackPrefixListVariable: string
        name: string
        serviceLanVpnFeatureId: string
        shutdown: false
        shutdownVariable: string
        tcpMss: 0
        tcpMssVariable: string
    

    ServiceLanVpnInterfaceSviFeature Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ServiceLanVpnInterfaceSviFeature resource accepts the following input properties:

    FeatureProfileId string
    Feature Profile ID
    InterfaceName string
    Interface name: VLAN 1 - VLAN 4094 when present
    Ipv4Address string
    IP Address
    Ipv4SubnetMask string
    Subnet Mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ArpTimeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    ArpTimeoutVariable string
    Variable name
    Arps List<ServiceLanVpnInterfaceSviFeatureArp>
    Configure static ARP entries
    Description string
    The description of the Feature
    EnableDhcpv6 bool
    Enable DHCPv6 - Default value: false
    EnableDhcpv6Variable string
    Variable name
    IcmpRedirectDisable bool
    ICMP/ICMPv6 Redirect Disable - Default value: true
    IcmpRedirectDisableVariable string
    Variable name
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceMtu int
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    InterfaceMtuVariable string
    Variable name
    InterfaceNameVariable string
    Variable name
    IpDirectedBroadcast bool
    IP Directed-Broadcast - Default value: false
    IpDirectedBroadcastVariable string
    Variable name
    IpMtu int
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4AddressVariable string
    Variable name
    Ipv4DhcpHelpers List<string>
    List of DHCP helper addresses
    Ipv4DhcpHelpersVariable string
    Variable name
    Ipv4SecondaryAddresses List<ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress>
    Assign secondary IP addresses
    Ipv4SubnetMaskVariable string
    Variable name
    Ipv4Vrrps List<ServiceLanVpnInterfaceSviFeatureIpv4Vrrp>
    Enable ipv4 VRRP
    Ipv6Address string
    Assign IPv6 address
    Ipv6AddressVariable string
    Variable name
    Ipv6DhcpHelpers List<ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper>
    DHCPv6 Helper
    Ipv6SecondaryAddresses List<ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress>
    Assign secondary IPv6 addresses
    Ipv6Vrrps List<ServiceLanVpnInterfaceSviFeatureIpv6Vrrp>
    Enable ipv6 VRRP
    Name string
    The name of the Feature
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    Administrative state - Default value: true
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    TcpMssVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    InterfaceName string
    Interface name: VLAN 1 - VLAN 4094 when present
    Ipv4Address string
    IP Address
    Ipv4SubnetMask string
    Subnet Mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ArpTimeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    ArpTimeoutVariable string
    Variable name
    Arps []ServiceLanVpnInterfaceSviFeatureArpArgs
    Configure static ARP entries
    Description string
    The description of the Feature
    EnableDhcpv6 bool
    Enable DHCPv6 - Default value: false
    EnableDhcpv6Variable string
    Variable name
    IcmpRedirectDisable bool
    ICMP/ICMPv6 Redirect Disable - Default value: true
    IcmpRedirectDisableVariable string
    Variable name
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceMtu int
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    InterfaceMtuVariable string
    Variable name
    InterfaceNameVariable string
    Variable name
    IpDirectedBroadcast bool
    IP Directed-Broadcast - Default value: false
    IpDirectedBroadcastVariable string
    Variable name
    IpMtu int
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4AddressVariable string
    Variable name
    Ipv4DhcpHelpers []string
    List of DHCP helper addresses
    Ipv4DhcpHelpersVariable string
    Variable name
    Ipv4SecondaryAddresses []ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs
    Assign secondary IP addresses
    Ipv4SubnetMaskVariable string
    Variable name
    Ipv4Vrrps []ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs
    Enable ipv4 VRRP
    Ipv6Address string
    Assign IPv6 address
    Ipv6AddressVariable string
    Variable name
    Ipv6DhcpHelpers []ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs
    DHCPv6 Helper
    Ipv6SecondaryAddresses []ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs
    Assign secondary IPv6 addresses
    Ipv6Vrrps []ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs
    Enable ipv6 VRRP
    Name string
    The name of the Feature
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    Administrative state - Default value: true
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    TcpMssVariable string
    Variable name
    featureProfileId String
    Feature Profile ID
    interfaceName String
    Interface name: VLAN 1 - VLAN 4094 when present
    ipv4Address String
    IP Address
    ipv4SubnetMask String
    Subnet Mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    arpTimeout Integer
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    arpTimeoutVariable String
    Variable name
    arps List<ServiceLanVpnInterfaceSviFeatureArp>
    Configure static ARP entries
    description String
    The description of the Feature
    enableDhcpv6 Boolean
    Enable DHCPv6 - Default value: false
    enableDhcpv6Variable String
    Variable name
    icmpRedirectDisable Boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable String
    Variable name
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceMtu Integer
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable String
    Variable name
    interfaceNameVariable String
    Variable name
    ipDirectedBroadcast Boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable String
    Variable name
    ipMtu Integer
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4AddressVariable String
    Variable name
    ipv4DhcpHelpers List<String>
    List of DHCP helper addresses
    ipv4DhcpHelpersVariable String
    Variable name
    ipv4SecondaryAddresses List<ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress>
    Assign secondary IP addresses
    ipv4SubnetMaskVariable String
    Variable name
    ipv4Vrrps List<ServiceLanVpnInterfaceSviFeatureIpv4Vrrp>
    Enable ipv4 VRRP
    ipv6Address String
    Assign IPv6 address
    ipv6AddressVariable String
    Variable name
    ipv6DhcpHelpers List<ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper>
    DHCPv6 Helper
    ipv6SecondaryAddresses List<ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress>
    Assign secondary IPv6 addresses
    ipv6Vrrps List<ServiceLanVpnInterfaceSviFeatureIpv6Vrrp>
    Enable ipv6 VRRP
    name String
    The name of the Feature
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    shutdown Boolean
    Administrative state - Default value: true
    shutdownVariable String
    Variable name
    tcpMss Integer
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    tcpMssVariable String
    Variable name
    featureProfileId string
    Feature Profile ID
    interfaceName string
    Interface name: VLAN 1 - VLAN 4094 when present
    ipv4Address string
    IP Address
    ipv4SubnetMask string
    Subnet Mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    arpTimeout number
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    arpTimeoutVariable string
    Variable name
    arps ServiceLanVpnInterfaceSviFeatureArp[]
    Configure static ARP entries
    description string
    The description of the Feature
    enableDhcpv6 boolean
    Enable DHCPv6 - Default value: false
    enableDhcpv6Variable string
    Variable name
    icmpRedirectDisable boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable string
    Variable name
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceMtu number
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable string
    Variable name
    interfaceNameVariable string
    Variable name
    ipDirectedBroadcast boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable string
    Variable name
    ipMtu number
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    ipMtuVariable string
    Variable name
    ipv4AddressVariable string
    Variable name
    ipv4DhcpHelpers string[]
    List of DHCP helper addresses
    ipv4DhcpHelpersVariable string
    Variable name
    ipv4SecondaryAddresses ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress[]
    Assign secondary IP addresses
    ipv4SubnetMaskVariable string
    Variable name
    ipv4Vrrps ServiceLanVpnInterfaceSviFeatureIpv4Vrrp[]
    Enable ipv4 VRRP
    ipv6Address string
    Assign IPv6 address
    ipv6AddressVariable string
    Variable name
    ipv6DhcpHelpers ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper[]
    DHCPv6 Helper
    ipv6SecondaryAddresses ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress[]
    Assign secondary IPv6 addresses
    ipv6Vrrps ServiceLanVpnInterfaceSviFeatureIpv6Vrrp[]
    Enable ipv6 VRRP
    name string
    The name of the Feature
    serviceLanVpnFeatureId string
    Service LAN VPN Feature ID
    shutdown boolean
    Administrative state - Default value: true
    shutdownVariable string
    Variable name
    tcpMss number
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    tcpMssVariable string
    Variable name
    feature_profile_id str
    Feature Profile ID
    interface_name str
    Interface name: VLAN 1 - VLAN 4094 when present
    ipv4_address str
    IP Address
    ipv4_subnet_mask str
    Subnet Mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    arp_timeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    arp_timeout_variable str
    Variable name
    arps Sequence[ServiceLanVpnInterfaceSviFeatureArpArgs]
    Configure static ARP entries
    description str
    The description of the Feature
    enable_dhcpv6 bool
    Enable DHCPv6 - Default value: false
    enable_dhcpv6_variable str
    Variable name
    icmp_redirect_disable bool
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmp_redirect_disable_variable str
    Variable name
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_mtu int
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    interface_mtu_variable str
    Variable name
    interface_name_variable str
    Variable name
    ip_directed_broadcast bool
    IP Directed-Broadcast - Default value: false
    ip_directed_broadcast_variable str
    Variable name
    ip_mtu int
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    ip_mtu_variable str
    Variable name
    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[ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs]
    Assign secondary IP addresses
    ipv4_subnet_mask_variable str
    Variable name
    ipv4_vrrps Sequence[ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs]
    Enable ipv4 VRRP
    ipv6_address str
    Assign IPv6 address
    ipv6_address_variable str
    Variable name
    ipv6_dhcp_helpers Sequence[ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs]
    DHCPv6 Helper
    ipv6_secondary_addresses Sequence[ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs]
    Assign secondary IPv6 addresses
    ipv6_vrrps Sequence[ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs]
    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 - Default value: true
    shutdown_variable str
    Variable name
    tcp_mss int
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    tcp_mss_variable str
    Variable name
    featureProfileId String
    Feature Profile ID
    interfaceName String
    Interface name: VLAN 1 - VLAN 4094 when present
    ipv4Address String
    IP Address
    ipv4SubnetMask String
    Subnet Mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    arpTimeout Number
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    arpTimeoutVariable String
    Variable name
    arps List<Property Map>
    Configure static ARP entries
    description String
    The description of the Feature
    enableDhcpv6 Boolean
    Enable DHCPv6 - Default value: false
    enableDhcpv6Variable String
    Variable name
    icmpRedirectDisable Boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable String
    Variable name
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceMtu Number
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable String
    Variable name
    interfaceNameVariable String
    Variable name
    ipDirectedBroadcast Boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable String
    Variable name
    ipMtu Number
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4AddressVariable String
    Variable name
    ipv4DhcpHelpers List<String>
    List of DHCP helper addresses
    ipv4DhcpHelpersVariable String
    Variable name
    ipv4SecondaryAddresses List<Property Map>
    Assign secondary IP addresses
    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 - Default value: true
    shutdownVariable String
    Variable name
    tcpMss Number
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    tcpMssVariable String
    Variable name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServiceLanVpnInterfaceSviFeature resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    The version of the Feature
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    The version of the Feature
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    The version of the Feature

    Look up Existing ServiceLanVpnInterfaceSviFeature Resource

    Get an existing ServiceLanVpnInterfaceSviFeature resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ServiceLanVpnInterfaceSviFeatureState, opts?: CustomResourceOptions): ServiceLanVpnInterfaceSviFeature
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arp_timeout: Optional[int] = None,
            arp_timeout_variable: Optional[str] = None,
            arps: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureArpArgs]] = None,
            description: Optional[str] = None,
            enable_dhcpv6: Optional[bool] = None,
            enable_dhcpv6_variable: Optional[str] = None,
            feature_profile_id: Optional[str] = None,
            icmp_redirect_disable: Optional[bool] = None,
            icmp_redirect_disable_variable: Optional[str] = None,
            interface_description: Optional[str] = None,
            interface_description_variable: Optional[str] = None,
            interface_mtu: Optional[int] = None,
            interface_mtu_variable: Optional[str] = None,
            interface_name: Optional[str] = None,
            interface_name_variable: Optional[str] = None,
            ip_directed_broadcast: Optional[bool] = None,
            ip_directed_broadcast_variable: Optional[str] = None,
            ip_mtu: Optional[int] = None,
            ip_mtu_variable: Optional[str] = None,
            ipv4_address: Optional[str] = None,
            ipv4_address_variable: Optional[str] = None,
            ipv4_dhcp_helpers: Optional[Sequence[str]] = None,
            ipv4_dhcp_helpers_variable: Optional[str] = None,
            ipv4_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs]] = None,
            ipv4_subnet_mask: Optional[str] = None,
            ipv4_subnet_mask_variable: Optional[str] = None,
            ipv4_vrrps: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs]] = None,
            ipv6_address: Optional[str] = None,
            ipv6_address_variable: Optional[str] = None,
            ipv6_dhcp_helpers: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs]] = None,
            ipv6_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs]] = None,
            ipv6_vrrps: Optional[Sequence[ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs]] = None,
            name: Optional[str] = None,
            service_lan_vpn_feature_id: Optional[str] = None,
            shutdown: Optional[bool] = None,
            shutdown_variable: Optional[str] = None,
            tcp_mss: Optional[int] = None,
            tcp_mss_variable: Optional[str] = None,
            version: Optional[int] = None) -> ServiceLanVpnInterfaceSviFeature
    func GetServiceLanVpnInterfaceSviFeature(ctx *Context, name string, id IDInput, state *ServiceLanVpnInterfaceSviFeatureState, opts ...ResourceOption) (*ServiceLanVpnInterfaceSviFeature, error)
    public static ServiceLanVpnInterfaceSviFeature Get(string name, Input<string> id, ServiceLanVpnInterfaceSviFeatureState? state, CustomResourceOptions? opts = null)
    public static ServiceLanVpnInterfaceSviFeature get(String name, Output<String> id, ServiceLanVpnInterfaceSviFeatureState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ArpTimeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    ArpTimeoutVariable string
    Variable name
    Arps List<ServiceLanVpnInterfaceSviFeatureArp>
    Configure static ARP entries
    Description string
    The description of the Feature
    EnableDhcpv6 bool
    Enable DHCPv6 - Default value: false
    EnableDhcpv6Variable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    IcmpRedirectDisable bool
    ICMP/ICMPv6 Redirect Disable - Default value: true
    IcmpRedirectDisableVariable string
    Variable name
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceMtu int
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    InterfaceMtuVariable string
    Variable name
    InterfaceName string
    Interface name: VLAN 1 - VLAN 4094 when present
    InterfaceNameVariable string
    Variable name
    IpDirectedBroadcast bool
    IP Directed-Broadcast - Default value: false
    IpDirectedBroadcastVariable string
    Variable name
    IpMtu int
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    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<ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress>
    Assign secondary IP addresses
    Ipv4SubnetMask string
    Subnet Mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    Ipv4SubnetMaskVariable string
    Variable name
    Ipv4Vrrps List<ServiceLanVpnInterfaceSviFeatureIpv4Vrrp>
    Enable ipv4 VRRP
    Ipv6Address string
    Assign IPv6 address
    Ipv6AddressVariable string
    Variable name
    Ipv6DhcpHelpers List<ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper>
    DHCPv6 Helper
    Ipv6SecondaryAddresses List<ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress>
    Assign secondary IPv6 addresses
    Ipv6Vrrps List<ServiceLanVpnInterfaceSviFeatureIpv6Vrrp>
    Enable ipv6 VRRP
    Name string
    The name of the Feature
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    Administrative state - Default value: true
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    TcpMssVariable string
    Variable name
    Version int
    The version of the Feature
    ArpTimeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    ArpTimeoutVariable string
    Variable name
    Arps []ServiceLanVpnInterfaceSviFeatureArpArgs
    Configure static ARP entries
    Description string
    The description of the Feature
    EnableDhcpv6 bool
    Enable DHCPv6 - Default value: false
    EnableDhcpv6Variable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    IcmpRedirectDisable bool
    ICMP/ICMPv6 Redirect Disable - Default value: true
    IcmpRedirectDisableVariable string
    Variable name
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceMtu int
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    InterfaceMtuVariable string
    Variable name
    InterfaceName string
    Interface name: VLAN 1 - VLAN 4094 when present
    InterfaceNameVariable string
    Variable name
    IpDirectedBroadcast bool
    IP Directed-Broadcast - Default value: false
    IpDirectedBroadcastVariable string
    Variable name
    IpMtu int
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4Address string
    IP Address
    Ipv4AddressVariable string
    Variable name
    Ipv4DhcpHelpers []string
    List of DHCP helper addresses
    Ipv4DhcpHelpersVariable string
    Variable name
    Ipv4SecondaryAddresses []ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs
    Assign secondary IP addresses
    Ipv4SubnetMask string
    Subnet Mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    Ipv4SubnetMaskVariable string
    Variable name
    Ipv4Vrrps []ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs
    Enable ipv4 VRRP
    Ipv6Address string
    Assign IPv6 address
    Ipv6AddressVariable string
    Variable name
    Ipv6DhcpHelpers []ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs
    DHCPv6 Helper
    Ipv6SecondaryAddresses []ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs
    Assign secondary IPv6 addresses
    Ipv6Vrrps []ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs
    Enable ipv6 VRRP
    Name string
    The name of the Feature
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    Administrative state - Default value: true
    ShutdownVariable string
    Variable name
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    TcpMssVariable string
    Variable name
    Version int
    The version of the Feature
    arpTimeout Integer
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    arpTimeoutVariable String
    Variable name
    arps List<ServiceLanVpnInterfaceSviFeatureArp>
    Configure static ARP entries
    description String
    The description of the Feature
    enableDhcpv6 Boolean
    Enable DHCPv6 - Default value: false
    enableDhcpv6Variable String
    Variable name
    featureProfileId String
    Feature Profile ID
    icmpRedirectDisable Boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable String
    Variable name
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceMtu Integer
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable String
    Variable name
    interfaceName String
    Interface name: VLAN 1 - VLAN 4094 when present
    interfaceNameVariable String
    Variable name
    ipDirectedBroadcast Boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable String
    Variable name
    ipMtu Integer
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    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<ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress>
    Assign secondary IP addresses
    ipv4SubnetMask String
    Subnet Mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable String
    Variable name
    ipv4Vrrps List<ServiceLanVpnInterfaceSviFeatureIpv4Vrrp>
    Enable ipv4 VRRP
    ipv6Address String
    Assign IPv6 address
    ipv6AddressVariable String
    Variable name
    ipv6DhcpHelpers List<ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper>
    DHCPv6 Helper
    ipv6SecondaryAddresses List<ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress>
    Assign secondary IPv6 addresses
    ipv6Vrrps List<ServiceLanVpnInterfaceSviFeatureIpv6Vrrp>
    Enable ipv6 VRRP
    name String
    The name of the Feature
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    shutdown Boolean
    Administrative state - Default value: true
    shutdownVariable String
    Variable name
    tcpMss Integer
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    tcpMssVariable String
    Variable name
    version Integer
    The version of the Feature
    arpTimeout number
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    arpTimeoutVariable string
    Variable name
    arps ServiceLanVpnInterfaceSviFeatureArp[]
    Configure static ARP entries
    description string
    The description of the Feature
    enableDhcpv6 boolean
    Enable DHCPv6 - Default value: false
    enableDhcpv6Variable string
    Variable name
    featureProfileId string
    Feature Profile ID
    icmpRedirectDisable boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable string
    Variable name
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceMtu number
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable string
    Variable name
    interfaceName string
    Interface name: VLAN 1 - VLAN 4094 when present
    interfaceNameVariable string
    Variable name
    ipDirectedBroadcast boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable string
    Variable name
    ipMtu number
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    ipMtuVariable string
    Variable name
    ipv4Address string
    IP Address
    ipv4AddressVariable string
    Variable name
    ipv4DhcpHelpers string[]
    List of DHCP helper addresses
    ipv4DhcpHelpersVariable string
    Variable name
    ipv4SecondaryAddresses ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress[]
    Assign secondary IP addresses
    ipv4SubnetMask string
    Subnet Mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable string
    Variable name
    ipv4Vrrps ServiceLanVpnInterfaceSviFeatureIpv4Vrrp[]
    Enable ipv4 VRRP
    ipv6Address string
    Assign IPv6 address
    ipv6AddressVariable string
    Variable name
    ipv6DhcpHelpers ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper[]
    DHCPv6 Helper
    ipv6SecondaryAddresses ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress[]
    Assign secondary IPv6 addresses
    ipv6Vrrps ServiceLanVpnInterfaceSviFeatureIpv6Vrrp[]
    Enable ipv6 VRRP
    name string
    The name of the Feature
    serviceLanVpnFeatureId string
    Service LAN VPN Feature ID
    shutdown boolean
    Administrative state - Default value: true
    shutdownVariable string
    Variable name
    tcpMss number
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    tcpMssVariable string
    Variable name
    version number
    The version of the Feature
    arp_timeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    arp_timeout_variable str
    Variable name
    arps Sequence[ServiceLanVpnInterfaceSviFeatureArpArgs]
    Configure static ARP entries
    description str
    The description of the Feature
    enable_dhcpv6 bool
    Enable DHCPv6 - Default value: false
    enable_dhcpv6_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    icmp_redirect_disable bool
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmp_redirect_disable_variable str
    Variable name
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_mtu int
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    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 - Default value: false
    ip_directed_broadcast_variable str
    Variable name
    ip_mtu int
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    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[ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs]
    Assign secondary IP addresses
    ipv4_subnet_mask str
    Subnet Mask - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4_subnet_mask_variable str
    Variable name
    ipv4_vrrps Sequence[ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs]
    Enable ipv4 VRRP
    ipv6_address str
    Assign IPv6 address
    ipv6_address_variable str
    Variable name
    ipv6_dhcp_helpers Sequence[ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs]
    DHCPv6 Helper
    ipv6_secondary_addresses Sequence[ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs]
    Assign secondary IPv6 addresses
    ipv6_vrrps Sequence[ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs]
    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 - Default value: true
    shutdown_variable str
    Variable name
    tcp_mss int
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    tcp_mss_variable str
    Variable name
    version int
    The version of the Feature
    arpTimeout Number
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2678400 - Default value: 1200
    arpTimeoutVariable String
    Variable name
    arps List<Property Map>
    Configure static ARP entries
    description String
    The description of the Feature
    enableDhcpv6 Boolean
    Enable DHCPv6 - Default value: false
    enableDhcpv6Variable String
    Variable name
    featureProfileId String
    Feature Profile ID
    icmpRedirectDisable Boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable String
    Variable name
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceMtu Number
    Interface MTU <1500..9216> in bytes - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable String
    Variable name
    interfaceName String
    Interface name: VLAN 1 - VLAN 4094 when present
    interfaceNameVariable String
    Variable name
    ipDirectedBroadcast Boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable String
    Variable name
    ipMtu Number
    IP MTU <576..Interface MTU>, in bytes - Range: 576-9216 - Default value: 1500
    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 - Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable String
    Variable name
    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 - Default value: true
    shutdownVariable String
    Variable name
    tcpMss Number
    TCP MSS on SYN packets, in bytes - Range: 552-1960
    tcpMssVariable String
    Variable name
    version Number
    The version of the Feature

    Supporting Types

    ServiceLanVpnInterfaceSviFeatureArp, ServiceLanVpnInterfaceSviFeatureArpArgs

    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

    ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddress, ServiceLanVpnInterfaceSviFeatureIpv4SecondaryAddressArgs

    Address string
    IpV4 Address
    AddressVariable string
    Variable name
    Ipv4SubnetMask string
    Subnet Mask

    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    Ipv4SubnetMaskVariable string
    Variable name
    Address string
    IpV4 Address
    AddressVariable string
    Variable name
    Ipv4SubnetMask string
    Subnet Mask

    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    Ipv4SubnetMaskVariable string
    Variable name
    address String
    IpV4 Address
    addressVariable String
    Variable name
    ipv4SubnetMask String
    Subnet Mask

    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable String
    Variable name
    address string
    IpV4 Address
    addressVariable string
    Variable name
    ipv4SubnetMask string
    Subnet Mask

    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable string
    Variable name
    address str
    IpV4 Address
    address_variable str
    Variable name
    ipv4_subnet_mask str
    Subnet Mask

    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4_subnet_mask_variable str
    Variable name
    address String
    IpV4 Address
    addressVariable String
    Variable name
    ipv4SubnetMask String
    Subnet Mask

    • Choices: 255.255.255.255, 255.255.255.254, 255.255.255.252, 255.255.255.248, 255.255.255.240, 255.255.255.224, 255.255.255.192, 255.255.255.128, 255.255.255.0, 255.255.254.0, 255.255.252.0, 255.255.248.0, 255.255.240.0, 255.255.224.0, 255.255.192.0, 255.255.128.0, 255.255.0.0, 255.254.0.0, 255.252.0.0, 255.240.0.0, 255.224.0.0, 255.192.0.0, 255.128.0.0, 255.0.0.0, 254.0.0.0, 252.0.0.0, 248.0.0.0, 240.0.0.0, 224.0.0.0, 192.0.0.0, 128.0.0.0, 0.0.0.0
    ipv4SubnetMaskVariable String
    Variable name

    ServiceLanVpnInterfaceSviFeatureIpv4Vrrp, ServiceLanVpnInterfaceSviFeatureIpv4VrrpArgs

    Address string
    Assign IPV4 Address
    AddressVariable string
    Variable name
    GroupId int
    Group ID

    • Range: 1-255
    GroupIdVariable string
    Variable name
    PrefixList string
    Track Prefix List
    PrefixListVariable string
    Variable name
    Priority int
    Set priority

    • Range: 1-254
    • Default value: 100
    PriorityVariable string
    Variable name
    SecondaryAddresses List<ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress>
    VRRP Secondary IPV4 address
    Timer int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    TimerVariable string
    Variable name
    TlocPrefixChange bool
    change TLOC preference

    • Default value: false
    TlocPrefixChangeValue int
    Set tloc preference change value

    • Range: 1-4294967295
    TlocPrefixChangeValueVariable string
    Variable name
    TrackOmp bool
    Track OMP status

    • Default value: false
    TrackOmpVariable string
    Variable name
    Address string
    Assign IPV4 Address
    AddressVariable string
    Variable name
    GroupId int
    Group ID

    • Range: 1-255
    GroupIdVariable string
    Variable name
    PrefixList string
    Track Prefix List
    PrefixListVariable string
    Variable name
    Priority int
    Set priority

    • Range: 1-254
    • Default value: 100
    PriorityVariable string
    Variable name
    SecondaryAddresses []ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress
    VRRP Secondary IPV4 address
    Timer int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    TimerVariable string
    Variable name
    TlocPrefixChange bool
    change TLOC preference

    • Default value: false
    TlocPrefixChangeValue int
    Set tloc preference change value

    • Range: 1-4294967295
    TlocPrefixChangeValueVariable string
    Variable name
    TrackOmp bool
    Track OMP status

    • Default value: false
    TrackOmpVariable string
    Variable name
    address String
    Assign IPV4 Address
    addressVariable String
    Variable name
    groupId Integer
    Group ID

    • Range: 1-255
    groupIdVariable String
    Variable name
    prefixList String
    Track Prefix List
    prefixListVariable String
    Variable name
    priority Integer
    Set priority

    • Range: 1-254
    • Default value: 100
    priorityVariable String
    Variable name
    secondaryAddresses List<ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress>
    VRRP Secondary IPV4 address
    timer Integer
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timerVariable String
    Variable name
    tlocPrefixChange Boolean
    change TLOC preference

    • Default value: false
    tlocPrefixChangeValue Integer
    Set tloc preference change value

    • Range: 1-4294967295
    tlocPrefixChangeValueVariable String
    Variable name
    trackOmp Boolean
    Track OMP status

    • Default value: false
    trackOmpVariable String
    Variable name
    address string
    Assign IPV4 Address
    addressVariable string
    Variable name
    groupId number
    Group ID

    • Range: 1-255
    groupIdVariable string
    Variable name
    prefixList string
    Track Prefix List
    prefixListVariable string
    Variable name
    priority number
    Set priority

    • Range: 1-254
    • Default value: 100
    priorityVariable string
    Variable name
    secondaryAddresses ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress[]
    VRRP Secondary IPV4 address
    timer number
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timerVariable string
    Variable name
    tlocPrefixChange boolean
    change TLOC preference

    • Default value: false
    tlocPrefixChangeValue number
    Set tloc preference change value

    • Range: 1-4294967295
    tlocPrefixChangeValueVariable string
    Variable name
    trackOmp boolean
    Track OMP status

    • Default value: false
    trackOmpVariable string
    Variable name
    address str
    Assign IPV4 Address
    address_variable str
    Variable name
    group_id int
    Group ID

    • Range: 1-255
    group_id_variable str
    Variable name
    prefix_list str
    Track Prefix List
    prefix_list_variable str
    Variable name
    priority int
    Set priority

    • Range: 1-254
    • Default value: 100
    priority_variable str
    Variable name
    secondary_addresses Sequence[ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress]
    VRRP Secondary IPV4 address
    timer int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timer_variable str
    Variable name
    tloc_prefix_change bool
    change TLOC preference

    • Default value: false
    tloc_prefix_change_value int
    Set tloc preference change value

    • Range: 1-4294967295
    tloc_prefix_change_value_variable str
    Variable name
    track_omp bool
    Track OMP status

    • Default value: false
    track_omp_variable str
    Variable name
    address String
    Assign IPV4 Address
    addressVariable String
    Variable name
    groupId Number
    Group ID

    • Range: 1-255
    groupIdVariable String
    Variable name
    prefixList String
    Track Prefix List
    prefixListVariable String
    Variable name
    priority Number
    Set priority

    • Range: 1-254
    • Default value: 100
    priorityVariable String
    Variable name
    secondaryAddresses List<Property Map>
    VRRP Secondary IPV4 address
    timer Number
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timerVariable String
    Variable name
    tlocPrefixChange Boolean
    change TLOC preference

    • Default value: false
    tlocPrefixChangeValue Number
    Set tloc preference change value

    • Range: 1-4294967295
    tlocPrefixChangeValueVariable String
    Variable name
    trackOmp Boolean
    Track OMP status

    • Default value: false
    trackOmpVariable String
    Variable name

    ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddress, ServiceLanVpnInterfaceSviFeatureIpv4VrrpSecondaryAddressArgs

    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

    ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelper, ServiceLanVpnInterfaceSviFeatureIpv6DhcpHelperArgs

    Address string
    DHCPv6 Helper address
    AddressVariable string
    Variable name
    Vpn int
    DHCPv6 Helper VPN

    • Range: 1-65536
    VpnVariable string
    Variable name
    Address string
    DHCPv6 Helper address
    AddressVariable string
    Variable name
    Vpn int
    DHCPv6 Helper VPN

    • Range: 1-65536
    VpnVariable string
    Variable name
    address String
    DHCPv6 Helper address
    addressVariable String
    Variable name
    vpn Integer
    DHCPv6 Helper VPN

    • Range: 1-65536
    vpnVariable String
    Variable name
    address string
    DHCPv6 Helper address
    addressVariable string
    Variable name
    vpn number
    DHCPv6 Helper VPN

    • Range: 1-65536
    vpnVariable string
    Variable name
    address str
    DHCPv6 Helper address
    address_variable str
    Variable name
    vpn int
    DHCPv6 Helper VPN

    • Range: 1-65536
    vpn_variable str
    Variable name
    address String
    DHCPv6 Helper address
    addressVariable String
    Variable name
    vpn Number
    DHCPv6 Helper VPN

    • Range: 1-65536
    vpnVariable String
    Variable name

    ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddress, ServiceLanVpnInterfaceSviFeatureIpv6SecondaryAddressArgs

    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

    ServiceLanVpnInterfaceSviFeatureIpv6Vrrp, ServiceLanVpnInterfaceSviFeatureIpv6VrrpArgs

    Addresses List<ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress>
    IPv6 VRRP
    GroupId int
    Group ID

    • Range: 1-255
    GroupIdVariable string
    Variable name
    Priority int
    Set priority

    • Range: 1-254
    • Default value: 100
    PriorityVariable string
    Variable name
    SecondaryAddresses List<ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress>
    IPv6 Secondary IP address
    Timer int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    TimerVariable string
    Variable name
    TrackOmp bool
    Track OMP status

    • Default value: false
    TrackOmpVariable string
    Variable name
    TrackPrefixList string
    Track Prefix List
    TrackPrefixListVariable string
    Variable name
    Addresses []ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress
    IPv6 VRRP
    GroupId int
    Group ID

    • Range: 1-255
    GroupIdVariable string
    Variable name
    Priority int
    Set priority

    • Range: 1-254
    • Default value: 100
    PriorityVariable string
    Variable name
    SecondaryAddresses []ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress
    IPv6 Secondary IP address
    Timer int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    TimerVariable string
    Variable name
    TrackOmp bool
    Track OMP status

    • Default value: false
    TrackOmpVariable string
    Variable name
    TrackPrefixList string
    Track Prefix List
    TrackPrefixListVariable string
    Variable name
    addresses List<ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress>
    IPv6 VRRP
    groupId Integer
    Group ID

    • Range: 1-255
    groupIdVariable String
    Variable name
    priority Integer
    Set priority

    • Range: 1-254
    • Default value: 100
    priorityVariable String
    Variable name
    secondaryAddresses List<ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress>
    IPv6 Secondary IP address
    timer Integer
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timerVariable String
    Variable name
    trackOmp Boolean
    Track OMP status

    • Default value: false
    trackOmpVariable String
    Variable name
    trackPrefixList String
    Track Prefix List
    trackPrefixListVariable String
    Variable name
    addresses ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress[]
    IPv6 VRRP
    groupId number
    Group ID

    • Range: 1-255
    groupIdVariable string
    Variable name
    priority number
    Set priority

    • Range: 1-254
    • Default value: 100
    priorityVariable string
    Variable name
    secondaryAddresses ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress[]
    IPv6 Secondary IP address
    timer number
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timerVariable string
    Variable name
    trackOmp boolean
    Track OMP status

    • Default value: false
    trackOmpVariable string
    Variable name
    trackPrefixList string
    Track Prefix List
    trackPrefixListVariable string
    Variable name
    addresses Sequence[ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress]
    IPv6 VRRP
    group_id int
    Group ID

    • Range: 1-255
    group_id_variable str
    Variable name
    priority int
    Set priority

    • Range: 1-254
    • Default value: 100
    priority_variable str
    Variable name
    secondary_addresses Sequence[ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress]
    IPv6 Secondary IP address
    timer int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timer_variable str
    Variable name
    track_omp bool
    Track OMP status

    • Default value: false
    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

    • Range: 1-255
    groupIdVariable String
    Variable name
    priority Number
    Set priority

    • Range: 1-254
    • Default value: 100
    priorityVariable String
    Variable name
    secondaryAddresses List<Property Map>
    IPv6 Secondary IP address
    timer Number
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timerVariable String
    Variable name
    trackOmp Boolean
    Track OMP status

    • Default value: false
    trackOmpVariable String
    Variable name
    trackPrefixList String
    Track Prefix List
    trackPrefixListVariable String
    Variable name

    ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddress, ServiceLanVpnInterfaceSviFeatureIpv6VrrpAddressArgs

    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

    ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddress, ServiceLanVpnInterfaceSviFeatureIpv6VrrpSecondaryAddressArgs

    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

    Import

    $ pulumi import sdwan:index/serviceLanVpnInterfaceSviFeature:ServiceLanVpnInterfaceSviFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.3 published on Tuesday, Sep 24, 2024 by Pulumi