Skip to main content

replication_appliances

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

Overview

Namereplication_appliances
TypeResource
Idazure.recovery_services_site_recovery.replication_appliances

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectAppliance related data.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceName, resourceGroupName, subscriptionIdapi-version, $filterGets the list of Azure Site Recovery appliances for the vault.

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.
resourceNamestringThe name of the recovery services vault.
subscriptionIdstringThe subscription Id.
$filterstringOData filter options.
api-versionstringClient Api Version.

SELECT examples

Gets the list of Azure Site Recovery appliances for the vault.

SELECT
properties
FROM azure.recovery_services_site_recovery.replication_appliances
WHERE resourceName = '{{ resourceName }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
AND $filter = '{{ $filter }}'
;