summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openstackclient/identity/v3/oauth.py24
-rw-r--r--setup.cfg1
2 files changed, 0 insertions, 25 deletions
diff --git a/openstackclient/identity/v3/oauth.py b/openstackclient/identity/v3/oauth.py
index 1672cd24..a97f86c7 100644
--- a/openstackclient/identity/v3/oauth.py
+++ b/openstackclient/identity/v3/oauth.py
@@ -346,30 +346,6 @@ class SetConsumer(command.Command):
return
-class ShowAuthorizationPin(show.ShowOne):
- """Show Authorization pin command"""
-
- log = logging.getLogger(__name__ + '.ShowAuthorizationPin')
-
- def get_parser(self, prog_name):
- parser = super(ShowAuthorizationPin, self).get_parser(prog_name)
- parser.add_argument(
- 'request_id',
- metavar='<request-id>',
- help='Show pin for request token',
- )
- return parser
-
- def take_action(self, parsed_args):
- self.log.debug('take_action(%s)' % parsed_args)
- identity_client = self.app.client_manager.identity
- data = identity_client.oauth.get_authorization_pin(
- parsed_args.request_id)
- info = {}
- info.update(data._info)
- return zip(*sorted(six.iteritems(info)))
-
-
class ShowConsumer(show.ShowOne):
"""Show consumer command"""
diff --git a/setup.cfg b/setup.cfg
index 41f1c254..c933df8d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -113,7 +113,6 @@ openstack.identity.v3 =
oauth_request_token_create = openstackclient.identity.v3.oauth:CreateRequestToken
oauth_authorization_delete = openstackclient.identity.v3.oauth:DeleteUserAuthorization
oauth_authorization_list = openstackclient.identity.v3.oauth:ListUserAuthorizations
- oauth_authorization_show = openstackclient.identity.v3.oauth:ShowAuthorizationPin
policy_create = openstackclient.identity.v3.policy:CreatePolicy
policy_delete = openstackclient.identity.v3.policy:DeletePolicy