Retrieves the list of entities from the registry. Args: allow_cache: Whether to allow returning entities from a cached registry. tags: Filter by tags. Returns: A list of entities.
(
self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
)
| 459 | self._clear_feature_service_cache() |
| 460 | |
| 461 | def list_entities( |
| 462 | self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None |
| 463 | ) -> List[Entity]: |
| 464 | """ |
| 465 | Retrieves the list of entities from the registry. |
| 466 | |
| 467 | Args: |
| 468 | allow_cache: Whether to allow returning entities from a cached registry. |
| 469 | tags: Filter by tags. |
| 470 | |
| 471 | Returns: |
| 472 | A list of entities. |
| 473 | """ |
| 474 | return self._list_entities(allow_cache, tags=tags) |
| 475 | |
| 476 | def _list_entities( |
| 477 | self, |