The securityMLAnalyticsSettings resource type is an extension resource, which means you can apply it to another resource.
Use the scope
property on this resource to set the scope for this resource. See Set scope on extension resources in ARM templates.
For a list of changed properties in each API version, see change log.
To create a Microsoft.SecurityInsights/securityMLAnalyticsSettings resource, add the following JSON to your template.
{
"type": "Microsoft.SecurityInsights/securityMLAnalyticsSettings",
"apiVersion": "2023-02-01-preview",
"name": "string",
"kind": "string",
"scope": "string",
"etag": "string",
// For remaining properties, see securityMLAnalyticsSettings objects
}
Set the kind property to specify the type of object.
For Anomaly, use:
"kind": "Anomaly",
"properties": {
"anomalySettingsVersion": "int",
"anomalyVersion": "string",
"customizableObservations": {},
"description": "string",
"displayName": "string",
"enabled": "bool",
"frequency": "string",
"isDefaultSettings": "bool",
"requiredDataConnectors": [
{
"connectorId": "string",
"dataTypes": [ "string" ]
}
],
"settingsDefinitionId": "string",
"settingsStatus": "string",
"tactics": [ "string" ],
"techniques": [ "string" ]
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.SecurityInsights/securityMLAnalyticsSettings' |
apiVersion | The resource api version | '2023-02-01-preview' |
name | The resource name | string (required) |
kind | Set the object type | Anomaly (required) |
scope | Use when creating an extension resource at a scope that is different than the deployment scope. | Target resource For JSON, set the value to the full name of the resource to apply the extension resource to. |
etag | Etag of the azure resource | string |
Name | Description | Value |
---|---|---|
kind | The kind of security ML Analytics Settings | 'Anomaly' (required) |
properties | Anomaly Security ML Analytics Settings properties | AnomalySecurityMLAnalyticsSettingsProperties |
Name | Description | Value |
---|---|---|
anomalySettingsVersion | The anomaly settings version of the Anomaly security ml analytics settings that dictates whether job version gets updated or not. | int |
anomalyVersion | The anomaly version of the AnomalySecurityMLAnalyticsSettings. | string (required) |
customizableObservations | The customizable observations of the AnomalySecurityMLAnalyticsSettings. | |
description | The description of the SecurityMLAnalyticsSettings. | string |
displayName | The display name for settings created by this SecurityMLAnalyticsSettings. | string (required) |
enabled | Determines whether this settings is enabled or disabled. | bool (required) |
frequency | The frequency that this SecurityMLAnalyticsSettings will be run. | string (required) |
isDefaultSettings | Determines whether this anomaly security ml analytics settings is a default settings | bool (required) |
requiredDataConnectors | The required data sources for this SecurityMLAnalyticsSettings | SecurityMLAnalyticsSettingsDataSource[] |
settingsDefinitionId | The anomaly settings definition Id | string |
settingsStatus | The anomaly SecurityMLAnalyticsSettings status | 'Flighting' 'Production' (required) |
tactics | The tactics of the SecurityMLAnalyticsSettings | String array containing any of: 'Collection' 'CommandAndControl' 'CredentialAccess' 'DefenseEvasion' 'Discovery' 'Execution' 'Exfiltration' 'Impact' 'ImpairProcessControl' 'InhibitResponseFunction' 'InitialAccess' 'LateralMovement' 'Persistence' 'PreAttack' 'PrivilegeEscalation' 'Reconnaissance' 'ResourceDevelopment' |
techniques | The techniques of the SecurityMLAnalyticsSettings | string[] |
Name | Description | Value |
---|---|---|
connectorId | The connector id that provides the following data types | string |
dataTypes | The data types used by the security ml analytics settings | string[] |