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

sdwan.ServiceLanVpnInterfaceEthernetFeature

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 Ethernet 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.ServiceLanVpnInterfaceEthernetFeature;
    import com.pulumi.sdwan.ServiceLanVpnInterfaceEthernetFeatureArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs;
    import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceEthernetFeatureArpArgs;
    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 ServiceLanVpnInterfaceEthernetFeature("example", ServiceLanVpnInterfaceEthernetFeatureArgs.builder()
                .name("Example")
                .description("My Example")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .serviceLanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
                .shutdown(false)
                .interfaceName("GigabitEthernet3")
                .interfaceDescription("LAN")
                .ipv4Address("1.2.3.4")
                .ipv4SubnetMask("0.0.0.0")
                .ipv4SecondaryAddresses(ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs.builder()
                    .address("1.2.3.5")
                    .subnet_mask("0.0.0.0")
                    .build())
                .ipv4DhcpHelpers("1.2.3.4")
                .ipv6DhcpHelpers(ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs.builder()
                    .address("2001:0:0:1::0")
                    .dhcpv6_helper_vpn(1)
                    .build())
                .ipv4Nat(false)
                .ipv4NatType("pool")
                .ipv4NatRangeStart("1.2.3.4")
                .ipv4NatRangeEnd("4.5.6.7")
                .ipv4NatPrefixLength(1)
                .ipv4NatOverload(true)
                .ipv4NatLoopback("123")
                .ipv4NatUdpTimeout(123)
                .ipv4NatTcpTimeout(123)
                .staticNats(ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs.builder()
                    .source_ip("1.2.3.4")
                    .translate_ip("2.3.4.5")
                    .direction("inside")
                    .source_vpn(0)
                    .build())
                .ipv6Nat(true)
                .nat64(false)
                .aclShapingRate(12)
                .ipv6Vrrps(ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs.builder()
                    .group_id(1)
                    .priority(100)
                    .timer(1000)
                    .track_omp(false)
                    .ipv6_addresses(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .build())
                .ipv4Vrrps(ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs.builder()
                    .group_id(1)
                    .priority(100)
                    .timer(1000)
                    .track_omp(false)
                    .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_pref_change_value(100)
                    .build())
                .arps(ServiceLanVpnInterfaceEthernetFeatureArpArgs.builder()
                    .ip_address("1.2.3.4")
                    .mac_address("00-B0-D0-63-C2-26")
                    .build())
                .trustsecEnableSgtPropogation(false)
                .trustsecPropogate(true)
                .trustsecSecurityGroupTag(123)
                .trustsecEnableEnforcedPropogation(false)
                .trustsecEnforcedSecurityGroupTag(1234)
                .duplex("full")
                .macAddress("00-B0-D0-63-C2-26")
                .ipMtu(1500)
                .interfaceMtu(1500)
                .tcpMss(500)
                .speed("1000")
                .arpTimeout(1200)
                .autonegotiate(false)
                .mediaType("auto-select")
                .loadInterval(30)
                .tracker("TRACKER1")
                .icmpRedirectDisable(true)
                .xconnect("1")
                .ipDirectedBroadcast(false)
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:ServiceLanVpnInterfaceEthernetFeature
        properties:
          name: Example
          description: My Example
          featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
          serviceLanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
          shutdown: false
          interfaceName: GigabitEthernet3
          interfaceDescription: LAN
          ipv4Address: 1.2.3.4
          ipv4SubnetMask: 0.0.0.0
          ipv4SecondaryAddresses:
            - address: 1.2.3.5
              subnet_mask: 0.0.0.0
          ipv4DhcpHelpers:
            - 1.2.3.4
          ipv6DhcpHelpers:
            - address: 2001:0:0:1::0
              dhcpv6_helper_vpn: 1
          ipv4Nat: false
          ipv4NatType: pool
          ipv4NatRangeStart: 1.2.3.4
          ipv4NatRangeEnd: 4.5.6.7
          ipv4NatPrefixLength: 1
          ipv4NatOverload: true
          ipv4NatLoopback: '123'
          ipv4NatUdpTimeout: 123
          ipv4NatTcpTimeout: 123
          staticNats:
            - source_ip: 1.2.3.4
              translate_ip: 2.3.4.5
              direction: inside
              source_vpn: 0
          ipv6Nat: true
          nat64: false
          aclShapingRate: 12
          ipv6Vrrps:
            - group_id: 1
              priority: 100
              timer: 1000
              track_omp: false
              ipv6_addresses:
                - linkLocalAddress: 1::1
                  globalAddress: 1::1/24
          ipv4Vrrps:
            - group_id: 1
              priority: 100
              timer: 1000
              track_omp: false
              address: 1.2.3.4
              secondary_addresses:
                - address: 2.3.4.5
                  subnetMask: 0.0.0.0
              tloc_prefix_change: true
              tloc_pref_change_value: 100
          arps:
            - ip_address: 1.2.3.4
              mac_address: 00-B0-D0-63-C2-26
          trustsecEnableSgtPropogation: false
          trustsecPropogate: true
          trustsecSecurityGroupTag: 123
          trustsecEnableEnforcedPropogation: false
          trustsecEnforcedSecurityGroupTag: 1234
          duplex: full
          macAddress: 00-B0-D0-63-C2-26
          ipMtu: 1500
          interfaceMtu: 1500
          tcpMss: 500
          speed: '1000'
          arpTimeout: 1200
          autonegotiate: false
          mediaType: auto-select
          loadInterval: 30
          tracker: TRACKER1
          icmpRedirectDisable: true
          xconnect: '1'
          ipDirectedBroadcast: false
    

    Create ServiceLanVpnInterfaceEthernetFeature Resource

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

    Constructor syntax

    new ServiceLanVpnInterfaceEthernetFeature(name: string, args: ServiceLanVpnInterfaceEthernetFeatureArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceLanVpnInterfaceEthernetFeature(resource_name: str,
                                              args: ServiceLanVpnInterfaceEthernetFeatureArgs,
                                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceLanVpnInterfaceEthernetFeature(resource_name: str,
                                              opts: Optional[ResourceOptions] = None,
                                              feature_profile_id: Optional[str] = None,
                                              acl_ipv4_egress_policy_id: Optional[str] = None,
                                              acl_ipv4_ingress_policy_id: Optional[str] = None,
                                              acl_ipv6_egress_policy_id: Optional[str] = None,
                                              acl_ipv6_ingress_policy_id: Optional[str] = None,
                                              acl_shaping_rate: Optional[int] = None,
                                              acl_shaping_rate_variable: Optional[str] = None,
                                              arp_timeout: Optional[int] = None,
                                              arp_timeout_variable: Optional[str] = None,
                                              arps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureArpArgs]] = None,
                                              autonegotiate: Optional[bool] = None,
                                              autonegotiate_variable: Optional[str] = None,
                                              description: Optional[str] = None,
                                              duplex: Optional[str] = None,
                                              duplex_variable: Optional[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,
                                              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_distance: Optional[int] = None,
                                              ipv4_dhcp_distance_variable: Optional[str] = None,
                                              ipv4_dhcp_helper_variable: Optional[str] = None,
                                              ipv4_dhcp_helpers: Optional[Sequence[str]] = None,
                                              ipv4_nat: Optional[bool] = None,
                                              ipv4_nat_loopback: Optional[str] = None,
                                              ipv4_nat_loopback_variable: Optional[str] = None,
                                              ipv4_nat_overload: Optional[bool] = None,
                                              ipv4_nat_overload_variable: Optional[str] = None,
                                              ipv4_nat_prefix_length: Optional[int] = None,
                                              ipv4_nat_prefix_length_variable: Optional[str] = None,
                                              ipv4_nat_range_end: Optional[str] = None,
                                              ipv4_nat_range_end_variable: Optional[str] = None,
                                              ipv4_nat_range_start: Optional[str] = None,
                                              ipv4_nat_range_start_variable: Optional[str] = None,
                                              ipv4_nat_tcp_timeout: Optional[int] = None,
                                              ipv4_nat_tcp_timeout_variable: Optional[str] = None,
                                              ipv4_nat_type: Optional[str] = None,
                                              ipv4_nat_type_variable: Optional[str] = None,
                                              ipv4_nat_udp_timeout: Optional[int] = None,
                                              ipv4_nat_udp_timeout_variable: Optional[str] = None,
                                              ipv4_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs]] = None,
                                              ipv4_subnet_mask: Optional[str] = None,
                                              ipv4_subnet_mask_variable: Optional[str] = None,
                                              ipv4_vrrps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs]] = None,
                                              ipv6_address: Optional[str] = None,
                                              ipv6_address_variable: Optional[str] = None,
                                              ipv6_dhcp_helpers: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs]] = None,
                                              ipv6_dhcp_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs]] = None,
                                              ipv6_nat: Optional[bool] = None,
                                              ipv6_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs]] = None,
                                              ipv6_vrrps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs]] = None,
                                              load_interval: Optional[int] = None,
                                              load_interval_variable: Optional[str] = None,
                                              mac_address: Optional[str] = None,
                                              mac_address_variable: Optional[str] = None,
                                              media_type: Optional[str] = None,
                                              media_type_variable: Optional[str] = None,
                                              name: Optional[str] = None,
                                              nat64: Optional[bool] = None,
                                              service_lan_vpn_feature_id: Optional[str] = None,
                                              shutdown: Optional[bool] = None,
                                              shutdown_variable: Optional[str] = None,
                                              speed: Optional[str] = None,
                                              speed_variable: Optional[str] = None,
                                              static_nats: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs]] = None,
                                              tcp_mss: Optional[int] = None,
                                              tcp_mss_variable: Optional[str] = None,
                                              tracker: Optional[str] = None,
                                              tracker_variable: Optional[str] = None,
                                              trustsec_enable_enforced_propogation: Optional[bool] = None,
                                              trustsec_enable_sgt_propogation: Optional[bool] = None,
                                              trustsec_enforced_security_group_tag: Optional[int] = None,
                                              trustsec_enforced_security_group_tag_variable: Optional[str] = None,
                                              trustsec_propogate: Optional[bool] = None,
                                              trustsec_security_group_tag: Optional[int] = None,
                                              trustsec_security_group_tag_variable: Optional[str] = None,
                                              xconnect: Optional[str] = None,
                                              xconnect_variable: Optional[str] = None)
    func NewServiceLanVpnInterfaceEthernetFeature(ctx *Context, name string, args ServiceLanVpnInterfaceEthernetFeatureArgs, opts ...ResourceOption) (*ServiceLanVpnInterfaceEthernetFeature, error)
    public ServiceLanVpnInterfaceEthernetFeature(string name, ServiceLanVpnInterfaceEthernetFeatureArgs args, CustomResourceOptions? opts = null)
    public ServiceLanVpnInterfaceEthernetFeature(String name, ServiceLanVpnInterfaceEthernetFeatureArgs args)
    public ServiceLanVpnInterfaceEthernetFeature(String name, ServiceLanVpnInterfaceEthernetFeatureArgs args, CustomResourceOptions options)
    
    type: sdwan:ServiceLanVpnInterfaceEthernetFeature
    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 ServiceLanVpnInterfaceEthernetFeatureArgs
    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 ServiceLanVpnInterfaceEthernetFeatureArgs
    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 ServiceLanVpnInterfaceEthernetFeatureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceLanVpnInterfaceEthernetFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceLanVpnInterfaceEthernetFeatureArgs
    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 serviceLanVpnInterfaceEthernetFeatureResource = new Sdwan.ServiceLanVpnInterfaceEthernetFeature("serviceLanVpnInterfaceEthernetFeatureResource", new()
    {
        FeatureProfileId = "string",
        AclIpv4EgressPolicyId = "string",
        AclIpv4IngressPolicyId = "string",
        AclIpv6EgressPolicyId = "string",
        AclIpv6IngressPolicyId = "string",
        AclShapingRate = 0,
        AclShapingRateVariable = "string",
        ArpTimeout = 0,
        ArpTimeoutVariable = "string",
        Arps = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureArpArgs
            {
                IpAddress = "string",
                IpAddressVariable = "string",
                MacAddress = "string",
                MacAddressVariable = "string",
            },
        },
        Autonegotiate = false,
        AutonegotiateVariable = "string",
        Description = "string",
        Duplex = "string",
        DuplexVariable = "string",
        EnableDhcpv6 = false,
        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",
        Ipv4DhcpDistance = 0,
        Ipv4DhcpDistanceVariable = "string",
        Ipv4DhcpHelperVariable = "string",
        Ipv4DhcpHelpers = new[]
        {
            "string",
        },
        Ipv4Nat = false,
        Ipv4NatLoopback = "string",
        Ipv4NatLoopbackVariable = "string",
        Ipv4NatOverload = false,
        Ipv4NatOverloadVariable = "string",
        Ipv4NatPrefixLength = 0,
        Ipv4NatPrefixLengthVariable = "string",
        Ipv4NatRangeEnd = "string",
        Ipv4NatRangeEndVariable = "string",
        Ipv4NatRangeStart = "string",
        Ipv4NatRangeStartVariable = "string",
        Ipv4NatTcpTimeout = 0,
        Ipv4NatTcpTimeoutVariable = "string",
        Ipv4NatType = "string",
        Ipv4NatTypeVariable = "string",
        Ipv4NatUdpTimeout = 0,
        Ipv4NatUdpTimeoutVariable = "string",
        Ipv4SecondaryAddresses = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs
            {
                Address = "string",
                AddressVariable = "string",
                SubnetMask = "string",
                SubnetMaskVariable = "string",
            },
        },
        Ipv4SubnetMask = "string",
        Ipv4SubnetMaskVariable = "string",
        Ipv4Vrrps = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs
            {
                Address = "string",
                AddressVariable = "string",
                GroupId = 0,
                GroupIdVariable = "string",
                Priority = 0,
                PriorityVariable = "string",
                SecondaryAddresses = new[]
                {
                    new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs
                    {
                        Address = "string",
                        AddressVariable = "string",
                        SubnetMask = "string",
                        SubnetMaskVariable = "string",
                    },
                },
                Timer = 0,
                TimerVariable = "string",
                TlocPrefChangeValue = 0,
                TlocPrefixChange = false,
                TrackOmp = false,
            },
        },
        Ipv6Address = "string",
        Ipv6AddressVariable = "string",
        Ipv6DhcpHelpers = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs
            {
                Address = "string",
                AddressVariable = "string",
                Dhcpv6HelperVpn = 0,
                Dhcpv6HelperVpnVariable = "string",
            },
        },
        Ipv6DhcpSecondaryAddresses = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs
            {
                Address = "string",
                AddressVariable = "string",
            },
        },
        Ipv6Nat = false,
        Ipv6SecondaryAddresses = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs
            {
                Address = "string",
                AddressVariable = "string",
            },
        },
        Ipv6Vrrps = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs
            {
                GroupId = 0,
                GroupIdVariable = "string",
                Ipv6Addresses = new[]
                {
                    new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs
                    {
                        GlobalAddress = "string",
                        GlobalAddressVariable = "string",
                        LinkLocalAddress = "string",
                        LinkLocalAddressVariable = "string",
                    },
                },
                Priority = 0,
                PriorityVariable = "string",
                Timer = 0,
                TimerVariable = "string",
                TrackOmp = false,
            },
        },
        LoadInterval = 0,
        LoadIntervalVariable = "string",
        MacAddress = "string",
        MacAddressVariable = "string",
        MediaType = "string",
        MediaTypeVariable = "string",
        Name = "string",
        Nat64 = false,
        ServiceLanVpnFeatureId = "string",
        Shutdown = false,
        ShutdownVariable = "string",
        Speed = "string",
        SpeedVariable = "string",
        StaticNats = new[]
        {
            new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs
            {
                Direction = "string",
                SourceIp = "string",
                SourceIpVariable = "string",
                SourceVpn = 0,
                SourceVpnVariable = "string",
                TranslateIp = "string",
                TranslateIpVariable = "string",
            },
        },
        TcpMss = 0,
        TcpMssVariable = "string",
        Tracker = "string",
        TrackerVariable = "string",
        TrustsecEnableEnforcedPropogation = false,
        TrustsecEnableSgtPropogation = false,
        TrustsecEnforcedSecurityGroupTag = 0,
        TrustsecEnforcedSecurityGroupTagVariable = "string",
        TrustsecPropogate = false,
        TrustsecSecurityGroupTag = 0,
        TrustsecSecurityGroupTagVariable = "string",
        Xconnect = "string",
        XconnectVariable = "string",
    });
    
    example, err := sdwan.NewServiceLanVpnInterfaceEthernetFeature(ctx, "serviceLanVpnInterfaceEthernetFeatureResource", &sdwan.ServiceLanVpnInterfaceEthernetFeatureArgs{
    	FeatureProfileId:       pulumi.String("string"),
    	AclIpv4EgressPolicyId:  pulumi.String("string"),
    	AclIpv4IngressPolicyId: pulumi.String("string"),
    	AclIpv6EgressPolicyId:  pulumi.String("string"),
    	AclIpv6IngressPolicyId: pulumi.String("string"),
    	AclShapingRate:         pulumi.Int(0),
    	AclShapingRateVariable: pulumi.String("string"),
    	ArpTimeout:             pulumi.Int(0),
    	ArpTimeoutVariable:     pulumi.String("string"),
    	Arps: sdwan.ServiceLanVpnInterfaceEthernetFeatureArpArray{
    		&sdwan.ServiceLanVpnInterfaceEthernetFeatureArpArgs{
    			IpAddress:          pulumi.String("string"),
    			IpAddressVariable:  pulumi.String("string"),
    			MacAddress:         pulumi.String("string"),
    			MacAddressVariable: pulumi.String("string"),
    		},
    	},
    	Autonegotiate:                pulumi.Bool(false),
    	AutonegotiateVariable:        pulumi.String("string"),
    	Description:                  pulumi.String("string"),
    	Duplex:                       pulumi.String("string"),
    	DuplexVariable:               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"),
    	InterfaceName:                pulumi.String("string"),
    	InterfaceNameVariable:        pulumi.String("string"),
    	IpDirectedBroadcast:          pulumi.Bool(false),
    	IpDirectedBroadcastVariable:  pulumi.String("string"),
    	IpMtu:                        pulumi.Int(0),
    	IpMtuVariable:                pulumi.String("string"),
    	Ipv4Address:                  pulumi.String("string"),
    	Ipv4AddressVariable:          pulumi.String("string"),
    	Ipv4DhcpDistance:             pulumi.Int(0),
    	Ipv4DhcpDistanceVariable:     pulumi.String("string"),
    	Ipv4DhcpHelperVariable:       pulumi.String("string"),
    	Ipv4DhcpHelpers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Ipv4Nat:                     pulumi.Bool(false),
    	Ipv4NatLoopback:             pulumi.String("string"),
    	Ipv4NatLoopbackVariable:     pulumi.String("string"),
    	Ipv4NatOverload:             pulumi.Bool(false),
    	Ipv4NatOverloadVariable:     pulumi.String("string"),
    	Ipv4NatPrefixLength:         pulumi.Int(0),
    	Ipv4NatPrefixLengthVariable: pulumi.String("string"),
    	Ipv4NatRangeEnd:             pulumi.String("string"),
    	Ipv4NatRangeEndVariable:     pulumi.String("string"),
    	Ipv4NatRangeStart:           pulumi.String("string"),
    	Ipv4NatRangeStartVariable:   pulumi.String("string"),
    	Ipv4NatTcpTimeout:           pulumi.Int(0),
    	Ipv4NatTcpTimeoutVariable:   pulumi.String("string"),
    	Ipv4NatType:                 pulumi.String("string"),
    	Ipv4NatTypeVariable:         pulumi.String("string"),
    	Ipv4NatUdpTimeout:           pulumi.Int(0),
    	Ipv4NatUdpTimeoutVariable:   pulumi.String("string"),
    	Ipv4SecondaryAddresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArray{
    		&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs{
    			Address:            pulumi.String("string"),
    			AddressVariable:    pulumi.String("string"),
    			SubnetMask:         pulumi.String("string"),
    			SubnetMaskVariable: pulumi.String("string"),
    		},
    	},
    	Ipv4SubnetMask:         pulumi.String("string"),
    	Ipv4SubnetMaskVariable: pulumi.String("string"),
    	Ipv4Vrrps: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArray{
    		&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs{
    			Address:          pulumi.String("string"),
    			AddressVariable:  pulumi.String("string"),
    			GroupId:          pulumi.Int(0),
    			GroupIdVariable:  pulumi.String("string"),
    			Priority:         pulumi.Int(0),
    			PriorityVariable: pulumi.String("string"),
    			SecondaryAddresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArray{
    				&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs{
    					Address:            pulumi.String("string"),
    					AddressVariable:    pulumi.String("string"),
    					SubnetMask:         pulumi.String("string"),
    					SubnetMaskVariable: pulumi.String("string"),
    				},
    			},
    			Timer:               pulumi.Int(0),
    			TimerVariable:       pulumi.String("string"),
    			TlocPrefChangeValue: pulumi.Int(0),
    			TlocPrefixChange:    pulumi.Bool(false),
    			TrackOmp:            pulumi.Bool(false),
    		},
    	},
    	Ipv6Address:         pulumi.String("string"),
    	Ipv6AddressVariable: pulumi.String("string"),
    	Ipv6DhcpHelpers: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArray{
    		&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs{
    			Address:                 pulumi.String("string"),
    			AddressVariable:         pulumi.String("string"),
    			Dhcpv6HelperVpn:         pulumi.Int(0),
    			Dhcpv6HelperVpnVariable: pulumi.String("string"),
    		},
    	},
    	Ipv6DhcpSecondaryAddresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArray{
    		&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs{
    			Address:         pulumi.String("string"),
    			AddressVariable: pulumi.String("string"),
    		},
    	},
    	Ipv6Nat: pulumi.Bool(false),
    	Ipv6SecondaryAddresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArray{
    		&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs{
    			Address:         pulumi.String("string"),
    			AddressVariable: pulumi.String("string"),
    		},
    	},
    	Ipv6Vrrps: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArray{
    		&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs{
    			GroupId:         pulumi.Int(0),
    			GroupIdVariable: pulumi.String("string"),
    			Ipv6Addresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArray{
    				&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs{
    					GlobalAddress:            pulumi.String("string"),
    					GlobalAddressVariable:    pulumi.String("string"),
    					LinkLocalAddress:         pulumi.String("string"),
    					LinkLocalAddressVariable: pulumi.String("string"),
    				},
    			},
    			Priority:         pulumi.Int(0),
    			PriorityVariable: pulumi.String("string"),
    			Timer:            pulumi.Int(0),
    			TimerVariable:    pulumi.String("string"),
    			TrackOmp:         pulumi.Bool(false),
    		},
    	},
    	LoadInterval:           pulumi.Int(0),
    	LoadIntervalVariable:   pulumi.String("string"),
    	MacAddress:             pulumi.String("string"),
    	MacAddressVariable:     pulumi.String("string"),
    	MediaType:              pulumi.String("string"),
    	MediaTypeVariable:      pulumi.String("string"),
    	Name:                   pulumi.String("string"),
    	Nat64:                  pulumi.Bool(false),
    	ServiceLanVpnFeatureId: pulumi.String("string"),
    	Shutdown:               pulumi.Bool(false),
    	ShutdownVariable:       pulumi.String("string"),
    	Speed:                  pulumi.String("string"),
    	SpeedVariable:          pulumi.String("string"),
    	StaticNats: sdwan.ServiceLanVpnInterfaceEthernetFeatureStaticNatArray{
    		&sdwan.ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs{
    			Direction:           pulumi.String("string"),
    			SourceIp:            pulumi.String("string"),
    			SourceIpVariable:    pulumi.String("string"),
    			SourceVpn:           pulumi.Int(0),
    			SourceVpnVariable:   pulumi.String("string"),
    			TranslateIp:         pulumi.String("string"),
    			TranslateIpVariable: pulumi.String("string"),
    		},
    	},
    	TcpMss:                                   pulumi.Int(0),
    	TcpMssVariable:                           pulumi.String("string"),
    	Tracker:                                  pulumi.String("string"),
    	TrackerVariable:                          pulumi.String("string"),
    	TrustsecEnableEnforcedPropogation:        pulumi.Bool(false),
    	TrustsecEnableSgtPropogation:             pulumi.Bool(false),
    	TrustsecEnforcedSecurityGroupTag:         pulumi.Int(0),
    	TrustsecEnforcedSecurityGroupTagVariable: pulumi.String("string"),
    	TrustsecPropogate:                        pulumi.Bool(false),
    	TrustsecSecurityGroupTag:                 pulumi.Int(0),
    	TrustsecSecurityGroupTagVariable:         pulumi.String("string"),
    	Xconnect:                                 pulumi.String("string"),
    	XconnectVariable:                         pulumi.String("string"),
    })
    
    var serviceLanVpnInterfaceEthernetFeatureResource = new ServiceLanVpnInterfaceEthernetFeature("serviceLanVpnInterfaceEthernetFeatureResource", ServiceLanVpnInterfaceEthernetFeatureArgs.builder()
        .featureProfileId("string")
        .aclIpv4EgressPolicyId("string")
        .aclIpv4IngressPolicyId("string")
        .aclIpv6EgressPolicyId("string")
        .aclIpv6IngressPolicyId("string")
        .aclShapingRate(0)
        .aclShapingRateVariable("string")
        .arpTimeout(0)
        .arpTimeoutVariable("string")
        .arps(ServiceLanVpnInterfaceEthernetFeatureArpArgs.builder()
            .ipAddress("string")
            .ipAddressVariable("string")
            .macAddress("string")
            .macAddressVariable("string")
            .build())
        .autonegotiate(false)
        .autonegotiateVariable("string")
        .description("string")
        .duplex("string")
        .duplexVariable("string")
        .enableDhcpv6(false)
        .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")
        .ipv4DhcpDistance(0)
        .ipv4DhcpDistanceVariable("string")
        .ipv4DhcpHelperVariable("string")
        .ipv4DhcpHelpers("string")
        .ipv4Nat(false)
        .ipv4NatLoopback("string")
        .ipv4NatLoopbackVariable("string")
        .ipv4NatOverload(false)
        .ipv4NatOverloadVariable("string")
        .ipv4NatPrefixLength(0)
        .ipv4NatPrefixLengthVariable("string")
        .ipv4NatRangeEnd("string")
        .ipv4NatRangeEndVariable("string")
        .ipv4NatRangeStart("string")
        .ipv4NatRangeStartVariable("string")
        .ipv4NatTcpTimeout(0)
        .ipv4NatTcpTimeoutVariable("string")
        .ipv4NatType("string")
        .ipv4NatTypeVariable("string")
        .ipv4NatUdpTimeout(0)
        .ipv4NatUdpTimeoutVariable("string")
        .ipv4SecondaryAddresses(ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs.builder()
            .address("string")
            .addressVariable("string")
            .subnetMask("string")
            .subnetMaskVariable("string")
            .build())
        .ipv4SubnetMask("string")
        .ipv4SubnetMaskVariable("string")
        .ipv4Vrrps(ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs.builder()
            .address("string")
            .addressVariable("string")
            .groupId(0)
            .groupIdVariable("string")
            .priority(0)
            .priorityVariable("string")
            .secondaryAddresses(ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs.builder()
                .address("string")
                .addressVariable("string")
                .subnetMask("string")
                .subnetMaskVariable("string")
                .build())
            .timer(0)
            .timerVariable("string")
            .tlocPrefChangeValue(0)
            .tlocPrefixChange(false)
            .trackOmp(false)
            .build())
        .ipv6Address("string")
        .ipv6AddressVariable("string")
        .ipv6DhcpHelpers(ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs.builder()
            .address("string")
            .addressVariable("string")
            .dhcpv6HelperVpn(0)
            .dhcpv6HelperVpnVariable("string")
            .build())
        .ipv6DhcpSecondaryAddresses(ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs.builder()
            .address("string")
            .addressVariable("string")
            .build())
        .ipv6Nat(false)
        .ipv6SecondaryAddresses(ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs.builder()
            .address("string")
            .addressVariable("string")
            .build())
        .ipv6Vrrps(ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs.builder()
            .groupId(0)
            .groupIdVariable("string")
            .ipv6Addresses(ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs.builder()
                .globalAddress("string")
                .globalAddressVariable("string")
                .linkLocalAddress("string")
                .linkLocalAddressVariable("string")
                .build())
            .priority(0)
            .priorityVariable("string")
            .timer(0)
            .timerVariable("string")
            .trackOmp(false)
            .build())
        .loadInterval(0)
        .loadIntervalVariable("string")
        .macAddress("string")
        .macAddressVariable("string")
        .mediaType("string")
        .mediaTypeVariable("string")
        .name("string")
        .nat64(false)
        .serviceLanVpnFeatureId("string")
        .shutdown(false)
        .shutdownVariable("string")
        .speed("string")
        .speedVariable("string")
        .staticNats(ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs.builder()
            .direction("string")
            .sourceIp("string")
            .sourceIpVariable("string")
            .sourceVpn(0)
            .sourceVpnVariable("string")
            .translateIp("string")
            .translateIpVariable("string")
            .build())
        .tcpMss(0)
        .tcpMssVariable("string")
        .tracker("string")
        .trackerVariable("string")
        .trustsecEnableEnforcedPropogation(false)
        .trustsecEnableSgtPropogation(false)
        .trustsecEnforcedSecurityGroupTag(0)
        .trustsecEnforcedSecurityGroupTagVariable("string")
        .trustsecPropogate(false)
        .trustsecSecurityGroupTag(0)
        .trustsecSecurityGroupTagVariable("string")
        .xconnect("string")
        .xconnectVariable("string")
        .build());
    
    service_lan_vpn_interface_ethernet_feature_resource = sdwan.ServiceLanVpnInterfaceEthernetFeature("serviceLanVpnInterfaceEthernetFeatureResource",
        feature_profile_id="string",
        acl_ipv4_egress_policy_id="string",
        acl_ipv4_ingress_policy_id="string",
        acl_ipv6_egress_policy_id="string",
        acl_ipv6_ingress_policy_id="string",
        acl_shaping_rate=0,
        acl_shaping_rate_variable="string",
        arp_timeout=0,
        arp_timeout_variable="string",
        arps=[sdwan.ServiceLanVpnInterfaceEthernetFeatureArpArgs(
            ip_address="string",
            ip_address_variable="string",
            mac_address="string",
            mac_address_variable="string",
        )],
        autonegotiate=False,
        autonegotiate_variable="string",
        description="string",
        duplex="string",
        duplex_variable="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",
        interface_name="string",
        interface_name_variable="string",
        ip_directed_broadcast=False,
        ip_directed_broadcast_variable="string",
        ip_mtu=0,
        ip_mtu_variable="string",
        ipv4_address="string",
        ipv4_address_variable="string",
        ipv4_dhcp_distance=0,
        ipv4_dhcp_distance_variable="string",
        ipv4_dhcp_helper_variable="string",
        ipv4_dhcp_helpers=["string"],
        ipv4_nat=False,
        ipv4_nat_loopback="string",
        ipv4_nat_loopback_variable="string",
        ipv4_nat_overload=False,
        ipv4_nat_overload_variable="string",
        ipv4_nat_prefix_length=0,
        ipv4_nat_prefix_length_variable="string",
        ipv4_nat_range_end="string",
        ipv4_nat_range_end_variable="string",
        ipv4_nat_range_start="string",
        ipv4_nat_range_start_variable="string",
        ipv4_nat_tcp_timeout=0,
        ipv4_nat_tcp_timeout_variable="string",
        ipv4_nat_type="string",
        ipv4_nat_type_variable="string",
        ipv4_nat_udp_timeout=0,
        ipv4_nat_udp_timeout_variable="string",
        ipv4_secondary_addresses=[sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs(
            address="string",
            address_variable="string",
            subnet_mask="string",
            subnet_mask_variable="string",
        )],
        ipv4_subnet_mask="string",
        ipv4_subnet_mask_variable="string",
        ipv4_vrrps=[sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs(
            address="string",
            address_variable="string",
            group_id=0,
            group_id_variable="string",
            priority=0,
            priority_variable="string",
            secondary_addresses=[sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs(
                address="string",
                address_variable="string",
                subnet_mask="string",
                subnet_mask_variable="string",
            )],
            timer=0,
            timer_variable="string",
            tloc_pref_change_value=0,
            tloc_prefix_change=False,
            track_omp=False,
        )],
        ipv6_address="string",
        ipv6_address_variable="string",
        ipv6_dhcp_helpers=[sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs(
            address="string",
            address_variable="string",
            dhcpv6_helper_vpn=0,
            dhcpv6_helper_vpn_variable="string",
        )],
        ipv6_dhcp_secondary_addresses=[sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs(
            address="string",
            address_variable="string",
        )],
        ipv6_nat=False,
        ipv6_secondary_addresses=[sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs(
            address="string",
            address_variable="string",
        )],
        ipv6_vrrps=[sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs(
            group_id=0,
            group_id_variable="string",
            ipv6_addresses=[sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs(
                global_address="string",
                global_address_variable="string",
                link_local_address="string",
                link_local_address_variable="string",
            )],
            priority=0,
            priority_variable="string",
            timer=0,
            timer_variable="string",
            track_omp=False,
        )],
        load_interval=0,
        load_interval_variable="string",
        mac_address="string",
        mac_address_variable="string",
        media_type="string",
        media_type_variable="string",
        name="string",
        nat64=False,
        service_lan_vpn_feature_id="string",
        shutdown=False,
        shutdown_variable="string",
        speed="string",
        speed_variable="string",
        static_nats=[sdwan.ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs(
            direction="string",
            source_ip="string",
            source_ip_variable="string",
            source_vpn=0,
            source_vpn_variable="string",
            translate_ip="string",
            translate_ip_variable="string",
        )],
        tcp_mss=0,
        tcp_mss_variable="string",
        tracker="string",
        tracker_variable="string",
        trustsec_enable_enforced_propogation=False,
        trustsec_enable_sgt_propogation=False,
        trustsec_enforced_security_group_tag=0,
        trustsec_enforced_security_group_tag_variable="string",
        trustsec_propogate=False,
        trustsec_security_group_tag=0,
        trustsec_security_group_tag_variable="string",
        xconnect="string",
        xconnect_variable="string")
    
    const serviceLanVpnInterfaceEthernetFeatureResource = new sdwan.ServiceLanVpnInterfaceEthernetFeature("serviceLanVpnInterfaceEthernetFeatureResource", {
        featureProfileId: "string",
        aclIpv4EgressPolicyId: "string",
        aclIpv4IngressPolicyId: "string",
        aclIpv6EgressPolicyId: "string",
        aclIpv6IngressPolicyId: "string",
        aclShapingRate: 0,
        aclShapingRateVariable: "string",
        arpTimeout: 0,
        arpTimeoutVariable: "string",
        arps: [{
            ipAddress: "string",
            ipAddressVariable: "string",
            macAddress: "string",
            macAddressVariable: "string",
        }],
        autonegotiate: false,
        autonegotiateVariable: "string",
        description: "string",
        duplex: "string",
        duplexVariable: "string",
        enableDhcpv6: false,
        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",
        ipv4DhcpDistance: 0,
        ipv4DhcpDistanceVariable: "string",
        ipv4DhcpHelperVariable: "string",
        ipv4DhcpHelpers: ["string"],
        ipv4Nat: false,
        ipv4NatLoopback: "string",
        ipv4NatLoopbackVariable: "string",
        ipv4NatOverload: false,
        ipv4NatOverloadVariable: "string",
        ipv4NatPrefixLength: 0,
        ipv4NatPrefixLengthVariable: "string",
        ipv4NatRangeEnd: "string",
        ipv4NatRangeEndVariable: "string",
        ipv4NatRangeStart: "string",
        ipv4NatRangeStartVariable: "string",
        ipv4NatTcpTimeout: 0,
        ipv4NatTcpTimeoutVariable: "string",
        ipv4NatType: "string",
        ipv4NatTypeVariable: "string",
        ipv4NatUdpTimeout: 0,
        ipv4NatUdpTimeoutVariable: "string",
        ipv4SecondaryAddresses: [{
            address: "string",
            addressVariable: "string",
            subnetMask: "string",
            subnetMaskVariable: "string",
        }],
        ipv4SubnetMask: "string",
        ipv4SubnetMaskVariable: "string",
        ipv4Vrrps: [{
            address: "string",
            addressVariable: "string",
            groupId: 0,
            groupIdVariable: "string",
            priority: 0,
            priorityVariable: "string",
            secondaryAddresses: [{
                address: "string",
                addressVariable: "string",
                subnetMask: "string",
                subnetMaskVariable: "string",
            }],
            timer: 0,
            timerVariable: "string",
            tlocPrefChangeValue: 0,
            tlocPrefixChange: false,
            trackOmp: false,
        }],
        ipv6Address: "string",
        ipv6AddressVariable: "string",
        ipv6DhcpHelpers: [{
            address: "string",
            addressVariable: "string",
            dhcpv6HelperVpn: 0,
            dhcpv6HelperVpnVariable: "string",
        }],
        ipv6DhcpSecondaryAddresses: [{
            address: "string",
            addressVariable: "string",
        }],
        ipv6Nat: false,
        ipv6SecondaryAddresses: [{
            address: "string",
            addressVariable: "string",
        }],
        ipv6Vrrps: [{
            groupId: 0,
            groupIdVariable: "string",
            ipv6Addresses: [{
                globalAddress: "string",
                globalAddressVariable: "string",
                linkLocalAddress: "string",
                linkLocalAddressVariable: "string",
            }],
            priority: 0,
            priorityVariable: "string",
            timer: 0,
            timerVariable: "string",
            trackOmp: false,
        }],
        loadInterval: 0,
        loadIntervalVariable: "string",
        macAddress: "string",
        macAddressVariable: "string",
        mediaType: "string",
        mediaTypeVariable: "string",
        name: "string",
        nat64: false,
        serviceLanVpnFeatureId: "string",
        shutdown: false,
        shutdownVariable: "string",
        speed: "string",
        speedVariable: "string",
        staticNats: [{
            direction: "string",
            sourceIp: "string",
            sourceIpVariable: "string",
            sourceVpn: 0,
            sourceVpnVariable: "string",
            translateIp: "string",
            translateIpVariable: "string",
        }],
        tcpMss: 0,
        tcpMssVariable: "string",
        tracker: "string",
        trackerVariable: "string",
        trustsecEnableEnforcedPropogation: false,
        trustsecEnableSgtPropogation: false,
        trustsecEnforcedSecurityGroupTag: 0,
        trustsecEnforcedSecurityGroupTagVariable: "string",
        trustsecPropogate: false,
        trustsecSecurityGroupTag: 0,
        trustsecSecurityGroupTagVariable: "string",
        xconnect: "string",
        xconnectVariable: "string",
    });
    
    type: sdwan:ServiceLanVpnInterfaceEthernetFeature
    properties:
        aclIpv4EgressPolicyId: string
        aclIpv4IngressPolicyId: string
        aclIpv6EgressPolicyId: string
        aclIpv6IngressPolicyId: string
        aclShapingRate: 0
        aclShapingRateVariable: string
        arpTimeout: 0
        arpTimeoutVariable: string
        arps:
            - ipAddress: string
              ipAddressVariable: string
              macAddress: string
              macAddressVariable: string
        autonegotiate: false
        autonegotiateVariable: string
        description: string
        duplex: string
        duplexVariable: string
        enableDhcpv6: false
        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
        ipv4DhcpDistance: 0
        ipv4DhcpDistanceVariable: string
        ipv4DhcpHelperVariable: string
        ipv4DhcpHelpers:
            - string
        ipv4Nat: false
        ipv4NatLoopback: string
        ipv4NatLoopbackVariable: string
        ipv4NatOverload: false
        ipv4NatOverloadVariable: string
        ipv4NatPrefixLength: 0
        ipv4NatPrefixLengthVariable: string
        ipv4NatRangeEnd: string
        ipv4NatRangeEndVariable: string
        ipv4NatRangeStart: string
        ipv4NatRangeStartVariable: string
        ipv4NatTcpTimeout: 0
        ipv4NatTcpTimeoutVariable: string
        ipv4NatType: string
        ipv4NatTypeVariable: string
        ipv4NatUdpTimeout: 0
        ipv4NatUdpTimeoutVariable: string
        ipv4SecondaryAddresses:
            - address: string
              addressVariable: string
              subnetMask: string
              subnetMaskVariable: string
        ipv4SubnetMask: string
        ipv4SubnetMaskVariable: string
        ipv4Vrrps:
            - address: string
              addressVariable: string
              groupId: 0
              groupIdVariable: string
              priority: 0
              priorityVariable: string
              secondaryAddresses:
                - address: string
                  addressVariable: string
                  subnetMask: string
                  subnetMaskVariable: string
              timer: 0
              timerVariable: string
              tlocPrefChangeValue: 0
              tlocPrefixChange: false
              trackOmp: false
        ipv6Address: string
        ipv6AddressVariable: string
        ipv6DhcpHelpers:
            - address: string
              addressVariable: string
              dhcpv6HelperVpn: 0
              dhcpv6HelperVpnVariable: string
        ipv6DhcpSecondaryAddresses:
            - address: string
              addressVariable: string
        ipv6Nat: false
        ipv6SecondaryAddresses:
            - address: string
              addressVariable: string
        ipv6Vrrps:
            - groupId: 0
              groupIdVariable: string
              ipv6Addresses:
                - globalAddress: string
                  globalAddressVariable: string
                  linkLocalAddress: string
                  linkLocalAddressVariable: string
              priority: 0
              priorityVariable: string
              timer: 0
              timerVariable: string
              trackOmp: false
        loadInterval: 0
        loadIntervalVariable: string
        macAddress: string
        macAddressVariable: string
        mediaType: string
        mediaTypeVariable: string
        name: string
        nat64: false
        serviceLanVpnFeatureId: string
        shutdown: false
        shutdownVariable: string
        speed: string
        speedVariable: string
        staticNats:
            - direction: string
              sourceIp: string
              sourceIpVariable: string
              sourceVpn: 0
              sourceVpnVariable: string
              translateIp: string
              translateIpVariable: string
        tcpMss: 0
        tcpMssVariable: string
        tracker: string
        trackerVariable: string
        trustsecEnableEnforcedPropogation: false
        trustsecEnableSgtPropogation: false
        trustsecEnforcedSecurityGroupTag: 0
        trustsecEnforcedSecurityGroupTagVariable: string
        trustsecPropogate: false
        trustsecSecurityGroupTag: 0
        trustsecSecurityGroupTagVariable: string
        xconnect: string
        xconnectVariable: string
    

    ServiceLanVpnInterfaceEthernetFeature 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 ServiceLanVpnInterfaceEthernetFeature resource accepts the following input properties:

    FeatureProfileId string
    Feature Profile ID
    AclIpv4EgressPolicyId string
    AclIpv4IngressPolicyId string
    AclIpv6EgressPolicyId string
    AclIpv6IngressPolicyId string
    AclShapingRate int
    Shaping Rate (Kbps) - Range: 8-100000000
    AclShapingRateVariable string
    Variable name
    ArpTimeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    ArpTimeoutVariable string
    Variable name
    Arps List<ServiceLanVpnInterfaceEthernetFeatureArp>
    Configure ARP entries
    Autonegotiate bool
    Link autonegotiation
    AutonegotiateVariable string
    Variable name
    Description string
    The description of the Feature
    Duplex string
    Duplex mode - Choices: full, half, auto
    DuplexVariable string
    Variable name
    EnableDhcpv6 bool
    Enable DHCPv6
    IcmpRedirectDisable bool
    ICMP/ICMPv6 Redirect Disable - Default value: true
    IcmpRedirectDisableVariable string
    Variable name
    InterfaceDescription string
    InterfaceDescriptionVariable string
    Variable name
    InterfaceMtu int
    Interface MTU - Range: 1500-9216 - Default value: 1500
    InterfaceMtuVariable string
    Variable name
    InterfaceName string
    InterfaceNameVariable string
    Variable name
    IpDirectedBroadcast bool
    IP Directed-Broadcast - Default value: false
    IpDirectedBroadcastVariable string
    Variable name
    IpMtu int
    IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes - Range: 576-9216 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4Address string
    IP Address
    Ipv4AddressVariable string
    Variable name
    Ipv4DhcpDistance int
    DHCP Distance - Range: 1-65536
    Ipv4DhcpDistanceVariable string
    Variable name
    Ipv4DhcpHelperVariable string
    Variable name
    Ipv4DhcpHelpers List<string>
    List of DHCP IPv4 helper addresses (min 1, max 8)
    Ipv4Nat bool
    enable Network Address Translation on this interface - Default value: false
    Ipv4NatLoopback string
    NAT Inside Source Loopback Interface
    Ipv4NatLoopbackVariable string
    Variable name
    Ipv4NatOverload bool
    NAT Overload - Default value: true
    Ipv4NatOverloadVariable string
    Variable name
    Ipv4NatPrefixLength int
    NAT Pool Prefix Length - Range: 1-32
    Ipv4NatPrefixLengthVariable string
    Variable name
    Ipv4NatRangeEnd string
    NAT Pool Range End
    Ipv4NatRangeEndVariable string
    Variable name
    Ipv4NatRangeStart string
    NAT Pool Range Start
    Ipv4NatRangeStartVariable string
    Variable name
    Ipv4NatTcpTimeout int
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    Ipv4NatTcpTimeoutVariable string
    Variable name
    Ipv4NatType string
    NAT Type - Choices: pool, loopback
    Ipv4NatTypeVariable string
    Variable name
    Ipv4NatUdpTimeout int
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    Ipv4NatUdpTimeoutVariable string
    Variable name
    Ipv4SecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddress>
    Secondary IpV4 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<ServiceLanVpnInterfaceEthernetFeatureIpv4Vrrp>
    Enable VRRP
    Ipv6Address string
    IPv6 Address Secondary
    Ipv6AddressVariable string
    Variable name
    Ipv6DhcpHelpers List<ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelper>
    DHCPv6 Helper
    Ipv6DhcpSecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddress>
    secondary IPv6 addresses
    Ipv6Nat bool
    enable Network Address Translation ipv6 on this interface - Default value: false
    Ipv6SecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddress>
    Static secondary IPv6 addresses
    Ipv6Vrrps List<ServiceLanVpnInterfaceEthernetFeatureIpv6Vrrp>
    Enable VRRP Ipv6
    LoadInterval int
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    LoadIntervalVariable string
    Variable name
    MacAddress string
    MAC Address
    MacAddressVariable string
    Variable name
    MediaType string
    Media type - Choices: auto-select, rj45, sfp
    MediaTypeVariable string
    Variable name
    Name string
    The name of the Feature
    Nat64 bool
    NAT64 on this interface - Default value: false
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    • Default value: true
    ShutdownVariable string
    Variable name
    Speed string
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    SpeedVariable string
    Variable name
    StaticNats List<ServiceLanVpnInterfaceEthernetFeatureStaticNat>
    static NAT
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssVariable string
    Variable name
    Tracker string
    Enable tracker for this interface
    TrackerVariable string
    Variable name
    TrustsecEnableEnforcedPropogation bool
    Enable/Disable SGT Enforcement on an interface
    TrustsecEnableSgtPropogation bool
    Indicates that the interface is trustworthy for CTS - Default value: false
    TrustsecEnforcedSecurityGroupTag int
    SGT value between 2 and 65519 - Range: 2-65519
    TrustsecEnforcedSecurityGroupTagVariable string
    Variable name
    TrustsecPropogate bool
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    TrustsecSecurityGroupTag int
    SGT value between 2 and 65519 - Range: 2-65519
    TrustsecSecurityGroupTagVariable string
    Variable name
    Xconnect string
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    XconnectVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    AclIpv4EgressPolicyId string
    AclIpv4IngressPolicyId string
    AclIpv6EgressPolicyId string
    AclIpv6IngressPolicyId string
    AclShapingRate int
    Shaping Rate (Kbps) - Range: 8-100000000
    AclShapingRateVariable string
    Variable name
    ArpTimeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    ArpTimeoutVariable string
    Variable name
    Arps []ServiceLanVpnInterfaceEthernetFeatureArpArgs
    Configure ARP entries
    Autonegotiate bool
    Link autonegotiation
    AutonegotiateVariable string
    Variable name
    Description string
    The description of the Feature
    Duplex string
    Duplex mode - Choices: full, half, auto
    DuplexVariable string
    Variable name
    EnableDhcpv6 bool
    Enable DHCPv6
    IcmpRedirectDisable bool
    ICMP/ICMPv6 Redirect Disable - Default value: true
    IcmpRedirectDisableVariable string
    Variable name
    InterfaceDescription string
    InterfaceDescriptionVariable string
    Variable name
    InterfaceMtu int
    Interface MTU - Range: 1500-9216 - Default value: 1500
    InterfaceMtuVariable string
    Variable name
    InterfaceName string
    InterfaceNameVariable string
    Variable name
    IpDirectedBroadcast bool
    IP Directed-Broadcast - Default value: false
    IpDirectedBroadcastVariable string
    Variable name
    IpMtu int
    IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes - Range: 576-9216 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4Address string
    IP Address
    Ipv4AddressVariable string
    Variable name
    Ipv4DhcpDistance int
    DHCP Distance - Range: 1-65536
    Ipv4DhcpDistanceVariable string
    Variable name
    Ipv4DhcpHelperVariable string
    Variable name
    Ipv4DhcpHelpers []string
    List of DHCP IPv4 helper addresses (min 1, max 8)
    Ipv4Nat bool
    enable Network Address Translation on this interface - Default value: false
    Ipv4NatLoopback string
    NAT Inside Source Loopback Interface
    Ipv4NatLoopbackVariable string
    Variable name
    Ipv4NatOverload bool
    NAT Overload - Default value: true
    Ipv4NatOverloadVariable string
    Variable name
    Ipv4NatPrefixLength int
    NAT Pool Prefix Length - Range: 1-32
    Ipv4NatPrefixLengthVariable string
    Variable name
    Ipv4NatRangeEnd string
    NAT Pool Range End
    Ipv4NatRangeEndVariable string
    Variable name
    Ipv4NatRangeStart string
    NAT Pool Range Start
    Ipv4NatRangeStartVariable string
    Variable name
    Ipv4NatTcpTimeout int
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    Ipv4NatTcpTimeoutVariable string
    Variable name
    Ipv4NatType string
    NAT Type - Choices: pool, loopback
    Ipv4NatTypeVariable string
    Variable name
    Ipv4NatUdpTimeout int
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    Ipv4NatUdpTimeoutVariable string
    Variable name
    Ipv4SecondaryAddresses []ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs
    Secondary IpV4 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 []ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs
    Enable VRRP
    Ipv6Address string
    IPv6 Address Secondary
    Ipv6AddressVariable string
    Variable name
    Ipv6DhcpHelpers []ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs
    DHCPv6 Helper
    Ipv6DhcpSecondaryAddresses []ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs
    secondary IPv6 addresses
    Ipv6Nat bool
    enable Network Address Translation ipv6 on this interface - Default value: false
    Ipv6SecondaryAddresses []ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs
    Static secondary IPv6 addresses
    Ipv6Vrrps []ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs
    Enable VRRP Ipv6
    LoadInterval int
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    LoadIntervalVariable string
    Variable name
    MacAddress string
    MAC Address
    MacAddressVariable string
    Variable name
    MediaType string
    Media type - Choices: auto-select, rj45, sfp
    MediaTypeVariable string
    Variable name
    Name string
    The name of the Feature
    Nat64 bool
    NAT64 on this interface - Default value: false
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    • Default value: true
    ShutdownVariable string
    Variable name
    Speed string
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    SpeedVariable string
    Variable name
    StaticNats []ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs
    static NAT
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssVariable string
    Variable name
    Tracker string
    Enable tracker for this interface
    TrackerVariable string
    Variable name
    TrustsecEnableEnforcedPropogation bool
    Enable/Disable SGT Enforcement on an interface
    TrustsecEnableSgtPropogation bool
    Indicates that the interface is trustworthy for CTS - Default value: false
    TrustsecEnforcedSecurityGroupTag int
    SGT value between 2 and 65519 - Range: 2-65519
    TrustsecEnforcedSecurityGroupTagVariable string
    Variable name
    TrustsecPropogate bool
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    TrustsecSecurityGroupTag int
    SGT value between 2 and 65519 - Range: 2-65519
    TrustsecSecurityGroupTagVariable string
    Variable name
    Xconnect string
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    XconnectVariable string
    Variable name
    featureProfileId String
    Feature Profile ID
    aclIpv4EgressPolicyId String
    aclIpv4IngressPolicyId String
    aclIpv6EgressPolicyId String
    aclIpv6IngressPolicyId String
    aclShapingRate Integer
    Shaping Rate (Kbps) - Range: 8-100000000
    aclShapingRateVariable String
    Variable name
    arpTimeout Integer
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    arpTimeoutVariable String
    Variable name
    arps List<ServiceLanVpnInterfaceEthernetFeatureArp>
    Configure ARP entries
    autonegotiate Boolean
    Link autonegotiation
    autonegotiateVariable String
    Variable name
    description String
    The description of the Feature
    duplex String
    Duplex mode - Choices: full, half, auto
    duplexVariable String
    Variable name
    enableDhcpv6 Boolean
    Enable DHCPv6
    icmpRedirectDisable Boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable String
    Variable name
    interfaceDescription String
    interfaceDescriptionVariable String
    Variable name
    interfaceMtu Integer
    Interface MTU - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable String
    Variable name
    interfaceName String
    interfaceNameVariable String
    Variable name
    ipDirectedBroadcast Boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable String
    Variable name
    ipMtu Integer
    IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes - Range: 576-9216 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4Address String
    IP Address
    ipv4AddressVariable String
    Variable name
    ipv4DhcpDistance Integer
    DHCP Distance - Range: 1-65536
    ipv4DhcpDistanceVariable String
    Variable name
    ipv4DhcpHelperVariable String
    Variable name
    ipv4DhcpHelpers List<String>
    List of DHCP IPv4 helper addresses (min 1, max 8)
    ipv4Nat Boolean
    enable Network Address Translation on this interface - Default value: false
    ipv4NatLoopback String
    NAT Inside Source Loopback Interface
    ipv4NatLoopbackVariable String
    Variable name
    ipv4NatOverload Boolean
    NAT Overload - Default value: true
    ipv4NatOverloadVariable String
    Variable name
    ipv4NatPrefixLength Integer
    NAT Pool Prefix Length - Range: 1-32
    ipv4NatPrefixLengthVariable String
    Variable name
    ipv4NatRangeEnd String
    NAT Pool Range End
    ipv4NatRangeEndVariable String
    Variable name
    ipv4NatRangeStart String
    NAT Pool Range Start
    ipv4NatRangeStartVariable String
    Variable name
    ipv4NatTcpTimeout Integer
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    ipv4NatTcpTimeoutVariable String
    Variable name
    ipv4NatType String
    NAT Type - Choices: pool, loopback
    ipv4NatTypeVariable String
    Variable name
    ipv4NatUdpTimeout Integer
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    ipv4NatUdpTimeoutVariable String
    Variable name
    ipv4SecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddress>
    Secondary IpV4 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<ServiceLanVpnInterfaceEthernetFeatureIpv4Vrrp>
    Enable VRRP
    ipv6Address String
    IPv6 Address Secondary
    ipv6AddressVariable String
    Variable name
    ipv6DhcpHelpers List<ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelper>
    DHCPv6 Helper
    ipv6DhcpSecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddress>
    secondary IPv6 addresses
    ipv6Nat Boolean
    enable Network Address Translation ipv6 on this interface - Default value: false
    ipv6SecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddress>
    Static secondary IPv6 addresses
    ipv6Vrrps List<ServiceLanVpnInterfaceEthernetFeatureIpv6Vrrp>
    Enable VRRP Ipv6
    loadInterval Integer
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    loadIntervalVariable String
    Variable name
    macAddress String
    MAC Address
    macAddressVariable String
    Variable name
    mediaType String
    Media type - Choices: auto-select, rj45, sfp
    mediaTypeVariable String
    Variable name
    name String
    The name of the Feature
    nat64 Boolean
    NAT64 on this interface - Default value: false
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    shutdown Boolean
    • Default value: true
    shutdownVariable String
    Variable name
    speed String
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    speedVariable String
    Variable name
    staticNats List<ServiceLanVpnInterfaceEthernetFeatureStaticNat>
    static NAT
    tcpMss Integer
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable String
    Variable name
    tracker String
    Enable tracker for this interface
    trackerVariable String
    Variable name
    trustsecEnableEnforcedPropogation Boolean
    Enable/Disable SGT Enforcement on an interface
    trustsecEnableSgtPropogation Boolean
    Indicates that the interface is trustworthy for CTS - Default value: false
    trustsecEnforcedSecurityGroupTag Integer
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecEnforcedSecurityGroupTagVariable String
    Variable name
    trustsecPropogate Boolean
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    trustsecSecurityGroupTag Integer
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecSecurityGroupTagVariable String
    Variable name
    xconnect String
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    xconnectVariable String
    Variable name
    featureProfileId string
    Feature Profile ID
    aclIpv4EgressPolicyId string
    aclIpv4IngressPolicyId string
    aclIpv6EgressPolicyId string
    aclIpv6IngressPolicyId string
    aclShapingRate number
    Shaping Rate (Kbps) - Range: 8-100000000
    aclShapingRateVariable string
    Variable name
    arpTimeout number
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    arpTimeoutVariable string
    Variable name
    arps ServiceLanVpnInterfaceEthernetFeatureArp[]
    Configure ARP entries
    autonegotiate boolean
    Link autonegotiation
    autonegotiateVariable string
    Variable name
    description string
    The description of the Feature
    duplex string
    Duplex mode - Choices: full, half, auto
    duplexVariable string
    Variable name
    enableDhcpv6 boolean
    Enable DHCPv6
    icmpRedirectDisable boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable string
    Variable name
    interfaceDescription string
    interfaceDescriptionVariable string
    Variable name
    interfaceMtu number
    Interface MTU - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable string
    Variable name
    interfaceName string
    interfaceNameVariable string
    Variable name
    ipDirectedBroadcast boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable string
    Variable name
    ipMtu number
    IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes - Range: 576-9216 - Default value: 1500
    ipMtuVariable string
    Variable name
    ipv4Address string
    IP Address
    ipv4AddressVariable string
    Variable name
    ipv4DhcpDistance number
    DHCP Distance - Range: 1-65536
    ipv4DhcpDistanceVariable string
    Variable name
    ipv4DhcpHelperVariable string
    Variable name
    ipv4DhcpHelpers string[]
    List of DHCP IPv4 helper addresses (min 1, max 8)
    ipv4Nat boolean
    enable Network Address Translation on this interface - Default value: false
    ipv4NatLoopback string
    NAT Inside Source Loopback Interface
    ipv4NatLoopbackVariable string
    Variable name
    ipv4NatOverload boolean
    NAT Overload - Default value: true
    ipv4NatOverloadVariable string
    Variable name
    ipv4NatPrefixLength number
    NAT Pool Prefix Length - Range: 1-32
    ipv4NatPrefixLengthVariable string
    Variable name
    ipv4NatRangeEnd string
    NAT Pool Range End
    ipv4NatRangeEndVariable string
    Variable name
    ipv4NatRangeStart string
    NAT Pool Range Start
    ipv4NatRangeStartVariable string
    Variable name
    ipv4NatTcpTimeout number
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    ipv4NatTcpTimeoutVariable string
    Variable name
    ipv4NatType string
    NAT Type - Choices: pool, loopback
    ipv4NatTypeVariable string
    Variable name
    ipv4NatUdpTimeout number
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    ipv4NatUdpTimeoutVariable string
    Variable name
    ipv4SecondaryAddresses ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddress[]
    Secondary IpV4 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 ServiceLanVpnInterfaceEthernetFeatureIpv4Vrrp[]
    Enable VRRP
    ipv6Address string
    IPv6 Address Secondary
    ipv6AddressVariable string
    Variable name
    ipv6DhcpHelpers ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelper[]
    DHCPv6 Helper
    ipv6DhcpSecondaryAddresses ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddress[]
    secondary IPv6 addresses
    ipv6Nat boolean
    enable Network Address Translation ipv6 on this interface - Default value: false
    ipv6SecondaryAddresses ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddress[]
    Static secondary IPv6 addresses
    ipv6Vrrps ServiceLanVpnInterfaceEthernetFeatureIpv6Vrrp[]
    Enable VRRP Ipv6
    loadInterval number
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    loadIntervalVariable string
    Variable name
    macAddress string
    MAC Address
    macAddressVariable string
    Variable name
    mediaType string
    Media type - Choices: auto-select, rj45, sfp
    mediaTypeVariable string
    Variable name
    name string
    The name of the Feature
    nat64 boolean
    NAT64 on this interface - Default value: false
    serviceLanVpnFeatureId string
    Service LAN VPN Feature ID
    shutdown boolean
    • Default value: true
    shutdownVariable string
    Variable name
    speed string
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    speedVariable string
    Variable name
    staticNats ServiceLanVpnInterfaceEthernetFeatureStaticNat[]
    static NAT
    tcpMss number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable string
    Variable name
    tracker string
    Enable tracker for this interface
    trackerVariable string
    Variable name
    trustsecEnableEnforcedPropogation boolean
    Enable/Disable SGT Enforcement on an interface
    trustsecEnableSgtPropogation boolean
    Indicates that the interface is trustworthy for CTS - Default value: false
    trustsecEnforcedSecurityGroupTag number
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecEnforcedSecurityGroupTagVariable string
    Variable name
    trustsecPropogate boolean
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    trustsecSecurityGroupTag number
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecSecurityGroupTagVariable string
    Variable name
    xconnect string
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    xconnectVariable string
    Variable name
    feature_profile_id str
    Feature Profile ID
    acl_ipv4_egress_policy_id str
    acl_ipv4_ingress_policy_id str
    acl_ipv6_egress_policy_id str
    acl_ipv6_ingress_policy_id str
    acl_shaping_rate int
    Shaping Rate (Kbps) - Range: 8-100000000
    acl_shaping_rate_variable str
    Variable name
    arp_timeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    arp_timeout_variable str
    Variable name
    arps Sequence[ServiceLanVpnInterfaceEthernetFeatureArpArgs]
    Configure ARP entries
    autonegotiate bool
    Link autonegotiation
    autonegotiate_variable str
    Variable name
    description str
    The description of the Feature
    duplex str
    Duplex mode - Choices: full, half, auto
    duplex_variable str
    Variable name
    enable_dhcpv6 bool
    Enable DHCPv6
    icmp_redirect_disable bool
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmp_redirect_disable_variable str
    Variable name
    interface_description str
    interface_description_variable str
    Variable name
    interface_mtu int
    Interface MTU - Range: 1500-9216 - Default value: 1500
    interface_mtu_variable str
    Variable name
    interface_name str
    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 for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> 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_distance int
    DHCP Distance - Range: 1-65536
    ipv4_dhcp_distance_variable str
    Variable name
    ipv4_dhcp_helper_variable str
    Variable name
    ipv4_dhcp_helpers Sequence[str]
    List of DHCP IPv4 helper addresses (min 1, max 8)
    ipv4_nat bool
    enable Network Address Translation on this interface - Default value: false
    ipv4_nat_loopback str
    NAT Inside Source Loopback Interface
    ipv4_nat_loopback_variable str
    Variable name
    ipv4_nat_overload bool
    NAT Overload - Default value: true
    ipv4_nat_overload_variable str
    Variable name
    ipv4_nat_prefix_length int
    NAT Pool Prefix Length - Range: 1-32
    ipv4_nat_prefix_length_variable str
    Variable name
    ipv4_nat_range_end str
    NAT Pool Range End
    ipv4_nat_range_end_variable str
    Variable name
    ipv4_nat_range_start str
    NAT Pool Range Start
    ipv4_nat_range_start_variable str
    Variable name
    ipv4_nat_tcp_timeout int
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    ipv4_nat_tcp_timeout_variable str
    Variable name
    ipv4_nat_type str
    NAT Type - Choices: pool, loopback
    ipv4_nat_type_variable str
    Variable name
    ipv4_nat_udp_timeout int
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    ipv4_nat_udp_timeout_variable str
    Variable name
    ipv4_secondary_addresses Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs]
    Secondary IpV4 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[ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs]
    Enable VRRP
    ipv6_address str
    IPv6 Address Secondary
    ipv6_address_variable str
    Variable name
    ipv6_dhcp_helpers Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs]
    DHCPv6 Helper
    ipv6_dhcp_secondary_addresses Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs]
    secondary IPv6 addresses
    ipv6_nat bool
    enable Network Address Translation ipv6 on this interface - Default value: false
    ipv6_secondary_addresses Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs]
    Static secondary IPv6 addresses
    ipv6_vrrps Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs]
    Enable VRRP Ipv6
    load_interval int
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    load_interval_variable str
    Variable name
    mac_address str
    MAC Address
    mac_address_variable str
    Variable name
    media_type str
    Media type - Choices: auto-select, rj45, sfp
    media_type_variable str
    Variable name
    name str
    The name of the Feature
    nat64 bool
    NAT64 on this interface - Default value: false
    service_lan_vpn_feature_id str
    Service LAN VPN Feature ID
    shutdown bool
    • Default value: true
    shutdown_variable str
    Variable name
    speed str
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    speed_variable str
    Variable name
    static_nats Sequence[ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs]
    static NAT
    tcp_mss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcp_mss_variable str
    Variable name
    tracker str
    Enable tracker for this interface
    tracker_variable str
    Variable name
    trustsec_enable_enforced_propogation bool
    Enable/Disable SGT Enforcement on an interface
    trustsec_enable_sgt_propogation bool
    Indicates that the interface is trustworthy for CTS - Default value: false
    trustsec_enforced_security_group_tag int
    SGT value between 2 and 65519 - Range: 2-65519
    trustsec_enforced_security_group_tag_variable str
    Variable name
    trustsec_propogate bool
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    trustsec_security_group_tag int
    SGT value between 2 and 65519 - Range: 2-65519
    trustsec_security_group_tag_variable str
    Variable name
    xconnect str
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    xconnect_variable str
    Variable name
    featureProfileId String
    Feature Profile ID
    aclIpv4EgressPolicyId String
    aclIpv4IngressPolicyId String
    aclIpv6EgressPolicyId String
    aclIpv6IngressPolicyId String
    aclShapingRate Number
    Shaping Rate (Kbps) - Range: 8-100000000
    aclShapingRateVariable String
    Variable name
    arpTimeout Number
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    arpTimeoutVariable String
    Variable name
    arps List<Property Map>
    Configure ARP entries
    autonegotiate Boolean
    Link autonegotiation
    autonegotiateVariable String
    Variable name
    description String
    The description of the Feature
    duplex String
    Duplex mode - Choices: full, half, auto
    duplexVariable String
    Variable name
    enableDhcpv6 Boolean
    Enable DHCPv6
    icmpRedirectDisable Boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable String
    Variable name
    interfaceDescription String
    interfaceDescriptionVariable String
    Variable name
    interfaceMtu Number
    Interface MTU - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable String
    Variable name
    interfaceName String
    interfaceNameVariable String
    Variable name
    ipDirectedBroadcast Boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable String
    Variable name
    ipMtu Number
    IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes - Range: 576-9216 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4Address String
    IP Address
    ipv4AddressVariable String
    Variable name
    ipv4DhcpDistance Number
    DHCP Distance - Range: 1-65536
    ipv4DhcpDistanceVariable String
    Variable name
    ipv4DhcpHelperVariable String
    Variable name
    ipv4DhcpHelpers List<String>
    List of DHCP IPv4 helper addresses (min 1, max 8)
    ipv4Nat Boolean
    enable Network Address Translation on this interface - Default value: false
    ipv4NatLoopback String
    NAT Inside Source Loopback Interface
    ipv4NatLoopbackVariable String
    Variable name
    ipv4NatOverload Boolean
    NAT Overload - Default value: true
    ipv4NatOverloadVariable String
    Variable name
    ipv4NatPrefixLength Number
    NAT Pool Prefix Length - Range: 1-32
    ipv4NatPrefixLengthVariable String
    Variable name
    ipv4NatRangeEnd String
    NAT Pool Range End
    ipv4NatRangeEndVariable String
    Variable name
    ipv4NatRangeStart String
    NAT Pool Range Start
    ipv4NatRangeStartVariable String
    Variable name
    ipv4NatTcpTimeout Number
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    ipv4NatTcpTimeoutVariable String
    Variable name
    ipv4NatType String
    NAT Type - Choices: pool, loopback
    ipv4NatTypeVariable String
    Variable name
    ipv4NatUdpTimeout Number
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    ipv4NatUdpTimeoutVariable String
    Variable name
    ipv4SecondaryAddresses List<Property Map>
    Secondary IpV4 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 VRRP
    ipv6Address String
    IPv6 Address Secondary
    ipv6AddressVariable String
    Variable name
    ipv6DhcpHelpers List<Property Map>
    DHCPv6 Helper
    ipv6DhcpSecondaryAddresses List<Property Map>
    secondary IPv6 addresses
    ipv6Nat Boolean
    enable Network Address Translation ipv6 on this interface - Default value: false
    ipv6SecondaryAddresses List<Property Map>
    Static secondary IPv6 addresses
    ipv6Vrrps List<Property Map>
    Enable VRRP Ipv6
    loadInterval Number
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    loadIntervalVariable String
    Variable name
    macAddress String
    MAC Address
    macAddressVariable String
    Variable name
    mediaType String
    Media type - Choices: auto-select, rj45, sfp
    mediaTypeVariable String
    Variable name
    name String
    The name of the Feature
    nat64 Boolean
    NAT64 on this interface - Default value: false
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    shutdown Boolean
    • Default value: true
    shutdownVariable String
    Variable name
    speed String
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    speedVariable String
    Variable name
    staticNats List<Property Map>
    static NAT
    tcpMss Number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable String
    Variable name
    tracker String
    Enable tracker for this interface
    trackerVariable String
    Variable name
    trustsecEnableEnforcedPropogation Boolean
    Enable/Disable SGT Enforcement on an interface
    trustsecEnableSgtPropogation Boolean
    Indicates that the interface is trustworthy for CTS - Default value: false
    trustsecEnforcedSecurityGroupTag Number
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecEnforcedSecurityGroupTagVariable String
    Variable name
    trustsecPropogate Boolean
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    trustsecSecurityGroupTag Number
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecSecurityGroupTagVariable String
    Variable name
    xconnect String
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    xconnectVariable String
    Variable name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServiceLanVpnInterfaceEthernetFeature 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 ServiceLanVpnInterfaceEthernetFeature Resource

    Get an existing ServiceLanVpnInterfaceEthernetFeature 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?: ServiceLanVpnInterfaceEthernetFeatureState, opts?: CustomResourceOptions): ServiceLanVpnInterfaceEthernetFeature
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            acl_ipv4_egress_policy_id: Optional[str] = None,
            acl_ipv4_ingress_policy_id: Optional[str] = None,
            acl_ipv6_egress_policy_id: Optional[str] = None,
            acl_ipv6_ingress_policy_id: Optional[str] = None,
            acl_shaping_rate: Optional[int] = None,
            acl_shaping_rate_variable: Optional[str] = None,
            arp_timeout: Optional[int] = None,
            arp_timeout_variable: Optional[str] = None,
            arps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureArpArgs]] = None,
            autonegotiate: Optional[bool] = None,
            autonegotiate_variable: Optional[str] = None,
            description: Optional[str] = None,
            duplex: Optional[str] = None,
            duplex_variable: Optional[str] = None,
            enable_dhcpv6: Optional[bool] = 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_distance: Optional[int] = None,
            ipv4_dhcp_distance_variable: Optional[str] = None,
            ipv4_dhcp_helper_variable: Optional[str] = None,
            ipv4_dhcp_helpers: Optional[Sequence[str]] = None,
            ipv4_nat: Optional[bool] = None,
            ipv4_nat_loopback: Optional[str] = None,
            ipv4_nat_loopback_variable: Optional[str] = None,
            ipv4_nat_overload: Optional[bool] = None,
            ipv4_nat_overload_variable: Optional[str] = None,
            ipv4_nat_prefix_length: Optional[int] = None,
            ipv4_nat_prefix_length_variable: Optional[str] = None,
            ipv4_nat_range_end: Optional[str] = None,
            ipv4_nat_range_end_variable: Optional[str] = None,
            ipv4_nat_range_start: Optional[str] = None,
            ipv4_nat_range_start_variable: Optional[str] = None,
            ipv4_nat_tcp_timeout: Optional[int] = None,
            ipv4_nat_tcp_timeout_variable: Optional[str] = None,
            ipv4_nat_type: Optional[str] = None,
            ipv4_nat_type_variable: Optional[str] = None,
            ipv4_nat_udp_timeout: Optional[int] = None,
            ipv4_nat_udp_timeout_variable: Optional[str] = None,
            ipv4_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs]] = None,
            ipv4_subnet_mask: Optional[str] = None,
            ipv4_subnet_mask_variable: Optional[str] = None,
            ipv4_vrrps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs]] = None,
            ipv6_address: Optional[str] = None,
            ipv6_address_variable: Optional[str] = None,
            ipv6_dhcp_helpers: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs]] = None,
            ipv6_dhcp_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs]] = None,
            ipv6_nat: Optional[bool] = None,
            ipv6_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs]] = None,
            ipv6_vrrps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs]] = None,
            load_interval: Optional[int] = None,
            load_interval_variable: Optional[str] = None,
            mac_address: Optional[str] = None,
            mac_address_variable: Optional[str] = None,
            media_type: Optional[str] = None,
            media_type_variable: Optional[str] = None,
            name: Optional[str] = None,
            nat64: Optional[bool] = None,
            service_lan_vpn_feature_id: Optional[str] = None,
            shutdown: Optional[bool] = None,
            shutdown_variable: Optional[str] = None,
            speed: Optional[str] = None,
            speed_variable: Optional[str] = None,
            static_nats: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs]] = None,
            tcp_mss: Optional[int] = None,
            tcp_mss_variable: Optional[str] = None,
            tracker: Optional[str] = None,
            tracker_variable: Optional[str] = None,
            trustsec_enable_enforced_propogation: Optional[bool] = None,
            trustsec_enable_sgt_propogation: Optional[bool] = None,
            trustsec_enforced_security_group_tag: Optional[int] = None,
            trustsec_enforced_security_group_tag_variable: Optional[str] = None,
            trustsec_propogate: Optional[bool] = None,
            trustsec_security_group_tag: Optional[int] = None,
            trustsec_security_group_tag_variable: Optional[str] = None,
            version: Optional[int] = None,
            xconnect: Optional[str] = None,
            xconnect_variable: Optional[str] = None) -> ServiceLanVpnInterfaceEthernetFeature
    func GetServiceLanVpnInterfaceEthernetFeature(ctx *Context, name string, id IDInput, state *ServiceLanVpnInterfaceEthernetFeatureState, opts ...ResourceOption) (*ServiceLanVpnInterfaceEthernetFeature, error)
    public static ServiceLanVpnInterfaceEthernetFeature Get(string name, Input<string> id, ServiceLanVpnInterfaceEthernetFeatureState? state, CustomResourceOptions? opts = null)
    public static ServiceLanVpnInterfaceEthernetFeature get(String name, Output<String> id, ServiceLanVpnInterfaceEthernetFeatureState 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:
    AclIpv4EgressPolicyId string
    AclIpv4IngressPolicyId string
    AclIpv6EgressPolicyId string
    AclIpv6IngressPolicyId string
    AclShapingRate int
    Shaping Rate (Kbps) - Range: 8-100000000
    AclShapingRateVariable string
    Variable name
    ArpTimeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    ArpTimeoutVariable string
    Variable name
    Arps List<ServiceLanVpnInterfaceEthernetFeatureArp>
    Configure ARP entries
    Autonegotiate bool
    Link autonegotiation
    AutonegotiateVariable string
    Variable name
    Description string
    The description of the Feature
    Duplex string
    Duplex mode - Choices: full, half, auto
    DuplexVariable string
    Variable name
    EnableDhcpv6 bool
    Enable DHCPv6
    FeatureProfileId string
    Feature Profile ID
    IcmpRedirectDisable bool
    ICMP/ICMPv6 Redirect Disable - Default value: true
    IcmpRedirectDisableVariable string
    Variable name
    InterfaceDescription string
    InterfaceDescriptionVariable string
    Variable name
    InterfaceMtu int
    Interface MTU - Range: 1500-9216 - Default value: 1500
    InterfaceMtuVariable string
    Variable name
    InterfaceName string
    InterfaceNameVariable string
    Variable name
    IpDirectedBroadcast bool
    IP Directed-Broadcast - Default value: false
    IpDirectedBroadcastVariable string
    Variable name
    IpMtu int
    IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes - Range: 576-9216 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4Address string
    IP Address
    Ipv4AddressVariable string
    Variable name
    Ipv4DhcpDistance int
    DHCP Distance - Range: 1-65536
    Ipv4DhcpDistanceVariable string
    Variable name
    Ipv4DhcpHelperVariable string
    Variable name
    Ipv4DhcpHelpers List<string>
    List of DHCP IPv4 helper addresses (min 1, max 8)
    Ipv4Nat bool
    enable Network Address Translation on this interface - Default value: false
    Ipv4NatLoopback string
    NAT Inside Source Loopback Interface
    Ipv4NatLoopbackVariable string
    Variable name
    Ipv4NatOverload bool
    NAT Overload - Default value: true
    Ipv4NatOverloadVariable string
    Variable name
    Ipv4NatPrefixLength int
    NAT Pool Prefix Length - Range: 1-32
    Ipv4NatPrefixLengthVariable string
    Variable name
    Ipv4NatRangeEnd string
    NAT Pool Range End
    Ipv4NatRangeEndVariable string
    Variable name
    Ipv4NatRangeStart string
    NAT Pool Range Start
    Ipv4NatRangeStartVariable string
    Variable name
    Ipv4NatTcpTimeout int
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    Ipv4NatTcpTimeoutVariable string
    Variable name
    Ipv4NatType string
    NAT Type - Choices: pool, loopback
    Ipv4NatTypeVariable string
    Variable name
    Ipv4NatUdpTimeout int
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    Ipv4NatUdpTimeoutVariable string
    Variable name
    Ipv4SecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddress>
    Secondary IpV4 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<ServiceLanVpnInterfaceEthernetFeatureIpv4Vrrp>
    Enable VRRP
    Ipv6Address string
    IPv6 Address Secondary
    Ipv6AddressVariable string
    Variable name
    Ipv6DhcpHelpers List<ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelper>
    DHCPv6 Helper
    Ipv6DhcpSecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddress>
    secondary IPv6 addresses
    Ipv6Nat bool
    enable Network Address Translation ipv6 on this interface - Default value: false
    Ipv6SecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddress>
    Static secondary IPv6 addresses
    Ipv6Vrrps List<ServiceLanVpnInterfaceEthernetFeatureIpv6Vrrp>
    Enable VRRP Ipv6
    LoadInterval int
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    LoadIntervalVariable string
    Variable name
    MacAddress string
    MAC Address
    MacAddressVariable string
    Variable name
    MediaType string
    Media type - Choices: auto-select, rj45, sfp
    MediaTypeVariable string
    Variable name
    Name string
    The name of the Feature
    Nat64 bool
    NAT64 on this interface - Default value: false
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    • Default value: true
    ShutdownVariable string
    Variable name
    Speed string
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    SpeedVariable string
    Variable name
    StaticNats List<ServiceLanVpnInterfaceEthernetFeatureStaticNat>
    static NAT
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssVariable string
    Variable name
    Tracker string
    Enable tracker for this interface
    TrackerVariable string
    Variable name
    TrustsecEnableEnforcedPropogation bool
    Enable/Disable SGT Enforcement on an interface
    TrustsecEnableSgtPropogation bool
    Indicates that the interface is trustworthy for CTS - Default value: false
    TrustsecEnforcedSecurityGroupTag int
    SGT value between 2 and 65519 - Range: 2-65519
    TrustsecEnforcedSecurityGroupTagVariable string
    Variable name
    TrustsecPropogate bool
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    TrustsecSecurityGroupTag int
    SGT value between 2 and 65519 - Range: 2-65519
    TrustsecSecurityGroupTagVariable string
    Variable name
    Version int
    The version of the Feature
    Xconnect string
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    XconnectVariable string
    Variable name
    AclIpv4EgressPolicyId string
    AclIpv4IngressPolicyId string
    AclIpv6EgressPolicyId string
    AclIpv6IngressPolicyId string
    AclShapingRate int
    Shaping Rate (Kbps) - Range: 8-100000000
    AclShapingRateVariable string
    Variable name
    ArpTimeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    ArpTimeoutVariable string
    Variable name
    Arps []ServiceLanVpnInterfaceEthernetFeatureArpArgs
    Configure ARP entries
    Autonegotiate bool
    Link autonegotiation
    AutonegotiateVariable string
    Variable name
    Description string
    The description of the Feature
    Duplex string
    Duplex mode - Choices: full, half, auto
    DuplexVariable string
    Variable name
    EnableDhcpv6 bool
    Enable DHCPv6
    FeatureProfileId string
    Feature Profile ID
    IcmpRedirectDisable bool
    ICMP/ICMPv6 Redirect Disable - Default value: true
    IcmpRedirectDisableVariable string
    Variable name
    InterfaceDescription string
    InterfaceDescriptionVariable string
    Variable name
    InterfaceMtu int
    Interface MTU - Range: 1500-9216 - Default value: 1500
    InterfaceMtuVariable string
    Variable name
    InterfaceName string
    InterfaceNameVariable string
    Variable name
    IpDirectedBroadcast bool
    IP Directed-Broadcast - Default value: false
    IpDirectedBroadcastVariable string
    Variable name
    IpMtu int
    IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes - Range: 576-9216 - Default value: 1500
    IpMtuVariable string
    Variable name
    Ipv4Address string
    IP Address
    Ipv4AddressVariable string
    Variable name
    Ipv4DhcpDistance int
    DHCP Distance - Range: 1-65536
    Ipv4DhcpDistanceVariable string
    Variable name
    Ipv4DhcpHelperVariable string
    Variable name
    Ipv4DhcpHelpers []string
    List of DHCP IPv4 helper addresses (min 1, max 8)
    Ipv4Nat bool
    enable Network Address Translation on this interface - Default value: false
    Ipv4NatLoopback string
    NAT Inside Source Loopback Interface
    Ipv4NatLoopbackVariable string
    Variable name
    Ipv4NatOverload bool
    NAT Overload - Default value: true
    Ipv4NatOverloadVariable string
    Variable name
    Ipv4NatPrefixLength int
    NAT Pool Prefix Length - Range: 1-32
    Ipv4NatPrefixLengthVariable string
    Variable name
    Ipv4NatRangeEnd string
    NAT Pool Range End
    Ipv4NatRangeEndVariable string
    Variable name
    Ipv4NatRangeStart string
    NAT Pool Range Start
    Ipv4NatRangeStartVariable string
    Variable name
    Ipv4NatTcpTimeout int
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    Ipv4NatTcpTimeoutVariable string
    Variable name
    Ipv4NatType string
    NAT Type - Choices: pool, loopback
    Ipv4NatTypeVariable string
    Variable name
    Ipv4NatUdpTimeout int
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    Ipv4NatUdpTimeoutVariable string
    Variable name
    Ipv4SecondaryAddresses []ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs
    Secondary IpV4 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 []ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs
    Enable VRRP
    Ipv6Address string
    IPv6 Address Secondary
    Ipv6AddressVariable string
    Variable name
    Ipv6DhcpHelpers []ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs
    DHCPv6 Helper
    Ipv6DhcpSecondaryAddresses []ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs
    secondary IPv6 addresses
    Ipv6Nat bool
    enable Network Address Translation ipv6 on this interface - Default value: false
    Ipv6SecondaryAddresses []ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs
    Static secondary IPv6 addresses
    Ipv6Vrrps []ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs
    Enable VRRP Ipv6
    LoadInterval int
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    LoadIntervalVariable string
    Variable name
    MacAddress string
    MAC Address
    MacAddressVariable string
    Variable name
    MediaType string
    Media type - Choices: auto-select, rj45, sfp
    MediaTypeVariable string
    Variable name
    Name string
    The name of the Feature
    Nat64 bool
    NAT64 on this interface - Default value: false
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    • Default value: true
    ShutdownVariable string
    Variable name
    Speed string
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    SpeedVariable string
    Variable name
    StaticNats []ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs
    static NAT
    TcpMss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    TcpMssVariable string
    Variable name
    Tracker string
    Enable tracker for this interface
    TrackerVariable string
    Variable name
    TrustsecEnableEnforcedPropogation bool
    Enable/Disable SGT Enforcement on an interface
    TrustsecEnableSgtPropogation bool
    Indicates that the interface is trustworthy for CTS - Default value: false
    TrustsecEnforcedSecurityGroupTag int
    SGT value between 2 and 65519 - Range: 2-65519
    TrustsecEnforcedSecurityGroupTagVariable string
    Variable name
    TrustsecPropogate bool
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    TrustsecSecurityGroupTag int
    SGT value between 2 and 65519 - Range: 2-65519
    TrustsecSecurityGroupTagVariable string
    Variable name
    Version int
    The version of the Feature
    Xconnect string
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    XconnectVariable string
    Variable name
    aclIpv4EgressPolicyId String
    aclIpv4IngressPolicyId String
    aclIpv6EgressPolicyId String
    aclIpv6IngressPolicyId String
    aclShapingRate Integer
    Shaping Rate (Kbps) - Range: 8-100000000
    aclShapingRateVariable String
    Variable name
    arpTimeout Integer
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    arpTimeoutVariable String
    Variable name
    arps List<ServiceLanVpnInterfaceEthernetFeatureArp>
    Configure ARP entries
    autonegotiate Boolean
    Link autonegotiation
    autonegotiateVariable String
    Variable name
    description String
    The description of the Feature
    duplex String
    Duplex mode - Choices: full, half, auto
    duplexVariable String
    Variable name
    enableDhcpv6 Boolean
    Enable DHCPv6
    featureProfileId String
    Feature Profile ID
    icmpRedirectDisable Boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable String
    Variable name
    interfaceDescription String
    interfaceDescriptionVariable String
    Variable name
    interfaceMtu Integer
    Interface MTU - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable String
    Variable name
    interfaceName String
    interfaceNameVariable String
    Variable name
    ipDirectedBroadcast Boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable String
    Variable name
    ipMtu Integer
    IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes - Range: 576-9216 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4Address String
    IP Address
    ipv4AddressVariable String
    Variable name
    ipv4DhcpDistance Integer
    DHCP Distance - Range: 1-65536
    ipv4DhcpDistanceVariable String
    Variable name
    ipv4DhcpHelperVariable String
    Variable name
    ipv4DhcpHelpers List<String>
    List of DHCP IPv4 helper addresses (min 1, max 8)
    ipv4Nat Boolean
    enable Network Address Translation on this interface - Default value: false
    ipv4NatLoopback String
    NAT Inside Source Loopback Interface
    ipv4NatLoopbackVariable String
    Variable name
    ipv4NatOverload Boolean
    NAT Overload - Default value: true
    ipv4NatOverloadVariable String
    Variable name
    ipv4NatPrefixLength Integer
    NAT Pool Prefix Length - Range: 1-32
    ipv4NatPrefixLengthVariable String
    Variable name
    ipv4NatRangeEnd String
    NAT Pool Range End
    ipv4NatRangeEndVariable String
    Variable name
    ipv4NatRangeStart String
    NAT Pool Range Start
    ipv4NatRangeStartVariable String
    Variable name
    ipv4NatTcpTimeout Integer
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    ipv4NatTcpTimeoutVariable String
    Variable name
    ipv4NatType String
    NAT Type - Choices: pool, loopback
    ipv4NatTypeVariable String
    Variable name
    ipv4NatUdpTimeout Integer
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    ipv4NatUdpTimeoutVariable String
    Variable name
    ipv4SecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddress>
    Secondary IpV4 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<ServiceLanVpnInterfaceEthernetFeatureIpv4Vrrp>
    Enable VRRP
    ipv6Address String
    IPv6 Address Secondary
    ipv6AddressVariable String
    Variable name
    ipv6DhcpHelpers List<ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelper>
    DHCPv6 Helper
    ipv6DhcpSecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddress>
    secondary IPv6 addresses
    ipv6Nat Boolean
    enable Network Address Translation ipv6 on this interface - Default value: false
    ipv6SecondaryAddresses List<ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddress>
    Static secondary IPv6 addresses
    ipv6Vrrps List<ServiceLanVpnInterfaceEthernetFeatureIpv6Vrrp>
    Enable VRRP Ipv6
    loadInterval Integer
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    loadIntervalVariable String
    Variable name
    macAddress String
    MAC Address
    macAddressVariable String
    Variable name
    mediaType String
    Media type - Choices: auto-select, rj45, sfp
    mediaTypeVariable String
    Variable name
    name String
    The name of the Feature
    nat64 Boolean
    NAT64 on this interface - Default value: false
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    shutdown Boolean
    • Default value: true
    shutdownVariable String
    Variable name
    speed String
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    speedVariable String
    Variable name
    staticNats List<ServiceLanVpnInterfaceEthernetFeatureStaticNat>
    static NAT
    tcpMss Integer
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable String
    Variable name
    tracker String
    Enable tracker for this interface
    trackerVariable String
    Variable name
    trustsecEnableEnforcedPropogation Boolean
    Enable/Disable SGT Enforcement on an interface
    trustsecEnableSgtPropogation Boolean
    Indicates that the interface is trustworthy for CTS - Default value: false
    trustsecEnforcedSecurityGroupTag Integer
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecEnforcedSecurityGroupTagVariable String
    Variable name
    trustsecPropogate Boolean
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    trustsecSecurityGroupTag Integer
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecSecurityGroupTagVariable String
    Variable name
    version Integer
    The version of the Feature
    xconnect String
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    xconnectVariable String
    Variable name
    aclIpv4EgressPolicyId string
    aclIpv4IngressPolicyId string
    aclIpv6EgressPolicyId string
    aclIpv6IngressPolicyId string
    aclShapingRate number
    Shaping Rate (Kbps) - Range: 8-100000000
    aclShapingRateVariable string
    Variable name
    arpTimeout number
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    arpTimeoutVariable string
    Variable name
    arps ServiceLanVpnInterfaceEthernetFeatureArp[]
    Configure ARP entries
    autonegotiate boolean
    Link autonegotiation
    autonegotiateVariable string
    Variable name
    description string
    The description of the Feature
    duplex string
    Duplex mode - Choices: full, half, auto
    duplexVariable string
    Variable name
    enableDhcpv6 boolean
    Enable DHCPv6
    featureProfileId string
    Feature Profile ID
    icmpRedirectDisable boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable string
    Variable name
    interfaceDescription string
    interfaceDescriptionVariable string
    Variable name
    interfaceMtu number
    Interface MTU - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable string
    Variable name
    interfaceName string
    interfaceNameVariable string
    Variable name
    ipDirectedBroadcast boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable string
    Variable name
    ipMtu number
    IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes - Range: 576-9216 - Default value: 1500
    ipMtuVariable string
    Variable name
    ipv4Address string
    IP Address
    ipv4AddressVariable string
    Variable name
    ipv4DhcpDistance number
    DHCP Distance - Range: 1-65536
    ipv4DhcpDistanceVariable string
    Variable name
    ipv4DhcpHelperVariable string
    Variable name
    ipv4DhcpHelpers string[]
    List of DHCP IPv4 helper addresses (min 1, max 8)
    ipv4Nat boolean
    enable Network Address Translation on this interface - Default value: false
    ipv4NatLoopback string
    NAT Inside Source Loopback Interface
    ipv4NatLoopbackVariable string
    Variable name
    ipv4NatOverload boolean
    NAT Overload - Default value: true
    ipv4NatOverloadVariable string
    Variable name
    ipv4NatPrefixLength number
    NAT Pool Prefix Length - Range: 1-32
    ipv4NatPrefixLengthVariable string
    Variable name
    ipv4NatRangeEnd string
    NAT Pool Range End
    ipv4NatRangeEndVariable string
    Variable name
    ipv4NatRangeStart string
    NAT Pool Range Start
    ipv4NatRangeStartVariable string
    Variable name
    ipv4NatTcpTimeout number
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    ipv4NatTcpTimeoutVariable string
    Variable name
    ipv4NatType string
    NAT Type - Choices: pool, loopback
    ipv4NatTypeVariable string
    Variable name
    ipv4NatUdpTimeout number
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    ipv4NatUdpTimeoutVariable string
    Variable name
    ipv4SecondaryAddresses ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddress[]
    Secondary IpV4 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 ServiceLanVpnInterfaceEthernetFeatureIpv4Vrrp[]
    Enable VRRP
    ipv6Address string
    IPv6 Address Secondary
    ipv6AddressVariable string
    Variable name
    ipv6DhcpHelpers ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelper[]
    DHCPv6 Helper
    ipv6DhcpSecondaryAddresses ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddress[]
    secondary IPv6 addresses
    ipv6Nat boolean
    enable Network Address Translation ipv6 on this interface - Default value: false
    ipv6SecondaryAddresses ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddress[]
    Static secondary IPv6 addresses
    ipv6Vrrps ServiceLanVpnInterfaceEthernetFeatureIpv6Vrrp[]
    Enable VRRP Ipv6
    loadInterval number
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    loadIntervalVariable string
    Variable name
    macAddress string
    MAC Address
    macAddressVariable string
    Variable name
    mediaType string
    Media type - Choices: auto-select, rj45, sfp
    mediaTypeVariable string
    Variable name
    name string
    The name of the Feature
    nat64 boolean
    NAT64 on this interface - Default value: false
    serviceLanVpnFeatureId string
    Service LAN VPN Feature ID
    shutdown boolean
    • Default value: true
    shutdownVariable string
    Variable name
    speed string
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    speedVariable string
    Variable name
    staticNats ServiceLanVpnInterfaceEthernetFeatureStaticNat[]
    static NAT
    tcpMss number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable string
    Variable name
    tracker string
    Enable tracker for this interface
    trackerVariable string
    Variable name
    trustsecEnableEnforcedPropogation boolean
    Enable/Disable SGT Enforcement on an interface
    trustsecEnableSgtPropogation boolean
    Indicates that the interface is trustworthy for CTS - Default value: false
    trustsecEnforcedSecurityGroupTag number
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecEnforcedSecurityGroupTagVariable string
    Variable name
    trustsecPropogate boolean
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    trustsecSecurityGroupTag number
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecSecurityGroupTagVariable string
    Variable name
    version number
    The version of the Feature
    xconnect string
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    xconnectVariable string
    Variable name
    acl_ipv4_egress_policy_id str
    acl_ipv4_ingress_policy_id str
    acl_ipv6_egress_policy_id str
    acl_ipv6_ingress_policy_id str
    acl_shaping_rate int
    Shaping Rate (Kbps) - Range: 8-100000000
    acl_shaping_rate_variable str
    Variable name
    arp_timeout int
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    arp_timeout_variable str
    Variable name
    arps Sequence[ServiceLanVpnInterfaceEthernetFeatureArpArgs]
    Configure ARP entries
    autonegotiate bool
    Link autonegotiation
    autonegotiate_variable str
    Variable name
    description str
    The description of the Feature
    duplex str
    Duplex mode - Choices: full, half, auto
    duplex_variable str
    Variable name
    enable_dhcpv6 bool
    Enable DHCPv6
    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_variable str
    Variable name
    interface_mtu int
    Interface MTU - Range: 1500-9216 - Default value: 1500
    interface_mtu_variable str
    Variable name
    interface_name str
    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 for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> 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_distance int
    DHCP Distance - Range: 1-65536
    ipv4_dhcp_distance_variable str
    Variable name
    ipv4_dhcp_helper_variable str
    Variable name
    ipv4_dhcp_helpers Sequence[str]
    List of DHCP IPv4 helper addresses (min 1, max 8)
    ipv4_nat bool
    enable Network Address Translation on this interface - Default value: false
    ipv4_nat_loopback str
    NAT Inside Source Loopback Interface
    ipv4_nat_loopback_variable str
    Variable name
    ipv4_nat_overload bool
    NAT Overload - Default value: true
    ipv4_nat_overload_variable str
    Variable name
    ipv4_nat_prefix_length int
    NAT Pool Prefix Length - Range: 1-32
    ipv4_nat_prefix_length_variable str
    Variable name
    ipv4_nat_range_end str
    NAT Pool Range End
    ipv4_nat_range_end_variable str
    Variable name
    ipv4_nat_range_start str
    NAT Pool Range Start
    ipv4_nat_range_start_variable str
    Variable name
    ipv4_nat_tcp_timeout int
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    ipv4_nat_tcp_timeout_variable str
    Variable name
    ipv4_nat_type str
    NAT Type - Choices: pool, loopback
    ipv4_nat_type_variable str
    Variable name
    ipv4_nat_udp_timeout int
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    ipv4_nat_udp_timeout_variable str
    Variable name
    ipv4_secondary_addresses Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs]
    Secondary IpV4 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[ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs]
    Enable VRRP
    ipv6_address str
    IPv6 Address Secondary
    ipv6_address_variable str
    Variable name
    ipv6_dhcp_helpers Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs]
    DHCPv6 Helper
    ipv6_dhcp_secondary_addresses Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs]
    secondary IPv6 addresses
    ipv6_nat bool
    enable Network Address Translation ipv6 on this interface - Default value: false
    ipv6_secondary_addresses Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs]
    Static secondary IPv6 addresses
    ipv6_vrrps Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs]
    Enable VRRP Ipv6
    load_interval int
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    load_interval_variable str
    Variable name
    mac_address str
    MAC Address
    mac_address_variable str
    Variable name
    media_type str
    Media type - Choices: auto-select, rj45, sfp
    media_type_variable str
    Variable name
    name str
    The name of the Feature
    nat64 bool
    NAT64 on this interface - Default value: false
    service_lan_vpn_feature_id str
    Service LAN VPN Feature ID
    shutdown bool
    • Default value: true
    shutdown_variable str
    Variable name
    speed str
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    speed_variable str
    Variable name
    static_nats Sequence[ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs]
    static NAT
    tcp_mss int
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcp_mss_variable str
    Variable name
    tracker str
    Enable tracker for this interface
    tracker_variable str
    Variable name
    trustsec_enable_enforced_propogation bool
    Enable/Disable SGT Enforcement on an interface
    trustsec_enable_sgt_propogation bool
    Indicates that the interface is trustworthy for CTS - Default value: false
    trustsec_enforced_security_group_tag int
    SGT value between 2 and 65519 - Range: 2-65519
    trustsec_enforced_security_group_tag_variable str
    Variable name
    trustsec_propogate bool
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    trustsec_security_group_tag int
    SGT value between 2 and 65519 - Range: 2-65519
    trustsec_security_group_tag_variable str
    Variable name
    version int
    The version of the Feature
    xconnect str
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    xconnect_variable str
    Variable name
    aclIpv4EgressPolicyId String
    aclIpv4IngressPolicyId String
    aclIpv6EgressPolicyId String
    aclIpv6IngressPolicyId String
    aclShapingRate Number
    Shaping Rate (Kbps) - Range: 8-100000000
    aclShapingRateVariable String
    Variable name
    arpTimeout Number
    Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range: 0-2147483 - Default value: 1200
    arpTimeoutVariable String
    Variable name
    arps List<Property Map>
    Configure ARP entries
    autonegotiate Boolean
    Link autonegotiation
    autonegotiateVariable String
    Variable name
    description String
    The description of the Feature
    duplex String
    Duplex mode - Choices: full, half, auto
    duplexVariable String
    Variable name
    enableDhcpv6 Boolean
    Enable DHCPv6
    featureProfileId String
    Feature Profile ID
    icmpRedirectDisable Boolean
    ICMP/ICMPv6 Redirect Disable - Default value: true
    icmpRedirectDisableVariable String
    Variable name
    interfaceDescription String
    interfaceDescriptionVariable String
    Variable name
    interfaceMtu Number
    Interface MTU - Range: 1500-9216 - Default value: 1500
    interfaceMtuVariable String
    Variable name
    interfaceName String
    interfaceNameVariable String
    Variable name
    ipDirectedBroadcast Boolean
    IP Directed-Broadcast - Default value: false
    ipDirectedBroadcastVariable String
    Variable name
    ipMtu Number
    IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes - Range: 576-9216 - Default value: 1500
    ipMtuVariable String
    Variable name
    ipv4Address String
    IP Address
    ipv4AddressVariable String
    Variable name
    ipv4DhcpDistance Number
    DHCP Distance - Range: 1-65536
    ipv4DhcpDistanceVariable String
    Variable name
    ipv4DhcpHelperVariable String
    Variable name
    ipv4DhcpHelpers List<String>
    List of DHCP IPv4 helper addresses (min 1, max 8)
    ipv4Nat Boolean
    enable Network Address Translation on this interface - Default value: false
    ipv4NatLoopback String
    NAT Inside Source Loopback Interface
    ipv4NatLoopbackVariable String
    Variable name
    ipv4NatOverload Boolean
    NAT Overload - Default value: true
    ipv4NatOverloadVariable String
    Variable name
    ipv4NatPrefixLength Number
    NAT Pool Prefix Length - Range: 1-32
    ipv4NatPrefixLengthVariable String
    Variable name
    ipv4NatRangeEnd String
    NAT Pool Range End
    ipv4NatRangeEndVariable String
    Variable name
    ipv4NatRangeStart String
    NAT Pool Range Start
    ipv4NatRangeStartVariable String
    Variable name
    ipv4NatTcpTimeout Number
    Set NAT TCP session timeout, in minutes - Range: 1-8947 - Default value: 60
    ipv4NatTcpTimeoutVariable String
    Variable name
    ipv4NatType String
    NAT Type - Choices: pool, loopback
    ipv4NatTypeVariable String
    Variable name
    ipv4NatUdpTimeout Number
    Set NAT UDP session timeout, in minutes - Range: 1-8947 - Default value: 1
    ipv4NatUdpTimeoutVariable String
    Variable name
    ipv4SecondaryAddresses List<Property Map>
    Secondary IpV4 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 VRRP
    ipv6Address String
    IPv6 Address Secondary
    ipv6AddressVariable String
    Variable name
    ipv6DhcpHelpers List<Property Map>
    DHCPv6 Helper
    ipv6DhcpSecondaryAddresses List<Property Map>
    secondary IPv6 addresses
    ipv6Nat Boolean
    enable Network Address Translation ipv6 on this interface - Default value: false
    ipv6SecondaryAddresses List<Property Map>
    Static secondary IPv6 addresses
    ipv6Vrrps List<Property Map>
    Enable VRRP Ipv6
    loadInterval Number
    Interval for interface load calculation - Range: 30-600 - Default value: 30
    loadIntervalVariable String
    Variable name
    macAddress String
    MAC Address
    macAddressVariable String
    Variable name
    mediaType String
    Media type - Choices: auto-select, rj45, sfp
    mediaTypeVariable String
    Variable name
    name String
    The name of the Feature
    nat64 Boolean
    NAT64 on this interface - Default value: false
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    shutdown Boolean
    • Default value: true
    shutdownVariable String
    Variable name
    speed String
    Set interface speed - Choices: 10, 100, 1000, 2500, 10000
    speedVariable String
    Variable name
    staticNats List<Property Map>
    static NAT
    tcpMss Number
    TCP MSS on SYN packets, in bytes - Range: 500-1460
    tcpMssVariable String
    Variable name
    tracker String
    Enable tracker for this interface
    trackerVariable String
    Variable name
    trustsecEnableEnforcedPropogation Boolean
    Enable/Disable SGT Enforcement on an interface
    trustsecEnableSgtPropogation Boolean
    Indicates that the interface is trustworthy for CTS - Default value: false
    trustsecEnforcedSecurityGroupTag Number
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecEnforcedSecurityGroupTagVariable String
    Variable name
    trustsecPropogate Boolean
    Enables the interface for CTS SGT authorization and forwarding - Default value: true
    trustsecSecurityGroupTag Number
    SGT value between 2 and 65519 - Range: 2-65519
    trustsecSecurityGroupTagVariable String
    Variable name
    version Number
    The version of the Feature
    xconnect String
    Extend remote TLOC over a GRE tunnel to a local LAN interface
    xconnectVariable String
    Variable name

    Supporting Types

    ServiceLanVpnInterfaceEthernetFeatureArp, ServiceLanVpnInterfaceEthernetFeatureArpArgs

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

    ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddress, ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs

    Address string
    IpV4 Address
    AddressVariable string
    Variable name
    SubnetMask 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
    SubnetMaskVariable string
    Variable name
    Address string
    IpV4 Address
    AddressVariable string
    Variable name
    SubnetMask 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
    SubnetMaskVariable string
    Variable name
    address String
    IpV4 Address
    addressVariable String
    Variable name
    subnetMask 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
    subnetMaskVariable String
    Variable name
    address string
    IpV4 Address
    addressVariable string
    Variable name
    subnetMask 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
    subnetMaskVariable string
    Variable name
    address str
    IpV4 Address
    address_variable str
    Variable name
    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
    subnet_mask_variable str
    Variable name
    address String
    IpV4 Address
    addressVariable String
    Variable name
    subnetMask 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
    subnetMaskVariable String
    Variable name

    ServiceLanVpnInterfaceEthernetFeatureIpv4Vrrp, ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs

    Address string
    VRRP Ip Address
    AddressVariable string
    Variable name
    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<ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddress>
    VRRP Secondary Ip Addresses
    Timer int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    TimerVariable string
    Variable name
    TlocPrefChangeValue int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-4294967295
    TlocPrefixChange bool
    Timer interval for successive advertisements, in milliseconds

    • Default value: false
    TrackOmp bool
    Track OMP status

    • Default value: false
    Address string
    VRRP Ip Address
    AddressVariable string
    Variable name
    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 []ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddress
    VRRP Secondary Ip Addresses
    Timer int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    TimerVariable string
    Variable name
    TlocPrefChangeValue int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-4294967295
    TlocPrefixChange bool
    Timer interval for successive advertisements, in milliseconds

    • Default value: false
    TrackOmp bool
    Track OMP status

    • Default value: false
    address String
    VRRP Ip Address
    addressVariable String
    Variable name
    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<ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddress>
    VRRP Secondary Ip Addresses
    timer Integer
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timerVariable String
    Variable name
    tlocPrefChangeValue Integer
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-4294967295
    tlocPrefixChange Boolean
    Timer interval for successive advertisements, in milliseconds

    • Default value: false
    trackOmp Boolean
    Track OMP status

    • Default value: false
    address string
    VRRP Ip Address
    addressVariable string
    Variable name
    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 ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddress[]
    VRRP Secondary Ip Addresses
    timer number
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timerVariable string
    Variable name
    tlocPrefChangeValue number
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-4294967295
    tlocPrefixChange boolean
    Timer interval for successive advertisements, in milliseconds

    • Default value: false
    trackOmp boolean
    Track OMP status

    • Default value: false
    address str
    VRRP Ip Address
    address_variable str
    Variable name
    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[ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddress]
    VRRP Secondary Ip Addresses
    timer int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timer_variable str
    Variable name
    tloc_pref_change_value int
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-4294967295
    tloc_prefix_change bool
    Timer interval for successive advertisements, in milliseconds

    • Default value: false
    track_omp bool
    Track OMP status

    • Default value: false
    address String
    VRRP Ip Address
    addressVariable String
    Variable name
    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>
    VRRP Secondary Ip Addresses
    timer Number
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-40950
    • Default value: 1000
    timerVariable String
    Variable name
    tlocPrefChangeValue Number
    Timer interval for successive advertisements, in milliseconds

    • Range: 100-4294967295
    tlocPrefixChange Boolean
    Timer interval for successive advertisements, in milliseconds

    • Default value: false
    trackOmp Boolean
    Track OMP status

    • Default value: false

    ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddress, ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs

    Address string
    Ip Address
    AddressVariable string
    Variable name
    SubnetMask 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
    SubnetMaskVariable string
    Variable name
    Address string
    Ip Address
    AddressVariable string
    Variable name
    SubnetMask 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
    SubnetMaskVariable string
    Variable name
    address String
    Ip Address
    addressVariable String
    Variable name
    subnetMask 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
    subnetMaskVariable String
    Variable name
    address string
    Ip Address
    addressVariable string
    Variable name
    subnetMask 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
    subnetMaskVariable string
    Variable name
    address str
    Ip Address
    address_variable str
    Variable name
    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
    subnet_mask_variable str
    Variable name
    address String
    Ip Address
    addressVariable String
    Variable name
    subnetMask 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
    subnetMaskVariable String
    Variable name

    ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelper, ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs

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

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

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

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

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

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

    • Range: 1-65536
    dhcpv6HelperVpnVariable String
    Variable name

    ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddress, ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs

    Address string
    IPv6 Address Secondary
    AddressVariable string
    Variable name
    Address string
    IPv6 Address Secondary
    AddressVariable string
    Variable name
    address String
    IPv6 Address Secondary
    addressVariable String
    Variable name
    address string
    IPv6 Address Secondary
    addressVariable string
    Variable name
    address str
    IPv6 Address Secondary
    address_variable str
    Variable name
    address String
    IPv6 Address Secondary
    addressVariable String
    Variable name

    ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddress, ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs

    Address string
    IPv6 Address Secondary
    AddressVariable string
    Variable name
    Address string
    IPv6 Address Secondary
    AddressVariable string
    Variable name
    address String
    IPv6 Address Secondary
    addressVariable String
    Variable name
    address string
    IPv6 Address Secondary
    addressVariable string
    Variable name
    address str
    IPv6 Address Secondary
    address_variable str
    Variable name
    address String
    IPv6 Address Secondary
    addressVariable String
    Variable name

    ServiceLanVpnInterfaceEthernetFeatureIpv6Vrrp, ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs

    GroupId int
    Group ID

    • Range: 1-255
    GroupIdVariable string
    Variable name
    Ipv6Addresses List<ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6Address>
    IPv6 VRRP
    Priority int
    Set priority

    • Range: 1-254
    • Default value: 100
    PriorityVariable string
    Variable name
    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
    GroupId int
    Group ID

    • Range: 1-255
    GroupIdVariable string
    Variable name
    Ipv6Addresses []ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6Address
    IPv6 VRRP
    Priority int
    Set priority

    • Range: 1-254
    • Default value: 100
    PriorityVariable string
    Variable name
    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
    groupId Integer
    Group ID

    • Range: 1-255
    groupIdVariable String
    Variable name
    ipv6Addresses List<ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6Address>
    IPv6 VRRP
    priority Integer
    Set priority

    • Range: 1-254
    • Default value: 100
    priorityVariable String
    Variable name
    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
    groupId number
    Group ID

    • Range: 1-255
    groupIdVariable string
    Variable name
    ipv6Addresses ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6Address[]
    IPv6 VRRP
    priority number
    Set priority

    • Range: 1-254
    • Default value: 100
    priorityVariable string
    Variable name
    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
    group_id int
    Group ID

    • Range: 1-255
    group_id_variable str
    Variable name
    ipv6_addresses Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6Address]
    IPv6 VRRP
    priority int
    Set priority

    • Range: 1-254
    • Default value: 100
    priority_variable str
    Variable name
    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
    groupId Number
    Group ID

    • Range: 1-255
    groupIdVariable String
    Variable name
    ipv6Addresses List<Property Map>
    IPv6 VRRP
    priority Number
    Set priority

    • Range: 1-254
    • Default value: 100
    priorityVariable String
    Variable name
    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

    ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6Address, ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs

    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

    ServiceLanVpnInterfaceEthernetFeatureStaticNat, ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs

    Direction string
    Direction of static NAT translation

    • Choices: inside, outside
    • Default value: inside
    SourceIp string
    Source IP address to be translated
    SourceIpVariable string
    Variable name
    SourceVpn int
    Source VPN ID

    • Range: 0-65530
    • Default value: 0
    SourceVpnVariable string
    Variable name
    TranslateIp string
    Statically translated source IP address
    TranslateIpVariable string
    Variable name
    Direction string
    Direction of static NAT translation

    • Choices: inside, outside
    • Default value: inside
    SourceIp string
    Source IP address to be translated
    SourceIpVariable string
    Variable name
    SourceVpn int
    Source VPN ID

    • Range: 0-65530
    • Default value: 0
    SourceVpnVariable string
    Variable name
    TranslateIp string
    Statically translated source IP address
    TranslateIpVariable string
    Variable name
    direction String
    Direction of static NAT translation

    • Choices: inside, outside
    • Default value: inside
    sourceIp String
    Source IP address to be translated
    sourceIpVariable String
    Variable name
    sourceVpn Integer
    Source VPN ID

    • Range: 0-65530
    • Default value: 0
    sourceVpnVariable String
    Variable name
    translateIp String
    Statically translated source IP address
    translateIpVariable String
    Variable name
    direction string
    Direction of static NAT translation

    • Choices: inside, outside
    • Default value: inside
    sourceIp string
    Source IP address to be translated
    sourceIpVariable string
    Variable name
    sourceVpn number
    Source VPN ID

    • Range: 0-65530
    • Default value: 0
    sourceVpnVariable string
    Variable name
    translateIp string
    Statically translated source IP address
    translateIpVariable string
    Variable name
    direction str
    Direction of static NAT translation

    • Choices: inside, outside
    • Default value: inside
    source_ip str
    Source IP address to be translated
    source_ip_variable str
    Variable name
    source_vpn int
    Source VPN ID

    • Range: 0-65530
    • Default value: 0
    source_vpn_variable str
    Variable name
    translate_ip str
    Statically translated source IP address
    translate_ip_variable str
    Variable name
    direction String
    Direction of static NAT translation

    • Choices: inside, outside
    • Default value: inside
    sourceIp String
    Source IP address to be translated
    sourceIpVariable String
    Variable name
    sourceVpn Number
    Source VPN ID

    • Range: 0-65530
    • Default value: 0
    sourceVpnVariable String
    Variable name
    translateIp String
    Statically translated source IP address
    translateIpVariable String
    Variable name

    Import

    $ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeature:ServiceLanVpnInterfaceEthernetFeature 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