mirror of https://github.com/docker/docker-py.git
Merge pull request #1647 from docker/1642-dockerclient-secrets
DockerClient.secrets should be a @property
This commit is contained in:
commit
8fc6540fea
|
|
@ -120,6 +120,7 @@ class DockerClient(object):
|
||||||
"""
|
"""
|
||||||
return PluginCollection(client=self)
|
return PluginCollection(client=self)
|
||||||
|
|
||||||
|
@property
|
||||||
def secrets(self):
|
def secrets(self):
|
||||||
"""
|
"""
|
||||||
An object for managing secrets on the server. See the
|
An object for managing secrets on the server. See the
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue