resource_quota_limits
Creates, updates, deletes, gets or lists a resource_quota_limits resource.
Overview
| Name | resource_quota_limits |
| Type | Resource |
| Id | azure_isv.netapp.resource_quota_limits |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
properties | object | SubscriptionQuotaItem properties |
| Name | Datatype | Description |
|---|---|---|
properties | object | SubscriptionQuotaItem properties |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, location, quotaLimitName | Get the default and current subscription quota limit | |
list | select | subscriptionId, location | Get the default and current limits for quotas |
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 |
|---|---|---|
location | string | The name of the Azure region. |
quotaLimitName | string | The name of the Quota Limit |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
- list
Get the default and current subscription quota limit
SELECT
properties
FROM azure_isv.netapp.resource_quota_limits
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND quotaLimitName = '{{ quotaLimitName }}' -- required
;
Get the default and current limits for quotas
SELECT
properties
FROM azure_isv.netapp.resource_quota_limits
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;