1. Packages
  2. Equinix
  3. API Docs
  4. metal
  5. Port
Equinix v0.21.0 published on Friday, Feb 28, 2025 by Equinix

equinix.metal.Port

Explore with Pulumi AI

Create Port Resource

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

Constructor syntax

new Port(name: string, args: PortArgs, opts?: CustomResourceOptions);
@overload
def Port(resource_name: str,
         args: PortArgs,
         opts: Optional[ResourceOptions] = None)

@overload
def Port(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         bonded: Optional[bool] = None,
         port_id: Optional[str] = None,
         layer2: Optional[bool] = None,
         native_vlan_id: Optional[str] = None,
         reset_on_delete: Optional[bool] = None,
         vlan_ids: Optional[Sequence[str]] = None,
         vxlan_ids: Optional[Sequence[int]] = None)
func NewPort(ctx *Context, name string, args PortArgs, opts ...ResourceOption) (*Port, error)
public Port(string name, PortArgs args, CustomResourceOptions? opts = null)
public Port(String name, PortArgs args)
public Port(String name, PortArgs args, CustomResourceOptions options)
type: equinix:metal:Port
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PortArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PortArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PortArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PortArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PortArgs
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 portResource = new Equinix.Metal.Port("portResource", new()
{
    Bonded = false,
    PortId = "string",
    Layer2 = false,
    NativeVlanId = "string",
    ResetOnDelete = false,
    VlanIds = new[]
    {
        "string",
    },
    VxlanIds = new[]
    {
        0,
    },
});
Copy
example, err := metal.NewPort(ctx, "portResource", &metal.PortArgs{
	Bonded:        pulumi.Bool(false),
	PortId:        pulumi.String("string"),
	Layer2:        pulumi.Bool(false),
	NativeVlanId:  pulumi.String("string"),
	ResetOnDelete: pulumi.Bool(false),
	VlanIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	VxlanIds: pulumi.IntArray{
		pulumi.Int(0),
	},
})
Copy
var portResource = new Port("portResource", PortArgs.builder()
    .bonded(false)
    .portId("string")
    .layer2(false)
    .nativeVlanId("string")
    .resetOnDelete(false)
    .vlanIds("string")
    .vxlanIds(0)
    .build());
Copy
port_resource = equinix.metal.Port("portResource",
    bonded=False,
    port_id="string",
    layer2=False,
    native_vlan_id="string",
    reset_on_delete=False,
    vlan_ids=["string"],
    vxlan_ids=[0])
Copy
const portResource = new equinix.metal.Port("portResource", {
    bonded: false,
    portId: "string",
    layer2: false,
    nativeVlanId: "string",
    resetOnDelete: false,
    vlanIds: ["string"],
    vxlanIds: [0],
});
Copy
type: equinix:metal:Port
properties:
    bonded: false
    layer2: false
    nativeVlanId: string
    portId: string
    resetOnDelete: false
    vlanIds:
        - string
    vxlanIds:
        - 0
Copy

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

Bonded This property is required. bool
Whether the port should be bonded.
PortId
This property is required.
Changes to this property will trigger replacement.
string
ID of the port to read.
Layer2 bool
Whether to put the port to Layer 2 mode, valid only for bond ports.
NativeVlanId string
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
ResetOnDelete bool
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
VlanIds List<string>
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
VxlanIds List<int>
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.
Bonded This property is required. bool
Whether the port should be bonded.
PortId
This property is required.
Changes to this property will trigger replacement.
string
ID of the port to read.
Layer2 bool
Whether to put the port to Layer 2 mode, valid only for bond ports.
NativeVlanId string
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
ResetOnDelete bool
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
VlanIds []string
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
VxlanIds []int
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.
bonded This property is required. Boolean
Whether the port should be bonded.
portId
This property is required.
Changes to this property will trigger replacement.
String
ID of the port to read.
layer2 Boolean
Whether to put the port to Layer 2 mode, valid only for bond ports.
nativeVlanId String
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
resetOnDelete Boolean
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
vlanIds List<String>
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
vxlanIds List<Integer>
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.
bonded This property is required. boolean
Whether the port should be bonded.
portId
This property is required.
Changes to this property will trigger replacement.
string
ID of the port to read.
layer2 boolean
Whether to put the port to Layer 2 mode, valid only for bond ports.
nativeVlanId string
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
resetOnDelete boolean
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
vlanIds string[]
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
vxlanIds number[]
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.
bonded This property is required. bool
Whether the port should be bonded.
port_id
This property is required.
Changes to this property will trigger replacement.
str
ID of the port to read.
layer2 bool
Whether to put the port to Layer 2 mode, valid only for bond ports.
native_vlan_id str
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
reset_on_delete bool
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
vlan_ids Sequence[str]
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
vxlan_ids Sequence[int]
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.
bonded This property is required. Boolean
Whether the port should be bonded.
portId
This property is required.
Changes to this property will trigger replacement.
String
ID of the port to read.
layer2 Boolean
Whether to put the port to Layer 2 mode, valid only for bond ports.
nativeVlanId String
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
resetOnDelete Boolean
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
vlanIds List<String>
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
vxlanIds List<Number>
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.

Outputs

All input properties are implicitly available as output properties. Additionally, the Port resource produces the following output properties:

BondId string
UUID of the bond port.
BondName string
Name of the bond port.
DisbondSupported bool
Flag indicating whether the port can be removed from a bond.
Id string
The provider-assigned unique ID for this managed resource.
Mac string
MAC address of the port.
Name string
Name of the port, e.g. bond0 or eth0.
NetworkType string
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
Type string
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.
BondId string
UUID of the bond port.
BondName string
Name of the bond port.
DisbondSupported bool
Flag indicating whether the port can be removed from a bond.
Id string
The provider-assigned unique ID for this managed resource.
Mac string
MAC address of the port.
Name string
Name of the port, e.g. bond0 or eth0.
NetworkType string
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
Type string
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.
bondId String
UUID of the bond port.
bondName String
Name of the bond port.
disbondSupported Boolean
Flag indicating whether the port can be removed from a bond.
id String
The provider-assigned unique ID for this managed resource.
mac String
MAC address of the port.
name String
Name of the port, e.g. bond0 or eth0.
networkType String
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
type String
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.
bondId string
UUID of the bond port.
bondName string
Name of the bond port.
disbondSupported boolean
Flag indicating whether the port can be removed from a bond.
id string
The provider-assigned unique ID for this managed resource.
mac string
MAC address of the port.
name string
Name of the port, e.g. bond0 or eth0.
networkType string
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
type string
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.
bond_id str
UUID of the bond port.
bond_name str
Name of the bond port.
disbond_supported bool
Flag indicating whether the port can be removed from a bond.
id str
The provider-assigned unique ID for this managed resource.
mac str
MAC address of the port.
name str
Name of the port, e.g. bond0 or eth0.
network_type str
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
type str
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.
bondId String
UUID of the bond port.
bondName String
Name of the bond port.
disbondSupported Boolean
Flag indicating whether the port can be removed from a bond.
id String
The provider-assigned unique ID for this managed resource.
mac String
MAC address of the port.
name String
Name of the port, e.g. bond0 or eth0.
networkType String
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
type String
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.

Look up Existing Port Resource

Get an existing Port 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?: PortState, opts?: CustomResourceOptions): Port
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bond_id: Optional[str] = None,
        bond_name: Optional[str] = None,
        bonded: Optional[bool] = None,
        disbond_supported: Optional[bool] = None,
        layer2: Optional[bool] = None,
        mac: Optional[str] = None,
        name: Optional[str] = None,
        native_vlan_id: Optional[str] = None,
        network_type: Optional[str] = None,
        port_id: Optional[str] = None,
        reset_on_delete: Optional[bool] = None,
        type: Optional[str] = None,
        vlan_ids: Optional[Sequence[str]] = None,
        vxlan_ids: Optional[Sequence[int]] = None) -> Port
func GetPort(ctx *Context, name string, id IDInput, state *PortState, opts ...ResourceOption) (*Port, error)
public static Port Get(string name, Input<string> id, PortState? state, CustomResourceOptions? opts = null)
public static Port get(String name, Output<String> id, PortState state, CustomResourceOptions options)
resources:  _:    type: equinix:metal:Port    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
BondId string
UUID of the bond port.
BondName string
Name of the bond port.
Bonded bool
Whether the port should be bonded.
DisbondSupported bool
Flag indicating whether the port can be removed from a bond.
Layer2 bool
Whether to put the port to Layer 2 mode, valid only for bond ports.
Mac string
MAC address of the port.
Name string
Name of the port, e.g. bond0 or eth0.
NativeVlanId string
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
NetworkType string
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
PortId Changes to this property will trigger replacement. string
ID of the port to read.
ResetOnDelete bool
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
Type string
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.
VlanIds List<string>
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
VxlanIds List<int>
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.
BondId string
UUID of the bond port.
BondName string
Name of the bond port.
Bonded bool
Whether the port should be bonded.
DisbondSupported bool
Flag indicating whether the port can be removed from a bond.
Layer2 bool
Whether to put the port to Layer 2 mode, valid only for bond ports.
Mac string
MAC address of the port.
Name string
Name of the port, e.g. bond0 or eth0.
NativeVlanId string
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
NetworkType string
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
PortId Changes to this property will trigger replacement. string
ID of the port to read.
ResetOnDelete bool
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
Type string
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.
VlanIds []string
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
VxlanIds []int
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.
bondId String
UUID of the bond port.
bondName String
Name of the bond port.
bonded Boolean
Whether the port should be bonded.
disbondSupported Boolean
Flag indicating whether the port can be removed from a bond.
layer2 Boolean
Whether to put the port to Layer 2 mode, valid only for bond ports.
mac String
MAC address of the port.
name String
Name of the port, e.g. bond0 or eth0.
nativeVlanId String
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
networkType String
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
portId Changes to this property will trigger replacement. String
ID of the port to read.
resetOnDelete Boolean
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
type String
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.
vlanIds List<String>
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
vxlanIds List<Integer>
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.
bondId string
UUID of the bond port.
bondName string
Name of the bond port.
bonded boolean
Whether the port should be bonded.
disbondSupported boolean
Flag indicating whether the port can be removed from a bond.
layer2 boolean
Whether to put the port to Layer 2 mode, valid only for bond ports.
mac string
MAC address of the port.
name string
Name of the port, e.g. bond0 or eth0.
nativeVlanId string
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
networkType string
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
portId Changes to this property will trigger replacement. string
ID of the port to read.
resetOnDelete boolean
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
type string
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.
vlanIds string[]
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
vxlanIds number[]
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.
bond_id str
UUID of the bond port.
bond_name str
Name of the bond port.
bonded bool
Whether the port should be bonded.
disbond_supported bool
Flag indicating whether the port can be removed from a bond.
layer2 bool
Whether to put the port to Layer 2 mode, valid only for bond ports.
mac str
MAC address of the port.
name str
Name of the port, e.g. bond0 or eth0.
native_vlan_id str
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
network_type str
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
port_id Changes to this property will trigger replacement. str
ID of the port to read.
reset_on_delete bool
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
type str
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.
vlan_ids Sequence[str]
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
vxlan_ids Sequence[int]
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.
bondId String
UUID of the bond port.
bondName String
Name of the bond port.
bonded Boolean
Whether the port should be bonded.
disbondSupported Boolean
Flag indicating whether the port can be removed from a bond.
layer2 Boolean
Whether to put the port to Layer 2 mode, valid only for bond ports.
mac String
MAC address of the port.
name String
Name of the port, e.g. bond0 or eth0.
nativeVlanId String
UUID of a VLAN to assign as a native VLAN. It must be one of attached VLANs (from vlan_ids parameter).
networkType String
One of layer2-bonded, layer2-individual, layer3, hybrid and hybrid-bonded. This attribute is only set on bond ports.
portId Changes to this property will trigger replacement. String
ID of the port to read.
resetOnDelete Boolean
Behavioral setting to reset the port to default settings (layer3 bonded mode without any vlan attached) before delete/destroy.
type String
Type is either "NetworkBondPort" for bond ports or "NetworkPort" for bondable ethernet ports.
vlanIds List<String>
List of VLAN UUIDs to attach to the port, valid only for L2 and Hybrid ports.
vxlanIds List<Number>
List of VXLAN IDs to attach to the port, valid only for L2 and Hybrid ports.

Package Details

Repository
equinix equinix/pulumi-equinix
License
Apache-2.0
Notes
This Pulumi package is based on the equinix Terraform Provider.