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
140 changes: 137 additions & 3 deletions schemas/2019-01-01-preview/Microsoft.SecurityInsights.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
{
"$ref": "#/definitions/FusionAlertRule"
},
{
"$ref": "#/definitions/ThreatIntelligenceAlertRule"
},
{
"$ref": "#/definitions/MicrosoftSecurityIncidentCreationAlertRule"
},
Expand Down Expand Up @@ -2756,6 +2759,57 @@
],
"description": "Scheduled alert rule base property bag."
},
"ThreatIntelligenceAlertRule": {
"type": "object",
"properties": {
"kind": {
"type": "string",
"enum": [
"ThreatIntelligence"
]
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/ThreatIntelligenceAlertRuleProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Threat Intelligence alert rule base property bag."
}
},
"required": [
"kind"
],
"description": "Represents Threat Intelligence alert rule."
},
"ThreatIntelligenceAlertRuleProperties": {
"type": "object",
"properties": {
"alertRuleTemplateName": {
"type": "string",
"description": "The Name of the alert rule template used to create this rule."
},
"enabled": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Determines whether this alert rule is enabled or disabled."
}
},
"required": [
"alertRuleTemplateName",
"enabled"
],
"description": "Threat Intelligence alert rule base property bag."
},
"ThreatIntelligenceGranularMarkingModel": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -2821,6 +2875,22 @@
"type": "string",
"description": "Display name of a threat intelligence entity"
},
"extensions": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {}
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Extensions map"
},
"externalId": {
"type": "string",
"description": "External ID of threat intelligence entity"
Expand Down Expand Up @@ -2895,6 +2965,10 @@
],
"description": "Labels of threat intelligence entity"
},
"language": {
"type": "string",
"description": "Language of threat intelligence entity"
},
"lastUpdatedTimeUtc": {
"type": "string",
"description": "Last updated time in UTC"
Expand All @@ -2903,6 +2977,20 @@
"type": "string",
"description": "Modified by"
},
"parsedPattern": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/ThreatIntelligenceParsedPattern"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Parsed patterns"
},
"pattern": {
"type": "string",
"description": "Pattern of a threat intelligence entity"
Expand Down Expand Up @@ -2973,15 +3061,46 @@
"description": "Kill chainName name"
},
"phaseName": {
"type": "string",
"description": "Phase name"
}
},
"description": "Describes threat kill chain phase entity"
},
"ThreatIntelligenceParsedPattern": {
"type": "object",
"properties": {
"patternTypeKey": {
"type": "string",
"description": "Pattern type key"
},
"patternTypeValues": {
"oneOf": [
{
"type": "integer"
"type": "array",
"items": {
"$ref": "#/definitions/ThreatIntelligenceParsedPatternTypeValue"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Phase name"
"description": "Pattern type keys"
}
},
"description": "Describes parsed pattern entity"
},
"ThreatIntelligenceParsedPatternTypeValue": {
"type": "object",
"properties": {
"value": {
"type": "string",
"description": "Value of parsed pattern"
},
"valueType": {
"type": "string",
"description": "Type of the value"
}
},
"description": "Describes threat kill chain phase entity"
Expand Down Expand Up @@ -3439,6 +3558,10 @@
],
"description": "User information that made some action"
},
"uploadStatus": {
"type": "string",
"description": "The status of the Watchlist upload : New, InProgress or Complete. Pls note : When a Watchlist upload status is equal to InProgress, the Watchlist cannot be deleted"
},
"watchlistAlias": {
"type": "string",
"description": "The alias of the watchlist"
Expand All @@ -3447,6 +3570,17 @@
"type": "string",
"description": "The id (a Guid) of the watchlist"
},
"watchlistItemsCount": {
"oneOf": [
{
"type": "integer"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The number of Watchlist Items in the Watchlist"
},
"watchlistType": {
"type": "string",
"description": "The type of the watchlist"
Expand Down Expand Up @@ -3503,4 +3637,4 @@
"description": "Microsoft.SecurityInsights/watchlists/watchlistItems"
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2020-01-01/Microsoft.SecurityInsights.json
Original file line number Diff line number Diff line change
Expand Up @@ -1682,4 +1682,4 @@
"description": "User information that made some action"
}
}
}
}