Partager via


Quota Constructors

Definition

Overloads

Quota()

Initializes a new instance of the Quota class.

Quota(Nullable<Double>, String, Nullable<Double>, QuotaName, String)

Initializes a new instance of the Quota class.

Quota()

Initializes a new instance of the Quota class.

public Quota ();
Public Sub New ()

Applies to

Quota(Nullable<Double>, String, Nullable<Double>, QuotaName, String)

Initializes a new instance of the Quota class.

public Quota (double? currentValue = default, string id = default, double? limit = default, Microsoft.Azure.Management.DataMigration.Models.QuotaName name = default, string unit = default);
new Microsoft.Azure.Management.DataMigration.Models.Quota : Nullable<double> * string * Nullable<double> * Microsoft.Azure.Management.DataMigration.Models.QuotaName * string -> Microsoft.Azure.Management.DataMigration.Models.Quota
Public Sub New (Optional currentValue As Nullable(Of Double) = Nothing, Optional id As String = Nothing, Optional limit As Nullable(Of Double) = Nothing, Optional name As QuotaName = Nothing, Optional unit As String = Nothing)

Parameters

currentValue
Nullable<Double>

The current value of the quota. If null or missing, the current value cannot be determined in the context of the request.

id
String

The resource ID of the quota object

limit
Nullable<Double>

The maximum value of the quota. If null or missing, the quota has no maximum, in which case it merely tracks usage.

name
QuotaName

The name of the quota

unit
String

The unit for the quota, such as Count, Bytes, BytesPerSecond, etc.

Applies to