IPConfiguration Constructors

Definition

Overloads

IPConfiguration()

Initializes a new instance of the IPConfiguration class.

IPConfiguration(String, String, String, Subnet, PublicIPAddress, String, String, String)

Initializes a new instance of the IPConfiguration class.

IPConfiguration()

Initializes a new instance of the IPConfiguration class.

public IPConfiguration ();
Public Sub New ()

Applies to

IPConfiguration(String, String, String, Subnet, PublicIPAddress, String, String, String)

Initializes a new instance of the IPConfiguration class.

public IPConfiguration (string id = default, string privateIPAddress = default, string privateIPAllocationMethod = default, Microsoft.Azure.Management.Network.Models.Subnet subnet = default, Microsoft.Azure.Management.Network.Models.PublicIPAddress publicIPAddress = default, string provisioningState = default, string name = default, string etag = default);
new Microsoft.Azure.Management.Network.Models.IPConfiguration : string * string * string * Microsoft.Azure.Management.Network.Models.Subnet * Microsoft.Azure.Management.Network.Models.PublicIPAddress * string * string * string -> Microsoft.Azure.Management.Network.Models.IPConfiguration
Public Sub New (Optional id As String = Nothing, Optional privateIPAddress As String = Nothing, Optional privateIPAllocationMethod As String = Nothing, Optional subnet As Subnet = Nothing, Optional publicIPAddress As PublicIPAddress = Nothing, Optional provisioningState As String = Nothing, Optional name As String = Nothing, Optional etag As String = Nothing)

Parameters

id
String

Resource ID.

privateIPAddress
String

The private IP address of the IP configuration.

privateIPAllocationMethod
String

The private IP address allocation method. Possible values include: 'Static', 'Dynamic'

subnet
Subnet

The reference to the subnet resource.

publicIPAddress
PublicIPAddress

The reference to the public IP resource.

provisioningState
String

The provisioning state of the IP configuration resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'

name
String

The name of the resource that is unique within a resource group. This name can be used to access the resource.

etag
String

A unique read-only string that changes whenever the resource is updated.

Applies to