Skip to main content

migration_recovery_points

Creates, updates, deletes, gets or lists a migration_recovery_points resource.

Overview

Namemigration_recovery_points
TypeResource
Idazure.recovery_services_site_recovery.migration_recovery_points

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id
namestringResource Name
locationstringResource Location
propertiesobjectRecovery point properties.
typestringResource Type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceName, resourceGroupName, subscriptionId, fabricName, protectionContainerName, migrationItemName, migrationRecoveryPointNameapi-version
list_by_replication_migration_itemsselectresourceName, resourceGroupName, subscriptionId, fabricName, protectionContainerName, migrationItemNameapi-version

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.

NameDatatypeDescription
fabricNamestringFabric unique name.
migrationItemNamestringMigration item name.
migrationRecoveryPointNamestringThe migration recovery point name.
protectionContainerNamestringProtection container name.
resourceGroupNamestringThe name of the resource group where the recovery services vault is present.
resourceNamestringThe name of the recovery services vault.
subscriptionIdstringThe subscription Id.
api-versionstringClient Api Version.

SELECT examples

OK

SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.migration_recovery_points
WHERE resourceName = '{{ resourceName }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND fabricName = '{{ fabricName }}' -- required
AND protectionContainerName = '{{ protectionContainerName }}' -- required
AND migrationItemName = '{{ migrationItemName }}' -- required
AND migrationRecoveryPointName = '{{ migrationRecoveryPointName }}' -- required
AND api-version = '{{ api-version }}'
;