vw_protection_container_operation_results
Creates, updates, deletes, gets or lists a vw_protection_container_operation_results
resource.
Overview
Name | vw_protection_container_operation_results |
Type | View |
Id | azure.recovery_services_backup.vw_protection_container_operation_results |
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, '$.friendlyName') as "friendly_name",
JSON_EXTRACT(properties, '$.backupManagementType') as "backup_management_type",
JSON_EXTRACT(properties, '$.registrationStatus') as "registration_status",
JSON_EXTRACT(properties, '$.healthStatus') as "health_status",
JSON_EXTRACT(properties, '$.containerType') as "container_type",
JSON_EXTRACT(properties, '$.protectableObjectType') as "protectable_object_type",
subscriptionId,
resourceGroupName,
vaultName,
fabricName,
containerName,
operationId
FROM azure.recovery_services_backup.protection_container_operation_results
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND vaultName = 'replace-me' AND fabricName = 'replace-me' AND containerName = 'replace-me' AND operationId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.friendlyName') as "friendly_name",
json_extract_path_text(properties, '$.backupManagementType') as "backup_management_type",
json_extract_path_text(properties, '$.registrationStatus') as "registration_status",
json_extract_path_text(properties, '$.healthStatus') as "health_status",
json_extract_path_text(properties, '$.containerType') as "container_type",
json_extract_path_text(properties, '$.protectableObjectType') as "protectable_object_type",
subscriptionId,
resourceGroupName,
vaultName,
fabricName,
containerName,
operationId
FROM azure.recovery_services_backup.protection_container_operation_results
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND vaultName = 'replace-me' AND fabricName = 'replace-me' AND containerName = 'replace-me' AND operationId = 'replace-me';