sdwan.TransportManagementVpnInterfaceEthernetFeature
Explore with Pulumi AI
This resource can manage a Transport Management 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.TransportManagementVpnInterfaceEthernetFeature;
import com.pulumi.sdwan.TransportManagementVpnInterfaceEthernetFeatureArgs;
import com.pulumi.sdwan.inputs.TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs;
import com.pulumi.sdwan.inputs.TransportManagementVpnInterfaceEthernetFeatureArpEntryArgs;
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 TransportManagementVpnInterfaceEthernetFeature("example", TransportManagementVpnInterfaceEthernetFeatureArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.transportManagementVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.shutdown(true)
.interfaceName("GigabitEthernet1")
.interfaceDescription("Transport Management VPN Interface Ethernet")
.ipv4ConfigurationType("static")
.ipv4Address("1.2.3.4")
.ipv4SubnetMask("0.0.0.0")
.ipv4SecondaryAddresses(TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs.builder()
.address("1.2.3.4")
.subnet_mask("0.0.0.0")
.build())
.ipv4DhcpHelpers("1.2.3.4")
.ipv4IperfServer("example")
.ipv4AutoDetectBandwidth(false)
.ipv6ConfigurationType("static")
.ipv6Address("2001:0:0:1::/64")
.arpEntries(TransportManagementVpnInterfaceEthernetFeatureArpEntryArgs.builder()
.ip_address("1.2.3.4")
.mac_address("00-B0-D0-63-C2-26")
.build())
.duplex("full")
.macAddress("00-B0-D0-63-C2-26")
.ipMtu(1500)
.interfaceMtu(1500)
.tcpMss(505)
.speed("2500")
.arpTimeout(1200)
.autonegotiate(false)
.mediaType("rj45")
.loadInterval(30)
.icmpRedirectDisable(true)
.ipDirectedBroadcast(false)
.build());
}
}
resources:
example:
type: sdwan:TransportManagementVpnInterfaceEthernetFeature
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
transportManagementVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
shutdown: true
interfaceName: GigabitEthernet1
interfaceDescription: Transport Management VPN Interface Ethernet
ipv4ConfigurationType: static
ipv4Address: 1.2.3.4
ipv4SubnetMask: 0.0.0.0
ipv4SecondaryAddresses:
- address: 1.2.3.4
subnet_mask: 0.0.0.0
ipv4DhcpHelpers:
- 1.2.3.4
ipv4IperfServer: example
ipv4AutoDetectBandwidth: false
ipv6ConfigurationType: static
ipv6Address: 2001:0:0:1::/64
arpEntries:
- ip_address: 1.2.3.4
mac_address: 00-B0-D0-63-C2-26
duplex: full
macAddress: 00-B0-D0-63-C2-26
ipMtu: 1500
interfaceMtu: 1500
tcpMss: 505
speed: '2500'
arpTimeout: 1200
autonegotiate: false
mediaType: rj45
loadInterval: 30
icmpRedirectDisable: true
ipDirectedBroadcast: false
Create TransportManagementVpnInterfaceEthernetFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TransportManagementVpnInterfaceEthernetFeature(name: string, args?: TransportManagementVpnInterfaceEthernetFeatureArgs, opts?: CustomResourceOptions);
@overload
def TransportManagementVpnInterfaceEthernetFeature(resource_name: str,
args: Optional[TransportManagementVpnInterfaceEthernetFeatureArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def TransportManagementVpnInterfaceEthernetFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
arp_entries: Optional[Sequence[TransportManagementVpnInterfaceEthernetFeatureArpEntryArgs]] = None,
arp_timeout: Optional[int] = None,
arp_timeout_variable: Optional[str] = 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_auto_detect_bandwidth: Optional[bool] = None,
ipv4_auto_detect_bandwidth_variable: Optional[str] = None,
ipv4_configuration_type: 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_iperf_server: Optional[str] = None,
ipv4_iperf_server_variable: Optional[str] = None,
ipv4_secondary_addresses: Optional[Sequence[TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs]] = None,
ipv4_subnet_mask: Optional[str] = None,
ipv4_subnet_mask_variable: Optional[str] = None,
ipv6_address: Optional[str] = None,
ipv6_address_variable: Optional[str] = None,
ipv6_configuration_type: Optional[str] = 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,
shutdown: Optional[bool] = None,
shutdown_variable: Optional[str] = None,
speed: Optional[str] = None,
speed_variable: Optional[str] = None,
tcp_mss: Optional[int] = None,
tcp_mss_variable: Optional[str] = None,
transport_management_vpn_feature_id: Optional[str] = None)
func NewTransportManagementVpnInterfaceEthernetFeature(ctx *Context, name string, args *TransportManagementVpnInterfaceEthernetFeatureArgs, opts ...ResourceOption) (*TransportManagementVpnInterfaceEthernetFeature, error)
public TransportManagementVpnInterfaceEthernetFeature(string name, TransportManagementVpnInterfaceEthernetFeatureArgs? args = null, CustomResourceOptions? opts = null)
public TransportManagementVpnInterfaceEthernetFeature(String name, TransportManagementVpnInterfaceEthernetFeatureArgs args)
public TransportManagementVpnInterfaceEthernetFeature(String name, TransportManagementVpnInterfaceEthernetFeatureArgs args, CustomResourceOptions options)
type: sdwan:TransportManagementVpnInterfaceEthernetFeature
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 TransportManagementVpnInterfaceEthernetFeatureArgs
- 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 TransportManagementVpnInterfaceEthernetFeatureArgs
- 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 TransportManagementVpnInterfaceEthernetFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TransportManagementVpnInterfaceEthernetFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TransportManagementVpnInterfaceEthernetFeatureArgs
- 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 transportManagementVpnInterfaceEthernetFeatureResource = new Sdwan.TransportManagementVpnInterfaceEthernetFeature("transportManagementVpnInterfaceEthernetFeatureResource", new()
{
ArpEntries = new[]
{
new Sdwan.Inputs.TransportManagementVpnInterfaceEthernetFeatureArpEntryArgs
{
IpAddress = "string",
IpAddressVariable = "string",
MacAddress = "string",
MacAddressVariable = "string",
},
},
ArpTimeout = 0,
ArpTimeoutVariable = "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",
Ipv4AutoDetectBandwidth = false,
Ipv4AutoDetectBandwidthVariable = "string",
Ipv4ConfigurationType = "string",
Ipv4DhcpDistance = 0,
Ipv4DhcpDistanceVariable = "string",
Ipv4DhcpHelperVariable = "string",
Ipv4DhcpHelpers = new[]
{
"string",
},
Ipv4IperfServer = "string",
Ipv4IperfServerVariable = "string",
Ipv4SecondaryAddresses = new[]
{
new Sdwan.Inputs.TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs
{
Address = "string",
AddressVariable = "string",
SubnetMask = "string",
SubnetMaskVariable = "string",
},
},
Ipv4SubnetMask = "string",
Ipv4SubnetMaskVariable = "string",
Ipv6Address = "string",
Ipv6AddressVariable = "string",
Ipv6ConfigurationType = "string",
LoadInterval = 0,
LoadIntervalVariable = "string",
MacAddress = "string",
MacAddressVariable = "string",
MediaType = "string",
MediaTypeVariable = "string",
Name = "string",
Shutdown = false,
ShutdownVariable = "string",
Speed = "string",
SpeedVariable = "string",
TcpMss = 0,
TcpMssVariable = "string",
TransportManagementVpnFeatureId = "string",
});
example, err := sdwan.NewTransportManagementVpnInterfaceEthernetFeature(ctx, "transportManagementVpnInterfaceEthernetFeatureResource", &sdwan.TransportManagementVpnInterfaceEthernetFeatureArgs{
ArpEntries: sdwan.TransportManagementVpnInterfaceEthernetFeatureArpEntryArray{
&sdwan.TransportManagementVpnInterfaceEthernetFeatureArpEntryArgs{
IpAddress: pulumi.String("string"),
IpAddressVariable: pulumi.String("string"),
MacAddress: pulumi.String("string"),
MacAddressVariable: pulumi.String("string"),
},
},
ArpTimeout: pulumi.Int(0),
ArpTimeoutVariable: 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),
FeatureProfileId: pulumi.String("string"),
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"),
Ipv4AutoDetectBandwidth: pulumi.Bool(false),
Ipv4AutoDetectBandwidthVariable: pulumi.String("string"),
Ipv4ConfigurationType: pulumi.String("string"),
Ipv4DhcpDistance: pulumi.Int(0),
Ipv4DhcpDistanceVariable: pulumi.String("string"),
Ipv4DhcpHelperVariable: pulumi.String("string"),
Ipv4DhcpHelpers: pulumi.StringArray{
pulumi.String("string"),
},
Ipv4IperfServer: pulumi.String("string"),
Ipv4IperfServerVariable: pulumi.String("string"),
Ipv4SecondaryAddresses: sdwan.TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArray{
&sdwan.TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs{
Address: pulumi.String("string"),
AddressVariable: pulumi.String("string"),
SubnetMask: pulumi.String("string"),
SubnetMaskVariable: pulumi.String("string"),
},
},
Ipv4SubnetMask: pulumi.String("string"),
Ipv4SubnetMaskVariable: pulumi.String("string"),
Ipv6Address: pulumi.String("string"),
Ipv6AddressVariable: pulumi.String("string"),
Ipv6ConfigurationType: pulumi.String("string"),
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"),
Shutdown: pulumi.Bool(false),
ShutdownVariable: pulumi.String("string"),
Speed: pulumi.String("string"),
SpeedVariable: pulumi.String("string"),
TcpMss: pulumi.Int(0),
TcpMssVariable: pulumi.String("string"),
TransportManagementVpnFeatureId: pulumi.String("string"),
})
var transportManagementVpnInterfaceEthernetFeatureResource = new TransportManagementVpnInterfaceEthernetFeature("transportManagementVpnInterfaceEthernetFeatureResource", TransportManagementVpnInterfaceEthernetFeatureArgs.builder()
.arpEntries(TransportManagementVpnInterfaceEthernetFeatureArpEntryArgs.builder()
.ipAddress("string")
.ipAddressVariable("string")
.macAddress("string")
.macAddressVariable("string")
.build())
.arpTimeout(0)
.arpTimeoutVariable("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")
.ipv4AutoDetectBandwidth(false)
.ipv4AutoDetectBandwidthVariable("string")
.ipv4ConfigurationType("string")
.ipv4DhcpDistance(0)
.ipv4DhcpDistanceVariable("string")
.ipv4DhcpHelperVariable("string")
.ipv4DhcpHelpers("string")
.ipv4IperfServer("string")
.ipv4IperfServerVariable("string")
.ipv4SecondaryAddresses(TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs.builder()
.address("string")
.addressVariable("string")
.subnetMask("string")
.subnetMaskVariable("string")
.build())
.ipv4SubnetMask("string")
.ipv4SubnetMaskVariable("string")
.ipv6Address("string")
.ipv6AddressVariable("string")
.ipv6ConfigurationType("string")
.loadInterval(0)
.loadIntervalVariable("string")
.macAddress("string")
.macAddressVariable("string")
.mediaType("string")
.mediaTypeVariable("string")
.name("string")
.shutdown(false)
.shutdownVariable("string")
.speed("string")
.speedVariable("string")
.tcpMss(0)
.tcpMssVariable("string")
.transportManagementVpnFeatureId("string")
.build());
transport_management_vpn_interface_ethernet_feature_resource = sdwan.TransportManagementVpnInterfaceEthernetFeature("transportManagementVpnInterfaceEthernetFeatureResource",
arp_entries=[{
"ip_address": "string",
"ip_address_variable": "string",
"mac_address": "string",
"mac_address_variable": "string",
}],
arp_timeout=0,
arp_timeout_variable="string",
autonegotiate=False,
autonegotiate_variable="string",
description="string",
duplex="string",
duplex_variable="string",
enable_dhcpv6=False,
feature_profile_id="string",
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_auto_detect_bandwidth=False,
ipv4_auto_detect_bandwidth_variable="string",
ipv4_configuration_type="string",
ipv4_dhcp_distance=0,
ipv4_dhcp_distance_variable="string",
ipv4_dhcp_helper_variable="string",
ipv4_dhcp_helpers=["string"],
ipv4_iperf_server="string",
ipv4_iperf_server_variable="string",
ipv4_secondary_addresses=[{
"address": "string",
"address_variable": "string",
"subnet_mask": "string",
"subnet_mask_variable": "string",
}],
ipv4_subnet_mask="string",
ipv4_subnet_mask_variable="string",
ipv6_address="string",
ipv6_address_variable="string",
ipv6_configuration_type="string",
load_interval=0,
load_interval_variable="string",
mac_address="string",
mac_address_variable="string",
media_type="string",
media_type_variable="string",
name="string",
shutdown=False,
shutdown_variable="string",
speed="string",
speed_variable="string",
tcp_mss=0,
tcp_mss_variable="string",
transport_management_vpn_feature_id="string")
const transportManagementVpnInterfaceEthernetFeatureResource = new sdwan.TransportManagementVpnInterfaceEthernetFeature("transportManagementVpnInterfaceEthernetFeatureResource", {
arpEntries: [{
ipAddress: "string",
ipAddressVariable: "string",
macAddress: "string",
macAddressVariable: "string",
}],
arpTimeout: 0,
arpTimeoutVariable: "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",
ipv4AutoDetectBandwidth: false,
ipv4AutoDetectBandwidthVariable: "string",
ipv4ConfigurationType: "string",
ipv4DhcpDistance: 0,
ipv4DhcpDistanceVariable: "string",
ipv4DhcpHelperVariable: "string",
ipv4DhcpHelpers: ["string"],
ipv4IperfServer: "string",
ipv4IperfServerVariable: "string",
ipv4SecondaryAddresses: [{
address: "string",
addressVariable: "string",
subnetMask: "string",
subnetMaskVariable: "string",
}],
ipv4SubnetMask: "string",
ipv4SubnetMaskVariable: "string",
ipv6Address: "string",
ipv6AddressVariable: "string",
ipv6ConfigurationType: "string",
loadInterval: 0,
loadIntervalVariable: "string",
macAddress: "string",
macAddressVariable: "string",
mediaType: "string",
mediaTypeVariable: "string",
name: "string",
shutdown: false,
shutdownVariable: "string",
speed: "string",
speedVariable: "string",
tcpMss: 0,
tcpMssVariable: "string",
transportManagementVpnFeatureId: "string",
});
type: sdwan:TransportManagementVpnInterfaceEthernetFeature
properties:
arpEntries:
- ipAddress: string
ipAddressVariable: string
macAddress: string
macAddressVariable: string
arpTimeout: 0
arpTimeoutVariable: 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
ipv4AutoDetectBandwidth: false
ipv4AutoDetectBandwidthVariable: string
ipv4ConfigurationType: string
ipv4DhcpDistance: 0
ipv4DhcpDistanceVariable: string
ipv4DhcpHelperVariable: string
ipv4DhcpHelpers:
- string
ipv4IperfServer: string
ipv4IperfServerVariable: string
ipv4SecondaryAddresses:
- address: string
addressVariable: string
subnetMask: string
subnetMaskVariable: string
ipv4SubnetMask: string
ipv4SubnetMaskVariable: string
ipv6Address: string
ipv6AddressVariable: string
ipv6ConfigurationType: string
loadInterval: 0
loadIntervalVariable: string
macAddress: string
macAddressVariable: string
mediaType: string
mediaTypeVariable: string
name: string
shutdown: false
shutdownVariable: string
speed: string
speedVariable: string
tcpMss: 0
tcpMssVariable: string
transportManagementVpnFeatureId: string
TransportManagementVpnInterfaceEthernetFeature Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The TransportManagementVpnInterfaceEthernetFeature resource accepts the following input properties:
- Arp
Entries List<TransportManagement Vpn Interface Ethernet Feature Arp Entry> - Configure ARP entries
- Arp
Timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- Arp
Timeout stringVariable - Variable name
- Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode - Choices:
full
,half
,auto
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- Icmp
Redirect stringDisable Variable - Variable name
- Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU - Range:
1500
-9216
- Default value:1500
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast - Default value:
false
- Ip
Directed stringBroadcast Variable - 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 stringVariable - Variable name
- Ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- Ipv4Address
Variable string - Variable name
- Ipv4Auto
Detect boolBandwidth - Interface auto detect bandwidth - Default value:
false
- Ipv4Auto
Detect stringBandwidth Variable - Variable name
- Ipv4Configuration
Type string - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- Ipv4Dhcp
Distance stringVariable - Variable name
- Ipv4Dhcp
Helper stringVariable - Variable name
- Ipv4Dhcp
Helpers List<string> - List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Iperf
Server string - Iperf server for auto bandwidth detect
- Ipv4Iperf
Server stringVariable - Variable name
- Ipv4Secondary
Addresses List<TransportManagement Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- Ipv6Address
Variable string - Variable name
- Ipv6Configuration
Type string - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- Load
Interval int - Interval for interface load calculation - Range:
30
-600
- Default value:30
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Media
Type string - Media type - Choices:
auto-select
,rj45
,sfp
- Media
Type stringVariable - Variable name
- Name string
- The name of the Feature
- Shutdown bool
- Default value:
true
- Default value:
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- Speed
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- Tcp
Mss stringVariable - Variable name
- Transport
Management stringVpn Feature Id - Transport Management VPN Feature ID
- Arp
Entries []TransportManagement Vpn Interface Ethernet Feature Arp Entry Args - Configure ARP entries
- Arp
Timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- Arp
Timeout stringVariable - Variable name
- Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode - Choices:
full
,half
,auto
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- Icmp
Redirect stringDisable Variable - Variable name
- Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU - Range:
1500
-9216
- Default value:1500
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast - Default value:
false
- Ip
Directed stringBroadcast Variable - 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 stringVariable - Variable name
- Ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- Ipv4Address
Variable string - Variable name
- Ipv4Auto
Detect boolBandwidth - Interface auto detect bandwidth - Default value:
false
- Ipv4Auto
Detect stringBandwidth Variable - Variable name
- Ipv4Configuration
Type string - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- Ipv4Dhcp
Distance stringVariable - Variable name
- Ipv4Dhcp
Helper stringVariable - Variable name
- Ipv4Dhcp
Helpers []string - List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Iperf
Server string - Iperf server for auto bandwidth detect
- Ipv4Iperf
Server stringVariable - Variable name
- Ipv4Secondary
Addresses []TransportManagement Vpn Interface Ethernet Feature Ipv4Secondary Address Args - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- Ipv6Address
Variable string - Variable name
- Ipv6Configuration
Type string - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- Load
Interval int - Interval for interface load calculation - Range:
30
-600
- Default value:30
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Media
Type string - Media type - Choices:
auto-select
,rj45
,sfp
- Media
Type stringVariable - Variable name
- Name string
- The name of the Feature
- Shutdown bool
- Default value:
true
- Default value:
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- Speed
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- Tcp
Mss stringVariable - Variable name
- Transport
Management stringVpn Feature Id - Transport Management VPN Feature ID
- arp
Entries List<TransportManagement Vpn Interface Ethernet Feature Arp Entry> - Configure ARP entries
- arp
Timeout Integer - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- arp
Timeout StringVariable - Variable name
- autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode - Choices:
full
,half
,auto
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- icmp
Redirect StringDisable Variable - Variable name
- interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Integer - Interface MTU - Range:
1500
-9216
- Default value:1500
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast - Default value:
false
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu 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
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Address
Variable String - Variable name
- ipv4Auto
Detect BooleanBandwidth - Interface auto detect bandwidth - Default value:
false
- ipv4Auto
Detect StringBandwidth Variable - Variable name
- ipv4Configuration
Type String - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- ipv4Dhcp
Distance Integer - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- ipv4Dhcp
Distance StringVariable - Variable name
- ipv4Dhcp
Helper StringVariable - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Iperf
Server String - Iperf server for auto bandwidth detect
- ipv4Iperf
Server StringVariable - Variable name
- ipv4Secondary
Addresses List<TransportManagement Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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
- ipv4Subnet
Mask StringVariable - Variable name
- ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- ipv6Address
Variable String - Variable name
- ipv6Configuration
Type String - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- load
Interval Integer - Interval for interface load calculation - Range:
30
-600
- Default value:30
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- media
Type String - Media type - Choices:
auto-select
,rj45
,sfp
- media
Type StringVariable - Variable name
- name String
- The name of the Feature
- shutdown Boolean
- Default value:
true
- Default value:
- shutdown
Variable String - Variable name
- speed String
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- speed
Variable String - Variable name
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss StringVariable - Variable name
- transport
Management StringVpn Feature Id - Transport Management VPN Feature ID
- arp
Entries TransportManagement Vpn Interface Ethernet Feature Arp Entry[] - Configure ARP entries
- arp
Timeout number - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- arp
Timeout stringVariable - Variable name
- autonegotiate boolean
- Link autonegotiation
- autonegotiate
Variable string - Variable name
- description string
- The description of the Feature
- duplex string
- Duplex mode - Choices:
full
,half
,auto
- duplex
Variable string - Variable name
- enable
Dhcpv6 boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- feature
Profile stringId - Feature Profile ID
- icmp
Redirect booleanDisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- icmp
Redirect stringDisable Variable - Variable name
- interface
Description string - interface
Description stringVariable - Variable name
- interface
Mtu number - Interface MTU - Range:
1500
-9216
- Default value:1500
- interface
Mtu stringVariable - Variable name
- interface
Name string - interface
Name stringVariable - Variable name
- ip
Directed booleanBroadcast - IP Directed-Broadcast - Default value:
false
- ip
Directed stringBroadcast Variable - Variable name
- ip
Mtu 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
- ip
Mtu stringVariable - Variable name
- ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Address
Variable string - Variable name
- ipv4Auto
Detect booleanBandwidth - Interface auto detect bandwidth - Default value:
false
- ipv4Auto
Detect stringBandwidth Variable - Variable name
- ipv4Configuration
Type string - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- ipv4Dhcp
Distance number - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- ipv4Dhcp
Distance stringVariable - Variable name
- ipv4Dhcp
Helper stringVariable - Variable name
- ipv4Dhcp
Helpers string[] - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Iperf
Server string - Iperf server for auto bandwidth detect
- ipv4Iperf
Server stringVariable - Variable name
- ipv4Secondary
Addresses TransportManagement Vpn Interface Ethernet Feature Ipv4Secondary Address[] - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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
- ipv4Subnet
Mask stringVariable - Variable name
- ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- ipv6Address
Variable string - Variable name
- ipv6Configuration
Type string - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- load
Interval number - Interval for interface load calculation - Range:
30
-600
- Default value:30
- load
Interval stringVariable - Variable name
- mac
Address string - MAC Address
- mac
Address stringVariable - Variable name
- media
Type string - Media type - Choices:
auto-select
,rj45
,sfp
- media
Type stringVariable - Variable name
- name string
- The name of the Feature
- shutdown boolean
- Default value:
true
- Default value:
- shutdown
Variable string - Variable name
- speed string
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- speed
Variable string - Variable name
- tcp
Mss number - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss stringVariable - Variable name
- transport
Management stringVpn Feature Id - Transport Management VPN Feature ID
- arp_
entries Sequence[TransportManagement Vpn Interface Ethernet Feature Arp Entry Args] - Configure ARP entries
- arp_
timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- arp_
timeout_ strvariable - Variable name
- 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, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- feature_
profile_ strid - Feature Profile ID
- icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- icmp_
redirect_ strdisable_ variable - Variable name
- interface_
description str - interface_
description_ strvariable - Variable name
- interface_
mtu int - Interface MTU - Range:
1500
-9216
- Default value:1500
- interface_
mtu_ strvariable - Variable name
- interface_
name str - interface_
name_ strvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast - Default value:
false
- ip_
directed_ strbroadcast_ variable - 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_ strvariable - Variable name
- ipv4_
address str - IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4_
address_ strvariable - Variable name
- ipv4_
auto_ booldetect_ bandwidth - Interface auto detect bandwidth - Default value:
false
- ipv4_
auto_ strdetect_ bandwidth_ variable - Variable name
- ipv4_
configuration_ strtype - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- ipv4_
dhcp_ intdistance - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- ipv4_
dhcp_ strdistance_ variable - Variable name
- ipv4_
dhcp_ strhelper_ variable - Variable name
- ipv4_
dhcp_ Sequence[str]helpers - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4_
iperf_ strserver - Iperf server for auto bandwidth detect
- ipv4_
iperf_ strserver_ variable - Variable name
- ipv4_
secondary_ Sequence[Transportaddresses Management Vpn Interface Ethernet Feature Ipv4Secondary Address Args] - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4_
subnet_ strmask - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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_ strmask_ variable - Variable name
- ipv6_
address str - IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- ipv6_
address_ strvariable - Variable name
- ipv6_
configuration_ strtype - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- load_
interval int - Interval for interface load calculation - Range:
30
-600
- Default value:30
- load_
interval_ strvariable - Variable name
- mac_
address str - MAC Address
- mac_
address_ strvariable - Variable name
- media_
type str - Media type - Choices:
auto-select
,rj45
,sfp
- media_
type_ strvariable - Variable name
- name str
- The name of the Feature
- shutdown bool
- Default value:
true
- Default value:
- shutdown_
variable str - Variable name
- speed str
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- speed_
variable str - Variable name
- tcp_
mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp_
mss_ strvariable - Variable name
- transport_
management_ strvpn_ feature_ id - Transport Management VPN Feature ID
- arp
Entries List<Property Map> - Configure ARP entries
- arp
Timeout Number - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- arp
Timeout StringVariable - Variable name
- autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode - Choices:
full
,half
,auto
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- icmp
Redirect StringDisable Variable - Variable name
- interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Number - Interface MTU - Range:
1500
-9216
- Default value:1500
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast - Default value:
false
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu 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
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Address
Variable String - Variable name
- ipv4Auto
Detect BooleanBandwidth - Interface auto detect bandwidth - Default value:
false
- ipv4Auto
Detect StringBandwidth Variable - Variable name
- ipv4Configuration
Type String - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- ipv4Dhcp
Distance Number - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- ipv4Dhcp
Distance StringVariable - Variable name
- ipv4Dhcp
Helper StringVariable - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Iperf
Server String - Iperf server for auto bandwidth detect
- ipv4Iperf
Server StringVariable - Variable name
- ipv4Secondary
Addresses List<Property Map> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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
- ipv4Subnet
Mask StringVariable - Variable name
- ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- ipv6Address
Variable String - Variable name
- ipv6Configuration
Type String - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- load
Interval Number - Interval for interface load calculation - Range:
30
-600
- Default value:30
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- media
Type String - Media type - Choices:
auto-select
,rj45
,sfp
- media
Type StringVariable - Variable name
- name String
- The name of the Feature
- shutdown Boolean
- Default value:
true
- Default value:
- shutdown
Variable String - Variable name
- speed String
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- speed
Variable String - Variable name
- tcp
Mss Number - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss StringVariable - Variable name
- transport
Management StringVpn Feature Id - Transport Management VPN Feature ID
Outputs
All input properties are implicitly available as output properties. Additionally, the TransportManagementVpnInterfaceEthernetFeature resource produces the following output properties:
Look up Existing TransportManagementVpnInterfaceEthernetFeature Resource
Get an existing TransportManagementVpnInterfaceEthernetFeature 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?: TransportManagementVpnInterfaceEthernetFeatureState, opts?: CustomResourceOptions): TransportManagementVpnInterfaceEthernetFeature
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arp_entries: Optional[Sequence[TransportManagementVpnInterfaceEthernetFeatureArpEntryArgs]] = None,
arp_timeout: Optional[int] = None,
arp_timeout_variable: Optional[str] = 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_auto_detect_bandwidth: Optional[bool] = None,
ipv4_auto_detect_bandwidth_variable: Optional[str] = None,
ipv4_configuration_type: 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_iperf_server: Optional[str] = None,
ipv4_iperf_server_variable: Optional[str] = None,
ipv4_secondary_addresses: Optional[Sequence[TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs]] = None,
ipv4_subnet_mask: Optional[str] = None,
ipv4_subnet_mask_variable: Optional[str] = None,
ipv6_address: Optional[str] = None,
ipv6_address_variable: Optional[str] = None,
ipv6_configuration_type: Optional[str] = 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,
shutdown: Optional[bool] = None,
shutdown_variable: Optional[str] = None,
speed: Optional[str] = None,
speed_variable: Optional[str] = None,
tcp_mss: Optional[int] = None,
tcp_mss_variable: Optional[str] = None,
transport_management_vpn_feature_id: Optional[str] = None,
version: Optional[int] = None) -> TransportManagementVpnInterfaceEthernetFeature
func GetTransportManagementVpnInterfaceEthernetFeature(ctx *Context, name string, id IDInput, state *TransportManagementVpnInterfaceEthernetFeatureState, opts ...ResourceOption) (*TransportManagementVpnInterfaceEthernetFeature, error)
public static TransportManagementVpnInterfaceEthernetFeature Get(string name, Input<string> id, TransportManagementVpnInterfaceEthernetFeatureState? state, CustomResourceOptions? opts = null)
public static TransportManagementVpnInterfaceEthernetFeature get(String name, Output<String> id, TransportManagementVpnInterfaceEthernetFeatureState 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.
- Arp
Entries List<TransportManagement Vpn Interface Ethernet Feature Arp Entry> - Configure ARP entries
- Arp
Timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- Arp
Timeout stringVariable - Variable name
- Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode - Choices:
full
,half
,auto
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- Icmp
Redirect stringDisable Variable - Variable name
- Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU - Range:
1500
-9216
- Default value:1500
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast - Default value:
false
- Ip
Directed stringBroadcast Variable - 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 stringVariable - Variable name
- Ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- Ipv4Address
Variable string - Variable name
- Ipv4Auto
Detect boolBandwidth - Interface auto detect bandwidth - Default value:
false
- Ipv4Auto
Detect stringBandwidth Variable - Variable name
- Ipv4Configuration
Type string - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- Ipv4Dhcp
Distance stringVariable - Variable name
- Ipv4Dhcp
Helper stringVariable - Variable name
- Ipv4Dhcp
Helpers List<string> - List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Iperf
Server string - Iperf server for auto bandwidth detect
- Ipv4Iperf
Server stringVariable - Variable name
- Ipv4Secondary
Addresses List<TransportManagement Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- Ipv6Address
Variable string - Variable name
- Ipv6Configuration
Type string - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- Load
Interval int - Interval for interface load calculation - Range:
30
-600
- Default value:30
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Media
Type string - Media type - Choices:
auto-select
,rj45
,sfp
- Media
Type stringVariable - Variable name
- Name string
- The name of the Feature
- Shutdown bool
- Default value:
true
- Default value:
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- Speed
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- Tcp
Mss stringVariable - Variable name
- Transport
Management stringVpn Feature Id - Transport Management VPN Feature ID
- Version int
- The version of the Feature
- Arp
Entries []TransportManagement Vpn Interface Ethernet Feature Arp Entry Args - Configure ARP entries
- Arp
Timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- Arp
Timeout stringVariable - Variable name
- Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode - Choices:
full
,half
,auto
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- Icmp
Redirect stringDisable Variable - Variable name
- Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU - Range:
1500
-9216
- Default value:1500
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast - Default value:
false
- Ip
Directed stringBroadcast Variable - 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 stringVariable - Variable name
- Ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- Ipv4Address
Variable string - Variable name
- Ipv4Auto
Detect boolBandwidth - Interface auto detect bandwidth - Default value:
false
- Ipv4Auto
Detect stringBandwidth Variable - Variable name
- Ipv4Configuration
Type string - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- Ipv4Dhcp
Distance stringVariable - Variable name
- Ipv4Dhcp
Helper stringVariable - Variable name
- Ipv4Dhcp
Helpers []string - List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Iperf
Server string - Iperf server for auto bandwidth detect
- Ipv4Iperf
Server stringVariable - Variable name
- Ipv4Secondary
Addresses []TransportManagement Vpn Interface Ethernet Feature Ipv4Secondary Address Args - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- Ipv6Address
Variable string - Variable name
- Ipv6Configuration
Type string - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- Load
Interval int - Interval for interface load calculation - Range:
30
-600
- Default value:30
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Media
Type string - Media type - Choices:
auto-select
,rj45
,sfp
- Media
Type stringVariable - Variable name
- Name string
- The name of the Feature
- Shutdown bool
- Default value:
true
- Default value:
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- Speed
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- Tcp
Mss stringVariable - Variable name
- Transport
Management stringVpn Feature Id - Transport Management VPN Feature ID
- Version int
- The version of the Feature
- arp
Entries List<TransportManagement Vpn Interface Ethernet Feature Arp Entry> - Configure ARP entries
- arp
Timeout Integer - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- arp
Timeout StringVariable - Variable name
- autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode - Choices:
full
,half
,auto
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- icmp
Redirect StringDisable Variable - Variable name
- interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Integer - Interface MTU - Range:
1500
-9216
- Default value:1500
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast - Default value:
false
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu 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
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Address
Variable String - Variable name
- ipv4Auto
Detect BooleanBandwidth - Interface auto detect bandwidth - Default value:
false
- ipv4Auto
Detect StringBandwidth Variable - Variable name
- ipv4Configuration
Type String - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- ipv4Dhcp
Distance Integer - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- ipv4Dhcp
Distance StringVariable - Variable name
- ipv4Dhcp
Helper StringVariable - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Iperf
Server String - Iperf server for auto bandwidth detect
- ipv4Iperf
Server StringVariable - Variable name
- ipv4Secondary
Addresses List<TransportManagement Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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
- ipv4Subnet
Mask StringVariable - Variable name
- ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- ipv6Address
Variable String - Variable name
- ipv6Configuration
Type String - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- load
Interval Integer - Interval for interface load calculation - Range:
30
-600
- Default value:30
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- media
Type String - Media type - Choices:
auto-select
,rj45
,sfp
- media
Type StringVariable - Variable name
- name String
- The name of the Feature
- shutdown Boolean
- Default value:
true
- Default value:
- shutdown
Variable String - Variable name
- speed String
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- speed
Variable String - Variable name
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss StringVariable - Variable name
- transport
Management StringVpn Feature Id - Transport Management VPN Feature ID
- version Integer
- The version of the Feature
- arp
Entries TransportManagement Vpn Interface Ethernet Feature Arp Entry[] - Configure ARP entries
- arp
Timeout number - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- arp
Timeout stringVariable - Variable name
- autonegotiate boolean
- Link autonegotiation
- autonegotiate
Variable string - Variable name
- description string
- The description of the Feature
- duplex string
- Duplex mode - Choices:
full
,half
,auto
- duplex
Variable string - Variable name
- enable
Dhcpv6 boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- feature
Profile stringId - Feature Profile ID
- icmp
Redirect booleanDisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- icmp
Redirect stringDisable Variable - Variable name
- interface
Description string - interface
Description stringVariable - Variable name
- interface
Mtu number - Interface MTU - Range:
1500
-9216
- Default value:1500
- interface
Mtu stringVariable - Variable name
- interface
Name string - interface
Name stringVariable - Variable name
- ip
Directed booleanBroadcast - IP Directed-Broadcast - Default value:
false
- ip
Directed stringBroadcast Variable - Variable name
- ip
Mtu 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
- ip
Mtu stringVariable - Variable name
- ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Address
Variable string - Variable name
- ipv4Auto
Detect booleanBandwidth - Interface auto detect bandwidth - Default value:
false
- ipv4Auto
Detect stringBandwidth Variable - Variable name
- ipv4Configuration
Type string - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- ipv4Dhcp
Distance number - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- ipv4Dhcp
Distance stringVariable - Variable name
- ipv4Dhcp
Helper stringVariable - Variable name
- ipv4Dhcp
Helpers string[] - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Iperf
Server string - Iperf server for auto bandwidth detect
- ipv4Iperf
Server stringVariable - Variable name
- ipv4Secondary
Addresses TransportManagement Vpn Interface Ethernet Feature Ipv4Secondary Address[] - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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
- ipv4Subnet
Mask stringVariable - Variable name
- ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- ipv6Address
Variable string - Variable name
- ipv6Configuration
Type string - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- load
Interval number - Interval for interface load calculation - Range:
30
-600
- Default value:30
- load
Interval stringVariable - Variable name
- mac
Address string - MAC Address
- mac
Address stringVariable - Variable name
- media
Type string - Media type - Choices:
auto-select
,rj45
,sfp
- media
Type stringVariable - Variable name
- name string
- The name of the Feature
- shutdown boolean
- Default value:
true
- Default value:
- shutdown
Variable string - Variable name
- speed string
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- speed
Variable string - Variable name
- tcp
Mss number - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss stringVariable - Variable name
- transport
Management stringVpn Feature Id - Transport Management VPN Feature ID
- version number
- The version of the Feature
- arp_
entries Sequence[TransportManagement Vpn Interface Ethernet Feature Arp Entry Args] - Configure ARP entries
- arp_
timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- arp_
timeout_ strvariable - Variable name
- 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, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- feature_
profile_ strid - Feature Profile ID
- icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- icmp_
redirect_ strdisable_ variable - Variable name
- interface_
description str - interface_
description_ strvariable - Variable name
- interface_
mtu int - Interface MTU - Range:
1500
-9216
- Default value:1500
- interface_
mtu_ strvariable - Variable name
- interface_
name str - interface_
name_ strvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast - Default value:
false
- ip_
directed_ strbroadcast_ variable - 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_ strvariable - Variable name
- ipv4_
address str - IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4_
address_ strvariable - Variable name
- ipv4_
auto_ booldetect_ bandwidth - Interface auto detect bandwidth - Default value:
false
- ipv4_
auto_ strdetect_ bandwidth_ variable - Variable name
- ipv4_
configuration_ strtype - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- ipv4_
dhcp_ intdistance - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- ipv4_
dhcp_ strdistance_ variable - Variable name
- ipv4_
dhcp_ strhelper_ variable - Variable name
- ipv4_
dhcp_ Sequence[str]helpers - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4_
iperf_ strserver - Iperf server for auto bandwidth detect
- ipv4_
iperf_ strserver_ variable - Variable name
- ipv4_
secondary_ Sequence[Transportaddresses Management Vpn Interface Ethernet Feature Ipv4Secondary Address Args] - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4_
subnet_ strmask - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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_ strmask_ variable - Variable name
- ipv6_
address str - IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- ipv6_
address_ strvariable - Variable name
- ipv6_
configuration_ strtype - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- load_
interval int - Interval for interface load calculation - Range:
30
-600
- Default value:30
- load_
interval_ strvariable - Variable name
- mac_
address str - MAC Address
- mac_
address_ strvariable - Variable name
- media_
type str - Media type - Choices:
auto-select
,rj45
,sfp
- media_
type_ strvariable - Variable name
- name str
- The name of the Feature
- shutdown bool
- Default value:
true
- Default value:
- shutdown_
variable str - Variable name
- speed str
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- speed_
variable str - Variable name
- tcp_
mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp_
mss_ strvariable - Variable name
- transport_
management_ strvpn_ feature_ id - Transport Management VPN Feature ID
- version int
- The version of the Feature
- arp
Entries List<Property Map> - Configure ARP entries
- arp
Timeout Number - Timeout value for dynamically learned ARP entries, <0..2678400> seconds - Range:
0
-2147483
- Default value:1200
- arp
Timeout StringVariable - Variable name
- autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode - Choices:
full
,half
,auto
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_type
being equal todynamic
- feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable - Default value:
true
- icmp
Redirect StringDisable Variable - Variable name
- interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Number - Interface MTU - Range:
1500
-9216
- Default value:1500
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast - Default value:
false
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu 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
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Address
Variable String - Variable name
- ipv4Auto
Detect BooleanBandwidth - Interface auto detect bandwidth - Default value:
false
- ipv4Auto
Detect StringBandwidth Variable - Variable name
- ipv4Configuration
Type String - IPv4 Configuration Type - Choices:
dynamic
,static
- Default value:dynamic
- ipv4Dhcp
Distance Number - DHCP Distance, Attribute conditional on
ipv4_configuration_type
being equal todynamic
- Range:1
-65536
- Default value:1
- ipv4Dhcp
Distance StringVariable - Variable name
- ipv4Dhcp
Helper StringVariable - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Iperf
Server String - Iperf server for auto bandwidth detect
- ipv4Iperf
Server StringVariable - Variable name
- ipv4Secondary
Addresses List<Property Map> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4_configuration_type
being equal tostatic
- 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
- ipv4Subnet
Mask StringVariable - Variable name
- ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_type
being equal tostatic
- ipv6Address
Variable String - Variable name
- ipv6Configuration
Type String - IPv6 Configuration Type - Choices:
dynamic
,static
,none
- Default value:none
- load
Interval Number - Interval for interface load calculation - Range:
30
-600
- Default value:30
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- media
Type String - Media type - Choices:
auto-select
,rj45
,sfp
- media
Type StringVariable - Variable name
- name String
- The name of the Feature
- shutdown Boolean
- Default value:
true
- Default value:
- shutdown
Variable String - Variable name
- speed String
- Set interface speed - Choices:
10
,100
,1000
,2500
,10000
- speed
Variable String - Variable name
- tcp
Mss Number - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss StringVariable - Variable name
- transport
Management StringVpn Feature Id - Transport Management VPN Feature ID
- version Number
- The version of the Feature
Supporting Types
TransportManagementVpnInterfaceEthernetFeatureArpEntry, TransportManagementVpnInterfaceEthernetFeatureArpEntryArgs
- Ip
Address string - IPV4 Address
- Ip
Address stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Ip
Address string - IPV4 Address
- Ip
Address stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- ip
Address String - IPV4 Address
- ip
Address StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- ip
Address string - IPV4 Address
- ip
Address stringVariable - Variable name
- mac
Address string - MAC Address
- mac
Address stringVariable - Variable name
- ip_
address str - IPV4 Address
- ip_
address_ strvariable - Variable name
- mac_
address str - MAC Address
- mac_
address_ strvariable - Variable name
- ip
Address String - IPV4 Address
- ip
Address StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddress, TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Subnet
Mask 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
- Choices:
- Subnet
Mask stringVariable - Variable name
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Subnet
Mask 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
- Choices:
- Subnet
Mask stringVariable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- subnet
Mask 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
- Choices:
- subnet
Mask StringVariable - Variable name
- address string
- IpV4 Address
- address
Variable string - Variable name
- subnet
Mask 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
- Choices:
- subnet
Mask stringVariable - 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
- Choices:
- subnet_
mask_ strvariable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- subnet
Mask 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
- Choices:
- subnet
Mask StringVariable - Variable name
Import
Expected import identifier with the format: “transport_management_vpn_interface_ethernet_feature_id,feature_profile_id,transport_management_vpn_feature_id”
$ pulumi import sdwan:index/transportManagementVpnInterfaceEthernetFeature:TransportManagementVpnInterfaceEthernetFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037"
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.