Skip to main content

registries_usages

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

Overview

Nameregistries_usages
TypeResource
Idazure.container_registry.registries_usages

Fields

NameDatatypeDescription
namestringThe name of the usage.
currentValueintegerThe current value of the usage.
limitintegerThe limit of the usage.
unitstringThe unit of measurement.

Methods

NameAccessible byRequired ParamsDescription
listSELECTregistryName, resourceGroupName, subscriptionIdGets 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 }}';