Skip to main content

recovery_points

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

Overview

Namerecovery_points
TypeResource
Idazure.data_protection.recovery_points

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id represents the complete path to the resource.
namestringResource name associated with the resource.
propertiesobjectAzureBackupRecoveryPointResource properties (title: AzureBackupRecoveryPoint)
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringResource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, vaultName, backupInstanceName, recoveryPointIdGets a Recovery Point using recoveryPointId for a Datasource.
listselectsubscriptionId, resourceGroupName, vaultName, backupInstanceName$filter, $skipTokenReturns a list of Recovery Points for a DataSource in a vault.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
backupInstanceNamestringThe name of the backup instance.
recoveryPointIdstring
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
vaultNamestringThe name of the backup vault.
$filterstringOData filter options.
$skipTokenstringskipToken Filter.

SELECT examples

Gets a Recovery Point using recoveryPointId for a Datasource.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_protection.recovery_points
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vaultName = '{{ vaultName }}' -- required
AND backupInstanceName = '{{ backupInstanceName }}' -- required
AND recoveryPointId = '{{ recoveryPointId }}' -- required
;