Retrieves a stream feature view. Args: name: Name of stream feature view. allow_registry_cache: (Optional) Whether to allow returning this entity from a cached registry Returns: The specified stream feature view. Raises:
(
self, name: str, allow_registry_cache: bool = False
)
| 763 | return self.registry.list_feature_view_versions(name, self.project) |
| 764 | |
| 765 | def get_stream_feature_view( |
| 766 | self, name: str, allow_registry_cache: bool = False |
| 767 | ) -> StreamFeatureView: |
| 768 | """ |
| 769 | Retrieves a stream feature view. |
| 770 | |
| 771 | Args: |
| 772 | name: Name of stream feature view. |
| 773 | allow_registry_cache: (Optional) Whether to allow returning this entity from a cached registry |
| 774 | |
| 775 | Returns: |
| 776 | The specified stream feature view. |
| 777 | |
| 778 | Raises: |
| 779 | FeatureViewNotFoundException: The feature view could not be found. |
| 780 | """ |
| 781 | return self._get_stream_feature_view( |
| 782 | name, allow_registry_cache=allow_registry_cache |
| 783 | ) |
| 784 | |
| 785 | def _get_stream_feature_view( |
| 786 | self, |