SubRequest Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SubRequest() |
Initializes a new instance of the SubRequest class. |
SubRequest(ResourceName, String, String, String, String, String, LimitJsonObject) |
Initializes a new instance of the SubRequest class. |
SubRequest()
Initializes a new instance of the SubRequest class.
public SubRequest ();
Public Sub New ()
Applies to
SubRequest(ResourceName, String, String, String, String, String, LimitJsonObject)
Initializes a new instance of the SubRequest class.
public SubRequest (Microsoft.Azure.Management.Quota.Models.ResourceName name = default, string resourceType = default, string unit = default, string provisioningState = default, string message = default, string subRequestId = default, Microsoft.Azure.Management.Quota.Models.LimitJsonObject limit = default);
new Microsoft.Azure.Management.Quota.Models.SubRequest : Microsoft.Azure.Management.Quota.Models.ResourceName * string * string * string * string * string * Microsoft.Azure.Management.Quota.Models.LimitJsonObject -> Microsoft.Azure.Management.Quota.Models.SubRequest
Public Sub New (Optional name As ResourceName = Nothing, Optional resourceType As String = Nothing, Optional unit As String = Nothing, Optional provisioningState As String = Nothing, Optional message As String = Nothing, Optional subRequestId As String = Nothing, Optional limit As LimitJsonObject = Nothing)
Parameters
- name
- ResourceName
Resource name.
- resourceType
- String
Resource type for which the quota properties were requested.
- unit
- String
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.
- provisioningState
- String
The quota request status. Possible values include: 'Accepted', 'Invalid', 'Succeeded', 'Failed', 'InProgress'
- message
- String
User-friendly status message.
- subRequestId
- String
Quota request ID.
- limit
- LimitJsonObject
Resource quota limit properties.
Applies to
Azure SDK for .NET