Skip to content

Commit

Permalink
CodeGen from PR 15306 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 9d57f5ef7d881d16b572003782c8065000c4c540 into ed3fcfb33e8ecae0717bee53046677bd2f3c16ad
  • Loading branch information
SDKAuto committed Jul 22, 2021
1 parent 8124e2f commit 7cd249b
Show file tree
Hide file tree
Showing 4 changed files with 447 additions and 4 deletions.
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

0 comments on commit 7cd249b

Please sign in to comment.