Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Microsoft.security insights 2021 09 01 preview add missing resources #15531

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -804,61 +804,6 @@
"value"
]
},
"AlertSeverity": {
"description": "The severity of the alert",
"enum": [
"High",
"Medium",
"Low",
"Informational"
],
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "AlertSeverity",
"values": [
{
"description": "High severity",
"value": "High"
},
{
"description": "Medium severity",
"value": "Medium"
},
{
"description": "Low severity",
"value": "Low"
},
{
"description": "Informational severity",
"value": "Informational"
}
]
}
},
"AttackTactic": {
"description": "The severity for alerts created by this alert rule.",
"enum": [
"InitialAccess",
"Execution",
"Persistence",
"PrivilegeEscalation",
"DefenseEvasion",
"CredentialAccess",
"Discovery",
"LateralMovement",
"Collection",
"Exfiltration",
"CommandAndControl",
"Impact",
"PreAttack"
],
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "AttackTactic"
}
},
"MLBehaviorAnalyticsAlertRule": {
"allOf": [
{
Expand Down Expand Up @@ -904,14 +849,14 @@
"type": "string"
},
"severity": {
"$ref": "#/definitions/AlertSeverity",
"$ref": "./common/AlertTypes.json#/definitions/AlertSeverityEnum",
"description": "The severity for alerts created by this alert rule.",
"readOnly": true
},
"tactics": {
"description": "The tactics of the alert rule",
"items": {
"$ref": "#/definitions/AttackTactic"
"$ref": "./common/AlertTypes.json#/definitions/AttackTactic"
},
"readOnly": true,
"type": "array"
Expand Down Expand Up @@ -940,13 +885,13 @@
"description": "MLBehaviorAnalytics alert rule template properties.",
"properties": {
"severity": {
"$ref": "#/definitions/AlertSeverity",
"$ref": "./common/AlertTypes.json#/definitions/AlertSeverityEnum",
"description": "The severity for alerts created by this alert rule."
},
"tactics": {
"description": "The tactics of the alert rule template.",
"items": {
"$ref": "#/definitions/AttackTactic"
"$ref": "./common/AlertTypes.json#/definitions/AttackTactic"
},
"type": "array"
}
Expand Down Expand Up @@ -1010,14 +955,14 @@
"type": "string"
},
"severity": {
"$ref": "#/definitions/AlertSeverity",
"$ref": "./common/AlertTypes.json#/definitions/AlertSeverityEnum",
"description": "The severity for alerts created by this alert rule.",
"readOnly": true
},
"tactics": {
"description": "The tactics of the alert rule",
"items": {
"$ref": "#/definitions/AttackTactic"
"$ref": "./common/AlertTypes.json#/definitions/AttackTactic"
},
"readOnly": true,
"type": "array"
Expand Down Expand Up @@ -1046,13 +991,13 @@
"description": "Fusion alert rule template properties",
"properties": {
"severity": {
"$ref": "#/definitions/AlertSeverity",
"$ref": "./common/AlertTypes.json#/definitions/AlertSeverityEnum",
"description": "The severity for alerts created by this alert rule."
},
"tactics": {
"description": "The tactics of the alert rule template",
"items": {
"$ref": "#/definitions/AttackTactic"
"$ref": "./common/AlertTypes.json#/definitions/AttackTactic"
},
"type": "array"
}
Expand Down Expand Up @@ -1116,14 +1061,14 @@
"type": "string"
},
"severity": {
"$ref": "#/definitions/AlertSeverity",
"$ref": "./common/AlertTypes.json#/definitions/AlertSeverityEnum",
"description": "The severity for alerts created by this alert rule.",
"readOnly": true
},
"tactics": {
"description": "The tactics of the alert rule",
"items": {
"$ref": "#/definitions/AttackTactic"
"$ref": "./common/AlertTypes.json#/definitions/AttackTactic"
},
"readOnly": true,
"type": "array"
Expand Down Expand Up @@ -1152,13 +1097,13 @@
"description": "Threat Intelligence alert rule template properties",
"properties": {
"severity": {
"$ref": "#/definitions/AlertSeverity",
"$ref": "./common/AlertTypes.json#/definitions/AlertSeverityEnum",
"description": "The severity for alerts created by this alert rule."
},
"tactics": {
"description": "The tactics of the alert rule template",
"items": {
"$ref": "#/definitions/AttackTactic"
"$ref": "./common/AlertTypes.json#/definitions/AttackTactic"
},
"type": "array"
}
Expand Down Expand Up @@ -1231,7 +1176,7 @@
"severitiesFilter": {
"description": "the alerts' severities on which the cases will be generated",
"items": {
"$ref": "#/definitions/AlertSeverity"
"$ref": "./common/AlertTypes.json#/definitions/AlertSeverityEnum"
},
"type": "array"
}
Expand Down Expand Up @@ -1353,7 +1298,7 @@
"tactics": {
"description": "The tactics of the alert rule",
"items": {
"$ref": "#/definitions/AttackTactic"
"$ref": "./common/AlertTypes.json#/definitions/AttackTactic"
},
"type": "array"
},
Expand Down Expand Up @@ -1398,7 +1343,7 @@
"tactics": {
"description": "The tactics of the alert rule template",
"items": {
"$ref": "#/definitions/AttackTactic"
"$ref": "./common/AlertTypes.json#/definitions/AttackTactic"
},
"type": "array"
}
Expand Down Expand Up @@ -1478,7 +1423,7 @@
"type": "string"
},
"severity": {
"$ref": "#/definitions/AlertSeverity",
"$ref": "./common/AlertTypes.json#/definitions/AlertSeverityEnum",
"description": "The severity for alerts created by this alert rule."
},
"triggerOperator": {
Expand Down
Loading