migration_recovery_points
Creates, updates, deletes, gets or lists a migration_recovery_points
resource.
Overview
Name | migration_recovery_points |
Type | Resource |
Id | azure.recovery_services_site_recovery.migration_recovery_points |
Fields
- vw_migration_recovery_points
- migration_recovery_points
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource Name |
fabricName | text | field from the properties object |
location | text | Resource Location |
migrationItemName | text | field from the properties object |
migrationRecoveryPointName | text | field from the properties object |
protectionContainerName | text | field from the properties object |
recovery_point_time | text | field from the properties object |
recovery_point_type | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource Type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | Migration item recovery point properties. |
type | string | Resource Type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fabricName, migrationItemName, migrationRecoveryPointName, protectionContainerName, resourceGroupName, resourceName, subscriptionId | |
list_by_replication_migration_items | SELECT | fabricName, migrationItemName, protectionContainerName, resourceGroupName, resourceName, subscriptionId |
SELECT
examples
- vw_migration_recovery_points
- migration_recovery_points
SELECT
id,
name,
fabricName,
location,
migrationItemName,
migrationRecoveryPointName,
protectionContainerName,
recovery_point_time,
recovery_point_type,
resourceGroupName,
resourceName,
subscriptionId,
type
FROM azure.recovery_services_site_recovery.vw_migration_recovery_points
WHERE fabricName = '{{ fabricName }}'
AND migrationItemName = '{{ migrationItemName }}'
AND protectionContainerName = '{{ protectionContainerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.migration_recovery_points
WHERE fabricName = '{{ fabricName }}'
AND migrationItemName = '{{ migrationItemName }}'
AND protectionContainerName = '{{ protectionContainerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';