Skip to main content

devices_security_settings

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

Overview

Namedevices_security_settings
TypeResource
Idazure.data_box_edge.devices_security_settings

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_or_updateinsertdeviceName, subscriptionId, resourceGroupName, data__propertiesUpdates the security settings on a 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.

INSERT examples

Updates the security settings on a Data Box Edge/Data Box Gateway device.

INSERT INTO azure.data_box_edge.devices_security_settings (
data__properties,
deviceName,
subscriptionId,
resourceGroupName
)
SELECT
'{{ properties }}' /* required */,
'{{ deviceName }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}'
;