vw_clusters
Creates, updates, deletes, gets or lists a vw_clusters
resource.
Overview
Name | vw_clusters |
Type | View |
Id | azure_isv.vmware.vw_clusters |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
sku as sku,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.clusterId') as "cluster_id",
JSON_EXTRACT(properties, '$.hosts') as "hosts",
subscriptionId,
resourceGroupName,
privateCloudName,
clusterName
FROM azure_isv.vmware.clusters
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND privateCloudName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
sku as sku,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.clusterId') as "cluster_id",
json_extract_path_text(properties, '$.hosts') as "hosts",
subscriptionId,
resourceGroupName,
privateCloudName,
clusterName
FROM azure_isv.vmware.clusters
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND privateCloudName = 'replace-me';