Skip to content

Commit 9980fdd

Browse files
committed
[PLGN-408] Insight IDR - Adding new actions for Get Alert Information, Search Alerts, Retrieve Evidence for a Single Alert and Retrieve Actors for a Single Alert (#2175)
* PLGN-408-Adding new actions for Get Alert Information, Search Alerts, Retrieve Evidence for a Single Alert and Retrieve Actors for a Single Alert * PLGN-408-Adding new actions for Get Alert Information, Search Alerts, Retrieve Evidence for a Single Alert and Retrieve Actors for a Single Alert * PLGN-408-Adding new actions for Get Alert Information, Search Alerts, Retrieve Evidence for a Single Alert and Retrieve Actors for a Single Alert * PLGN-408-Re-adding back in size and index to action, dropping version to make a multiple plugin release, adding in type hints * PLGN-408-Running black format * PLGN-408-Updating data to be of type object * PLGN-408-Updating to use f string * PLGN-408-Removing debug print * PLGN-408-Updating error var name
1 parent 9aa5ad0 commit 9980fdd

File tree

3 files changed

+4
-1
lines changed
  • plugins/rapid7_insightidr/komand_rapid7_insightidr/actions

3 files changed

+4
-1
lines changed

plugins/rapid7_insightidr/komand_rapid7_insightidr/actions/assign_user_to_investigation/schema.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ class AssignUserToInvestigationOutput(insightconnect_plugin_runtime.Output):
6868
}
6969
},
7070
"required": [
71-
"investigation"
71+
"investigation",
72+
"success"
7273
],
7374
"definitions": {
7475
"investigation": {

plugins/rapid7_insightidr/komand_rapid7_insightidr/actions/list_investigations/schema.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ class ListInvestigationsOutput(insightconnect_plugin_runtime.Output):
150150
}
151151
},
152152
"required": [
153+
"investigations",
153154
"metadata"
154155
],
155156
"definitions": {

plugins/rapid7_insightidr/komand_rapid7_insightidr/actions/search_investigations/schema.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ class SearchInvestigationsOutput(insightconnect_plugin_runtime.Output):
111111
}
112112
},
113113
"required": [
114+
"investigations",
114115
"metadata"
115116
],
116117
"definitions": {

0 commit comments

Comments
 (0)