storage_sub_systems
Creates, updates, deletes, gets or lists a storage_sub_systems
resource.
Overview
Name | storage_sub_systems |
Type | Resource |
Id | azure_stack.fabric_admin.storage_sub_systems |
Fields
- vw_storage_sub_systems
- storage_sub_systems
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
health_status | text | field from the properties object |
location | text | The region where the resource is located. |
operational_status | text | field from the properties object |
rebalance_status | text | field from the properties object |
remaining_capacity_gb | text | field from the properties object |
resourceGroupName | text | field from the properties object |
scaleUnit | text | field from the properties object |
storageSubSystem | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
total_capacity_gb | text | field from the properties object |
type | text | Type of resource. |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | The region where the resource is located. |
properties | object | All properties of a storage subsystem. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, resourceGroupName, scaleUnit, storageSubSystem, subscriptionId | Return the requested storage subsystem. |
list | SELECT | location, resourceGroupName, scaleUnit, subscriptionId | Returns a list of all storage subsystems for a location. |
SELECT
examples
Returns a list of all storage subsystems for a location.
- vw_storage_sub_systems
- storage_sub_systems
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 }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.fabric_admin.storage_sub_systems
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND scaleUnit = '{{ scaleUnit }}'
AND subscriptionId = '{{ subscriptionId }}';