Skip to main content

devices_failover_sets

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

Overview

Namedevices_failover_sets
TypeResource
Idazure_extras.storsimple_8000_series.devices_failover_sets

Fields

The following fields are returned by SELECT queries:

Returns the list of failover sets on the given device.

NameDatatypeDescription
eligibilityResultobjectThe eligibility result of the failover set, for failover.
volumeContainersarrayThe list of meta data of volume containers, which are part of the failover set.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectdeviceName, subscriptionId, resourceGroupName, managerNameReturns all failover sets for a given device and their eligibility for participating in a failover. A failover set refers to a set of volume containers that need to be failed-over as a single unit to maintain data integrity.

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

SELECT examples

Returns all failover sets for a given device and their eligibility for participating in a failover. A failover set refers to a set of volume containers that need to be failed-over as a single unit to maintain data integrity.

SELECT
eligibilityResult,
volumeContainers
FROM azure_extras.storsimple_8000_series.devices_failover_sets
WHERE deviceName = '{{ deviceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
;