replication_eligibility_results
Creates, updates, deletes, gets or lists a replication_eligibility_results
resource.
Overview
Name | replication_eligibility_results |
Type | Resource |
Id | azure.recovery_services_site_recovery.replication_eligibility_results |
Fields
The following fields are returned by SELECT
queries:
- list
- get
Name | Datatype | Description |
---|---|---|
id | string | Gets Unique ARM identifier for this object. |
name | string | Gets the name of this object. |
properties | object | Gets properties model for replication eligibility results API. |
type | string | Gets the object type. |
Name | Datatype | Description |
---|---|---|
id | string | Gets Unique ARM identifier for this object. |
name | string | Gets the name of this object. |
properties | object | Gets properties model for replication eligibility results API. |
type | string | Gets the object type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , subscriptionId , virtualMachineName | api-version | Validates whether a given VM can be protected or not in which case returns list of errors. |
get | select | resourceGroupName , subscriptionId , virtualMachineName | api-version | Validates 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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group where the recovery services vault is present. |
subscriptionId | string | The subscription Id. |
virtualMachineName | string | Virtual Machine name. |
api-version | string | Client Api Version. |
SELECT
examples
- list
- get
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 }}'
;
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 }}'
;