vw_custom_locations
Creates, updates, deletes, gets or lists a vw_custom_locations
resource.
Overview
Name | vw_custom_locations |
Type | View |
Id | azure.custom_locations.vw_custom_locations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
identity as identity,
systemData as system_data,
tags as tags,
JSON_EXTRACT(properties, '$.authentication') as "authentication",
JSON_EXTRACT(properties, '$.clusterExtensionIds') as "cluster_extension_ids",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.hostResourceId') as "host_resource_id",
JSON_EXTRACT(properties, '$.hostType') as "host_type",
JSON_EXTRACT(properties, '$.namespace') as "namespace",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.custom_locations.custom_locations
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
identity as identity,
systemData as system_data,
tags as tags,
json_extract_path_text(properties, '$.authentication') as "authentication",
json_extract_path_text(properties, '$.clusterExtensionIds') as "cluster_extension_ids",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.hostResourceId') as "host_resource_id",
json_extract_path_text(properties, '$.hostType') as "host_type",
json_extract_path_text(properties, '$.namespace') as "namespace",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.custom_locations.custom_locations
WHERE subscriptionId = 'replace-me';