@@ -68,3 +68,78 @@ Feature: AWS Integration
6868 And body {}
6969 When the request is sent
7070 Then the response status is 200 OK
71+
72+ @generated @skip
73+ Scenario : Delete an AWS integration returns "Bad Request" response
74+ Given new "DeleteAWSAccount" request
75+ And body {}
76+ When the request is sent
77+ Then the response status is 400 Bad Request
78+
79+ @generated @skip
80+ Scenario : Delete an AWS integration returns "Conflict Error" response
81+ Given new "DeleteAWSAccount" request
82+ And body {}
83+ When the request is sent
84+ Then the response status is 409 Conflict Error
85+
86+ @generated @skip
87+ Scenario : List all AWS integrations returns "Bad Request" response
88+ Given new "ListAWSAccounts" request
89+ When the request is sent
90+ Then the response status is 400 Bad Request
91+
92+ @generated @skip
93+ Scenario : Create an AWS integration returns "Bad Request" response
94+ Given new "CreateAWSAccount" request
95+ And body {}
96+ When the request is sent
97+ Then the response status is 400 Bad Request
98+
99+ @generated @skip
100+ Scenario : Create an AWS integration returns "Conflict Error" response
101+ Given new "CreateAWSAccount" request
102+ And body {}
103+ When the request is sent
104+ Then the response status is 409 Conflict Error
105+
106+ @generated @skip
107+ Scenario : Update an AWS integration returns "Bad Request" response
108+ Given new "UpdateAWSAccount" request
109+ And body {}
110+ When the request is sent
111+ Then the response status is 400 Bad Request
112+
113+ @generated @skip
114+ Scenario : Update an AWS integration returns "Conflict Error" response
115+ Given new "UpdateAWSAccount" request
116+ And body {}
117+ When the request is sent
118+ Then the response status is 409 Conflict Error
119+
120+ @generated @skip
121+ Scenario : Delete a tag filtering entry returns "Bad Request" response
122+ Given new "DeleteAWSTagFilter" request
123+ And body {}
124+ When the request is sent
125+ Then the response status is 400 Bad Request
126+
127+ @generated @skip
128+ Scenario : Get all AWS tag filters returns "Bad Request" response
129+ Given new "ListAWSTagFilters" request
130+ When the request is sent
131+ Then the response status is 400 Bad Request
132+
133+ @generated @skip
134+ Scenario : Set an AWS tag filter returns "Bad Request" response
135+ Given new "CreateAWSTagFilter" request
136+ And body {}
137+ When the request is sent
138+ Then the response status is 400 Bad Request
139+
140+ @generated @skip
141+ Scenario : Generate a new external ID returns "Bad Request" response
142+ Given new "CreateNewAWSExternalID" request
143+ And body {}
144+ When the request is sent
145+ Then the response status is 400 Bad Request
0 commit comments