Skip to main content

deleted_backup_instances

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

Overview

Namedeleted_backup_instances
TypeResource
Idazure.data_protection.deleted_backup_instances

Fields

NameDatatypeDescription
idtextResource Id represents the complete path to the resource.
nametextResource name associated with the resource.
backupInstanceNametextfield from the properties object
current_protection_statetextfield from the properties object
data_source_infotextfield from the properties object
data_source_set_infotextfield from the properties object
datasource_auth_credentialstextfield from the properties object
deletion_infotextfield from the properties object
friendly_nametextfield from the properties object
identity_detailstextfield from the properties object
object_typetextfield from the properties object
policy_infotextfield from the properties object
protection_error_detailstextfield from the properties object
protection_statustextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
resource_guard_operation_requeststextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
typetextResource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
validation_typetextfield from the properties object
vaultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTbackupInstanceName, resourceGroupName, subscriptionId, vaultNameGets a deleted backup instance with name in a backup vault
listSELECTresourceGroupName, subscriptionId, vaultNameGets deleted backup instances belonging to a backup vault
undeleteEXECbackupInstanceName, resourceGroupName, subscriptionId, vaultName

SELECT examples

Gets deleted backup instances belonging to a backup vault

SELECT
id,
name,
backupInstanceName,
current_protection_state,
data_source_info,
data_source_set_info,
datasource_auth_credentials,
deletion_info,
friendly_name,
identity_details,
object_type,
policy_info,
protection_error_details,
protection_status,
provisioning_state,
resourceGroupName,
resource_guard_operation_requests,
subscriptionId,
system_data,
type,
validation_type,
vaultName
FROM azure.data_protection.vw_deleted_backup_instances
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';