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