in src/package/dataplexutils/metadata/wizard.py [0:0]
def _bq_job_info(self, bq_job_id, dataset_location):
"""Add stringdocs
Args:
Add stringdocs
Raises:
Add stringdocs
"""
try:
return (
self._cloud_clients[constants["CLIENTS"]["BIGQUERY"]]
.get_job(bq_job_id, location=dataset_location)
.query
)
except Exception as e:
logger.error(f"Exception: {e}.")
raise e