(self, name: str, project: str)
| 509 | ) |
| 510 | |
| 511 | def _get_feature_view(self, name: str, project: str) -> FeatureView: |
| 512 | return self._get_object( |
| 513 | table=feature_views, |
| 514 | name=name, |
| 515 | project=project, |
| 516 | proto_class=FeatureViewProto, |
| 517 | python_class=FeatureView, |
| 518 | id_field_name="feature_view_name", |
| 519 | proto_field_name="feature_view_proto", |
| 520 | not_found_exception=FeatureViewNotFoundException, |
| 521 | ) |
| 522 | |
| 523 | def _get_on_demand_feature_view( |
| 524 | self, name: str, project: str |
nothing calls this directly
no test coverage detected