Retrieves the list of feature views from the registry. Args: allow_cache: Whether to allow returning entities from a cached registry. tags: Filter by tags. Returns: A list of feature views.
(
self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
)
| 534 | return self._list_all_feature_views(allow_cache, tags=tags) |
| 535 | |
| 536 | def list_feature_views( |
| 537 | self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None |
| 538 | ) -> List[FeatureView]: |
| 539 | """ |
| 540 | Retrieves the list of feature views from the registry. |
| 541 | |
| 542 | Args: |
| 543 | allow_cache: Whether to allow returning entities from a cached registry. |
| 544 | tags: Filter by tags. |
| 545 | |
| 546 | Returns: |
| 547 | A list of feature views. |
| 548 | """ |
| 549 | return utils._list_feature_views( |
| 550 | self.registry, self.project, allow_cache, tags=tags |
| 551 | ) |
| 552 | |
| 553 | def list_batch_feature_views( |
| 554 | self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None |