vw_backup_resource_storage_configs_non_crr
Creates, updates, deletes, gets or lists a vw_backup_resource_storage_configs_non_crr
resource.
Overview
Name | vw_backup_resource_storage_configs_non_crr |
Type | View |
Id | azure.recovery_services_backup.vw_backup_resource_storage_configs_non_crr |
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, '$.storageModelType') as "storage_model_type",
JSON_EXTRACT(properties, '$.storageType') as "storage_type",
JSON_EXTRACT(properties, '$.storageTypeState') as "storage_type_state",
JSON_EXTRACT(properties, '$.crossRegionRestoreFlag') as "cross_region_restore_flag",
JSON_EXTRACT(properties, '$.dedupState') as "dedup_state",
JSON_EXTRACT(properties, '$.xcoolState') as "xcool_state",
subscriptionId,
resourceGroupName,
vaultName
FROM azure.recovery_services_backup.backup_resource_storage_configs_non_crr
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND vaultName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.storageModelType') as "storage_model_type",
json_extract_path_text(properties, '$.storageType') as "storage_type",
json_extract_path_text(properties, '$.storageTypeState') as "storage_type_state",
json_extract_path_text(properties, '$.crossRegionRestoreFlag') as "cross_region_restore_flag",
json_extract_path_text(properties, '$.dedupState') as "dedup_state",
json_extract_path_text(properties, '$.xcoolState') as "xcool_state",
subscriptionId,
resourceGroupName,
vaultName
FROM azure.recovery_services_backup.backup_resource_storage_configs_non_crr
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND vaultName = 'replace-me';