Interface QuotaRequestStatus
public interface QuotaRequestStatus
Resource collection API of QuotaRequestStatus.
-
Method Summary
Modifier and TypeMethodDescriptionFor the specified Azure region (location), get the details and status of the quota request by the quota request ID for the resources of the resource provider.com.azure.core.http.rest.Response
<QuotaRequestDetails> getWithResponse
(String subscriptionId, String providerId, String location, String id, com.azure.core.util.Context context) For the specified Azure region (location), get the details and status of the quota request by the quota request ID for the resources of the resource provider.com.azure.core.http.rest.PagedIterable
<QuotaRequestDetails> For the specified Azure region (location), subscription, and resource provider, get the history of the quota requests for the past year.com.azure.core.http.rest.PagedIterable
<QuotaRequestDetails> list
(String subscriptionId, String providerId, String location, String filter, Integer top, String skiptoken, com.azure.core.util.Context context) For the specified Azure region (location), subscription, and resource provider, get the history of the quota requests for the past year.
-
Method Details
-
getWithResponse
com.azure.core.http.rest.Response<QuotaRequestDetails> getWithResponse(String subscriptionId, String providerId, String location, String id, com.azure.core.util.Context context) For the specified Azure region (location), get the details and status of the quota request by the quota request ID for the resources of the resource provider. The PUT request for the quota (service limit) returns a response with the requestId parameter.- Parameters:
subscriptionId
- Azure subscription ID.providerId
- Azure resource provider ID.location
- Azure region.id
- Quota Request ID.context
- The context to associate with this operation.- Returns:
- quota request details along with
Response
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
get
For the specified Azure region (location), get the details and status of the quota request by the quota request ID for the resources of the resource provider. The PUT request for the quota (service limit) returns a response with the requestId parameter.- Parameters:
subscriptionId
- Azure subscription ID.providerId
- Azure resource provider ID.location
- Azure region.id
- Quota Request ID.- Returns:
- quota request details.
- Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
list
com.azure.core.http.rest.PagedIterable<QuotaRequestDetails> list(String subscriptionId, String providerId, String location) For the specified Azure region (location), subscription, and resource provider, get the history of the quota requests for the past year. To select specific quota requests, use the oData filter.- Parameters:
subscriptionId
- Azure subscription ID.providerId
- Azure resource provider ID.location
- Azure region.- Returns:
- quota request details as paginated response with
PagedIterable
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
list
com.azure.core.http.rest.PagedIterable<QuotaRequestDetails> list(String subscriptionId, String providerId, String location, String filter, Integer top, String skiptoken, com.azure.core.util.Context context) For the specified Azure region (location), subscription, and resource provider, get the history of the quota requests for the past year. To select specific quota requests, use the oData filter.- Parameters:
subscriptionId
- Azure subscription ID.providerId
- Azure resource provider ID.location
- Azure region.filter
- | Field | Supported operators | |---------------------|------------------------| |requestSubmitTime | ge, le, eq, gt, lt |.top
- Number of records to return.skiptoken
- Skiptoken is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element includes a skiptoken parameter that specifies a starting point to use for subsequent calls.context
- The context to associate with this operation.- Returns:
- quota request details as paginated response with
PagedIterable
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-