Compartilhar via


PoolUsage Constructors

Definition

Overloads

PoolUsage()

Initializes a new instance of the PoolUsage class.

PoolUsage(IList<String>, IList<ResourceBasics>, IList<String>, IList<String>, IList<String>, String, String, String, String)

Initializes a new instance of the PoolUsage class.

PoolUsage()

Initializes a new instance of the PoolUsage class.

public PoolUsage ();
Public Sub New ()

Applies to

PoolUsage(IList<String>, IList<ResourceBasics>, IList<String>, IList<String>, IList<String>, String, String, String, String)

Initializes a new instance of the PoolUsage class.

public PoolUsage (System.Collections.Generic.IList<string> addressPrefixes = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.ResourceBasics> childPools = default, System.Collections.Generic.IList<string> allocatedAddressPrefixes = default, System.Collections.Generic.IList<string> reservedAddressPrefixes = default, System.Collections.Generic.IList<string> availableAddressPrefixes = default, string totalNumberOfIPAddresses = default, string numberOfAllocatedIPAddresses = default, string numberOfReservedIPAddresses = default, string numberOfAvailableIPAddresses = default);
new Microsoft.Azure.Management.Network.Models.PoolUsage : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.ResourceBasics> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * string * string * string * string -> Microsoft.Azure.Management.Network.Models.PoolUsage
Public Sub New (Optional addressPrefixes As IList(Of String) = Nothing, Optional childPools As IList(Of ResourceBasics) = Nothing, Optional allocatedAddressPrefixes As IList(Of String) = Nothing, Optional reservedAddressPrefixes As IList(Of String) = Nothing, Optional availableAddressPrefixes As IList(Of String) = Nothing, Optional totalNumberOfIPAddresses As String = Nothing, Optional numberOfAllocatedIPAddresses As String = Nothing, Optional numberOfReservedIPAddresses As String = Nothing, Optional numberOfAvailableIPAddresses As String = Nothing)

Parameters

addressPrefixes
IList<String>

List of IP address prefixes of the resource.

childPools
IList<ResourceBasics>

List of IpamPool that are children of this IpamPool.

allocatedAddressPrefixes
IList<String>

List of assigned IP address prefixes.

reservedAddressPrefixes
IList<String>

List of reserved IP address prefixes. These IP addresses could be reclaimed if not assigned in the given time.

availableAddressPrefixes
IList<String>

List of available IP address prefixes.

totalNumberOfIPAddresses
String

Total number of IP addresses managed in the IpamPool.

numberOfAllocatedIPAddresses
String

Total number of assigned IP addresses in the IpamPool.

numberOfReservedIPAddresses
String

Total number of reserved IP addresses in the IpamPool.

numberOfAvailableIPAddresses
String

Total number of available IP addresses in the IpamPool.

Applies to