File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -184,6 +184,64 @@ paths:
184184 $ref : ' #/components/schemas/ErrorsList'
185185 security :
186186 - bearer : []
187+ put :
188+ tags :
189+ - Bridges
190+ summary : Update a Bridge instance
191+ description : Update a Bridge instance for the authenticated user.
192+ operationId : BridgesAPI_updateBridge
193+ parameters :
194+ - name : bridgeId
195+ in : path
196+ required : true
197+ schema :
198+ minLength : 1
199+ type : string
200+ nullable : false
201+ requestBody :
202+ content :
203+ application/json :
204+ schema :
205+ $ref : ' #/components/schemas/BridgeRequest'
206+ responses :
207+ " 202 " :
208+ description : Accepted.
209+ content :
210+ application/json :
211+ schema :
212+ $ref : ' #/components/schemas/BridgeResponse'
213+ " 400 " :
214+ description : Bad request.
215+ content :
216+ application/json :
217+ schema :
218+ $ref : ' #/components/schemas/ErrorsList'
219+ " 401 " :
220+ description : Unauthorized.
221+ content :
222+ application/json :
223+ schema :
224+ $ref : ' #/components/schemas/ErrorsList'
225+ " 403 " :
226+ description : Forbidden.
227+ content :
228+ application/json :
229+ schema :
230+ $ref : ' #/components/schemas/ErrorsList'
231+ " 404 " :
232+ description : Not found.
233+ content :
234+ application/json :
235+ schema :
236+ $ref : ' #/components/schemas/ErrorsList'
237+ " 500 " :
238+ description : Internal error.
239+ content :
240+ application/json :
241+ schema :
242+ $ref : ' #/components/schemas/ErrorsList'
243+ security :
244+ - bearer : []
187245 delete :
188246 tags :
189247 - Bridges
You can’t perform that action at this time.
0 commit comments