Skip to main content

quotas

Creates, updates, deletes, gets or lists a quotas resource.

Overview

Namequotas
TypeResource
Idazure_stack.key_vault_admin.quotas

Fields

NameDatatypeDescription
idstringURI of the resource.
namestringName of the resource.
locationstringLocation where resource is location.
propertiesobjectProperties for keyvault quotas.
tagsobjectList of key value pairs.
typestringType of resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, subscriptionIdGet 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 }}';