你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

PoolAssociation Constructors

Definition

Overloads

PoolAssociation()

Initializes a new instance of the PoolAssociation class.

PoolAssociation(String, String, String, IList<String>, IList<String>, String, String, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the PoolAssociation class.

PoolAssociation()

Initializes a new instance of the PoolAssociation class.

public PoolAssociation ();
Public Sub New ()

Applies to

PoolAssociation(String, String, String, IList<String>, IList<String>, String, String, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the PoolAssociation class.

public PoolAssociation (string resourceId, string poolId = default, string description = default, System.Collections.Generic.IList<string> addressPrefixes = default, System.Collections.Generic.IList<string> reservedPrefixes = default, string totalNumberOfIPAddresses = default, string numberOfReservedIPAddresses = default, DateTime? createdAt = default, DateTime? reservationExpiresAt = default);
new Microsoft.Azure.Management.Network.Models.PoolAssociation : string * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * string * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.Management.Network.Models.PoolAssociation
Public Sub New (resourceId As String, Optional poolId As String = Nothing, Optional description As String = Nothing, Optional addressPrefixes As IList(Of String) = Nothing, Optional reservedPrefixes As IList(Of String) = Nothing, Optional totalNumberOfIPAddresses As String = Nothing, Optional numberOfReservedIPAddresses As String = Nothing, Optional createdAt As Nullable(Of DateTime) = Nothing, Optional reservationExpiresAt As Nullable(Of DateTime) = Nothing)

Parameters

resourceId
String

Resource id of the associated Azure resource.

poolId
String

IpamPool id for which the resource is associated to.

description
String
addressPrefixes
IList<String>

List of assigned IP address prefixes in the IpamPool of the associated resource.

reservedPrefixes
IList<String>

List of reserved IP address prefixes in the IpamPool of the associated resource.

totalNumberOfIPAddresses
String

Total number of assigned IP addresses of the association.

numberOfReservedIPAddresses
String

Total number of reserved IP addresses of the association.

createdAt
Nullable<DateTime>

Creation time of the association.

reservationExpiresAt
Nullable<DateTime>

Expire time for IP addresses reserved.

Applies to