Skip to main content

devices_update_summaries

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

Overview

Namedevices_update_summaries
TypeResource
Idazure.data_box_edge.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 object name.
propertiesobjectThe device update information summary.
systemDataobjectMetadata pertaining to creation and last modification of UpdateSummary
typestringThe hierarchical type of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdeviceName, subscriptionId, resourceGroupName

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.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription ID.

SELECT examples

The update summary.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_box_edge.devices_update_summaries
WHERE deviceName = '{{ deviceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;