vw_resource_pools
Creates, updates, deletes, gets or lists a vw_resource_pools
resource.
Overview
Name | vw_resource_pools |
Type | View |
Id | azure_isv.vmware_cloud_simple.vw_resource_pools |
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,
privateCloudId as private_cloud_id,
type as type,
JSON_EXTRACT(properties, '$.fullName') as "full_name",
subscriptionId,
regionId,
pcName,
resourcePoolName
FROM azure_isv.vmware_cloud_simple.resource_pools
WHERE subscriptionId = 'replace-me' AND regionId = 'replace-me' AND pcName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
privateCloudId as private_cloud_id,
type as type,
json_extract_path_text(properties, '$.fullName') as "full_name",
subscriptionId,
regionId,
pcName,
resourcePoolName
FROM azure_isv.vmware_cloud_simple.resource_pools
WHERE subscriptionId = 'replace-me' AND regionId = 'replace-me' AND pcName = 'replace-me';