vw_managers
Creates, updates, deletes, gets or lists a vw_managers
resource.
Overview
Name | vw_managers |
Type | View |
Id | azure_extras.storsimple_8000_series.vw_managers |
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,
tags as tags,
etag as etag,
JSON_EXTRACT(properties, '$.cisIntrinsicSettings') as "cis_intrinsic_settings",
JSON_EXTRACT(properties, '$.sku') as "sku",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
managerName
FROM azure_extras.storsimple_8000_series.managers
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
etag as etag,
json_extract_path_text(properties, '$.cisIntrinsicSettings') as "cis_intrinsic_settings",
json_extract_path_text(properties, '$.sku') as "sku",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
managerName
FROM azure_extras.storsimple_8000_series.managers
WHERE subscriptionId = 'replace-me';