Quota Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
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.