Retrieves the list of data sources from the registry. Args: name: Name of the data source. Returns: The specified data source. Raises: DataSourceObjectNotFoundException: The data source could not be found.
(self, name: str)
| 815 | ) |
| 816 | |
| 817 | def get_data_source(self, name: str) -> DataSource: |
| 818 | """ |
| 819 | Retrieves the list of data sources from the registry. |
| 820 | |
| 821 | Args: |
| 822 | name: Name of the data source. |
| 823 | |
| 824 | Returns: |
| 825 | The specified data source. |
| 826 | |
| 827 | Raises: |
| 828 | DataSourceObjectNotFoundException: The data source could not be found. |
| 829 | """ |
| 830 | return self.registry.get_data_source(name, self.project) |
| 831 | |
| 832 | def delete_feature_view(self, name: str): |
| 833 | """ |
no outgoing calls