Bagikan melalui


QuotaRequestOneResourceSubmitResponse Constructors

Definition

Overloads

QuotaRequestOneResourceSubmitResponse()

Initializes a new instance of the QuotaRequestOneResourceSubmitResponse class.

QuotaRequestOneResourceSubmitResponse(String, String, String, String, String, Nullable<DateTime>, LimitObject, Nullable<Int32>, String, ResourceName, String, String, Nullable<Boolean>, ServiceErrorDetail, Object)

Initializes a new instance of the QuotaRequestOneResourceSubmitResponse class.

QuotaRequestOneResourceSubmitResponse()

Initializes a new instance of the QuotaRequestOneResourceSubmitResponse class.

public QuotaRequestOneResourceSubmitResponse ();
Public Sub New ()

Applies to

QuotaRequestOneResourceSubmitResponse(String, String, String, String, String, Nullable<DateTime>, LimitObject, Nullable<Int32>, String, ResourceName, String, String, Nullable<Boolean>, ServiceErrorDetail, Object)

Initializes a new instance of the QuotaRequestOneResourceSubmitResponse class.

public QuotaRequestOneResourceSubmitResponse (string id = default, string name = default, string type = default, string provisioningState = default, string message = default, DateTime? requestSubmitTime = default, Microsoft.Azure.Management.Quota.Models.LimitObject limit = default, int? currentValue = default, string unit = default, Microsoft.Azure.Management.Quota.Models.ResourceName name1 = default, string resourceType = default, string quotaPeriod = default, bool? isQuotaApplicable = default, Microsoft.Azure.Management.Quota.Models.ServiceErrorDetail error = default, object properties = default);
new Microsoft.Azure.Management.Quota.Models.QuotaRequestOneResourceSubmitResponse : string * string * string * string * string * Nullable<DateTime> * Microsoft.Azure.Management.Quota.Models.LimitObject * Nullable<int> * string * Microsoft.Azure.Management.Quota.Models.ResourceName * string * string * Nullable<bool> * Microsoft.Azure.Management.Quota.Models.ServiceErrorDetail * obj -> Microsoft.Azure.Management.Quota.Models.QuotaRequestOneResourceSubmitResponse
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 requestSubmitTime As Nullable(Of DateTime) = Nothing, Optional limit As LimitObject = Nothing, Optional currentValue As Nullable(Of Integer) = Nothing, Optional unit As String = Nothing, Optional name1 As ResourceName = Nothing, Optional resourceType As String = Nothing, Optional quotaPeriod As String = Nothing, Optional isQuotaApplicable As Nullable(Of Boolean) = Nothing, Optional error As ServiceErrorDetail = Nothing, Optional properties As Object = Nothing)

Parameters

id
String

Quota request ID.

name
String

The name of the quota request.

type
String

Resource type. "Microsoft.Quota/ServiceLimitRequests"

provisioningState
String

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

message
String

User-friendly status message.

requestSubmitTime
Nullable<DateTime>

Quota request submission time. The date conforms to the following ISO 8601 standard format: yyyy-MM-ddTHH:mm:ssZ.

limit
LimitObject

Resource quota limit properties.

currentValue
Nullable<Int32>

Usage information for the current resource.

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.

isQuotaApplicable
Nullable<Boolean>

States if quota can be requested for this resource.

error
ServiceErrorDetail

Error details of the quota request.

properties
Object

Additional properties for the specific resource provider.

Applies to