(self, name: str, project: str)
| 644 | ) |
| 645 | |
| 646 | def _get_data_source(self, name: str, project: str) -> DataSource: |
| 647 | return self._get_object( |
| 648 | table=data_sources, |
| 649 | name=name, |
| 650 | project=project, |
| 651 | proto_class=DataSourceProto, |
| 652 | python_class=DataSource, |
| 653 | id_field_name="data_source_name", |
| 654 | proto_field_name="data_source_proto", |
| 655 | not_found_exception=DataSourceObjectNotFoundException, |
| 656 | ) |
| 657 | |
| 658 | def _list_data_sources( |
| 659 | self, project: str, tags: Optional[dict[str, str]], **kwargs |
nothing calls this directly
no test coverage detected