vw_dedicated_cloud_services
Creates, updates, deletes, gets or lists a vw_dedicated_cloud_services
resource.
Overview
Name | vw_dedicated_cloud_services |
Type | View |
Id | azure_isv.vmware_cloud_simple.vw_dedicated_cloud_services |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
tags as tags,
type as type,
JSON_EXTRACT(properties, '$.gatewaySubnet') as "gateway_subnet",
JSON_EXTRACT(properties, '$.isAccountOnboarded') as "is_account_onboarded",
JSON_EXTRACT(properties, '$.nodes') as "nodes",
JSON_EXTRACT(properties, '$.serviceURL') as "service_url",
subscriptionId,
resourceGroupName,
dedicatedCloudServiceName
FROM azure_isv.vmware_cloud_simple.dedicated_cloud_services
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
tags as tags,
type as type,
json_extract_path_text(properties, '$.gatewaySubnet') as "gateway_subnet",
json_extract_path_text(properties, '$.isAccountOnboarded') as "is_account_onboarded",
json_extract_path_text(properties, '$.nodes') as "nodes",
json_extract_path_text(properties, '$.serviceURL') as "service_url",
subscriptionId,
resourceGroupName,
dedicatedCloudServiceName
FROM azure_isv.vmware_cloud_simple.dedicated_cloud_services
WHERE subscriptionId = 'replace-me';