vw_storage_domains
Creates, updates, deletes, gets or lists a vw_storage_domains
resource.
Overview
Name | vw_storage_domains |
Type | View |
Id | azure_extras.storsimple_1200_series.vw_storage_domains |
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,
JSON_EXTRACT(properties, '$.storageAccountCredentialIds') as "storage_account_credential_ids",
JSON_EXTRACT(properties, '$.encryptionKey') as "encryption_key",
JSON_EXTRACT(properties, '$.encryptionStatus') as "encryption_status",
subscriptionId,
resourceGroupName,
managerName,
storageDomainName
FROM azure_extras.storsimple_1200_series.storage_domains
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND managerName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.storageAccountCredentialIds') as "storage_account_credential_ids",
json_extract_path_text(properties, '$.encryptionKey') as "encryption_key",
json_extract_path_text(properties, '$.encryptionStatus') as "encryption_status",
subscriptionId,
resourceGroupName,
managerName,
storageDomainName
FROM azure_extras.storsimple_1200_series.storage_domains
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND managerName = 'replace-me';