Skip to main content

backup_engines

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

Overview

Namebackup_engines
TypeResource
Idazure.recovery_services_backup.backup_engines

Fields

NameDatatypeDescription
idtextFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
nametextThe name of the resource
azure_backup_agent_versiontextfield from the properties object
backupEngineNametextfield from the properties object
backup_engine_idtextfield from the properties object
backup_engine_statetextfield from the properties object
backup_engine_typetextfield from the properties object
backup_management_typetextfield from the properties object
can_re_registertextfield from the properties object
dpm_versiontextfield from the properties object
extended_infotextfield from the properties object
friendly_nametextfield from the properties object
health_statustextfield from the properties object
is_azure_backup_agent_upgrade_availabletextfield from the properties object
is_dpm_upgrade_availabletextfield from the properties object
registration_statustextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
vaultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTbackupEngineName, resourceGroupName, subscriptionId, vaultNameReturns backup management server registered to Recovery Services Vault.
listSELECTresourceGroupName, subscriptionId, vaultNameBackup management servers registered to Recovery Services Vault. Returns a pageable list of servers.

SELECT examples

Backup management servers registered to Recovery Services Vault. Returns a pageable list of servers.

SELECT
id,
name,
azure_backup_agent_version,
backupEngineName,
backup_engine_id,
backup_engine_state,
backup_engine_type,
backup_management_type,
can_re_register,
dpm_version,
extended_info,
friendly_name,
health_status,
is_azure_backup_agent_upgrade_available,
is_dpm_upgrade_available,
registration_status,
resourceGroupName,
subscriptionId,
type,
vaultName
FROM azure.recovery_services_backup.vw_backup_engines
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';