Share via


SubscriptionQuota Constructors

Definition

Overloads

SubscriptionQuota()

Initializes a new instance of the SubscriptionQuota class.

SubscriptionQuota(String, String, String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the SubscriptionQuota class.

SubscriptionQuota()

Initializes a new instance of the SubscriptionQuota class.

public SubscriptionQuota ();
Public Sub New ()

Applies to

SubscriptionQuota(String, String, String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the SubscriptionQuota class.

public SubscriptionQuota (string id = default, string name = default, string type = default, int? maxCount = default, int? currentCount = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.SubscriptionQuota : string * string * string * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.StreamAnalytics.Models.SubscriptionQuota
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional maxCount As Nullable(Of Integer) = Nothing, Optional currentCount As Nullable(Of Integer) = Nothing)

Parameters

id
String

Resource Id

name
String

Resource name

type
String

Resource type

maxCount
Nullable<Int32>

The max permitted usage of this resource.

currentCount
Nullable<Int32>

The current usage of this resource.

Applies to