registries_usages
Creates, updates, deletes, gets or lists a registries_usages
resource.
Overview
Name | registries_usages |
Type | Resource |
Id | azure.container_registry.registries_usages |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the usage. |
currentValue | integer | The current value of the usage. |
limit | integer | The limit of the usage. |
unit | string | The unit of measurement. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | registryName, resourceGroupName, subscriptionId | Gets the quota usages for the specified container registry. |
SELECT
examples
Gets the quota usages for the specified container registry.
SELECT
name,
currentValue,
limit,
unit
FROM azure.container_registry.registries_usages
WHERE registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';