recovery_points
Creates, updates, deletes, gets or lists a recovery_points
resource.
Overview
Name | recovery_points |
Type | Resource |
Id | azure.data_protection.recovery_points |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string | Resource Id represents the complete path to the resource. |
name | string | Resource name associated with the resource. |
properties | object | AzureBackupRecoveryPointResource properties (title: AzureBackupRecoveryPoint) |
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/... |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id represents the complete path to the resource. |
name | string | Resource name associated with the resource. |
properties | object | AzureBackupRecoveryPointResource properties (title: AzureBackupRecoveryPoint) |
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , vaultName , backupInstanceName , recoveryPointId | Gets a Recovery Point using recoveryPointId for a Datasource. | |
list | select | subscriptionId , resourceGroupName , vaultName , backupInstanceName | $filter , $skipToken | Returns 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.
Name | Datatype | Description |
---|---|---|
backupInstanceName | string | The name of the backup instance. |
recoveryPointId | string | |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
vaultName | string | The name of the backup vault. |
$filter | string | OData filter options. |
$skipToken | string | skipToken Filter. |
SELECT
examples
- get
- list
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
;
Returns a list of Recovery Points for a DataSource in a vault.
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 $filter = '{{ $filter }}'
AND $skipToken = '{{ $skipToken }}'
;