container_registry_setup_status
Creates, updates, deletes, gets or lists a container_registry_setup_status
resource.
Overview
Name | container_registry_setup_status |
Type | Resource |
Id | azure_stack.container_registry_admin.container_registry_setup_status |
Fields
- vw_container_registry_setup_status
- container_registry_setup_status
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 |
error_message | text | field from the properties object |
location | text | field from the properties object |
status | 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 setup result properties. |
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 | location, subscriptionId | Returns the status of the container registry setup. |
SELECT
examples
Returns the status of the container registry setup.
- vw_container_registry_setup_status
- container_registry_setup_status
SELECT
id,
name,
error_message,
location,
status,
subscriptionId,
type
FROM azure_stack.container_registry_admin.vw_container_registry_setup_status
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure_stack.container_registry_admin.container_registry_setup_status
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';