Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2012 OpenStack LLC # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License.
controller=tenant_controller, action='get_projects_for_token', conditions=dict(method=['GET']))
# Tenant Operations controller=tenant_controller, action='get_all_projects', conditions=dict(method=['GET'])) controller=tenant_controller, action='get_project', conditions=dict(method=['GET']))
# User Operations controller=user_controller, action='get_user', conditions=dict(method=['GET']))
# Role Operations controller=roles_controller, action='get_user_roles', conditions=dict(method=['GET'])) controller=roles_controller, action='get_user_roles', conditions=dict(method=['GET']))
router.Router(controllers.DomainV3(), 'domains', 'domain'))
router.Router(project_controller, 'projects', 'project')) controller=project_controller, action='list_user_projects', conditions=dict(method=['GET']))
router.Router(user_controller, 'users', 'user')) controller=user_controller, action='list_users_in_group', conditions=dict(method=['GET']))
controller=user_controller, action='add_user_to_group', conditions=dict(method=['PUT']))
controller=user_controller, action='check_user_in_group', conditions=dict(method=['HEAD']))
controller=user_controller, action='remove_user_from_group', conditions=dict(method=['DELETE']))
router.Router(group_controller, 'groups', 'group')) controller=group_controller, action='list_groups_for_user', conditions=dict(method=['GET']))
controller=role_controller, action='create_grant', conditions=dict(method=['PUT'])) controller=role_controller, action='create_grant', conditions=dict(method=['PUT'])) controller=role_controller, action='check_grant', conditions=dict(method=['HEAD'])) controller=role_controller, action='check_grant', conditions=dict(method=['HEAD'])) controller=role_controller, action='list_grants', conditions=dict(method=['GET'])) controller=role_controller, action='list_grants', conditions=dict(method=['GET'])) controller=role_controller, action='revoke_grant', conditions=dict(method=['DELETE'])) controller=role_controller, action='revoke_grant', conditions=dict(method=['DELETE'])) controller=role_controller, action='create_grant', conditions=dict(method=['PUT'])) controller=role_controller, action='create_grant', conditions=dict(method=['PUT'])) controller=role_controller, action='check_grant', conditions=dict(method=['HEAD'])) controller=role_controller, action='check_grant', conditions=dict(method=['HEAD'])) controller=role_controller, action='list_grants', conditions=dict(method=['GET'])) controller=role_controller, action='list_grants', conditions=dict(method=['GET'])) controller=role_controller, action='revoke_grant', conditions=dict(method=['DELETE'])) controller=role_controller, action='revoke_grant', conditions=dict(method=['DELETE'])) |