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

Defender settings #15051

Merged
merged 41 commits into from
Aug 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
1744269
add new resources
May 30, 2021
3c66b9f
Add resources to markdown
May 30, 2021
a9c2dcf
Modify routes
May 30, 2021
4952a97
Add systemData
May 30, 2021
0ba5be2
Add systemData to defenderSettings
May 30, 2021
2ee8ce0
Add missing parameter
May 30, 2021
6307a61
Add more systemData
May 30, 2021
3b5d8f7
Fix example
May 30, 2021
5ba9009
Add new API version
May 30, 2021
1c4b533
Remove redundant change
May 30, 2021
08e8bd4
update markdown
May 30, 2021
7d7b8c1
Add operations to new API version
May 30, 2021
943ef53
Update list filters
May 31, 2021
c99f5a6
update description
May 31, 2021
44be757
update examples
May 31, 2021
6fbbe62
Update examples
Jun 1, 2021
0a48817
Add missing properties
Jun 1, 2021
14b3231
Add missing properties
Jun 1, 2021
87128e0
Rename property
Jun 1, 2021
9b6f35a
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
Jun 15, 2021
bbe9510
Add alert editing
Jun 15, 2021
b6b367f
Update editable properties
Jun 16, 2021
9ecacc5
Update example
Jun 16, 2021
8ddb2e4
update put to patch
Jun 16, 2021
bf53660
Separate patch request to a different model
Jun 16, 2021
bc2a6be
Share enum
Jun 16, 2021
028214d
update example
Jun 16, 2021
50b5378
update patch model
Jun 16, 2021
d64c570
Undo break change
Jun 16, 2021
9e09440
small update
Jun 16, 2021
b313aa5
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
Jun 28, 2021
d963f3a
Old version as PR baseline
Jun 28, 2021
07600c5
Move examples
Jun 28, 2021
61dd6d3
Update scopes and examples
Jun 28, 2021
379a08a
Add example values
Jun 28, 2021
1fbab37
Merge remote-tracking branch 'upstream/master'
Jul 21, 2021
be96347
alignWithMaster
Jul 21, 2021
fb096f8
Revert "Old version as PR baseline"
Jul 21, 2021
4bd81a1
mdeIntegration
Jul 21, 2021
7595c1a
switchToObject
Jul 21, 2021
cbccca2
prettier
Jul 21, 2021
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 @@ -327,12 +327,34 @@
"format": "date-time",
"description": "End time of the evaluation period, if such exist",
"readOnly": true
},
"mdeIntegration": {
"type": "object",
"description": "MDE integration configuration",
"properties": {
"status": {
"type": "string",
"enum": [
"Disabled",
"Enabled"
],
"description": "Integration status",
"x-ms-enum": {
"name": "MdeIntegration",
"modelAsString": true
}
}
},
"required": [
"status"
]
}
},
"required": [
"deviceQuota",
"sentinelWorkspaceResourceIds",
"onboardingKind"
"onboardingKind",
"mdeIntegration"
]
},
"DownloadLink": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
"/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1"
],
"onboardingKind": "Evaluation",
"evaluationEndTime": "2021-06-29T00:00:00.0000000Z"
"evaluationEndTime": "2021-06-29T00:00:00.0000000Z",
"mdeIntegration": {
"status": "Enabled"
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
"sentinelWorkspaceResourceIds": [
"/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1"
],
"onboardingKind": "Default"
"onboardingKind": "Default",
"mdeIntegration": {
"status": "Enabled"
}
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
"sentinelWorkspaceResourceIds": [
"/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1"
],
"onboardingKind": "Default"
"onboardingKind": "Default",
"mdeIntegration": {
"status": "Enabled"
}
}
}
},
Expand All @@ -23,7 +26,10 @@
"sentinelWorkspaceResourceIds": [
"/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1"
],
"onboardingKind": "Default"
"onboardingKind": "Default",
"mdeIntegration": {
"status": "Enabled"
}
}
}
},
Expand All @@ -37,7 +43,10 @@
"sentinelWorkspaceResourceIds": [
"/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1"
],
"onboardingKind": "Default"
"onboardingKind": "Default",
"mdeIntegration": {
"status": "Enabled"
}
}
}
}
Expand Down