(
self, project: str, tags: Optional[dict[str, str]], **kwargs
)
| 656 | ) |
| 657 | |
| 658 | def _list_data_sources( |
| 659 | self, project: str, tags: Optional[dict[str, str]], **kwargs |
| 660 | ) -> List[DataSource]: |
| 661 | return self._list_objects( |
| 662 | data_sources, |
| 663 | project, |
| 664 | DataSourceProto, |
| 665 | DataSource, |
| 666 | "data_source_proto", |
| 667 | tags=tags, |
| 668 | **kwargs, |
| 669 | ) |
| 670 | |
| 671 | def apply_data_source( |
| 672 | self, data_source: DataSource, project: str, commit: bool = True |
nothing calls this directly
no test coverage detected