-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9330 from Azure/feature/sagamzu/UpdateMdcSolution
[Solution] Update Microsoft defender for cloud solution
- Loading branch information
Showing
12 changed files
with
830 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
331 changes: 331 additions & 0 deletions
331
.script/utils/schemas/SecurityAlert_ConnectorSchema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,331 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string" | ||
}, | ||
"title": { | ||
"type": "string" | ||
}, | ||
"publisher": { | ||
"type": "string" | ||
}, | ||
"descriptionMarkdown": { | ||
"type": "string" | ||
}, | ||
"logo": { | ||
"type": "string" | ||
}, | ||
"graphQueriesTableName": { | ||
"type": "string" | ||
}, | ||
"graphQueries": { | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"metricName": { | ||
"type": "string" | ||
}, | ||
"legend": { | ||
"type": "string" | ||
}, | ||
"baseQuery": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"metricName", | ||
"legend", | ||
"baseQuery" | ||
] | ||
} | ||
] | ||
}, | ||
"sampleQueries": { | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"description": { | ||
"type": "string" | ||
}, | ||
"query": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"description", | ||
"query" | ||
] | ||
}, | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"description": { | ||
"type": "string" | ||
}, | ||
"query": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"description", | ||
"query" | ||
] | ||
} | ||
] | ||
}, | ||
"dataTypes": { | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"lastDataReceivedQuery": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"name", | ||
"lastDataReceivedQuery" | ||
] | ||
} | ||
] | ||
}, | ||
"connectivityCriterias": { | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string" | ||
}, | ||
"value": { | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "string" | ||
} | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"value" | ||
] | ||
} | ||
] | ||
}, | ||
"availability": { | ||
"type": "object", | ||
"properties": { | ||
"status": { | ||
"type": "integer" | ||
}, | ||
"isPreview": { | ||
"type": "boolean" | ||
} | ||
}, | ||
"required": [ | ||
"status", | ||
"isPreview" | ||
] | ||
}, | ||
"permissions": { | ||
"type": "object", | ||
"properties": { | ||
"tenant": { | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "string" | ||
} | ||
] | ||
}, | ||
"resourceProvider": { | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"provider": { | ||
"type": "string" | ||
}, | ||
"permissionsDisplayText": { | ||
"type": "string" | ||
}, | ||
"providerDisplayName": { | ||
"type": "string" | ||
}, | ||
"scope": { | ||
"type": "string" | ||
}, | ||
"requiredPermissions": { | ||
"type": "object", | ||
"properties": { | ||
"read": { | ||
"type": "boolean" | ||
}, | ||
"write": { | ||
"type": "boolean" | ||
}, | ||
"delete": { | ||
"type": "boolean" | ||
} | ||
}, | ||
"required": [ | ||
"read", | ||
"write", | ||
"delete" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"provider", | ||
"permissionsDisplayText", | ||
"providerDisplayName", | ||
"scope", | ||
"requiredPermissions" | ||
] | ||
} | ||
] | ||
}, | ||
"tenantMember": { | ||
"type": "boolean" | ||
} | ||
}, | ||
"required": [ | ||
"tenant", | ||
"resourceProvider", | ||
"tenantMember" | ||
] | ||
}, | ||
"instructionSteps": { | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"title": { | ||
"type": "string" | ||
}, | ||
"description": { | ||
"type": "string" | ||
}, | ||
"instructions": { | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"parameters": { | ||
"type": "object", | ||
"properties": { | ||
"title": { | ||
"type": "string" | ||
}, | ||
"connectorKind": { | ||
"type": "string" | ||
}, | ||
"enable": { | ||
"type": "boolean" | ||
}, | ||
"newPipelineEnabledFeatureFlagConfig": { | ||
"type": "object", | ||
"properties": { | ||
"feature": { | ||
"type": "string" | ||
}, | ||
"featureStates": { | ||
"type": "object", | ||
"properties": { | ||
"1": { | ||
"type": "integer" | ||
}, | ||
"2": { | ||
"type": "integer" | ||
}, | ||
"3": { | ||
"type": "integer" | ||
}, | ||
"4": { | ||
"type": "integer" | ||
} | ||
}, | ||
"required": [ | ||
"1", | ||
"2", | ||
"3", | ||
"4" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"feature", | ||
"featureStates" | ||
] | ||
}, | ||
"infoBoxMessage": { | ||
"type": "string" | ||
}, | ||
"shouldAlwaysDisplayInfoMessage": { | ||
"type": "boolean" | ||
} | ||
}, | ||
"required": [ | ||
"title", | ||
"connectorKind", | ||
"enable", | ||
"newPipelineEnabledFeatureFlagConfig", | ||
"infoBoxMessage", | ||
"shouldAlwaysDisplayInfoMessage" | ||
] | ||
}, | ||
"type": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"parameters", | ||
"type" | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"title", | ||
"description", | ||
"instructions" | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"title", | ||
"publisher", | ||
"descriptionMarkdown", | ||
"logo", | ||
"graphQueriesTableName", | ||
"graphQueries", | ||
"sampleQueries", | ||
"dataTypes", | ||
"connectivityCriterias", | ||
"availability", | ||
"permissions", | ||
"instructionSteps" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Solutions/Microsoft Defender for Cloud/Data Connectors/AzureSecurityCenter.JSON
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.