(
self, project: str, tags: Optional[dict[str, str]], **kwargs
)
| 921 | raise DataSourceObjectNotFoundException(name, project) |
| 922 | |
| 923 | def _list_feature_services( |
| 924 | self, project: str, tags: Optional[dict[str, str]], **kwargs |
| 925 | ) -> List[FeatureService]: |
| 926 | return self._list_objects( |
| 927 | feature_services, |
| 928 | project, |
| 929 | FeatureServiceProto, |
| 930 | FeatureService, |
| 931 | "feature_service_proto", |
| 932 | tags=tags, |
| 933 | **kwargs, |
| 934 | ) |
| 935 | |
| 936 | def _list_feature_views( |
| 937 | self, project: str, tags: Optional[dict[str, str]], **kwargs |
nothing calls this directly
no test coverage detected