(self, request: RegistryServer_pb2.GetLabelViewRequest, context)
| 682 | ) |
| 683 | |
| 684 | def GetLabelView(self, request: RegistryServer_pb2.GetLabelViewRequest, context): |
| 685 | return assert_permissions( |
| 686 | resource=self.proxied_registry.get_label_view( |
| 687 | name=request.name, |
| 688 | project=request.project, |
| 689 | allow_cache=request.allow_cache, |
| 690 | ), |
| 691 | actions=[AuthzedAction.DESCRIBE], |
| 692 | ).to_proto() |
| 693 | |
| 694 | def ListLabelViews( |
| 695 | self, request: RegistryServer_pb2.ListLabelViewsRequest, context |
nothing calls this directly
no test coverage detected