Skip to main content

sensitivity_settings

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

Overview

Namesensitivity_settings
TypeResource
Idazure.security.sensitivity_settings

Fields

NameDatatypeDescription
idstringThe ID of the sensitivity settings
namestringThe name of the sensitivity settings
propertiesobjectThe sensitivity settings properties
typestringThe type of the sensitivity settings

Methods

NameAccessible byRequired ParamsDescription
getSELECTGets data sensitivity settings for sensitive data discovery
listSELECTGets a list with a single sensitivity settings resource
create_or_updateINSERTdata__sensitiveInfoTypesIdsCreate or update data sensitivity settings for sensitive data discovery

SELECT examples

Gets data sensitivity settings for sensitive data discovery

SELECT
id,
name,
properties,
type
FROM azure.security.sensitivity_settings
;

INSERT example

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

/*+ create */
INSERT INTO azure.security.sensitivity_settings (
data__sensitiveInfoTypesIds,
sensitiveInfoTypesIds,
sensitivityThresholdLabelOrder,
sensitivityThresholdLabelId
)
SELECT
'{{ data__sensitiveInfoTypesIds }}',
'{{ sensitiveInfoTypesIds }}',
{{ sensitivityThresholdLabelOrder }},
'{{ sensitivityThresholdLabelId }}'
;