quotas
Creates, updates, deletes, gets or lists a quotas
resource.
Overview
Name | quotas |
Type | Resource |
Id | azure_stack.key_vault_admin.quotas |
Fields
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Get a list of all quota objects for KeyVault at a location. |
SELECT
examples
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 location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';