deleted_backup_instances
Creates, updates, deletes, gets or lists a deleted_backup_instances
resource.
Overview
Name | deleted_backup_instances |
Type | Resource |
Id | azure.data_protection.deleted_backup_instances |
Fields
- vw_deleted_backup_instances
- deleted_backup_instances
Name | Datatype | Description |
---|---|---|
id | text | Resource Id represents the complete path to the resource. |
name | text | Resource name associated with the resource. |
backupInstanceName | text | field from the properties object |
current_protection_state | text | field from the properties object |
data_source_info | text | field from the properties object |
data_source_set_info | text | field from the properties object |
datasource_auth_credentials | text | field from the properties object |
deletion_info | text | field from the properties object |
friendly_name | text | field from the properties object |
identity_details | text | field from the properties object |
object_type | text | field from the properties object |
policy_info | text | field from the properties object |
protection_error_details | text | field from the properties object |
protection_status | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resource_guard_operation_requests | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
type | text | Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/... |
validation_type | text | field from the properties object |
vaultName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id represents the complete path to the resource. |
name | string | Resource name associated with the resource. |
properties | object | Deleted Backup Instance |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/... |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | backupInstanceName, resourceGroupName, subscriptionId, vaultName | Gets a deleted backup instance with name in a backup vault |
list | SELECT | resourceGroupName, subscriptionId, vaultName | Gets deleted backup instances belonging to a backup vault |
undelete | EXEC | backupInstanceName, resourceGroupName, subscriptionId, vaultName |
SELECT
examples
Gets deleted backup instances belonging to a backup vault
- vw_deleted_backup_instances
- deleted_backup_instances
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 }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_protection.deleted_backup_instances
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';