@@ -13,71 +13,81 @@ Feature: Service Level Objective Corrections
1313
1414 @generated @skip
1515 Scenario : Get all SLO corrections returns "OK" response
16- Given new "ListSLOCorrection" request
16+ Given operation "ListSLOCorrection" enabled
17+ And new "ListSLOCorrection" request
1718 When the request is sent
1819 Then the response status is 200 OK
1920
2021 @generated @skip
2122 Scenario : Create an SLO correction returns "OK" response
22- Given new "CreateSLOCorrection" request
23+ Given operation "CreateSLOCorrection" enabled
24+ And new "CreateSLOCorrection" request
2325 And body {}
2426 When the request is sent
2527 Then the response status is 200 OK
2628
2729 @generated @skip
2830 Scenario : Delete an SLO Correction returns "OK" response
29- Given new "DeleteSLOCorrection" request
31+ Given operation "DeleteSLOCorrection" enabled
32+ And new "DeleteSLOCorrection" request
3033 And request contains "slo_correction_id" parameter from "<PATH>"
3134 When the request is sent
3235 Then the response status is 204 OK
3336
3437 @generated @skip
3538 Scenario : Get an SLO correction for an SLO returns "OK" response
36- Given new "GetSLOCorrection" request
39+ Given operation "GetSLOCorrection" enabled
40+ And new "GetSLOCorrection" request
3741 And request contains "slo_correction_id" parameter from "<PATH>"
3842 When the request is sent
3943 Then the response status is 200 OK
4044
4145 @generated @skip
4246 Scenario : Update an SLO Correction returns "OK" response
43- Given new "UpdateSLOCorrection" request
47+ Given operation "UpdateSLOCorrection" enabled
48+ And new "UpdateSLOCorrection" request
4449 And request contains "slo_correction_id" parameter from "<PATH>"
4550 And body {}
4651 When the request is sent
4752 Then the response status is 200 OK
4853
4954 @generated @skip
5055 Scenario : Create an SLO correction returns "Bad Request" response
51- Given new "CreateSLOCorrection" request
56+ Given operation "CreateSLOCorrection" enabled
57+ And new "CreateSLOCorrection" request
5258 And body {}
5359 When the request is sent
5460 Then the response status is 400 Bad Request
5561
5662 @generated @skip
5763 Scenario : Delete an SLO Correction returns "Not found" response
58- Given new "DeleteSLOCorrection" request
64+ Given operation "DeleteSLOCorrection" enabled
65+ And new "DeleteSLOCorrection" request
5966 And request contains "slo_correction_id" parameter from "<PATH>"
6067 When the request is sent
6168 Then the response status is 404 Not found
6269
6370 @generated @skip
6471 Scenario : Get an SLO correction for an SLO returns "Bad Request" response
65- Given new "GetSLOCorrection" request
72+ Given operation "GetSLOCorrection" enabled
73+ And new "GetSLOCorrection" request
6674 And request contains "slo_correction_id" parameter from "<PATH>"
6775 When the request is sent
6876 Then the response status is 400 Bad Request
6977
7078 @generated @skip
7179 Scenario : Update an SLO Correction returns "Bad Request" response
72- Given new "UpdateSLOCorrection" request
80+ Given operation "UpdateSLOCorrection" enabled
81+ And new "UpdateSLOCorrection" request
7382 And request contains "slo_correction_id" parameter from "<PATH>"
7483 And body {}
7584 When the request is sent
7685 Then the response status is 400 Bad Request
7786
7887 @generated @skip
7988 Scenario : Update an SLO Correction returns "Not Found" response
80- Given new "UpdateSLOCorrection" request
89+ Given operation "UpdateSLOCorrection" enabled
90+ And new "UpdateSLOCorrection" request
8191 And request contains "slo_correction_id" parameter from "<PATH>"
8292 And body {}
8393 When the request is sent
0 commit comments