@@ -13,15 +13,15 @@ Feature: Security Monitoring
1313 Scenario : Add a security signal to an incident returns "Bad Request" response
1414 Given new "AddSecurityMonitoringSignalToIncident" request
1515 And request contains "signal_id" parameter from "REPLACE.ME"
16- And body with value {"incident_id" : 2066}
16+ And body with value {"incident_id" : 2066, "version" : 0 }
1717 When the request is sent
1818 Then the response status is 400 Bad Request
1919
2020 @generated @skip @team:DataDog/k9-cloud-security-platform
2121 Scenario : Add a security signal to an incident returns "Not Found" response
2222 Given new "AddSecurityMonitoringSignalToIncident" request
2323 And request contains "signal_id" parameter from "REPLACE.ME"
24- And body with value {"incident_id" : 2066}
24+ And body with value {"incident_id" : 2066, "version" : 0 }
2525 When the request is sent
2626 Then the response status is 404 Not Found
2727
@@ -38,15 +38,15 @@ Feature: Security Monitoring
3838 Scenario : Change the triage state of a security signal returns "Bad Request" response
3939 Given new "EditSecurityMonitoringSignalState" request
4040 And request contains "signal_id" parameter from "REPLACE.ME"
41- And body with value {"archiveReason" : "none" , "state" : "open" }
41+ And body with value {"archiveReason" : "none" , "state" : "open" , "version" : 0 }
4242 When the request is sent
4343 Then the response status is 400 Bad Request
4444
4545 @generated @skip @team:DataDog/k9-cloud-security-platform
4646 Scenario : Change the triage state of a security signal returns "Not Found" response
4747 Given new "EditSecurityMonitoringSignalState" request
4848 And request contains "signal_id" parameter from "REPLACE.ME"
49- And body with value {"archiveReason" : "none" , "state" : "open" }
49+ And body with value {"archiveReason" : "none" , "state" : "open" , "version" : 0 }
5050 When the request is sent
5151 Then the response status is 404 Not Found
5252
@@ -63,15 +63,15 @@ Feature: Security Monitoring
6363 Scenario : Modify the triage assignee of a security signal returns "Bad Request" response
6464 Given new "EditSecurityMonitoringSignalAssignee" request
6565 And request contains "signal_id" parameter from "REPLACE.ME"
66- And body with value {"assignee" : "773b045d-ccf8-4808-bd3b-955ef6a8c940" }
66+ And body with value {"assignee" : "773b045d-ccf8-4808-bd3b-955ef6a8c940" , "version" : 0 }
6767 When the request is sent
6868 Then the response status is 400 Bad Request
6969
7070 @generated @skip @team:DataDog/k9-cloud-security-platform
7171 Scenario : Modify the triage assignee of a security signal returns "Not Found" response
7272 Given new "EditSecurityMonitoringSignalAssignee" request
7373 And request contains "signal_id" parameter from "REPLACE.ME"
74- And body with value {"assignee" : "773b045d-ccf8-4808-bd3b-955ef6a8c940" }
74+ And body with value {"assignee" : "773b045d-ccf8-4808-bd3b-955ef6a8c940" , "version" : 0 }
7575 When the request is sent
7676 Then the response status is 404 Not Found
7777
0 commit comments