settings
Creates, updates, deletes, gets or lists a settings
resource.
Overview
Name | settings |
Type | Resource |
Id | azure.security.settings |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
kind | string | the kind of the settings string |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | settingName, subscriptionId | Settings of different configurations in Microsoft Defender for Cloud |
list | SELECT | subscriptionId | Settings about different configurations in Microsoft Defender for Cloud |
update | REPLACE | settingName, subscriptionId, data__kind | updating settings about different configurations in Microsoft Defender for Cloud |
SELECT
examples
Settings about different configurations in Microsoft Defender for Cloud
SELECT
id,
name,
kind,
type
FROM azure.security.settings
WHERE subscriptionId = '{{ subscriptionId }}';
REPLACE
example
Replaces all fields in the specified settings
resource.
/*+ update */
REPLACE azure.security.settings
SET
kind = '{{ kind }}'
WHERE
settingName = '{{ settingName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__kind = '{{ data__kind }}';