Retrieves the list of label views from the registry. Args: allow_cache: Whether to allow returning label views from a cached registry. tags: Filter by tags. Returns: A list of label views.
(
self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
)
| 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 |
| 634 | ) -> List[LabelView]: |
| 635 | """ |
| 636 | Retrieves the list of label views from the registry. |
| 637 | |
| 638 | Args: |
| 639 | allow_cache: Whether to allow returning label views from a cached registry. |
| 640 | tags: Filter by tags. |
| 641 | |
| 642 | Returns: |
| 643 | A list of label views. |
| 644 | """ |
| 645 | return self.registry.list_label_views( |
| 646 | self.project, allow_cache=allow_cache, tags=tags |
| 647 | ) |
| 648 | |
| 649 | def get_label_view( |
| 650 | self, name: str, allow_registry_cache: bool = False |
no outgoing calls
no test coverage detected