Share via


CapabilityInformation Constructors

Definition

Overloads

CapabilityInformation()

Initializes a new instance of the CapabilityInformation class.

CapabilityInformation(Nullable<Guid>, String, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the CapabilityInformation class.

CapabilityInformation()

Initializes a new instance of the CapabilityInformation class.

public CapabilityInformation();
Public Sub New ()

Applies to

CapabilityInformation(Nullable<Guid>, String, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the CapabilityInformation class.

public CapabilityInformation(Guid? subscriptionId = default, string state = default, int? maxAccountCount = default, int? accountCount = default, bool? migrationState = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.CapabilityInformation : Nullable<Guid> * string * Nullable<int> * Nullable<int> * Nullable<bool> -> Microsoft.Azure.Management.DataLake.Analytics.Models.CapabilityInformation
Public Sub New (Optional subscriptionId As Nullable(Of Guid) = Nothing, Optional state As String = Nothing, Optional maxAccountCount As Nullable(Of Integer) = Nothing, Optional accountCount As Nullable(Of Integer) = Nothing, Optional migrationState As Nullable(Of Boolean) = Nothing)

Parameters

subscriptionId
System.Nullable<System.Guid>

The subscription credentials that uniquely identifies the subscription.

state
System.String

The subscription state. Possible values include: 'Registered', 'Suspended', 'Deleted', 'Unregistered', 'Warned'

maxAccountCount
System.Nullable<System.Int32>

The maximum supported number of accounts under this subscription.

accountCount
System.Nullable<System.Int32>

The current number of accounts under this subscription.

migrationState
System.Nullable<System.Boolean>

The Boolean value of true or false to indicate the maintenance state.

Applies to