Skip to main content

replication_eligibility_results

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

Overview

Namereplication_eligibility_results
TypeResource
Idazure.recovery_services_site_recovery.replication_eligibility_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringGets Unique ARM identifier for this object.
namestringGets the name of this object.
propertiesobjectGets properties model for replication eligibility results API.
typestringGets the object type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, subscriptionId, virtualMachineNameapi-versionValidates whether a given VM can be protected or not in which case returns list of errors.
getselectresourceGroupName, subscriptionId, virtualMachineNameapi-versionValidates whether a given VM can be protected or not in which case returns list of errors.

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
resourceGroupNamestringThe name of the resource group where the recovery services vault is present.
subscriptionIdstringThe subscription Id.
virtualMachineNamestringVirtual Machine name.
api-versionstringClient Api Version.

SELECT examples

Validates whether a given VM can be protected or not in which case returns list of errors.

SELECT
id,
name,
properties,
type
FROM azure.recovery_services_site_recovery.replication_eligibility_results
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND virtualMachineName = '{{ virtualMachineName }}' -- required
AND api-version = '{{ api-version }}'
;