devices_failover_targets
Creates, updates, deletes, gets or lists a devices_failover_targets
resource.
Overview
Name | devices_failover_targets |
Type | Resource |
Id | azure_extras.storsimple_8000_series.devices_failover_targets |
Fields
Name | Datatype | Description |
---|---|---|
availableLocalStorageInBytes | integer | The amount of free local storage available on the device in bytes. |
availableTieredStorageInBytes | integer | The amount of free tiered storage available for the device in bytes. |
dataContainersCount | integer | The count of data containers on the device. |
deviceId | string | The path ID of the device. |
deviceLocation | string | The geo location (applicable only for cloud appliances) of the device. |
deviceSoftwareVersion | string | The software version of the device. |
deviceStatus | string | The status of the device. |
eligibilityResult | object | The eligibility result of device, as a failover target device. |
friendlyDeviceSoftwareVersion | string | The friendly name for the current version of software on the device. |
modelDescription | string | The model number of the device. |
volumesCount | integer | The count of volumes on the device. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | managerName, resourceGroupName, sourceDeviceName, subscriptionId | 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
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 }}';