Share via


QuotaProperties Constructors

Definition

Overloads

QuotaProperties()

Initializes a new instance of the QuotaProperties class.

QuotaProperties(Nullable<Int32>, Nullable<Int32>, String, ResourceName, Object, String, Object)

Initializes a new instance of the QuotaProperties class.

QuotaProperties()

Initializes a new instance of the QuotaProperties class.

public QuotaProperties ();
Public Sub New ()

Applies to

QuotaProperties(Nullable<Int32>, Nullable<Int32>, String, ResourceName, Object, String, Object)

Initializes a new instance of the QuotaProperties class.

public QuotaProperties (int? limit = default, int? currentValue = default, string unit = default, Microsoft.Azure.Management.Reservations.Models.ResourceName name = default, object resourceType = default, string quotaPeriod = default, object properties = default);
new Microsoft.Azure.Management.Reservations.Models.QuotaProperties : Nullable<int> * Nullable<int> * string * Microsoft.Azure.Management.Reservations.Models.ResourceName * obj * string * obj -> Microsoft.Azure.Management.Reservations.Models.QuotaProperties
Public Sub New (Optional limit As Nullable(Of Integer) = Nothing, Optional currentValue As Nullable(Of Integer) = Nothing, Optional unit As String = Nothing, Optional name As ResourceName = Nothing, Optional resourceType As Object = Nothing, Optional quotaPeriod As String = Nothing, Optional properties As Object = Nothing)

Parameters

limit
Nullable<Int32>

Quota properties.

currentValue
Nullable<Int32>

Current usage value for the resource.

unit
String

The limit units, such as count and bytes. Use the unit field provided in the response of the GET quota operation.

name
ResourceName

Name of the resource provide by the resource provider. Use this property for quotaRequests resource operations.

resourceType
Object

The name of the resource type.

quotaPeriod
String

The time period over which the quota usage values are summarized. For example, P1D (per one day), PT1M (per one minute), and PT1S (per one second). This parameter is optional because, for some resources such as compute, the time period is irrelevant.

properties
Object

Additional properties for the specified resource provider.

Applies to