fetch_secondary_recovery_points
Creates, updates, deletes, gets or lists a fetch_secondary_recovery_points resource.
Overview
| Name | fetch_secondary_recovery_points |
| Type | Resource |
| Id | azure.data_protection.fetch_secondary_recovery_points |
Fields
The following fields are returned by SELECT queries:
- 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/... |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, location | $filter, $skipToken | Returns a list of Secondary Recovery Points for a DataSource in a vault, that can be used for Cross Region Restore. |
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 |
|---|---|---|
location | string | The name of the Azure region. |
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. |
$filter | string | OData filter options. |
$skipToken | string | skipToken Filter. |
SELECT examples
- list
Returns a list of Secondary Recovery Points for a DataSource in a vault, that can be used for Cross Region Restore.
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_protection.fetch_secondary_recovery_points
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND location = '{{ location }}' -- required
AND $filter = '{{ $filter }}'
AND $skipToken = '{{ $skipToken }}'
;