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_8000_series.devices_failover_targets

Fields

NameDatatypeDescription
availableLocalStorageInBytesintegerThe amount of free local storage available on the device in bytes.
availableTieredStorageInBytesintegerThe amount of free tiered storage available for the device in bytes.
dataContainersCountintegerThe count of data containers on the device.
deviceIdstringThe path ID of the device.
deviceLocationstringThe geo location (applicable only for cloud appliances) of the device.
deviceSoftwareVersionstringThe software version of the device.
deviceStatusstringThe status of the device.
eligibilityResultobjectThe eligibility result of device, as a failover target device.
friendlyDeviceSoftwareVersionstringThe friendly name for the current version of software on the device.
modelDescriptionstringThe model number of the device.
volumesCountintegerThe count of volumes on the device.

Methods

NameAccessible byRequired ParamsDescription
listSELECTmanagerName, resourceGroupName, sourceDeviceName, subscriptionIdGiven a list of volume containers to be failed over from a source device, this method returns the eligibility result, as a failover target, for all devices under that resource.

SELECT examples

Given a list of volume containers to be failed over from a source device, this method returns the eligibility result, as a failover target, for all devices under that resource.

SELECT
availableLocalStorageInBytes,
availableTieredStorageInBytes,
dataContainersCount,
deviceId,
deviceLocation,
deviceSoftwareVersion,
deviceStatus,
eligibilityResult,
friendlyDeviceSoftwareVersion,
modelDescription,
volumesCount
FROM azure_extras.storsimple_8000_series.devices_failover_targets
WHERE managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND sourceDeviceName = '{{ sourceDeviceName }}'
AND subscriptionId = '{{ subscriptionId }}';