Skip to content

Commit

Permalink
Update SecurityInsights.json (#12643)
Browse files Browse the repository at this point in the history
  • Loading branch information
Amitbergman authored Jan 29, 2021
1 parent 18d2aa9 commit 18f37b9
Showing 1 changed file with 106 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4466,6 +4466,111 @@
}
},
"definitions": {
"MLBehaviorAnalyticsAlertRule": {
"allOf": [
{
"$ref": "#/definitions/AlertRule"
}
],
"description": "Represents MLBehaviorAnalytics alert rule.",
"properties": {
"properties": {
"$ref": "#/definitions/MLBehaviorAnalyticsAlertRuleProperties",
"description": "MLBehaviorAnalytics alert rule properties",
"x-ms-client-flatten": true
}
},
"type": "object",
"x-ms-discriminator-value": "MLBehaviorAnalytics"
},
"MLBehaviorAnalyticsAlertRuleProperties": {
"description": "MLBehaviorAnalytics alert rule base property bag.",
"properties": {
"alertRuleTemplateName": {
"description": "The Name of the alert rule template used to create this rule.",
"type": "string"
},
"description": {
"description": "The description of the alert rule.",
"readOnly": true,
"type": "string"
},
"displayName": {
"description": "The display name for alerts created by this alert rule.",
"readOnly": true,
"type": "string"
},
"enabled": {
"description": "Determines whether this alert rule is enabled or disabled.",
"type": "boolean"
},
"lastModifiedUtc": {
"description": "The last time that this alert rule has been modified.",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"severity": {
"$ref": "#/definitions/AlertSeverity",
"description": "The severity for alerts created by this alert rule.",
"readOnly": true
},
"tactics": {
"description": "The tactics of the alert rule",
"items": {
"$ref": "#/definitions/AttackTactic"
},
"readOnly": true,
"type": "array"
}
},
"required": [
"alertRuleTemplateName",
"enabled"
],
"type": "object"
},
"MLBehaviorAnalyticsAlertRuleTemplate": {
"allOf": [
{
"$ref": "#/definitions/AlertRuleTemplate"
}
],
"description": "Represents MLBehaviorAnalytics alert rule template.",
"properties": {
"properties": {
"allOf": [
{
"$ref": "#/definitions/AlertRuleTemplatePropertiesBase"
}
],
"description": "MLBehaviorAnalytics alert rule template properties.",
"properties": {
"severity": {
"$ref": "#/definitions/AlertSeverity",
"description": "The severity for alerts created by this alert rule."
},
"tactics": {
"description": "The tactics of the alert rule template.",
"items": {
"$ref": "#/definitions/AttackTactic"
},
"type": "array"
}
},
"required": [
"displayName",
"description",
"status",
"severity",
"alertRulesCreatedByTemplateCount"
],
"x-ms-client-flatten": true
}
},
"type": "object",
"x-ms-discriminator-value": "MLBehaviorAnalytics"
},
"AADDataConnector": {
"allOf": [
{
Expand Down Expand Up @@ -9847,7 +9952,7 @@
"x-ms-discriminator-value": "Scheduled"
},
"ScheduledAlertRuleCommonProperties": {
"description": "Schedule alert rule template property bag.",
"description": "Scheduled alert rule template property bag.",
"properties": {
"query": {
"description": "The query that creates alerts for this rule.",
Expand Down

0 comments on commit 18f37b9

Please sign in to comment.