Condividi tramite


VolumeQuotaRulesProperties Constructors

Definition

Overloads

VolumeQuotaRulesProperties()

Initializes a new instance of the VolumeQuotaRulesProperties class.

VolumeQuotaRulesProperties(Nullable<ProvisioningState>, Nullable<Int64>, String, String)

Initializes a new instance of the VolumeQuotaRulesProperties class.

VolumeQuotaRulesProperties()

Initializes a new instance of the VolumeQuotaRulesProperties class.

public VolumeQuotaRulesProperties ();
Public Sub New ()

Applies to

VolumeQuotaRulesProperties(Nullable<ProvisioningState>, Nullable<Int64>, String, String)

Initializes a new instance of the VolumeQuotaRulesProperties class.

public VolumeQuotaRulesProperties (Microsoft.Azure.Management.NetApp.Models.ProvisioningState? provisioningState = default, long? quotaSizeInKiBs = default, string quotaType = default, string quotaTarget = default);
new Microsoft.Azure.Management.NetApp.Models.VolumeQuotaRulesProperties : Nullable<Microsoft.Azure.Management.NetApp.Models.ProvisioningState> * Nullable<int64> * string * string -> Microsoft.Azure.Management.NetApp.Models.VolumeQuotaRulesProperties
Public Sub New (Optional provisioningState As Nullable(Of ProvisioningState) = Nothing, Optional quotaSizeInKiBs As Nullable(Of Long) = Nothing, Optional quotaType As String = Nothing, Optional quotaTarget As String = Nothing)

Parameters

provisioningState
Nullable<ProvisioningState>

Gets the status of the VolumeQuotaRule at the time the operation was called. Possible values include: 'Accepted', 'Creating', 'Patching', 'Deleting', 'Moving', 'Failed', 'Succeeded'

quotaSizeInKiBs
Nullable<Int64>

Size of quota

quotaType
String

Type of quota Possible values include: 'DefaultUserQuota', 'DefaultGroupQuota', 'IndividualUserQuota', 'IndividualGroupQuota'

quotaTarget
String

UserID/GroupID/SID based on the quota target type. UserID and groupID can be found by running ‘id’ or ‘getent’ command for the user or group and SID can be found by running <wmic useraccount where name='user-name' get sid>

Applies to