Skip to main content

device_settings_security_settings

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

Overview

Namedevice_settings_security_settings
TypeResource
Idazure_extras.storsimple_8000_series.device_settings_security_settings

Fields

NameDatatypeDescription
idtextThe path ID that uniquely identifies the object.
nametextThe name of the object.
chap_settingstextfield from the properties object
deviceNametextfield from the properties object
kindtextThe Kind of the object. Currently only Series8000 is supported
managerNametextfield from the properties object
remote_management_settingstextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe hierarchical type of the object.

Methods

NameAccessible byRequired ParamsDescription
getSELECTdeviceName, managerName, resourceGroupName, subscriptionIdReturns the Security properties of the specified device name.
updateUPDATEdeviceName, managerName, resourceGroupName, subscriptionId, data__propertiesPatch Security properties of the specified device name.

SELECT examples

Returns the Security properties of the specified device name.

SELECT
id,
name,
chap_settings,
deviceName,
kind,
managerName,
remote_management_settings,
resourceGroupName,
subscriptionId,
type
FROM azure_extras.storsimple_8000_series.vw_device_settings_security_settings
WHERE deviceName = '{{ deviceName }}'
AND managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

UPDATE example

Updates a device_settings_security_settings resource.

/*+ update */
UPDATE azure_extras.storsimple_8000_series.device_settings_security_settings
SET
properties = '{{ properties }}'
WHERE
deviceName = '{{ deviceName }}'
AND managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__properties = '{{ data__properties }}';