import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage a Service LAN VPN Interface Ethernet Feature. * - Minimum SD-WAN Manager version: `20.15.0` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.ServiceLanVpnInterfaceEthernetFeature("example", { * name: "Example", * description: "My Example", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037", * shutdown: false, * interfaceName: "GigabitEthernet3", * interfaceDescription: "LAN", * ipv4AddressType: "static", * ipv4Address: "1.2.3.4", * ipv4SubnetMask: "0.0.0.0", * ipv4SecondaryAddresses: [{ * address: "1.2.3.5", * subnetMask: "0.0.0.0", * }], * ipv4DhcpHelpers: ["1.2.3.4"], * ipv6AddressType: "static", * ipv6Address: "2001:0:0:1::0/64", * ipv6DhcpHelpers: [{ * address: "2001:0:0:1::0", * dhcpv6HelperVpn: 1, * }], * ipv4Nat: false, * ipv4NatRangeStart: "1.2.3.4", * ipv4NatRangeEnd: "4.5.6.7", * ipv4NatPrefixLength: 1, * ipv4NatOverload: true, * ipv6Nat: true, * nat64: false, * aclShapingRate: 12, * ipv6Vrrps: [{ * groupId: 1, * priority: 100, * timer: 1000, * trackOmp: false, * ipv6Addresses: [{ * linkLocalAddress: "1::1", * globalAddress: "1::1/24", * }], * followDualRouterHighAvailability: false, * minPreemptDelay: 60, * }], * ipv4Vrrps: [{ * groupId: 1, * priority: 100, * timer: 1000, * trackOmp: false, * address: "1.2.3.4", * secondaryAddresses: [{ * address: "2.3.4.5", * subnetMask: "0.0.0.0", * }], * tlocPrefixChange: true, * tlocPrefChangeValue: 100, * trackingObjects: [{ * trackerId: "1b270f6d-479b-47e3-ab0b-51bc6811a303", * trackerAction: "Decrement", * decrementValue: 100, * }], * followDualRouterHighAvailability: false, * minPreemptDelay: 60, * }], * arps: [{ * ipAddress: "1.2.3.4", * macAddress: "00-B0-D0-63-C2-26", * }], * trustsecEnableSgtPropogation: true, * trustsecPropogate: true, * trustsecSecurityGroupTag: 123, * trustsecTrusted: true, * 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, * icmpRedirectDisable: true, * xconnect: "1", * ipDirectedBroadcast: false, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Expected import identifier with the format: "service_lan_vpn_interface_ethernet_feature_id,feature_profile_id,service_lan_vpn_feature_id" * * ```sh * $ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeature:ServiceLanVpnInterfaceEthernetFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037" * ``` */ export declare class ServiceLanVpnInterfaceEthernetFeature extends pulumi.CustomResource { /** * Get an existing ServiceLanVpnInterfaceEthernetFeature resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ServiceLanVpnInterfaceEthernetFeatureState, opts?: pulumi.CustomResourceOptions): ServiceLanVpnInterfaceEthernetFeature; /** * Returns true if the given object is an instance of ServiceLanVpnInterfaceEthernetFeature. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ServiceLanVpnInterfaceEthernetFeature; readonly aclIpv4EgressPolicyId: pulumi.Output; readonly aclIpv4IngressPolicyId: pulumi.Output; readonly aclIpv6EgressPolicyId: pulumi.Output; readonly aclIpv6IngressPolicyId: pulumi.Output; /** * Shaping Rate (Kbps), Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `8`-`100000000` */ readonly aclShapingRate: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly aclShapingRateVariable: pulumi.Output; /** * Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `0`-`2147483` * - Default value: `1200` */ readonly arpTimeout: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly arpTimeoutVariable: pulumi.Output; /** * Configure ARP entries, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly arps: pulumi.Output; /** * Link autonegotiation */ readonly autonegotiate: pulumi.Output; /** * Variable name */ readonly autonegotiateVariable: pulumi.Output; /** * The description of the Feature */ readonly description: pulumi.Output; /** * Duplex mode, Attribute conditional on `portChannelInterface` not equal to `true` * - Choices: `full`, `half`, `auto` */ readonly duplex: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelInterface` not equal to `true` */ readonly duplexVariable: pulumi.Output; /** * Enable DHCPv6, Attribute conditional on `ipv6AddressType` equal to `dynamic` or `ipv6AddressTypeVariable` being set */ readonly enableDhcpv6: pulumi.Output; /** * Feature Profile ID */ readonly featureProfileId: pulumi.Output; /** * ICMP/ICMPv6 Redirect Disable, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `true` */ readonly icmpRedirectDisable: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly icmpRedirectDisableVariable: pulumi.Output; readonly interfaceDescription: pulumi.Output; /** * Variable name */ readonly interfaceDescriptionVariable: pulumi.Output; /** * Interface MTU, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `interfaceName` not containing `.` * - Range: `1500`-`9216` * - Default value: `1500` */ readonly interfaceMtu: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `interfaceName` not containing `.` */ readonly interfaceMtuVariable: pulumi.Output; readonly interfaceName: pulumi.Output; /** * Variable name */ readonly interfaceNameVariable: pulumi.Output; /** * IP Directed-Broadcast, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ readonly ipDirectedBroadcast: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipDirectedBroadcastVariable: pulumi.Output; /** * IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `576`-`9216` * - Default value: `1500` */ readonly ipMtu: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipMtuVariable: pulumi.Output; /** * IP Address, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ readonly ipv4Address: pulumi.Output; /** * address type, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Choices: `dynamic`, `static` */ readonly ipv4AddressType: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4AddressTypeVariable: pulumi.Output; /** * Variable name, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ readonly ipv4AddressVariable: pulumi.Output; /** * DHCP Distance, Attribute conditional on `ipv4AddressType` equal to `dynamic` or `ipv4AddressTypeVariable` being set * - Range: `1`-`255` * - Default value: `1` */ readonly ipv4DhcpDistance: pulumi.Output; /** * Variable name, Attribute conditional on `ipv4AddressType` equal to `dynamic` or `ipv4AddressTypeVariable` being set */ readonly ipv4DhcpDistanceVariable: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4DhcpHelperVariable: pulumi.Output; /** * List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4DhcpHelpers: pulumi.Output; /** * enable Network Address Translation on this interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ readonly ipv4Nat: pulumi.Output; /** * NAT Inside Source Loopback Interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4NatLoopback: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4NatLoopbackVariable: pulumi.Output; /** * NAT Overload, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `true` */ readonly ipv4NatOverload: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4NatOverloadVariable: pulumi.Output; /** * NAT Pool Prefix Length, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `1`-`32` */ readonly ipv4NatPrefixLength: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4NatPrefixLengthVariable: pulumi.Output; /** * NAT Pool Range End, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4NatRangeEnd: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4NatRangeEndVariable: pulumi.Output; /** * NAT Pool Range Start, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4NatRangeStart: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4NatRangeStartVariable: pulumi.Output; /** * Set NAT TCP session timeout, in minutes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `1`-`8947` * - Default value: `60` */ readonly ipv4NatTcpTimeout: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4NatTcpTimeoutVariable: pulumi.Output; /** * Set NAT UDP session timeout, in minutes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `1`-`8947` * - Default value: `1` */ readonly ipv4NatUdpTimeout: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4NatUdpTimeoutVariable: pulumi.Output; /** * Secondary IpV4 Addresses, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ readonly ipv4SecondaryAddresses: pulumi.Output; /** * Subnet Mask, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set * - 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.248.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` */ readonly ipv4SubnetMask: pulumi.Output; /** * Variable name, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ readonly ipv4SubnetMaskVariable: pulumi.Output; /** * Enable VRRP, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv4Vrrps: pulumi.Output; /** * IPv6 Address Secondary, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ readonly ipv6Address: pulumi.Output; /** * address type, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Choices: `dynamic`, `static` */ readonly ipv6AddressType: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv6AddressTypeVariable: pulumi.Output; /** * Variable name, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ readonly ipv6AddressVariable: pulumi.Output; /** * DHCPv6 Helper, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ readonly ipv6DhcpHelpers: pulumi.Output; /** * secondary IPv6 addresses, Attribute conditional on `ipv6AddressType` equal to `dynamic` or `ipv6AddressTypeVariable` being set */ readonly ipv6DhcpSecondaryAddresses: pulumi.Output; /** * enable Network Address Translation ipv6 on this interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ readonly ipv6Nat: pulumi.Output; /** * Static secondary IPv6 addresses, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ readonly ipv6SecondaryAddresses: pulumi.Output; /** * Enable VRRP Ipv6, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly ipv6Vrrps: pulumi.Output; /** * Interval for interface load calculation * - Range: `30`-`600` * - Default value: `30` */ readonly loadInterval: pulumi.Output; /** * Variable name */ readonly loadIntervalVariable: pulumi.Output; /** * MAC Address, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `portChannelInterface` not equal to `true` */ readonly macAddress: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `portChannelInterface` not equal to `true` */ readonly macAddressVariable: pulumi.Output; /** * Media type, Attribute conditional on `portChannelInterface` not equal to `true` * - Choices: `auto-select`, `rj45`, `sfp` */ readonly mediaType: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelInterface` not equal to `true` */ readonly mediaTypeVariable: pulumi.Output; /** * The name of the Feature */ readonly name: pulumi.Output; /** * NAT64 on this interface * - Default value: `false` */ readonly nat64: pulumi.Output; /** * Port-Channel interface on/off * - Default value: `false` */ readonly portChannelInterface: pulumi.Output; /** * Eanble lacp fast switchover, Attribute conditional on `portChannelMode` equal to `lacp` * - Default value: `false` */ readonly portChannelLacpFastSwitchover: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ readonly portChannelLacpFastSwitchoverVariable: pulumi.Output; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `lacp` * - Choices: `flow`, `vlan` */ readonly portChannelLacpLoadBalance: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ readonly portChannelLacpLoadBalanceVariable: pulumi.Output; /** * Set LACP max bundle, Attribute conditional on `portChannelMode` equal to `lacp` * - Range: `1`-`16` */ readonly portChannelLacpMaxBundle: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ readonly portChannelLacpMaxBundleVariable: pulumi.Output; /** * Configure Port-Channel member links, Attribute conditional on `portChannelMode` equal to `lacp` */ readonly portChannelLacpMemberLinks: pulumi.Output; /** * Set LACP min bundle, Attribute conditional on `portChannelMode` equal to `lacp` * - Range: `1`-`16` */ readonly portChannelLacpMinBundle: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ readonly portChannelLacpMinBundleVariable: pulumi.Output; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `lacp` * - Default value: `true` */ readonly portChannelLacpQosAggregate: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ readonly portChannelLacpQosAggregateVariable: pulumi.Output; /** * Port-Channel member interface on/off * - Default value: `false` */ readonly portChannelMemberInterface: pulumi.Output; /** * Port Channel Mode, Attribute conditional on `portChannelInterface` equal to `true` * - Choices: `lacp`, `static` */ readonly portChannelMode: pulumi.Output; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `static` * - Choices: `flow`, `vlan` */ readonly portChannelStaticLoadBalance: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMode` equal to `static` */ readonly portChannelStaticLoadBalanceVariable: pulumi.Output; /** * Configure Port-Channel member links, Attribute conditional on `portChannelMode` equal to `static` */ readonly portChannelStaticMemberLinks: pulumi.Output; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `static` * - Default value: `true` */ readonly portChannelStaticQosAggregate: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMode` equal to `static` */ readonly portChannelStaticQosAggregateVariable: pulumi.Output; /** * Port Channel Sub Interface on/off, Attribute conditional on `portChannelInterface` equal to `true` */ readonly portChannelSubinterface: pulumi.Output; /** * , Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ readonly portChannelSubinterfacePrimaryInterfaceName: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ readonly portChannelSubinterfacePrimaryInterfaceNameVariable: pulumi.Output; /** * , Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ readonly portChannelSubinterfaceSecondaryInterfaceName: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ readonly portChannelSubinterfaceSecondaryInterfaceNameVariable: pulumi.Output; /** * Service LAN VPN Feature ID */ readonly serviceLanVpnFeatureId: pulumi.Output; /** * - Default value: `true` */ readonly shutdown: pulumi.Output; /** * Variable name */ readonly shutdownVariable: pulumi.Output; /** * Set interface speed, Attribute conditional on `portChannelInterface` not equal to `true` * - Choices: `10`, `100`, `1000`, `2500`, `5000`, `10000`, `25000` */ readonly speed: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelInterface` not equal to `true` */ readonly speedVariable: pulumi.Output; /** * static NAT, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly staticNats: pulumi.Output; /** * TCP MSS on SYN packets, in bytes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `500`-`1460` */ readonly tcpMss: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly tcpMssVariable: pulumi.Output; /** * Enable/Disable SGT Enforcement on an interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly trustsecEnableEnforcedPropogation: pulumi.Output; /** * Indicates that the interface is trustworthy for CTS, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ readonly trustsecEnableSgtPropogation: pulumi.Output; /** * SGT value between 2 and 65519, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `2`-`65519` */ readonly trustsecEnforcedSecurityGroupTag: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly trustsecEnforcedSecurityGroupTagVariable: pulumi.Output; /** * Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `true` */ readonly trustsecPropogate: pulumi.Output; /** * SGT value between 2 and 65519, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `2`-`65519` */ readonly trustsecSecurityGroupTag: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly trustsecSecurityGroupTagVariable: pulumi.Output; /** * Indicates that the interface is trustworthy for CTS., Attribute conditional on (`trustsecSecurityGroupTag` being set and `portChannelMemberInterface` not equal to `true` and `trustsecEnableSgtPropogation` equal to `true` and `trustsecPropogate` equal to `true` and SD-WAN Manager version `20.18.1` or higher) or (`trustsecSecurityGroupTagVariable` being set and `portChannelMemberInterface` not equal to `true` and `trustsecEnableSgtPropogation` equal to `true` and `trustsecPropogate` equal to `true` and SD-WAN Manager version `20.18.1` or higher) * - Default value: `true` */ readonly trustsecTrusted: pulumi.Output; /** * The version of the Feature */ readonly version: pulumi.Output; /** * Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly xconnect: pulumi.Output; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ readonly xconnectVariable: pulumi.Output; /** * Create a ServiceLanVpnInterfaceEthernetFeature resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ServiceLanVpnInterfaceEthernetFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ServiceLanVpnInterfaceEthernetFeature resources. */ export interface ServiceLanVpnInterfaceEthernetFeatureState { aclIpv4EgressPolicyId?: pulumi.Input; aclIpv4IngressPolicyId?: pulumi.Input; aclIpv6EgressPolicyId?: pulumi.Input; aclIpv6IngressPolicyId?: pulumi.Input; /** * Shaping Rate (Kbps), Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `8`-`100000000` */ aclShapingRate?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ aclShapingRateVariable?: pulumi.Input; /** * Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `0`-`2147483` * - Default value: `1200` */ arpTimeout?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ arpTimeoutVariable?: pulumi.Input; /** * Configure ARP entries, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ arps?: pulumi.Input[] | undefined>; /** * Link autonegotiation */ autonegotiate?: pulumi.Input; /** * Variable name */ autonegotiateVariable?: pulumi.Input; /** * The description of the Feature */ description?: pulumi.Input; /** * Duplex mode, Attribute conditional on `portChannelInterface` not equal to `true` * - Choices: `full`, `half`, `auto` */ duplex?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelInterface` not equal to `true` */ duplexVariable?: pulumi.Input; /** * Enable DHCPv6, Attribute conditional on `ipv6AddressType` equal to `dynamic` or `ipv6AddressTypeVariable` being set */ enableDhcpv6?: pulumi.Input; /** * Feature Profile ID */ featureProfileId?: pulumi.Input; /** * ICMP/ICMPv6 Redirect Disable, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `true` */ icmpRedirectDisable?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ icmpRedirectDisableVariable?: pulumi.Input; interfaceDescription?: pulumi.Input; /** * Variable name */ interfaceDescriptionVariable?: pulumi.Input; /** * Interface MTU, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `interfaceName` not containing `.` * - Range: `1500`-`9216` * - Default value: `1500` */ interfaceMtu?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `interfaceName` not containing `.` */ interfaceMtuVariable?: pulumi.Input; interfaceName?: pulumi.Input; /** * Variable name */ interfaceNameVariable?: pulumi.Input; /** * IP Directed-Broadcast, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ ipDirectedBroadcast?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipDirectedBroadcastVariable?: pulumi.Input; /** * IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `576`-`9216` * - Default value: `1500` */ ipMtu?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipMtuVariable?: pulumi.Input; /** * IP Address, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ ipv4Address?: pulumi.Input; /** * address type, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Choices: `dynamic`, `static` */ ipv4AddressType?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4AddressTypeVariable?: pulumi.Input; /** * Variable name, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ ipv4AddressVariable?: pulumi.Input; /** * DHCP Distance, Attribute conditional on `ipv4AddressType` equal to `dynamic` or `ipv4AddressTypeVariable` being set * - Range: `1`-`255` * - Default value: `1` */ ipv4DhcpDistance?: pulumi.Input; /** * Variable name, Attribute conditional on `ipv4AddressType` equal to `dynamic` or `ipv4AddressTypeVariable` being set */ ipv4DhcpDistanceVariable?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4DhcpHelperVariable?: pulumi.Input; /** * List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4DhcpHelpers?: pulumi.Input[] | undefined>; /** * enable Network Address Translation on this interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ ipv4Nat?: pulumi.Input; /** * NAT Inside Source Loopback Interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatLoopback?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatLoopbackVariable?: pulumi.Input; /** * NAT Overload, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `true` */ ipv4NatOverload?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatOverloadVariable?: pulumi.Input; /** * NAT Pool Prefix Length, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `1`-`32` */ ipv4NatPrefixLength?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatPrefixLengthVariable?: pulumi.Input; /** * NAT Pool Range End, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatRangeEnd?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatRangeEndVariable?: pulumi.Input; /** * NAT Pool Range Start, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatRangeStart?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatRangeStartVariable?: pulumi.Input; /** * Set NAT TCP session timeout, in minutes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `1`-`8947` * - Default value: `60` */ ipv4NatTcpTimeout?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatTcpTimeoutVariable?: pulumi.Input; /** * Set NAT UDP session timeout, in minutes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `1`-`8947` * - Default value: `1` */ ipv4NatUdpTimeout?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatUdpTimeoutVariable?: pulumi.Input; /** * Secondary IpV4 Addresses, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ ipv4SecondaryAddresses?: pulumi.Input[] | undefined>; /** * Subnet Mask, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set * - 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.248.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` */ ipv4SubnetMask?: pulumi.Input; /** * Variable name, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ ipv4SubnetMaskVariable?: pulumi.Input; /** * Enable VRRP, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4Vrrps?: pulumi.Input[] | undefined>; /** * IPv6 Address Secondary, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ ipv6Address?: pulumi.Input; /** * address type, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Choices: `dynamic`, `static` */ ipv6AddressType?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv6AddressTypeVariable?: pulumi.Input; /** * Variable name, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ ipv6AddressVariable?: pulumi.Input; /** * DHCPv6 Helper, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ ipv6DhcpHelpers?: pulumi.Input[] | undefined>; /** * secondary IPv6 addresses, Attribute conditional on `ipv6AddressType` equal to `dynamic` or `ipv6AddressTypeVariable` being set */ ipv6DhcpSecondaryAddresses?: pulumi.Input[] | undefined>; /** * enable Network Address Translation ipv6 on this interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ ipv6Nat?: pulumi.Input; /** * Static secondary IPv6 addresses, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ ipv6SecondaryAddresses?: pulumi.Input[] | undefined>; /** * Enable VRRP Ipv6, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv6Vrrps?: pulumi.Input[] | undefined>; /** * Interval for interface load calculation * - Range: `30`-`600` * - Default value: `30` */ loadInterval?: pulumi.Input; /** * Variable name */ loadIntervalVariable?: pulumi.Input; /** * MAC Address, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `portChannelInterface` not equal to `true` */ macAddress?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `portChannelInterface` not equal to `true` */ macAddressVariable?: pulumi.Input; /** * Media type, Attribute conditional on `portChannelInterface` not equal to `true` * - Choices: `auto-select`, `rj45`, `sfp` */ mediaType?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelInterface` not equal to `true` */ mediaTypeVariable?: pulumi.Input; /** * The name of the Feature */ name?: pulumi.Input; /** * NAT64 on this interface * - Default value: `false` */ nat64?: pulumi.Input; /** * Port-Channel interface on/off * - Default value: `false` */ portChannelInterface?: pulumi.Input; /** * Eanble lacp fast switchover, Attribute conditional on `portChannelMode` equal to `lacp` * - Default value: `false` */ portChannelLacpFastSwitchover?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpFastSwitchoverVariable?: pulumi.Input; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `lacp` * - Choices: `flow`, `vlan` */ portChannelLacpLoadBalance?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpLoadBalanceVariable?: pulumi.Input; /** * Set LACP max bundle, Attribute conditional on `portChannelMode` equal to `lacp` * - Range: `1`-`16` */ portChannelLacpMaxBundle?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpMaxBundleVariable?: pulumi.Input; /** * Configure Port-Channel member links, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpMemberLinks?: pulumi.Input[] | undefined>; /** * Set LACP min bundle, Attribute conditional on `portChannelMode` equal to `lacp` * - Range: `1`-`16` */ portChannelLacpMinBundle?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpMinBundleVariable?: pulumi.Input; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `lacp` * - Default value: `true` */ portChannelLacpQosAggregate?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpQosAggregateVariable?: pulumi.Input; /** * Port-Channel member interface on/off * - Default value: `false` */ portChannelMemberInterface?: pulumi.Input; /** * Port Channel Mode, Attribute conditional on `portChannelInterface` equal to `true` * - Choices: `lacp`, `static` */ portChannelMode?: pulumi.Input; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `static` * - Choices: `flow`, `vlan` */ portChannelStaticLoadBalance?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `static` */ portChannelStaticLoadBalanceVariable?: pulumi.Input; /** * Configure Port-Channel member links, Attribute conditional on `portChannelMode` equal to `static` */ portChannelStaticMemberLinks?: pulumi.Input[] | undefined>; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `static` * - Default value: `true` */ portChannelStaticQosAggregate?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `static` */ portChannelStaticQosAggregateVariable?: pulumi.Input; /** * Port Channel Sub Interface on/off, Attribute conditional on `portChannelInterface` equal to `true` */ portChannelSubinterface?: pulumi.Input; /** * , Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ portChannelSubinterfacePrimaryInterfaceName?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ portChannelSubinterfacePrimaryInterfaceNameVariable?: pulumi.Input; /** * , Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ portChannelSubinterfaceSecondaryInterfaceName?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ portChannelSubinterfaceSecondaryInterfaceNameVariable?: pulumi.Input; /** * Service LAN VPN Feature ID */ serviceLanVpnFeatureId?: pulumi.Input; /** * - Default value: `true` */ shutdown?: pulumi.Input; /** * Variable name */ shutdownVariable?: pulumi.Input; /** * Set interface speed, Attribute conditional on `portChannelInterface` not equal to `true` * - Choices: `10`, `100`, `1000`, `2500`, `5000`, `10000`, `25000` */ speed?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelInterface` not equal to `true` */ speedVariable?: pulumi.Input; /** * static NAT, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ staticNats?: pulumi.Input[] | undefined>; /** * TCP MSS on SYN packets, in bytes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `500`-`1460` */ tcpMss?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ tcpMssVariable?: pulumi.Input; /** * Enable/Disable SGT Enforcement on an interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ trustsecEnableEnforcedPropogation?: pulumi.Input; /** * Indicates that the interface is trustworthy for CTS, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ trustsecEnableSgtPropogation?: pulumi.Input; /** * SGT value between 2 and 65519, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `2`-`65519` */ trustsecEnforcedSecurityGroupTag?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ trustsecEnforcedSecurityGroupTagVariable?: pulumi.Input; /** * Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `true` */ trustsecPropogate?: pulumi.Input; /** * SGT value between 2 and 65519, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `2`-`65519` */ trustsecSecurityGroupTag?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ trustsecSecurityGroupTagVariable?: pulumi.Input; /** * Indicates that the interface is trustworthy for CTS., Attribute conditional on (`trustsecSecurityGroupTag` being set and `portChannelMemberInterface` not equal to `true` and `trustsecEnableSgtPropogation` equal to `true` and `trustsecPropogate` equal to `true` and SD-WAN Manager version `20.18.1` or higher) or (`trustsecSecurityGroupTagVariable` being set and `portChannelMemberInterface` not equal to `true` and `trustsecEnableSgtPropogation` equal to `true` and `trustsecPropogate` equal to `true` and SD-WAN Manager version `20.18.1` or higher) * - Default value: `true` */ trustsecTrusted?: pulumi.Input; /** * The version of the Feature */ version?: pulumi.Input; /** * Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ xconnect?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ xconnectVariable?: pulumi.Input; } /** * The set of arguments for constructing a ServiceLanVpnInterfaceEthernetFeature resource. */ export interface ServiceLanVpnInterfaceEthernetFeatureArgs { aclIpv4EgressPolicyId?: pulumi.Input; aclIpv4IngressPolicyId?: pulumi.Input; aclIpv6EgressPolicyId?: pulumi.Input; aclIpv6IngressPolicyId?: pulumi.Input; /** * Shaping Rate (Kbps), Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `8`-`100000000` */ aclShapingRate?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ aclShapingRateVariable?: pulumi.Input; /** * Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `0`-`2147483` * - Default value: `1200` */ arpTimeout?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ arpTimeoutVariable?: pulumi.Input; /** * Configure ARP entries, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ arps?: pulumi.Input[] | undefined>; /** * Link autonegotiation */ autonegotiate?: pulumi.Input; /** * Variable name */ autonegotiateVariable?: pulumi.Input; /** * The description of the Feature */ description?: pulumi.Input; /** * Duplex mode, Attribute conditional on `portChannelInterface` not equal to `true` * - Choices: `full`, `half`, `auto` */ duplex?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelInterface` not equal to `true` */ duplexVariable?: pulumi.Input; /** * Enable DHCPv6, Attribute conditional on `ipv6AddressType` equal to `dynamic` or `ipv6AddressTypeVariable` being set */ enableDhcpv6?: pulumi.Input; /** * Feature Profile ID */ featureProfileId: pulumi.Input; /** * ICMP/ICMPv6 Redirect Disable, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `true` */ icmpRedirectDisable?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ icmpRedirectDisableVariable?: pulumi.Input; interfaceDescription?: pulumi.Input; /** * Variable name */ interfaceDescriptionVariable?: pulumi.Input; /** * Interface MTU, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `interfaceName` not containing `.` * - Range: `1500`-`9216` * - Default value: `1500` */ interfaceMtu?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `interfaceName` not containing `.` */ interfaceMtuVariable?: pulumi.Input; interfaceName?: pulumi.Input; /** * Variable name */ interfaceNameVariable?: pulumi.Input; /** * IP Directed-Broadcast, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ ipDirectedBroadcast?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipDirectedBroadcastVariable?: pulumi.Input; /** * IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `576`-`9216` * - Default value: `1500` */ ipMtu?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipMtuVariable?: pulumi.Input; /** * IP Address, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ ipv4Address?: pulumi.Input; /** * address type, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Choices: `dynamic`, `static` */ ipv4AddressType?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4AddressTypeVariable?: pulumi.Input; /** * Variable name, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ ipv4AddressVariable?: pulumi.Input; /** * DHCP Distance, Attribute conditional on `ipv4AddressType` equal to `dynamic` or `ipv4AddressTypeVariable` being set * - Range: `1`-`255` * - Default value: `1` */ ipv4DhcpDistance?: pulumi.Input; /** * Variable name, Attribute conditional on `ipv4AddressType` equal to `dynamic` or `ipv4AddressTypeVariable` being set */ ipv4DhcpDistanceVariable?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4DhcpHelperVariable?: pulumi.Input; /** * List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4DhcpHelpers?: pulumi.Input[] | undefined>; /** * enable Network Address Translation on this interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ ipv4Nat?: pulumi.Input; /** * NAT Inside Source Loopback Interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatLoopback?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatLoopbackVariable?: pulumi.Input; /** * NAT Overload, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `true` */ ipv4NatOverload?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatOverloadVariable?: pulumi.Input; /** * NAT Pool Prefix Length, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `1`-`32` */ ipv4NatPrefixLength?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatPrefixLengthVariable?: pulumi.Input; /** * NAT Pool Range End, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatRangeEnd?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatRangeEndVariable?: pulumi.Input; /** * NAT Pool Range Start, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatRangeStart?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatRangeStartVariable?: pulumi.Input; /** * Set NAT TCP session timeout, in minutes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `1`-`8947` * - Default value: `60` */ ipv4NatTcpTimeout?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatTcpTimeoutVariable?: pulumi.Input; /** * Set NAT UDP session timeout, in minutes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `1`-`8947` * - Default value: `1` */ ipv4NatUdpTimeout?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4NatUdpTimeoutVariable?: pulumi.Input; /** * Secondary IpV4 Addresses, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ ipv4SecondaryAddresses?: pulumi.Input[] | undefined>; /** * Subnet Mask, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set * - 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.248.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` */ ipv4SubnetMask?: pulumi.Input; /** * Variable name, Attribute conditional on `ipv4AddressType` equal to `static` or `ipv4AddressTypeVariable` being set */ ipv4SubnetMaskVariable?: pulumi.Input; /** * Enable VRRP, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv4Vrrps?: pulumi.Input[] | undefined>; /** * IPv6 Address Secondary, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ ipv6Address?: pulumi.Input; /** * address type, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Choices: `dynamic`, `static` */ ipv6AddressType?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv6AddressTypeVariable?: pulumi.Input; /** * Variable name, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ ipv6AddressVariable?: pulumi.Input; /** * DHCPv6 Helper, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ ipv6DhcpHelpers?: pulumi.Input[] | undefined>; /** * secondary IPv6 addresses, Attribute conditional on `ipv6AddressType` equal to `dynamic` or `ipv6AddressTypeVariable` being set */ ipv6DhcpSecondaryAddresses?: pulumi.Input[] | undefined>; /** * enable Network Address Translation ipv6 on this interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ ipv6Nat?: pulumi.Input; /** * Static secondary IPv6 addresses, Attribute conditional on `ipv6AddressType` equal to `static` or `ipv6AddressTypeVariable` being set */ ipv6SecondaryAddresses?: pulumi.Input[] | undefined>; /** * Enable VRRP Ipv6, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ ipv6Vrrps?: pulumi.Input[] | undefined>; /** * Interval for interface load calculation * - Range: `30`-`600` * - Default value: `30` */ loadInterval?: pulumi.Input; /** * Variable name */ loadIntervalVariable?: pulumi.Input; /** * MAC Address, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `portChannelInterface` not equal to `true` */ macAddress?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` and `portChannelInterface` not equal to `true` */ macAddressVariable?: pulumi.Input; /** * Media type, Attribute conditional on `portChannelInterface` not equal to `true` * - Choices: `auto-select`, `rj45`, `sfp` */ mediaType?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelInterface` not equal to `true` */ mediaTypeVariable?: pulumi.Input; /** * The name of the Feature */ name?: pulumi.Input; /** * NAT64 on this interface * - Default value: `false` */ nat64?: pulumi.Input; /** * Port-Channel interface on/off * - Default value: `false` */ portChannelInterface?: pulumi.Input; /** * Eanble lacp fast switchover, Attribute conditional on `portChannelMode` equal to `lacp` * - Default value: `false` */ portChannelLacpFastSwitchover?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpFastSwitchoverVariable?: pulumi.Input; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `lacp` * - Choices: `flow`, `vlan` */ portChannelLacpLoadBalance?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpLoadBalanceVariable?: pulumi.Input; /** * Set LACP max bundle, Attribute conditional on `portChannelMode` equal to `lacp` * - Range: `1`-`16` */ portChannelLacpMaxBundle?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpMaxBundleVariable?: pulumi.Input; /** * Configure Port-Channel member links, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpMemberLinks?: pulumi.Input[] | undefined>; /** * Set LACP min bundle, Attribute conditional on `portChannelMode` equal to `lacp` * - Range: `1`-`16` */ portChannelLacpMinBundle?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpMinBundleVariable?: pulumi.Input; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `lacp` * - Default value: `true` */ portChannelLacpQosAggregate?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `lacp` */ portChannelLacpQosAggregateVariable?: pulumi.Input; /** * Port-Channel member interface on/off * - Default value: `false` */ portChannelMemberInterface?: pulumi.Input; /** * Port Channel Mode, Attribute conditional on `portChannelInterface` equal to `true` * - Choices: `lacp`, `static` */ portChannelMode?: pulumi.Input; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `static` * - Choices: `flow`, `vlan` */ portChannelStaticLoadBalance?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `static` */ portChannelStaticLoadBalanceVariable?: pulumi.Input; /** * Configure Port-Channel member links, Attribute conditional on `portChannelMode` equal to `static` */ portChannelStaticMemberLinks?: pulumi.Input[] | undefined>; /** * Enable QoS Port-Channel aggregate, Attribute conditional on `portChannelMode` equal to `static` * - Default value: `true` */ portChannelStaticQosAggregate?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMode` equal to `static` */ portChannelStaticQosAggregateVariable?: pulumi.Input; /** * Port Channel Sub Interface on/off, Attribute conditional on `portChannelInterface` equal to `true` */ portChannelSubinterface?: pulumi.Input; /** * , Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ portChannelSubinterfacePrimaryInterfaceName?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ portChannelSubinterfacePrimaryInterfaceNameVariable?: pulumi.Input; /** * , Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ portChannelSubinterfaceSecondaryInterfaceName?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelInterface` equal to `true` and `portChannelSubinterface` equal to `true` */ portChannelSubinterfaceSecondaryInterfaceNameVariable?: pulumi.Input; /** * Service LAN VPN Feature ID */ serviceLanVpnFeatureId: pulumi.Input; /** * - Default value: `true` */ shutdown?: pulumi.Input; /** * Variable name */ shutdownVariable?: pulumi.Input; /** * Set interface speed, Attribute conditional on `portChannelInterface` not equal to `true` * - Choices: `10`, `100`, `1000`, `2500`, `5000`, `10000`, `25000` */ speed?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelInterface` not equal to `true` */ speedVariable?: pulumi.Input; /** * static NAT, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ staticNats?: pulumi.Input[] | undefined>; /** * TCP MSS on SYN packets, in bytes, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `500`-`1460` */ tcpMss?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ tcpMssVariable?: pulumi.Input; /** * Enable/Disable SGT Enforcement on an interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ trustsecEnableEnforcedPropogation?: pulumi.Input; /** * Indicates that the interface is trustworthy for CTS, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `false` */ trustsecEnableSgtPropogation?: pulumi.Input; /** * SGT value between 2 and 65519, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `2`-`65519` */ trustsecEnforcedSecurityGroupTag?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ trustsecEnforcedSecurityGroupTagVariable?: pulumi.Input; /** * Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Default value: `true` */ trustsecPropogate?: pulumi.Input; /** * SGT value between 2 and 65519, Attribute conditional on `portChannelMemberInterface` not equal to `true` * - Range: `2`-`65519` */ trustsecSecurityGroupTag?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ trustsecSecurityGroupTagVariable?: pulumi.Input; /** * Indicates that the interface is trustworthy for CTS., Attribute conditional on (`trustsecSecurityGroupTag` being set and `portChannelMemberInterface` not equal to `true` and `trustsecEnableSgtPropogation` equal to `true` and `trustsecPropogate` equal to `true` and SD-WAN Manager version `20.18.1` or higher) or (`trustsecSecurityGroupTagVariable` being set and `portChannelMemberInterface` not equal to `true` and `trustsecEnableSgtPropogation` equal to `true` and `trustsecPropogate` equal to `true` and SD-WAN Manager version `20.18.1` or higher) * - Default value: `true` */ trustsecTrusted?: pulumi.Input; /** * Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ xconnect?: pulumi.Input; /** * Variable name, Attribute conditional on `portChannelMemberInterface` not equal to `true` */ xconnectVariable?: pulumi.Input; } //# sourceMappingURL=serviceLanVpnInterfaceEthernetFeature.d.ts.map