UsagesProperties Constructors

Definition

Overloads

UsagesProperties()

Initializes a new instance of the UsagesProperties class.

UsagesProperties(UsagesObject, String, ResourceName, String, String, Nullable<Boolean>, Object)

Initializes a new instance of the UsagesProperties class.

UsagesProperties()

Initializes a new instance of the UsagesProperties class.

public UsagesProperties ();
Public Sub New ()

Applies to

UsagesProperties(UsagesObject, String, ResourceName, String, String, Nullable<Boolean>, Object)

Initializes a new instance of the UsagesProperties class.

public UsagesProperties (Microsoft.Azure.Management.Quota.Models.UsagesObject usages = default, string unit = default, Microsoft.Azure.Management.Quota.Models.ResourceName name = default, string resourceType = default, string quotaPeriod = default, bool? isQuotaApplicable = default, object properties = default);
new Microsoft.Azure.Management.Quota.Models.UsagesProperties : Microsoft.Azure.Management.Quota.Models.UsagesObject * string * Microsoft.Azure.Management.Quota.Models.ResourceName * string * string * Nullable<bool> * obj -> Microsoft.Azure.Management.Quota.Models.UsagesProperties
Public Sub New (Optional usages As UsagesObject = Nothing, Optional unit As String = Nothing, Optional name As ResourceName = Nothing, Optional resourceType As String = Nothing, Optional quotaPeriod As String = Nothing, Optional isQuotaApplicable As Nullable(Of Boolean) = Nothing, Optional properties As Object = Nothing)

Parameters

usages
UsagesObject

The quota limit properties for this resource.

unit
String

The units for the quota usage, such as Count and Bytes. When requesting quota, use the unit value returned in the GET response in the request body of your PUT operation.

name
ResourceName

Resource name provided by the resource provider. Use this property name when requesting quota.

resourceType
String

The name of the resource type.

quotaPeriod
String

The time period for the summary of the quota usage values. For example: *P1D (per one day) *PT1M (per one minute) *PT1S (per one second). This parameter is optional because it is not relevant for all resources such as compute.

isQuotaApplicable
Nullable<Boolean>

States if quota can be requested for this resource.

properties
Object

Additional properties for the specific resource provider.

Applies to