Skip to main content

vw_backup_engines

Creates, updates, deletes, gets or lists a vw_backup_engines resource.

Overview

Namevw_backup_engines
TypeView
Idazure.recovery_services_backup.vw_backup_engines

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

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, '$.backupEngineState') as "backup_engine_state",
JSON_EXTRACT(properties, '$.healthStatus') as "health_status",
JSON_EXTRACT(properties, '$.backupEngineType') as "backup_engine_type",
JSON_EXTRACT(properties, '$.canReRegister') as "can_re_register",
JSON_EXTRACT(properties, '$.backupEngineId') as "backup_engine_id",
JSON_EXTRACT(properties, '$.dpmVersion') as "dpm_version",
JSON_EXTRACT(properties, '$.azureBackupAgentVersion') as "azure_backup_agent_version",
JSON_EXTRACT(properties, '$.isAzureBackupAgentUpgradeAvailable') as "is_azure_backup_agent_upgrade_available",
JSON_EXTRACT(properties, '$.isDpmUpgradeAvailable') as "is_dpm_upgrade_available",
JSON_EXTRACT(properties, '$.extendedInfo') as "extended_info",
subscriptionId,
resourceGroupName,
vaultName,
backupEngineName
FROM azure.recovery_services_backup.backup_engines
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND vaultName = 'replace-me';