Remove the plugin from the server. Args: force (bool): Remove even if the plugin is enabled. Default: False Raises: :py:class:`docker.errors.APIError` If the server returns an error.
(self, force=False)
| 87 | return self.client.api.push_plugin(self.name) |
| 88 | |
| 89 | def remove(self, force=False): |
| 90 | """ |
| 91 | Remove the plugin from the server. |
| 92 | |
| 93 | Args: |
| 94 | force (bool): Remove even if the plugin is enabled. |
| 95 | Default: False |
| 96 | |
| 97 | Raises: |
| 98 | :py:class:`docker.errors.APIError` |
| 99 | If the server returns an error. |
| 100 | """ |
| 101 | return self.client.api.remove_plugin(self.name, force=force) |
| 102 | |
| 103 | def upgrade(self, remote=None): |
| 104 | """ |
nothing calls this directly
no test coverage detected