Retrieves the list of stream feature views from the registry. Returns: A list of stream feature views.
(
self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
)
| 619 | ) |
| 620 | |
| 621 | def list_stream_feature_views( |
| 622 | self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None |
| 623 | ) -> List[StreamFeatureView]: |
| 624 | """ |
| 625 | Retrieves the list of stream feature views from the registry. |
| 626 | |
| 627 | Returns: |
| 628 | A list of stream feature views. |
| 629 | """ |
| 630 | return self._list_stream_feature_views(allow_cache, tags=tags) |
| 631 | |
| 632 | def list_label_views( |
| 633 | self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None |