quotas
Creates, updates, deletes, gets or lists a quotas resource.
Overview
| Name | quotas |
| Type | Resource |
| Id | azure_stack.key_vault_admin.quotas |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | Location where resource is location. |
properties | object | Properties for keyvault quotas. |
tags | object | List of key value pairs. |
type | string | Type of resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, location | Get a list of all quota objects for KeyVault at a location. |
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 location of the quota. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription.The subscription ID forms part of the URI for every service call. |
SELECT examples
- list
Get a list of all quota objects for KeyVault at a location.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.key_vault_admin.quotas
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;