diff options
author | Zuul <zuul@review.openstack.org> | 2018-01-24 16:15:12 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2018-01-24 16:15:12 +0000 |
commit | 1e8c9302fc055f78964f3eaef32e09dae89eb2fa (patch) | |
tree | 10db247b58db869631e2c7152e0764adffef2936 /keystoneclient/v3/client.py | |
parent | 62982077aa53f1924b72fcb827ebcc097f52b001 (diff) | |
parent | d59aaaa25c5ccd505aafbb1857807f6b8816771d (diff) | |
download | python-keystoneclient-3.15.0.tar.gz |
Merge "Add CRUD support for application credentials"3.15.0
Diffstat (limited to 'keystoneclient/v3/client.py')
-rw-r--r-- | keystoneclient/v3/client.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/keystoneclient/v3/client.py b/keystoneclient/v3/client.py index 2ca180a..e57e6bf 100644 --- a/keystoneclient/v3/client.py +++ b/keystoneclient/v3/client.py @@ -22,6 +22,7 @@ from keystoneclient.auth.identity import v3 as v3_auth from keystoneclient import exceptions from keystoneclient import httpclient from keystoneclient.i18n import _ +from keystoneclient.v3 import application_credentials from keystoneclient.v3 import auth from keystoneclient.v3.contrib import endpoint_filter from keystoneclient.v3.contrib import endpoint_policy @@ -212,6 +213,9 @@ class Client(httpclient.HTTPClient): 'deprecated as of the 1.7.0 release and may be removed in ' 'the 2.0.0 release.', DeprecationWarning) + self.application_credentials = ( + application_credentials.ApplicationCredentialManager(self._adapter) + ) self.auth = auth.AuthManager(self._adapter) self.credentials = credentials.CredentialManager(self._adapter) self.ec2 = ec2.EC2Manager(self._adapter) |