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
The following fields are returned by SELECT queries:
- list
The request was successful; the registry usages retrieved and returned successfully.
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the usage. |
currentValue | integer (int64) | The current value of the usage. |
limit | integer (int64) | The limit of the usage. |
unit | string | The unit of measurement. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, registryName | Gets the quota usages for the specified container registry. |
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 |
|---|---|---|
registryName | string | The name of the container registry. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- list
Gets the quota usages for the specified container registry.
SELECT
name,
currentValue,
limit,
unit
FROM azure.container_registry.registries_usages
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND registryName = '{{ registryName }}' -- required
;