We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
exec_start
1 parent ef2b90c commit cdb3e86Copy full SHA for cdb3e86
1 file changed
stubs/docker/docker/api/exec_api.pyi
@@ -115,3 +115,21 @@ class ExecApiMixin:
115
socket: Literal[False] = False,
116
demux: Literal[False] = False,
117
) -> str: ...
118
+ @overload
119
+ def exec_start(
120
+ self,
121
+ exec_id: str,
122
+ detach: bool = False,
123
+ tty: bool = False,
124
+ stream: bool = False,
125
+ socket: bool = False,
126
+ demux: bool = False,
127
+ ) -> (
128
+ str
129
+ | SocketIO
130
+ | _BufferedReaderStream
131
+ | SSHSocket
132
+ | CancellableStream[str]
133
+ | CancellableStream[tuple[str | None, str | None]]
134
+ | tuple[str | None, str | None]
135
+ ): ...
0 commit comments