(
self, project: str, tags: Optional[dict[str, str]] = None, **kwargs
)
| 947 | ) |
| 948 | |
| 949 | def _list_saved_datasets( |
| 950 | self, project: str, tags: Optional[dict[str, str]] = None, **kwargs |
| 951 | ) -> List[SavedDataset]: |
| 952 | return self._list_objects( |
| 953 | saved_datasets, |
| 954 | project, |
| 955 | SavedDatasetProto, |
| 956 | SavedDataset, |
| 957 | "saved_dataset_proto", |
| 958 | tags=tags, |
| 959 | **kwargs, |
| 960 | ) |
| 961 | |
| 962 | def _list_on_demand_feature_views( |
| 963 | self, project: str, tags: Optional[dict[str, str]], **kwargs |
nothing calls this directly
no test coverage detected