Quota Constructors

Definition

Overloads

Quota()

Initializes a new instance of the Quota class.

Quota(IDictionary<String,Nullable<Int32>>, 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(IDictionary<String,Nullable<Int32>>, String)

Initializes a new instance of the Quota class.

public Quota (System.Collections.Generic.IDictionary<string,int?> hostsRemaining = default, string quotaEnabled = default);
new Microsoft.Azure.Management.Avs.Models.Quota : System.Collections.Generic.IDictionary<string, Nullable<int>> * string -> Microsoft.Azure.Management.Avs.Models.Quota
Public Sub New (Optional hostsRemaining As IDictionary(Of String, Nullable(Of Integer)) = Nothing, Optional quotaEnabled As String = Nothing)

Parameters

hostsRemaining
IDictionary<String,Nullable<Int32>>

Remaining hosts quota by sku type

quotaEnabled
String

Host quota is active for current subscription. Possible values include: 'Enabled', 'Disabled'

Applies to