Skip to main content

devices_extended_information

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

Overview

Namedevices_extended_information
TypeResource
Idazure.data_box_edge.devices_extended_information

Fields

The following fields are returned by SELECT queries:

The additional information.

NameDatatypeDescription
idstringThe path ID that uniquely identifies the object.
namestringThe object name.
propertiesobjectThe extended info properties.
systemDataobjectMetadata pertaining to creation and last modification of DataBoxEdgeDevice
typestringThe hierarchical type of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdeviceName, subscriptionId, resourceGroupNameGets additional information for the specified Azure Stack Edge/Data Box Gateway device.
updateexecdeviceName, subscriptionId, resourceGroupNameGets additional information for the specified Data Box Edge/Data Box Gateway device.

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

Gets additional information for the specified Azure Stack Edge/Data Box Gateway device.

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

Lifecycle Methods

Gets additional information for the specified Data Box Edge/Data Box Gateway device.

EXEC azure.data_box_edge.devices_extended_information.update 
@deviceName='{{ deviceName }}' --required,
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required
@@json=
'{
"clientSecretStoreId": "{{ clientSecretStoreId }}",
"clientSecretStoreUrl": "{{ clientSecretStoreUrl }}",
"channelIntegrityKeyName": "{{ channelIntegrityKeyName }}",
"channelIntegrityKeyVersion": "{{ channelIntegrityKeyVersion }}",
"syncStatus": "{{ syncStatus }}"
}'
;