hardware_component_groups
Creates, updates, deletes, gets or lists a hardware_component_groups
resource.
Overview
Name | hardware_component_groups |
Type | Resource |
Id | azure_extras.storsimple_8000_series.hardware_component_groups |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The path ID that uniquely identifies the object. |
name | string | The name of the object. |
kind | string | The Kind of the object. Currently only Series8000 is supported |
properties | object | The properties of hardware component group. |
type | string | The hierarchical type of the object. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_device | SELECT | deviceName, managerName, resourceGroupName, subscriptionId | Lists the hardware component groups at device-level. |
change_controller_power_state | EXEC | deviceName, hardwareComponentGroupName, managerName, resourceGroupName, subscriptionId, data__properties | Changes the power state of the controller. |
SELECT
examples
Lists the hardware component groups at device-level.
SELECT
id,
name,
kind,
properties,
type
FROM azure_extras.storsimple_8000_series.hardware_component_groups
WHERE deviceName = '{{ deviceName }}'
AND managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';