Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi
sdwan.getTransportManagementVpnInterfaceEthernetProfileParcel
Explore with Pulumi AI
This data source can read the Transport Management VPN Interface Ethernet profile parcel.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = sdwan.getTransportManagementVpnInterfaceEthernetProfileParcel({
id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
transportManagementVpnProfileParcelId: "140331f6-5418-4755-a059-13c77eb96037",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.get_transport_management_vpn_interface_ethernet_profile_parcel(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
transport_management_vpn_profile_parcel_id="140331f6-5418-4755-a059-13c77eb96037")
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.LookupTransportManagementVpnInterfaceEthernetProfileParcel(ctx, &sdwan.LookupTransportManagementVpnInterfaceEthernetProfileParcelArgs{
Id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
FeatureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
TransportManagementVpnProfileParcelId: "140331f6-5418-4755-a059-13c77eb96037",
}, nil)
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 = Sdwan.GetTransportManagementVpnInterfaceEthernetProfileParcel.Invoke(new()
{
Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
TransportManagementVpnProfileParcelId = "140331f6-5418-4755-a059-13c77eb96037",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SdwanFunctions;
import com.pulumi.sdwan.inputs.GetTransportManagementVpnInterfaceEthernetProfileParcelArgs;
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) {
final var example = SdwanFunctions.getTransportManagementVpnInterfaceEthernetProfileParcel(GetTransportManagementVpnInterfaceEthernetProfileParcelArgs.builder()
.id("f6b2c44c-693c-4763-b010-895aa3d236bd")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.transportManagementVpnProfileParcelId("140331f6-5418-4755-a059-13c77eb96037")
.build());
}
}
variables:
example:
fn::invoke:
Function: sdwan:getTransportManagementVpnInterfaceEthernetProfileParcel
Arguments:
id: f6b2c44c-693c-4763-b010-895aa3d236bd
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
transportManagementVpnProfileParcelId: 140331f6-5418-4755-a059-13c77eb96037
Using getTransportManagementVpnInterfaceEthernetProfileParcel
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getTransportManagementVpnInterfaceEthernetProfileParcel(args: GetTransportManagementVpnInterfaceEthernetProfileParcelArgs, opts?: InvokeOptions): Promise<GetTransportManagementVpnInterfaceEthernetProfileParcelResult>
function getTransportManagementVpnInterfaceEthernetProfileParcelOutput(args: GetTransportManagementVpnInterfaceEthernetProfileParcelOutputArgs, opts?: InvokeOptions): Output<GetTransportManagementVpnInterfaceEthernetProfileParcelResult>
def get_transport_management_vpn_interface_ethernet_profile_parcel(feature_profile_id: Optional[str] = None,
id: Optional[str] = None,
transport_management_vpn_profile_parcel_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetTransportManagementVpnInterfaceEthernetProfileParcelResult
def get_transport_management_vpn_interface_ethernet_profile_parcel_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
transport_management_vpn_profile_parcel_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetTransportManagementVpnInterfaceEthernetProfileParcelResult]
func LookupTransportManagementVpnInterfaceEthernetProfileParcel(ctx *Context, args *LookupTransportManagementVpnInterfaceEthernetProfileParcelArgs, opts ...InvokeOption) (*LookupTransportManagementVpnInterfaceEthernetProfileParcelResult, error)
func LookupTransportManagementVpnInterfaceEthernetProfileParcelOutput(ctx *Context, args *LookupTransportManagementVpnInterfaceEthernetProfileParcelOutputArgs, opts ...InvokeOption) LookupTransportManagementVpnInterfaceEthernetProfileParcelResultOutput
> Note: This function is named LookupTransportManagementVpnInterfaceEthernetProfileParcel
in the Go SDK.
public static class GetTransportManagementVpnInterfaceEthernetProfileParcel
{
public static Task<GetTransportManagementVpnInterfaceEthernetProfileParcelResult> InvokeAsync(GetTransportManagementVpnInterfaceEthernetProfileParcelArgs args, InvokeOptions? opts = null)
public static Output<GetTransportManagementVpnInterfaceEthernetProfileParcelResult> Invoke(GetTransportManagementVpnInterfaceEthernetProfileParcelInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetTransportManagementVpnInterfaceEthernetProfileParcelResult> getTransportManagementVpnInterfaceEthernetProfileParcel(GetTransportManagementVpnInterfaceEthernetProfileParcelArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: sdwan:index/getTransportManagementVpnInterfaceEthernetProfileParcel:getTransportManagementVpnInterfaceEthernetProfileParcel
arguments:
# arguments dictionary
The following arguments are supported:
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the profile parcel
- Transport
Management stringVpn Profile Parcel Id - Transport Management VPN Profile Parcel ID
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the profile parcel
- Transport
Management stringVpn Profile Parcel Id - Transport Management VPN Profile Parcel ID
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the profile parcel
- transport
Management StringVpn Profile Parcel Id - Transport Management VPN Profile Parcel ID
- feature
Profile stringId - Feature Profile ID
- id string
- The id of the profile parcel
- transport
Management stringVpn Profile Parcel Id - Transport Management VPN Profile Parcel ID
- feature_
profile_ strid - Feature Profile ID
- id str
- The id of the profile parcel
- transport_
management_ strvpn_ profile_ parcel_ id - Transport Management VPN Profile Parcel ID
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the profile parcel
- transport
Management StringVpn Profile Parcel Id - Transport Management VPN Profile Parcel ID
getTransportManagementVpnInterfaceEthernetProfileParcel Result
The following output properties are available:
- Arp
Entries List<GetTransport Management Vpn Interface Ethernet Profile Parcel Arp Entry> - Configure ARP entries
- Arp
Timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- Arp
Timeout stringVariable - Variable name
- Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Basic
Configuration stringDescription - Basic
Configuration stringDescription Variable - Variable name
- Description string
- The description of the profile parcel
- Duplex string
- Duplex mode
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6
- Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Icmp
Redirect stringDisable Variable - Variable name
- Id string
- The id of the profile parcel
- Interface
Mtu int - Interface MTU
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Ip
Directed stringBroadcast Variable - Variable name
- Ip
Mtu int - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- Ip
Mtu stringVariable - Variable name
- Ipv4Address string
- IP Address
- Ipv4Address
Variable string - Variable name
- Ipv4Auto
Detect boolBandwidth - Interface auto detect bandwidth
- Ipv4Auto
Detect stringBandwidth Variable - Variable name
- Ipv4Dhcp
Distance int - DHCP Distance
- Ipv4Dhcp
Distance stringVariable - Variable name
- Ipv4Dhcp
Helper stringVariable - Variable name
- Ipv4Dhcp
Helpers List<string> - List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Iperf
Server string - Iperf server for auto bandwidth detect
- Ipv4Iperf
Server stringVariable - Variable name
- Ipv4Secondary
Addresses List<GetTransport Management Vpn Interface Ethernet Profile Parcel Ipv4Secondary Address> - Secondary IpV4 Addresses
- Ipv4Subnet
Mask string - Subnet Mask
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv6Address string
- IPv6 Address Secondary
- Ipv6Address
Variable string - Variable name
- Load
Interval int - Interval for interface load calculation
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Media
Type string - Media type
- Media
Type stringVariable - Variable name
- Name string
- The name of the profile parcel
- Shutdown bool
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed
- Speed
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Tcp
Mss stringVariable - Variable name
- Transport
Management stringVpn Profile Parcel Id - Transport Management VPN Profile Parcel ID
- Version int
- The version of the profile parcel
- Arp
Entries []GetTransport Management Vpn Interface Ethernet Profile Parcel Arp Entry - Configure ARP entries
- Arp
Timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- Arp
Timeout stringVariable - Variable name
- Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Basic
Configuration stringDescription - Basic
Configuration stringDescription Variable - Variable name
- Description string
- The description of the profile parcel
- Duplex string
- Duplex mode
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6
- Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Icmp
Redirect stringDisable Variable - Variable name
- Id string
- The id of the profile parcel
- Interface
Mtu int - Interface MTU
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Ip
Directed stringBroadcast Variable - Variable name
- Ip
Mtu int - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- Ip
Mtu stringVariable - Variable name
- Ipv4Address string
- IP Address
- Ipv4Address
Variable string - Variable name
- Ipv4Auto
Detect boolBandwidth - Interface auto detect bandwidth
- Ipv4Auto
Detect stringBandwidth Variable - Variable name
- Ipv4Dhcp
Distance int - DHCP Distance
- Ipv4Dhcp
Distance stringVariable - Variable name
- Ipv4Dhcp
Helper stringVariable - Variable name
- Ipv4Dhcp
Helpers []string - List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Iperf
Server string - Iperf server for auto bandwidth detect
- Ipv4Iperf
Server stringVariable - Variable name
- Ipv4Secondary
Addresses []GetTransport Management Vpn Interface Ethernet Profile Parcel Ipv4Secondary Address - Secondary IpV4 Addresses
- Ipv4Subnet
Mask string - Subnet Mask
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv6Address string
- IPv6 Address Secondary
- Ipv6Address
Variable string - Variable name
- Load
Interval int - Interval for interface load calculation
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Media
Type string - Media type
- Media
Type stringVariable - Variable name
- Name string
- The name of the profile parcel
- Shutdown bool
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed
- Speed
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Tcp
Mss stringVariable - Variable name
- Transport
Management stringVpn Profile Parcel Id - Transport Management VPN Profile Parcel ID
- Version int
- The version of the profile parcel
- arp
Entries List<GetTransport Management Vpn Interface Ethernet Profile Parcel Arp Entry> - Configure ARP entries
- arp
Timeout Integer - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout StringVariable - Variable name
- autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- basic
Configuration StringDescription - basic
Configuration StringDescription Variable - Variable name
- description String
- The description of the profile parcel
- duplex String
- Duplex mode
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6
- feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect StringDisable Variable - Variable name
- id String
- The id of the profile parcel
- interface
Mtu Integer - Interface MTU
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu Integer - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address
- ipv4Address
Variable String - Variable name
- ipv4Auto
Detect BooleanBandwidth - Interface auto detect bandwidth
- ipv4Auto
Detect StringBandwidth Variable - Variable name
- ipv4Dhcp
Distance Integer - DHCP Distance
- ipv4Dhcp
Distance StringVariable - Variable name
- ipv4Dhcp
Helper StringVariable - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Iperf
Server String - Iperf server for auto bandwidth detect
- ipv4Iperf
Server StringVariable - Variable name
- ipv4Secondary
Addresses List<GetTransport Management Vpn Interface Ethernet Profile Parcel Ipv4Secondary Address> - Secondary IpV4 Addresses
- ipv4Subnet
Mask String - Subnet Mask
- ipv4Subnet
Mask StringVariable - Variable name
- ipv6Address String
- IPv6 Address Secondary
- ipv6Address
Variable String - Variable name
- load
Interval Integer - Interval for interface load calculation
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- media
Type String - Media type
- media
Type StringVariable - Variable name
- name String
- The name of the profile parcel
- shutdown Boolean
- shutdown
Variable String - Variable name
- speed String
- Set interface speed
- speed
Variable String - Variable name
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes
- tcp
Mss StringVariable - Variable name
- transport
Management StringVpn Profile Parcel Id - Transport Management VPN Profile Parcel ID
- version Integer
- The version of the profile parcel
- arp
Entries GetTransport Management Vpn Interface Ethernet Profile Parcel Arp Entry[] - Configure ARP entries
- arp
Timeout number - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout stringVariable - Variable name
- autonegotiate boolean
- Link autonegotiation
- autonegotiate
Variable string - Variable name
- basic
Configuration stringDescription - basic
Configuration stringDescription Variable - Variable name
- description string
- The description of the profile parcel
- duplex string
- Duplex mode
- duplex
Variable string - Variable name
- enable
Dhcpv6 boolean - Enable DHCPv6
- feature
Profile stringId - Feature Profile ID
- icmp
Redirect booleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect stringDisable Variable - Variable name
- id string
- The id of the profile parcel
- interface
Mtu number - Interface MTU
- interface
Mtu stringVariable - Variable name
- interface
Name string - interface
Name stringVariable - Variable name
- ip
Directed booleanBroadcast - IP Directed-Broadcast
- ip
Directed stringBroadcast Variable - Variable name
- ip
Mtu number - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip
Mtu stringVariable - Variable name
- ipv4Address string
- IP Address
- ipv4Address
Variable string - Variable name
- ipv4Auto
Detect booleanBandwidth - Interface auto detect bandwidth
- ipv4Auto
Detect stringBandwidth Variable - Variable name
- ipv4Dhcp
Distance number - DHCP Distance
- ipv4Dhcp
Distance stringVariable - Variable name
- ipv4Dhcp
Helper stringVariable - Variable name
- ipv4Dhcp
Helpers string[] - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Iperf
Server string - Iperf server for auto bandwidth detect
- ipv4Iperf
Server stringVariable - Variable name
- ipv4Secondary
Addresses GetTransport Management Vpn Interface Ethernet Profile Parcel Ipv4Secondary Address[] - Secondary IpV4 Addresses
- ipv4Subnet
Mask string - Subnet Mask
- ipv4Subnet
Mask stringVariable - Variable name
- ipv6Address string
- IPv6 Address Secondary
- ipv6Address
Variable string - Variable name
- load
Interval number - Interval for interface load calculation
- load
Interval stringVariable - Variable name
- mac
Address string - MAC Address
- mac
Address stringVariable - Variable name
- media
Type string - Media type
- media
Type stringVariable - Variable name
- name string
- The name of the profile parcel
- shutdown boolean
- shutdown
Variable string - Variable name
- speed string
- Set interface speed
- speed
Variable string - Variable name
- tcp
Mss number - TCP MSS on SYN packets, in bytes
- tcp
Mss stringVariable - Variable name
- transport
Management stringVpn Profile Parcel Id - Transport Management VPN Profile Parcel ID
- version number
- The version of the profile parcel
- arp_
entries Sequence[GetTransport Management Vpn Interface Ethernet Profile Parcel Arp Entry] - Configure ARP entries
- arp_
timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp_
timeout_ strvariable - Variable name
- autonegotiate bool
- Link autonegotiation
- autonegotiate_
variable str - Variable name
- basic_
configuration_ strdescription - basic_
configuration_ strdescription_ variable - Variable name
- description str
- The description of the profile parcel
- duplex str
- Duplex mode
- duplex_
variable str - Variable name
- enable_
dhcpv6 bool - Enable DHCPv6
- feature_
profile_ strid - Feature Profile ID
- icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable
- icmp_
redirect_ strdisable_ variable - Variable name
- id str
- The id of the profile parcel
- interface_
mtu int - Interface MTU
- interface_
mtu_ strvariable - Variable name
- interface_
name str - interface_
name_ strvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast
- ip_
directed_ strbroadcast_ variable - Variable name
- ip_
mtu int - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip_
mtu_ strvariable - Variable name
- ipv4_
address str - IP Address
- ipv4_
address_ strvariable - Variable name
- ipv4_
auto_ booldetect_ bandwidth - Interface auto detect bandwidth
- ipv4_
auto_ strdetect_ bandwidth_ variable - Variable name
- ipv4_
dhcp_ intdistance - DHCP Distance
- ipv4_
dhcp_ strdistance_ variable - Variable name
- ipv4_
dhcp_ strhelper_ variable - Variable name
- ipv4_
dhcp_ Sequence[str]helpers - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4_
iperf_ strserver - Iperf server for auto bandwidth detect
- ipv4_
iperf_ strserver_ variable - Variable name
- ipv4_
secondary_ Sequence[Getaddresses Transport Management Vpn Interface Ethernet Profile Parcel Ipv4Secondary Address] - Secondary IpV4 Addresses
- ipv4_
subnet_ strmask - Subnet Mask
- ipv4_
subnet_ strmask_ variable - Variable name
- ipv6_
address str - IPv6 Address Secondary
- ipv6_
address_ strvariable - Variable name
- load_
interval int - Interval for interface load calculation
- load_
interval_ strvariable - Variable name
- mac_
address str - MAC Address
- mac_
address_ strvariable - Variable name
- media_
type str - Media type
- media_
type_ strvariable - Variable name
- name str
- The name of the profile parcel
- shutdown bool
- shutdown_
variable str - Variable name
- speed str
- Set interface speed
- speed_
variable str - Variable name
- tcp_
mss int - TCP MSS on SYN packets, in bytes
- tcp_
mss_ strvariable - Variable name
- transport_
management_ strvpn_ profile_ parcel_ id - Transport Management VPN Profile Parcel ID
- version int
- The version of the profile parcel
- arp
Entries List<Property Map> - Configure ARP entries
- arp
Timeout Number - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout StringVariable - Variable name
- autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- basic
Configuration StringDescription - basic
Configuration StringDescription Variable - Variable name
- description String
- The description of the profile parcel
- duplex String
- Duplex mode
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6
- feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect StringDisable Variable - Variable name
- id String
- The id of the profile parcel
- interface
Mtu Number - Interface MTU
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu Number - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip
Mtu StringVariable - Variable name
- ipv4Address String
- IP Address
- ipv4Address
Variable String - Variable name
- ipv4Auto
Detect BooleanBandwidth - Interface auto detect bandwidth
- ipv4Auto
Detect StringBandwidth Variable - Variable name
- ipv4Dhcp
Distance Number - DHCP Distance
- ipv4Dhcp
Distance StringVariable - Variable name
- ipv4Dhcp
Helper StringVariable - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Iperf
Server String - Iperf server for auto bandwidth detect
- ipv4Iperf
Server StringVariable - Variable name
- ipv4Secondary
Addresses List<Property Map> - Secondary IpV4 Addresses
- ipv4Subnet
Mask String - Subnet Mask
- ipv4Subnet
Mask StringVariable - Variable name
- ipv6Address String
- IPv6 Address Secondary
- ipv6Address
Variable String - Variable name
- load
Interval Number - Interval for interface load calculation
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- media
Type String - Media type
- media
Type StringVariable - Variable name
- name String
- The name of the profile parcel
- shutdown Boolean
- shutdown
Variable String - Variable name
- speed String
- Set interface speed
- speed
Variable String - Variable name
- tcp
Mss Number - TCP MSS on SYN packets, in bytes
- tcp
Mss StringVariable - Variable name
- transport
Management StringVpn Profile Parcel Id - Transport Management VPN Profile Parcel ID
- version Number
- The version of the profile parcel
Supporting Types
GetTransportManagementVpnInterfaceEthernetProfileParcelArpEntry
- 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
GetTransportManagementVpnInterfaceEthernetProfileParcelIpv4SecondaryAddress
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Subnet
Mask stringVariable - Variable name
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Subnet
Mask stringVariable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- subnet
Mask StringVariable - Variable name
- address string
- IpV4 Address
- address
Variable string - Variable name
- subnet
Mask string - Subnet Mask
- subnet
Mask stringVariable - Variable name
- address str
- IpV4 Address
- address_
variable str - Variable name
- subnet_
mask str - Subnet Mask
- subnet_
mask_ strvariable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- subnet
Mask StringVariable - Variable name
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.