Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion schemas/2019-01-01-preview/Microsoft.SecurityInsights.json
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,9 @@
"settings": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/Anomalies"
},
{
"$ref": "#/definitions/IPSyncer"
},
Expand All @@ -626,7 +629,7 @@
},
"name": {
"type": "string",
"description": "The setting name. Supports - EyesOn, EntityAnalytics, Ueba"
"description": "The setting name. Supports - Anomalies, EyesOn, EntityAnalytics, Ueba"
},
"type": {
"type": "string",
Expand Down Expand Up @@ -1003,6 +1006,37 @@
],
"description": "Alerts data type connection."
},
"Anomalies": {
"type": "object",
"properties": {
"kind": {
"type": "string",
"enum": [
"Anomalies"
]
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AnomaliesProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Anomalies property bag."
}
},
"required": [
"kind"
],
"description": "Settings with single toggle."
},
"AnomaliesProperties": {
"type": "object",
"properties": {},
"description": "Anomalies property bag."
},
"ASCDataConnector": {
"type": "object",
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions schemas/2020-01-01/Microsoft.SecurityInsights.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@
"$ref": "#/definitions/MDATPDataConnector"
},
{
"$ref": "#/definitions/OfficeDataConnector"
"$ref": "#/definitions/TIDataConnector"
},
{
"$ref": "#/definitions/TIDataConnector"
"$ref": "#/definitions/OfficeDataConnector"
}
],
"properties": {
Expand Down
36 changes: 35 additions & 1 deletion schemas/2021-03-01-preview/Microsoft.SecurityInsights.json
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,9 @@
"settings": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/Anomalies"
},
{
"$ref": "#/definitions/EyesOn"
},
Expand All @@ -471,7 +474,7 @@
},
"name": {
"type": "string",
"description": "The setting name. Supports - EyesOn, EntityAnalytics, Ueba"
"description": "The setting name. Supports - Anomalies, EyesOn, EntityAnalytics, Ueba"
},
"type": {
"type": "string",
Expand Down Expand Up @@ -980,6 +983,37 @@
],
"description": "Alerts data type for data connectors."
},
"Anomalies": {
"type": "object",
"properties": {
"kind": {
"type": "string",
"enum": [
"Anomalies"
]
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AnomaliesSettingsProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Anomalies property bag."
}
},
"required": [
"kind"
],
"description": "Settings with single toggle."
},
"AnomaliesSettingsProperties": {
"type": "object",
"properties": {},
"description": "Anomalies property bag."
},
"ASCDataConnector": {
"type": "object",
"properties": {
Expand Down
Loading