* Update PTY session
(options: Options<PtyUpdateData, ThrowOnError>)
| 313 | * Update PTY session |
| 314 | */ |
| 315 | public update<ThrowOnError extends boolean = false>(options: Options<PtyUpdateData, ThrowOnError>) { |
| 316 | return (options.client ?? this._client).put<PtyUpdateResponses, PtyUpdateErrors, ThrowOnError>({ |
| 317 | url: "/pty/{id}", |
| 318 | ...options, |
| 319 | headers: { |
| 320 | "Content-Type": "application/json", |
| 321 | ...options.headers, |
| 322 | }, |
| 323 | }) |
| 324 | } |
| 325 | |
| 326 | /** |
| 327 | * Connect to a PTY session |
no outgoing calls
no test coverage detected