devices_update_summaries
Creates, updates, deletes, gets or lists a devices_update_summaries
resource.
Overview
Name | devices_update_summaries |
Type | Resource |
Id | azure_extras.storsimple_8000_series.devices_update_summaries |
Fields
- vw_devices_update_summaries
- devices_update_summaries
Name | Datatype | Description |
---|---|---|
id | text | The path ID that uniquely identifies the object. |
name | text | The name of the object. |
deviceName | text | field from the properties object |
is_update_in_progress | text | field from the properties object |
kind | text | The Kind of the object. Currently only Series8000 is supported |
last_updated_time | text | field from the properties object |
maintenance_mode_updates_available | text | field from the properties object |
managerName | text | field from the properties object |
regular_updates_available | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The hierarchical type of the object. |
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 the updates profile. |
type | string | The hierarchical type of the object. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deviceName, managerName, resourceGroupName, subscriptionId | Returns the update summary of the specified device name. |
SELECT
examples
Returns the update summary of the specified device name.
- vw_devices_update_summaries
- devices_update_summaries
SELECT
id,
name,
deviceName,
is_update_in_progress,
kind,
last_updated_time,
maintenance_mode_updates_available,
managerName,
regular_updates_available,
resourceGroupName,
subscriptionId,
type
FROM azure_extras.storsimple_8000_series.vw_devices_update_summaries
WHERE deviceName = '{{ deviceName }}'
AND managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
kind,
properties,
type
FROM azure_extras.storsimple_8000_series.devices_update_summaries
WHERE deviceName = '{{ deviceName }}'
AND managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';