container_registry_capacities
Creates, updates, deletes, gets or lists a container_registry_capacities
resource.
Overview
Name | container_registry_capacities |
Type | Resource |
Id | azure_stack.container_registry_admin.container_registry_capacities |
Fields
- vw_container_registry_capacities
- container_registry_capacities
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | text | The name of the resource |
allow_push | text | field from the properties object |
capacityName | text | field from the properties object |
location | text | field from the properties object |
maximum_capacity_in_gib | text | field from the properties object |
registries_consumption_in_gib | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
properties | object | Container registry capacity property. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | capacityName, location, subscriptionId | Returns container registry capacity property. |
list | SELECT | location, subscriptionId | Returns a list of container registry capacity properties. |
SELECT
examples
Returns a list of container registry capacity properties.
- vw_container_registry_capacities
- container_registry_capacities
SELECT
id,
name,
allow_push,
capacityName,
location,
maximum_capacity_in_gib,
registries_consumption_in_gib,
subscriptionId,
type
FROM azure_stack.container_registry_admin.vw_container_registry_capacities
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure_stack.container_registry_admin.container_registry_capacities
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';