(
self, project: str, tags: Optional[dict[str, str]], **kwargs
)
| 584 | ) |
| 585 | |
| 586 | def _list_entities( |
| 587 | self, project: str, tags: Optional[dict[str, str]], **kwargs |
| 588 | ) -> List[Entity]: |
| 589 | return self._list_objects( |
| 590 | entities, |
| 591 | project, |
| 592 | EntityProto, |
| 593 | Entity, |
| 594 | "entity_proto", |
| 595 | tags=tags, |
| 596 | **kwargs, |
| 597 | ) |
| 598 | |
| 599 | def delete_entity(self, name: str, project: str, commit: bool = True): |
| 600 | return self._delete_object( |
nothing calls this directly
no test coverage detected