Unpause all processes within the container. Raises: :py:class:`docker.errors.APIError` If the server returns an error.
(self)
| 468 | return self.client.api.top(self.id, **kwargs) |
| 469 | |
| 470 | def unpause(self): |
| 471 | """ |
| 472 | Unpause all processes within the container. |
| 473 | |
| 474 | Raises: |
| 475 | :py:class:`docker.errors.APIError` |
| 476 | If the server returns an error. |
| 477 | """ |
| 478 | return self.client.api.unpause(self.id) |
| 479 | |
| 480 | def update(self, **kwargs): |
| 481 | """ |
no outgoing calls