The settings resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.Security/settings resource, add the following JSON to your template.
{
"type": "Microsoft.Security/settings",
"apiVersion": "2022-05-01",
"name": "string",
"kind": "string",
// For remaining properties, see settings objects
}
Set the kind property to specify the type of object.
For AlertSyncSettings, use:
"kind": "AlertSyncSettings",
"properties": {
"enabled": "bool"
}
For DataExportSettings, use:
"kind": "DataExportSettings",
"properties": {
"enabled": "bool"
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.Security/settings' |
apiVersion | The resource api version | '2022-05-01' |
name | The resource name | string (required) Character limit: see values Valid characters: Use one of: MCAS Sentinel WDATP WDATP_EXCLUDE_LINUX_PUBLIC_PREVIEW |
kind | Set the object type | AlertSyncSettings DataExportSettings (required) |
Name | Description | Value |
---|---|---|
kind | the kind of the settings string | 'AlertSyncSettings' (required) |
properties | Alert sync setting data | AlertSyncSettingProperties |
Name | Description | Value |
---|---|---|
enabled | Is the alert sync setting enabled | bool (required) |
Name | Description | Value |
---|---|---|
kind | the kind of the settings string | 'DataExportSettings' (required) |
properties | Data export setting data | DataExportSettingProperties |
Name | Description | Value |
---|---|---|
enabled | Is the data export setting enabled | bool (required) |