Skip to main content

devices_update_summaries

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

Overview

Namedevices_update_summaries
TypeResource
Idazure_extras.storsimple_8000_series.devices_update_summaries

Fields

The following fields are returned by SELECT queries:

The update summary.

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 the updates profile.
typestringThe hierarchical type of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdeviceName, subscriptionId, resourceGroupName, managerNameReturns the update summary of the specified device name.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
deviceNamestringThe device name
managerNamestringThe manager name
resourceGroupNamestringThe resource group name
subscriptionIdstringThe subscription id

SELECT examples

Returns the update summary of the specified device name.

SELECT
id,
name,
kind,
properties,
type
FROM azure_extras.storsimple_8000_series.devices_update_summaries
WHERE deviceName = '{{ deviceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
;