QuotaRequestSubmitResponse202 Constructors

Definition

Overloads

QuotaRequestSubmitResponse202()

Initializes a new instance of the QuotaRequestSubmitResponse202 class.

QuotaRequestSubmitResponse202(String, String, String, String, String, LimitObject, String, ResourceName, String, String, Object)

Initializes a new instance of the QuotaRequestSubmitResponse202 class.

QuotaRequestSubmitResponse202()

Initializes a new instance of the QuotaRequestSubmitResponse202 class.

public QuotaRequestSubmitResponse202 ();
Public Sub New ()

Applies to

QuotaRequestSubmitResponse202(String, String, String, String, String, LimitObject, String, ResourceName, String, String, Object)

Initializes a new instance of the QuotaRequestSubmitResponse202 class.

public QuotaRequestSubmitResponse202 (string id = default, string name = default, string type = default, string provisioningState = default, string message = default, Microsoft.Azure.Management.Quota.Models.LimitObject limit = default, string unit = default, Microsoft.Azure.Management.Quota.Models.ResourceName name1 = default, string resourceType = default, string quotaPeriod = default, object properties = default);
new Microsoft.Azure.Management.Quota.Models.QuotaRequestSubmitResponse202 : string * string * string * string * string * Microsoft.Azure.Management.Quota.Models.LimitObject * string * Microsoft.Azure.Management.Quota.Models.ResourceName * string * string * obj -> Microsoft.Azure.Management.Quota.Models.QuotaRequestSubmitResponse202
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional provisioningState As String = Nothing, Optional message As String = Nothing, Optional limit As LimitObject = Nothing, Optional unit As String = Nothing, Optional name1 As ResourceName = Nothing, Optional resourceType As String = Nothing, Optional quotaPeriod As String = Nothing, Optional properties As Object = Nothing)

Parameters

id
String

The quota request ID. To check the request status, use the id value in a Quota Request Status GET operation.

name
String

Operation ID.

type
String

Resource type.

provisioningState
String

Quota request status. Possible values include: 'Accepted', 'Invalid', 'Succeeded', 'Failed', 'InProgress'

message
String

User-friendly message.

limit
LimitObject

Resource quota limit properties.

unit
String

The quota limit units, such as Count and Bytes. When requesting quota, use the unit value returned in the GET response in the request body of your PUT operation.

name1
ResourceName

Resource name provided by the resource provider. Use this property name when requesting quota.

resourceType
String

Resource type name.

quotaPeriod
String

The time period over which the quota usage values are summarized. For example: *P1D (per one day) *PT1M (per one minute) *PT1S (per one second). This parameter is optional because, for some resources like compute, the period is irrelevant.

properties
Object

Additional properties for the specific resource provider.

Applies to