(self, name: str, project: str)
| 973 | ) |
| 974 | |
| 975 | def _get_label_view(self, name: str, project: str) -> LabelView: |
| 976 | return self._get_object( |
| 977 | table=label_views, |
| 978 | name=name, |
| 979 | project=project, |
| 980 | proto_class=LabelViewProto, |
| 981 | python_class=LabelView, |
| 982 | id_field_name="feature_view_name", |
| 983 | proto_field_name="feature_view_proto", |
| 984 | not_found_exception=FeatureViewNotFoundException, |
| 985 | ) |
| 986 | |
| 987 | def _list_label_views( |
| 988 | self, project: str, tags: Optional[dict[str, str]], **kwargs |
nothing calls this directly
no test coverage detected