Skip to main content

storage_sub_systems

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

Overview

Namestorage_sub_systems
TypeResource
Idazure_stack.fabric_admin.storage_sub_systems

Fields

NameDatatypeDescription
idtextURI of the resource.
nametextName of the resource.
health_statustextfield from the properties object
locationtextThe region where the resource is located.
operational_statustextfield from the properties object
rebalance_statustextfield from the properties object
remaining_capacity_gbtextfield from the properties object
resourceGroupNametextfield from the properties object
scaleUnittextfield from the properties object
storageSubSystemtextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextList of key-value pairs.
total_capacity_gbtextfield from the properties object
typetextType of resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, resourceGroupName, scaleUnit, storageSubSystem, subscriptionIdReturn the requested storage subsystem.
listSELECTlocation, resourceGroupName, scaleUnit, subscriptionIdReturns a list of all storage subsystems for a location.

SELECT examples

Returns a list of all storage subsystems for a location.

SELECT
id,
name,
health_status,
location,
operational_status,
rebalance_status,
remaining_capacity_gb,
resourceGroupName,
scaleUnit,
storageSubSystem,
subscriptionId,
tags,
total_capacity_gb,
type
FROM azure_stack.fabric_admin.vw_storage_sub_systems
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND scaleUnit = '{{ scaleUnit }}'
AND subscriptionId = '{{ subscriptionId }}';