mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #43122 from th0m4s/master
Fixing /exec/{id}/resize response code in API documentation
This commit is contained in:
commit
ea96e160e4
1 changed files with 9 additions and 1 deletions
|
@ -8782,12 +8782,20 @@ paths:
|
||||||
if `tty` was specified as part of creating and starting the exec instance.
|
if `tty` was specified as part of creating and starting the exec instance.
|
||||||
operationId: "ExecResize"
|
operationId: "ExecResize"
|
||||||
responses:
|
responses:
|
||||||
201:
|
200:
|
||||||
description: "No error"
|
description: "No error"
|
||||||
|
400:
|
||||||
|
description: "bad parameter"
|
||||||
|
schema:
|
||||||
|
$ref: "#/definitions/ErrorResponse"
|
||||||
404:
|
404:
|
||||||
description: "No such exec instance"
|
description: "No such exec instance"
|
||||||
schema:
|
schema:
|
||||||
$ref: "#/definitions/ErrorResponse"
|
$ref: "#/definitions/ErrorResponse"
|
||||||
|
500:
|
||||||
|
description: "Server error"
|
||||||
|
schema:
|
||||||
|
$ref: "#/definitions/ErrorResponse"
|
||||||
parameters:
|
parameters:
|
||||||
- name: "id"
|
- name: "id"
|
||||||
in: "path"
|
in: "path"
|
||||||
|
|
Loading…
Add table
Reference in a new issue