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

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

Methods

NameAccessible byRequired ParamsDescription
create_or_updateINSERTdeviceName, resourceGroupName, subscriptionId, data__propertiesUpdates the security settings on a Data Box Edge/Data Box Gateway device.

INSERT example

Use the following StackQL query and manifest file to create a new devices_security_settings resource.

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