Skip to main content

devices_failover_targets

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

Overview

Namedevices_failover_targets
TypeResource
Idazure_extras.storsimple_1200_series.devices_failover_targets

Fields

The following fields are returned by SELECT queries:

The collection of devices for failover.

NameDatatypeDescription
idstringThe identifier.
namestringThe name.
propertiesobjectCollection of properties for the device
typestringThe type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectdeviceName, subscriptionId, resourceGroupName, managerName$expandRetrieves all the devices which can be used as failover targets for the given device.

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
deviceNamestringThe device name.
managerNamestringThe manager name
resourceGroupNamestringThe resource group name
subscriptionIdstringThe subscription id
$expandstringSpecify $expand=details to populate additional fields related to the device.

SELECT examples

Retrieves all the devices which can be used as failover targets for the given device.

SELECT
id,
name,
properties,
type
FROM azure_extras.storsimple_1200_series.devices_failover_targets
WHERE deviceName = '{{ deviceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
AND $expand = '{{ $expand }}'
;