published on Tuesday, Apr 7, 2026 by Pulumi
published on Tuesday, Apr 7, 2026 by Pulumi
This resource can manage a Transport Management VPN Interface Ethernet Feature.
- Minimum SD-WAN Manager version:
20.15.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.TransportManagementVpnInterfaceEthernetFeature("example", {
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",
ipv4AddressType: "static",
ipv4Address: "1.2.3.4",
ipv4SubnetMask: "0.0.0.0",
ipv4SecondaryAddresses: [{
address: "1.2.3.4",
subnetMask: "0.0.0.0",
}],
ipv4DhcpHelpers: ["1.2.3.4"],
ipv4IperfServer: "example",
ipv4AutoDetectBandwidth: false,
ipv6AddressType: "static",
ipv6Address: "2001:0:0:1::/64",
arpEntries: [{
ipAddress: "1.2.3.4",
macAddress: "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,
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.TransportManagementVpnInterfaceEthernetFeature("example",
name="Example",
description="My Example",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
transport_management_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
shutdown=True,
interface_name="GigabitEthernet1",
interface_description="Transport Management VPN Interface Ethernet",
ipv4_address_type="static",
ipv4_address="1.2.3.4",
ipv4_subnet_mask="0.0.0.0",
ipv4_secondary_addresses=[{
"address": "1.2.3.4",
"subnet_mask": "0.0.0.0",
}],
ipv4_dhcp_helpers=["1.2.3.4"],
ipv4_iperf_server="example",
ipv4_auto_detect_bandwidth=False,
ipv6_address_type="static",
ipv6_address="2001:0:0:1::/64",
arp_entries=[{
"ip_address": "1.2.3.4",
"mac_address": "00-B0-D0-63-C2-26",
}],
duplex="full",
mac_address="00-B0-D0-63-C2-26",
ip_mtu=1500,
interface_mtu=1500,
tcp_mss=505,
speed="2500",
arp_timeout=1200,
autonegotiate=False,
media_type="rj45",
load_interval=30,
icmp_redirect_disable=True,
ip_directed_broadcast=False)
package main
import (
"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdwan.NewTransportManagementVpnInterfaceEthernetFeature(ctx, "example", &sdwan.TransportManagementVpnInterfaceEthernetFeatureArgs{
Name: pulumi.String("Example"),
Description: pulumi.String("My Example"),
FeatureProfileId: pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
TransportManagementVpnFeatureId: pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
Shutdown: pulumi.Bool(true),
InterfaceName: pulumi.String("GigabitEthernet1"),
InterfaceDescription: pulumi.String("Transport Management VPN Interface Ethernet"),
Ipv4AddressType: pulumi.String("static"),
Ipv4Address: pulumi.String("1.2.3.4"),
Ipv4SubnetMask: pulumi.String("0.0.0.0"),
Ipv4SecondaryAddresses: sdwan.TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArray{
&sdwan.TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs{
Address: pulumi.String("1.2.3.4"),
SubnetMask: pulumi.String("0.0.0.0"),
},
},
Ipv4DhcpHelpers: pulumi.StringArray{
pulumi.String("1.2.3.4"),
},
Ipv4IperfServer: pulumi.String("example"),
Ipv4AutoDetectBandwidth: pulumi.Bool(false),
Ipv6AddressType: pulumi.String("static"),
Ipv6Address: pulumi.String("2001:0:0:1::/64"),
ArpEntries: sdwan.TransportManagementVpnInterfaceEthernetFeatureArpEntryArray{
&sdwan.TransportManagementVpnInterfaceEthernetFeatureArpEntryArgs{
IpAddress: pulumi.String("1.2.3.4"),
MacAddress: pulumi.String("00-B0-D0-63-C2-26"),
},
},
Duplex: pulumi.String("full"),
MacAddress: pulumi.String("00-B0-D0-63-C2-26"),
IpMtu: pulumi.Int(1500),
InterfaceMtu: pulumi.Int(1500),
TcpMss: pulumi.Int(505),
Speed: pulumi.String("2500"),
ArpTimeout: pulumi.Int(1200),
Autonegotiate: pulumi.Bool(false),
MediaType: pulumi.String("rj45"),
LoadInterval: pulumi.Int(30),
IcmpRedirectDisable: pulumi.Bool(true),
IpDirectedBroadcast: pulumi.Bool(false),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() =>
{
var example = new Sdwan.TransportManagementVpnInterfaceEthernetFeature("example", new()
{
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",
Ipv4AddressType = "static",
Ipv4Address = "1.2.3.4",
Ipv4SubnetMask = "0.0.0.0",
Ipv4SecondaryAddresses = new[]
{
new Sdwan.Inputs.TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs
{
Address = "1.2.3.4",
SubnetMask = "0.0.0.0",
},
},
Ipv4DhcpHelpers = new[]
{
"1.2.3.4",
},
Ipv4IperfServer = "example",
Ipv4AutoDetectBandwidth = false,
Ipv6AddressType = "static",
Ipv6Address = "2001:0:0:1::/64",
ArpEntries = new[]
{
new Sdwan.Inputs.TransportManagementVpnInterfaceEthernetFeatureArpEntryArgs
{
IpAddress = "1.2.3.4",
MacAddress = "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,
});
});
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")
.ipv4AddressType("static")
.ipv4Address("1.2.3.4")
.ipv4SubnetMask("0.0.0.0")
.ipv4SecondaryAddresses(TransportManagementVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs.builder()
.address("1.2.3.4")
.subnetMask("0.0.0.0")
.build())
.ipv4DhcpHelpers("1.2.3.4")
.ipv4IperfServer("example")
.ipv4AutoDetectBandwidth(false)
.ipv6AddressType("static")
.ipv6Address("2001:0:0:1::/64")
.arpEntries(TransportManagementVpnInterfaceEthernetFeatureArpEntryArgs.builder()
.ipAddress("1.2.3.4")
.macAddress("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
ipv4AddressType: static
ipv4Address: 1.2.3.4
ipv4SubnetMask: 0.0.0.0
ipv4SecondaryAddresses:
- address: 1.2.3.4
subnetMask: 0.0.0.0
ipv4DhcpHelpers:
- 1.2.3.4
ipv4IperfServer: example
ipv4AutoDetectBandwidth: false
ipv6AddressType: static
ipv6Address: 2001:0:0:1::/64
arpEntries:
- ipAddress: 1.2.3.4
macAddress: 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
Example coming soon!
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: TransportManagementVpnInterfaceEthernetFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TransportManagementVpnInterfaceEthernetFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
transport_management_vpn_feature_id: Optional[str] = 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,
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_type: Optional[str] = None,
ipv4_address_type_variable: 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_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_type: Optional[str] = None,
ipv6_address_type_variable: Optional[str] = None,
ipv6_address_variable: 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)func NewTransportManagementVpnInterfaceEthernetFeature(ctx *Context, name string, args TransportManagementVpnInterfaceEthernetFeatureArgs, opts ...ResourceOption) (*TransportManagementVpnInterfaceEthernetFeature, error)public TransportManagementVpnInterfaceEthernetFeature(string name, TransportManagementVpnInterfaceEthernetFeatureArgs args, 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.
resource "sdwan_transportmanagementvpninterfaceethernetfeature" "name" {
# resource properties
}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()
{
FeatureProfileId = "string",
TransportManagementVpnFeatureId = "string",
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,
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",
Ipv4AddressType = "string",
Ipv4AddressTypeVariable = "string",
Ipv4AddressVariable = "string",
Ipv4AutoDetectBandwidth = false,
Ipv4AutoDetectBandwidthVariable = "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",
Ipv6AddressType = "string",
Ipv6AddressTypeVariable = "string",
Ipv6AddressVariable = "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",
});
example, err := sdwan.NewTransportManagementVpnInterfaceEthernetFeature(ctx, "transportManagementVpnInterfaceEthernetFeatureResource", &sdwan.TransportManagementVpnInterfaceEthernetFeatureArgs{
FeatureProfileId: pulumi.String("string"),
TransportManagementVpnFeatureId: pulumi.String("string"),
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),
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"),
Ipv4AddressType: pulumi.String("string"),
Ipv4AddressTypeVariable: pulumi.String("string"),
Ipv4AddressVariable: pulumi.String("string"),
Ipv4AutoDetectBandwidth: pulumi.Bool(false),
Ipv4AutoDetectBandwidthVariable: 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"),
Ipv6AddressType: pulumi.String("string"),
Ipv6AddressTypeVariable: pulumi.String("string"),
Ipv6AddressVariable: 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"),
})
resource "sdwan_transportmanagementvpninterfaceethernetfeature" "transportManagementVpnInterfaceEthernetFeatureResource" {
feature_profile_id = "string"
transport_management_vpn_feature_id = "string"
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
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_type = "string"
ipv4_address_type_variable = "string"
ipv4_address_variable = "string"
ipv4_auto_detect_bandwidth = false
ipv4_auto_detect_bandwidth_variable = "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_type = "string"
ipv6_address_type_variable = "string"
ipv6_address_variable = "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"
}
var transportManagementVpnInterfaceEthernetFeatureResource = new TransportManagementVpnInterfaceEthernetFeature("transportManagementVpnInterfaceEthernetFeatureResource", TransportManagementVpnInterfaceEthernetFeatureArgs.builder()
.featureProfileId("string")
.transportManagementVpnFeatureId("string")
.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)
.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")
.ipv4AddressType("string")
.ipv4AddressTypeVariable("string")
.ipv4AddressVariable("string")
.ipv4AutoDetectBandwidth(false)
.ipv4AutoDetectBandwidthVariable("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")
.ipv6AddressType("string")
.ipv6AddressTypeVariable("string")
.ipv6AddressVariable("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")
.build());
transport_management_vpn_interface_ethernet_feature_resource = sdwan.TransportManagementVpnInterfaceEthernetFeature("transportManagementVpnInterfaceEthernetFeatureResource",
feature_profile_id="string",
transport_management_vpn_feature_id="string",
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,
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_type="string",
ipv4_address_type_variable="string",
ipv4_address_variable="string",
ipv4_auto_detect_bandwidth=False,
ipv4_auto_detect_bandwidth_variable="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_type="string",
ipv6_address_type_variable="string",
ipv6_address_variable="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")
const transportManagementVpnInterfaceEthernetFeatureResource = new sdwan.TransportManagementVpnInterfaceEthernetFeature("transportManagementVpnInterfaceEthernetFeatureResource", {
featureProfileId: "string",
transportManagementVpnFeatureId: "string",
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,
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",
ipv4AddressType: "string",
ipv4AddressTypeVariable: "string",
ipv4AddressVariable: "string",
ipv4AutoDetectBandwidth: false,
ipv4AutoDetectBandwidthVariable: "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",
ipv6AddressType: "string",
ipv6AddressTypeVariable: "string",
ipv6AddressVariable: "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",
});
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
ipv4AddressType: string
ipv4AddressTypeVariable: string
ipv4AddressVariable: string
ipv4AutoDetectBandwidth: false
ipv4AutoDetectBandwidthVariable: 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
ipv6AddressType: string
ipv6AddressTypeVariable: string
ipv6AddressVariable: 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:
- Feature
Profile stringId - Feature Profile ID
- 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 int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds
- Range:
0-2147483 - Default value:
1200
- Range:
- 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
- Choices:
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- Ip
Mtu stringVariable - Variable name
- Ipv4Address string
- IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- Ipv4Address
Type stringVariable - Variable name
- Ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Auto
Detect boolBandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- Ipv4Auto
Detect stringBandwidth Variable - Variable name
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- Ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - Ipv6Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- Ipv6Address
Type stringVariable - Variable name
- Ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - Load
Interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- Speed
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- Tcp
Mss stringVariable - Variable name
- Feature
Profile stringId - Feature Profile ID
- 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
- Range:
- 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
- Choices:
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- Ip
Mtu stringVariable - Variable name
- Ipv4Address string
- IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- Ipv4Address
Type stringVariable - Variable name
- Ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Auto
Detect boolBandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- Ipv4Auto
Detect stringBandwidth Variable - Variable name
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- Ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - Ipv6Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- Ipv6Address
Type stringVariable - Variable name
- Ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - Load
Interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- Speed
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- Tcp
Mss stringVariable - Variable name
- feature_
profile_ stringid - Feature Profile ID
- transport_
management_ stringvpn_ feature_ id - Transport Management VPN Feature ID
- arp_
entries list(object) - Configure ARP entries
- arp_
timeout number - Timeout value for dynamically learned ARP entries, <0..2678400> seconds
- Range:
0-2147483 - Default value:
1200
- Range:
- 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
- Choices:
- duplex_
variable string - Variable name
- enable_
dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- interface_
mtu_ stringvariable - Variable name
- interface_
name string - interface_
name_ stringvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- ip_
mtu_ stringvariable - Variable name
- ipv4_
address string - IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
address_ stringtype - address type
- Choices:
dynamic,static
- Choices:
- ipv4_
address_ stringtype_ variable - Variable name
- ipv4_
address_ stringvariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
auto_ booldetect_ bandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- ipv4_
auto_ stringdetect_ bandwidth_ variable - Variable name
- ipv4_
dhcp_ numberdistance - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- ipv4_
dhcp_ stringdistance_ variable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - ipv4_
dhcp_ stringhelper_ variable - Variable name
- ipv4_
dhcp_ list(string)helpers - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4_
iperf_ stringserver - Iperf server for auto bandwidth detect
- ipv4_
iperf_ stringserver_ variable - Variable name
- ipv4_
secondary_ list(object)addresses - Secondary IpV4 Addresses, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
subnet_ stringmask - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- ipv4_
subnet_ stringmask_ variable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv6_
address string - IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - ipv6_
address_ stringtype - address type
- Choices:
dynamic,static
- Choices:
- ipv6_
address_ stringtype_ variable - Variable name
- ipv6_
address_ stringvariable - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - load_
interval number - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- speed_
variable string - Variable name
- tcp_
mss number - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- tcp_
mss_ stringvariable - Variable name
- feature
Profile StringId - Feature Profile ID
- 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
- Range:
- 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
- Choices:
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Address
Type String - address type
- Choices:
dynamic,static
- Choices:
- ipv4Address
Type StringVariable - Variable name
- ipv4Address
Variable String - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Auto
Detect BooleanBandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- ipv4Auto
Detect StringBandwidth Variable - Variable name
- ipv4Dhcp
Distance Integer - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance StringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - ipv6Address
Type String - address type
- Choices:
dynamic,static
- Choices:
- ipv6Address
Type StringVariable - Variable name
- ipv6Address
Variable String - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - load
Interval Integer - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- speed
Variable String - Variable name
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- tcp
Mss StringVariable - Variable name
- feature
Profile stringId - Feature Profile ID
- 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
- Range:
- 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
- Choices:
- duplex
Variable string - Variable name
- enable
Dhcpv6 boolean - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - icmp
Redirect booleanDisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- interface
Mtu stringVariable - Variable name
- interface
Name string - interface
Name stringVariable - Variable name
- ip
Directed booleanBroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- ip
Mtu stringVariable - Variable name
- ipv4Address string
- IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- ipv4Address
Type stringVariable - Variable name
- ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Auto
Detect booleanBandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- ipv4Auto
Detect stringBandwidth Variable - Variable name
- ipv4Dhcp
Distance number - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - ipv6Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- ipv6Address
Type stringVariable - Variable name
- ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - load
Interval number - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- speed
Variable string - Variable name
- tcp
Mss number - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- tcp
Mss stringVariable - Variable name
- feature_
profile_ strid - Feature Profile ID
- transport_
management_ strvpn_ 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
- Range:
- 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
- Choices:
- duplex_
variable str - Variable name
- enable_
dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- interface_
mtu_ strvariable - Variable name
- interface_
name str - interface_
name_ strvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- ip_
mtu_ strvariable - Variable name
- ipv4_
address str - IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
address_ strtype - address type
- Choices:
dynamic,static
- Choices:
- ipv4_
address_ strtype_ variable - Variable name
- ipv4_
address_ strvariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
auto_ booldetect_ bandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- ipv4_
auto_ strdetect_ bandwidth_ variable - Variable name
- ipv4_
dhcp_ intdistance - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- ipv4_
dhcp_ strdistance_ variable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
subnet_ strmask - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- ipv4_
subnet_ strmask_ variable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv6_
address str - IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - ipv6_
address_ strtype - address type
- Choices:
dynamic,static
- Choices:
- ipv6_
address_ strtype_ variable - Variable name
- ipv6_
address_ strvariable - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - load_
interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- speed_
variable str - Variable name
- tcp_
mss int - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- tcp_
mss_ strvariable - Variable name
- feature
Profile StringId - Feature Profile ID
- transport
Management StringVpn 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
- Range:
- 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
- Choices:
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Address
Type String - address type
- Choices:
dynamic,static
- Choices:
- ipv4Address
Type StringVariable - Variable name
- ipv4Address
Variable String - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Auto
Detect BooleanBandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- ipv4Auto
Detect StringBandwidth Variable - Variable name
- ipv4Dhcp
Distance Number - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance StringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - ipv6Address
Type String - address type
- Choices:
dynamic,static
- Choices:
- ipv6Address
Type StringVariable - Variable name
- ipv6Address
Variable String - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - load
Interval Number - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- speed
Variable String - Variable name
- tcp
Mss Number - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- tcp
Mss StringVariable - Variable name
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_type: Optional[str] = None,
ipv4_address_type_variable: 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_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_type: Optional[str] = None,
ipv6_address_type_variable: Optional[str] = None,
ipv6_address_variable: 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) -> TransportManagementVpnInterfaceEthernetFeaturefunc 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)resources: _: type: sdwan:TransportManagementVpnInterfaceEthernetFeature get: id: ${id}import {
to = sdwan_transportmanagementvpninterfaceethernetfeature.example
id = "${id}"
}
- 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
- Range:
- 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
- Choices:
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- Ip
Mtu stringVariable - Variable name
- Ipv4Address string
- IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- Ipv4Address
Type stringVariable - Variable name
- Ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Auto
Detect boolBandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- Ipv4Auto
Detect stringBandwidth Variable - Variable name
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- Ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - Ipv6Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- Ipv6Address
Type stringVariable - Variable name
- Ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - Load
Interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- Speed
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- 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
- Range:
- 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
- Choices:
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- Ip
Mtu stringVariable - Variable name
- Ipv4Address string
- IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- Ipv4Address
Type stringVariable - Variable name
- Ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Auto
Detect boolBandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- Ipv4Auto
Detect stringBandwidth Variable - Variable name
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- Ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - Ipv6Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- Ipv6Address
Type stringVariable - Variable name
- Ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - Load
Interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- Speed
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- 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(object) - Configure ARP entries
- arp_
timeout number - Timeout value for dynamically learned ARP entries, <0..2678400> seconds
- Range:
0-2147483 - Default value:
1200
- Range:
- 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
- Choices:
- duplex_
variable string - Variable name
- enable_
dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - feature_
profile_ stringid - Feature Profile ID
- icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- interface_
mtu_ stringvariable - Variable name
- interface_
name string - interface_
name_ stringvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- ip_
mtu_ stringvariable - Variable name
- ipv4_
address string - IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
address_ stringtype - address type
- Choices:
dynamic,static
- Choices:
- ipv4_
address_ stringtype_ variable - Variable name
- ipv4_
address_ stringvariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
auto_ booldetect_ bandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- ipv4_
auto_ stringdetect_ bandwidth_ variable - Variable name
- ipv4_
dhcp_ numberdistance - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- ipv4_
dhcp_ stringdistance_ variable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - ipv4_
dhcp_ stringhelper_ variable - Variable name
- ipv4_
dhcp_ list(string)helpers - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4_
iperf_ stringserver - Iperf server for auto bandwidth detect
- ipv4_
iperf_ stringserver_ variable - Variable name
- ipv4_
secondary_ list(object)addresses - Secondary IpV4 Addresses, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
subnet_ stringmask - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- ipv4_
subnet_ stringmask_ variable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv6_
address string - IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - ipv6_
address_ stringtype - address type
- Choices:
dynamic,static
- Choices:
- ipv6_
address_ stringtype_ variable - Variable name
- ipv6_
address_ stringvariable - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - load_
interval number - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- speed_
variable string - Variable name
- tcp_
mss number - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- tcp_
mss_ stringvariable - Variable name
- transport_
management_ stringvpn_ feature_ id - Transport Management VPN Feature ID
- version number
- 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
- Range:
- 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
- Choices:
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Address
Type String - address type
- Choices:
dynamic,static
- Choices:
- ipv4Address
Type StringVariable - Variable name
- ipv4Address
Variable String - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Auto
Detect BooleanBandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- ipv4Auto
Detect StringBandwidth Variable - Variable name
- ipv4Dhcp
Distance Integer - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance StringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - ipv6Address
Type String - address type
- Choices:
dynamic,static
- Choices:
- ipv6Address
Type StringVariable - Variable name
- ipv6Address
Variable String - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - load
Interval Integer - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- speed
Variable String - Variable name
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- 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
- Range:
- 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
- Choices:
- duplex
Variable string - Variable name
- enable
Dhcpv6 boolean - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - feature
Profile stringId - Feature Profile ID
- icmp
Redirect booleanDisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- interface
Mtu stringVariable - Variable name
- interface
Name string - interface
Name stringVariable - Variable name
- ip
Directed booleanBroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- ip
Mtu stringVariable - Variable name
- ipv4Address string
- IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- ipv4Address
Type stringVariable - Variable name
- ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Auto
Detect booleanBandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- ipv4Auto
Detect stringBandwidth Variable - Variable name
- ipv4Dhcp
Distance number - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - ipv6Address
Type string - address type
- Choices:
dynamic,static
- Choices:
- ipv6Address
Type stringVariable - Variable name
- ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - load
Interval number - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- speed
Variable string - Variable name
- tcp
Mss number - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- 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
- Range:
- 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
- Choices:
- duplex_
variable str - Variable name
- enable_
dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - feature_
profile_ strid - Feature Profile ID
- icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- interface_
mtu_ strvariable - Variable name
- interface_
name str - interface_
name_ strvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- ip_
mtu_ strvariable - Variable name
- ipv4_
address str - IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
address_ strtype - address type
- Choices:
dynamic,static
- Choices:
- ipv4_
address_ strtype_ variable - Variable name
- ipv4_
address_ strvariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
auto_ booldetect_ bandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- ipv4_
auto_ strdetect_ bandwidth_ variable - Variable name
- ipv4_
dhcp_ intdistance - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- ipv4_
dhcp_ strdistance_ variable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4_
subnet_ strmask - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- ipv4_
subnet_ strmask_ variable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv6_
address str - IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - ipv6_
address_ strtype - address type
- Choices:
dynamic,static
- Choices:
- ipv6_
address_ strtype_ variable - Variable name
- ipv6_
address_ strvariable - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - load_
interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- speed_
variable str - Variable name
- tcp_
mss int - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- 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
- Range:
- 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
- Choices:
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6AddressTypeequal todynamicoripv6AddressTypeVariablebeing set - feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- Default value:
true
- Default value:
- 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
- Range:
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- Default value:
false
- Default value:
- 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
- Range:
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Address
Type String - address type
- Choices:
dynamic,static
- Choices:
- ipv4Address
Type StringVariable - Variable name
- ipv4Address
Variable String - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Auto
Detect BooleanBandwidth - Interface auto detect bandwidth
- Default value:
false
- Default value:
- ipv4Auto
Detect StringBandwidth Variable - Variable name
- ipv4Dhcp
Distance Number - DHCP Distance, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance StringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal todynamicoripv4AddressTypeVariablebeing set - 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
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing 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
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name, Attribute conditional on
ipv4AddressTypeequal tostaticoripv4AddressTypeVariablebeing set - ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - ipv6Address
Type String - address type
- Choices:
dynamic,static
- Choices:
- ipv6Address
Type StringVariable - Variable name
- ipv6Address
Variable String - Variable name, Attribute conditional on
ipv6AddressTypeequal tostaticoripv6AddressTypeVariablebeing set - load
Interval Number - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- 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
- Choices:
- 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,5000,10000,25000
- Choices:
- speed
Variable String - Variable name
- tcp
Mss Number - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- 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 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.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
- 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.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
- 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.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
- 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.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
- 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.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
- 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.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
- 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.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
- Choices:
- subnet
Mask StringVariable - Variable name
Import
The pulumi import command can be used, for example:
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
sdwanTerraform Provider.
published on Tuesday, Apr 7, 2026 by Pulumi
