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
- vw_recovery_points
- recovery_points
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 |
object_type | text | field from the properties object |
recoveryPointId | text | field from the properties object |
resourceGroupName | 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/... |
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 | 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 |
---|---|---|---|
get | SELECT | backupInstanceName, recoveryPointId, resourceGroupName, subscriptionId, vaultName | Gets a Recovery Point using recoveryPointId for a Datasource. |
list | SELECT | backupInstanceName, resourceGroupName, subscriptionId, vaultName | Returns a list of Recovery Points for a DataSource in a vault. |
SELECT
examples
Returns a list of Recovery Points for a DataSource in a vault.
- vw_recovery_points
- recovery_points
SELECT
id,
name,
backupInstanceName,
object_type,
recoveryPointId,
resourceGroupName,
subscriptionId,
system_data,
type,
vaultName
FROM azure.data_protection.vw_recovery_points
WHERE backupInstanceName = '{{ backupInstanceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_protection.recovery_points
WHERE backupInstanceName = '{{ backupInstanceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';