Retrieves the list of feature services from the registry. Args: tags: Filter by tags. Returns: A list of feature services.
(
self, tags: Optional[dict[str, str]] = None
)
| 489 | ] |
| 490 | |
| 491 | def list_feature_services( |
| 492 | self, tags: Optional[dict[str, str]] = None |
| 493 | ) -> List[FeatureService]: |
| 494 | """ |
| 495 | Retrieves the list of feature services from the registry. |
| 496 | |
| 497 | Args: |
| 498 | tags: Filter by tags. |
| 499 | |
| 500 | Returns: |
| 501 | A list of feature services. |
| 502 | """ |
| 503 | return self.registry.list_feature_services(self.project, tags=tags) |
| 504 | |
| 505 | def _list_all_feature_views( |
| 506 | self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None |
no outgoing calls