vw_controllers
Creates, updates, deletes, gets or lists a vw_controllers
resource.
Overview
Name | vw_controllers |
Type | View |
Id | azure_extras.dev_spaces.vw_controllers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
sku as sku,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.hostSuffix') as "host_suffix",
JSON_EXTRACT(properties, '$.dataPlaneFqdn') as "data_plane_fqdn",
JSON_EXTRACT(properties, '$.targetContainerHostApiServerFqdn') as "target_container_host_api_server_fqdn",
JSON_EXTRACT(properties, '$.targetContainerHostResourceId') as "target_container_host_resource_id",
JSON_EXTRACT(properties, '$.targetContainerHostCredentialsBase64') as "target_container_host_credentials_base64",
subscriptionId,
resourceGroupName,
name
FROM azure_extras.dev_spaces.controllers
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
sku as sku,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.hostSuffix') as "host_suffix",
json_extract_path_text(properties, '$.dataPlaneFqdn') as "data_plane_fqdn",
json_extract_path_text(properties, '$.targetContainerHostApiServerFqdn') as "target_container_host_api_server_fqdn",
json_extract_path_text(properties, '$.targetContainerHostResourceId') as "target_container_host_resource_id",
json_extract_path_text(properties, '$.targetContainerHostCredentialsBase64') as "target_container_host_credentials_base64",
subscriptionId,
resourceGroupName,
name
FROM azure_extras.dev_spaces.controllers
WHERE subscriptionId = 'replace-me';