group_quota_limits_requests
Creates, updates, deletes, gets or lists a group_quota_limits_requests
resource.
Overview
Name | group_quota_limits_requests |
Type | Resource |
Id | azure.quota.group_quota_limits_requests |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Success, with the details of the group quota request.
Name | Datatype | Description |
---|---|---|
properties | object |
Success, with the details of the group quota request.
Name | Datatype | Description |
---|---|---|
properties | object |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | managementGroupId , groupQuotaName , requestId | Get API to check the status of a GroupQuota request by requestId. | |
list | select | managementGroupId , groupQuotaName , resourceProviderName , $filter | Get API to check the status of a GroupQuota request by requestId. | |
create_or_update | insert | managementGroupId , groupQuotaName , resourceProviderName , resourceName | Put the GroupQuota requests for a specific ResourceProvider/Location/Resource. the location and resourceName ("name": {"value" : "resourceName") properties are specified in the request body. Only 1 resource quota can be requested. Use the polling API - OperationsStatus URI specified in Azure-AsyncOperation header field, with retry-after duration in seconds to check the intermediate status. This API provides the finals status with the request details and status. | |
update | update | managementGroupId , groupQuotaName , resourceProviderName , resourceName | Create the GroupQuota requests for a specific ResourceProvider/Location/Resource. the location and resourceName properties are specified in the request body. Only 1 resource quota can be requested. Please note that patch request creates a new groupQuota request. Use the polling API - OperationsStatus URI specified in Azure-AsyncOperation header field, with retry-after duration in seconds to check the intermediate status. This API provides the finals status with the request details and status. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
$filter | string | | Field | Supported operators |---------------------|------------------------ location eq {location} and resource eq {resourceName} Example: $filter=location eq eastus and resourceName eq cores |
groupQuotaName | string | The GroupQuota name. The name should be unique for the provided context tenantId/MgId. |
managementGroupId | string | Management Group Id. |
requestId | string | Request Id. |
resourceName | string | Resource name. |
resourceProviderName | string | The resource provider name, such as - Microsoft.Compute. Currently only Microsoft.Compute resource provider supports this API. |
SELECT
examples
- get
- list
Get API to check the status of a GroupQuota request by requestId.
SELECT
properties
FROM azure.quota.group_quota_limits_requests
WHERE managementGroupId = '{{ managementGroupId }}' -- required
AND groupQuotaName = '{{ groupQuotaName }}' -- required
AND requestId = '{{ requestId }}' -- required
;
Get API to check the status of a GroupQuota request by requestId.
SELECT
properties
FROM azure.quota.group_quota_limits_requests
WHERE managementGroupId = '{{ managementGroupId }}' -- required
AND groupQuotaName = '{{ groupQuotaName }}' -- required
AND resourceProviderName = '{{ resourceProviderName }}' -- required
AND $filter = '{{ $filter }}' -- required
;
INSERT
examples
- create_or_update
- Manifest
Put the GroupQuota requests for a specific ResourceProvider/Location/Resource. the location and resourceName ("name": {"value" : "resourceName") properties are specified in the request body. Only 1 resource quota can be requested.
Use the polling API - OperationsStatus URI specified in Azure-AsyncOperation header field, with retry-after duration in seconds to check the intermediate status. This API provides the finals status with the request details and status.
INSERT INTO azure.quota.group_quota_limits_requests (
data__properties,
managementGroupId,
groupQuotaName,
resourceProviderName,
resourceName
)
SELECT
'{{ properties }}',
'{{ managementGroupId }}',
'{{ groupQuotaName }}',
'{{ resourceProviderName }}',
'{{ resourceName }}'
RETURNING
properties
;
# Description fields are for documentation purposes
- name: group_quota_limits_requests
props:
- name: managementGroupId
value: string
description: Required parameter for the group_quota_limits_requests resource.
- name: groupQuotaName
value: string
description: Required parameter for the group_quota_limits_requests resource.
- name: resourceProviderName
value: string
description: Required parameter for the group_quota_limits_requests resource.
- name: resourceName
value: string
description: Required parameter for the group_quota_limits_requests resource.
- name: properties
value: object
UPDATE
examples
- update
Create the GroupQuota requests for a specific ResourceProvider/Location/Resource. the location and resourceName properties are specified in the request body. Only 1 resource quota can be requested. Please note that patch request creates a new groupQuota request.
Use the polling API - OperationsStatus URI specified in Azure-AsyncOperation header field, with retry-after duration in seconds to check the intermediate status. This API provides the finals status with the request details and status.
UPDATE azure.quota.group_quota_limits_requests
SET
data__properties = '{{ properties }}'
WHERE
managementGroupId = '{{ managementGroupId }}' --required
AND groupQuotaName = '{{ groupQuotaName }}' --required
AND resourceProviderName = '{{ resourceProviderName }}' --required
AND resourceName = '{{ resourceName }}' --required
RETURNING
properties;