(self, description, app, subparsers, parent_parser=None)
| 119 | |
| 120 | class RoleAssignmentBranch(resource.ResourceBranch): |
| 121 | def __init__(self, description, app, subparsers, parent_parser=None): |
| 122 | super(RoleAssignmentBranch, self).__init__( |
| 123 | UserRoleAssignment, |
| 124 | description, |
| 125 | app, |
| 126 | subparsers, |
| 127 | parent_parser=parent_parser, |
| 128 | read_only=True, |
| 129 | commands={ |
| 130 | "list": RoleAssignmentListCommand, |
| 131 | "get": RoleAssignmentGetCommand, |
| 132 | }, |
| 133 | ) |
| 134 | |
| 135 | |
| 136 | class RoleAssignmentListCommand(resource.ResourceCommand): |