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
Name | Datatype | Description |
---|---|---|
id | string | Resource Id represents the complete path to the resource. |
name | string | Resource name associated with the resource. |
properties | object | Azure backup recoveryPoint |
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 |
---|---|---|---|
list | SELECT | location, resourceGroupName, subscriptionId | Returns a list of Secondary Recovery Points for a DataSource in a vault, that can be used for Cross Region Restore. |
SELECT
examples
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 location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';