vw_vaults
Creates, updates, deletes, gets or lists a vw_vaults
resource.
Overview
Name | vw_vaults |
Type | View |
Id | azure.data_replication.vw_vaults |
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,
tags as tags,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.serviceResourceId') as "service_resource_id",
JSON_EXTRACT(properties, '$.vaultType') as "vault_type",
subscriptionId,
resourceGroupName,
vaultName
FROM azure.data_replication.vaults
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
tags as tags,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.serviceResourceId') as "service_resource_id",
json_extract_path_text(properties, '$.vaultType') as "vault_type",
subscriptionId,
resourceGroupName,
vaultName
FROM azure.data_replication.vaults
WHERE subscriptionId = 'replace-me';