Skip to main content

hardware_component_groups

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

Overview

Namehardware_component_groups
TypeResource
Idazure_extras.storsimple_8000_series.hardware_component_groups

Fields

NameDatatypeDescription
idstringThe path ID that uniquely identifies the object.
namestringThe name of the object.
kindstringThe Kind of the object. Currently only Series8000 is supported
propertiesobjectThe properties of hardware component group.
typestringThe hierarchical type of the object.

Methods

NameAccessible byRequired ParamsDescription
list_by_deviceSELECTdeviceName, managerName, resourceGroupName, subscriptionIdLists the hardware component groups at device-level.
change_controller_power_stateEXECdeviceName, hardwareComponentGroupName, managerName, resourceGroupName, subscriptionId, data__propertiesChanges 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 }}';