michalslowikowski00 commented on a change in pull request #10304:
URL: https://github.com/apache/airflow/pull/10304#discussion_r476321745
##########
File path: airflow/providers/google/cloud/operators/dataprep.py
##########
@@ -51,6 +50,68 @@ def __init__(
def execute(self, context: Dict):
self.log.info("Fetching data for job with id: %d ...", self.job_id)
- hook = GoogleDataprepHook(dataprep_conn_id="dataprep_conn_id")
+ hook = GoogleDataprepHook(dataprep_conn_id="dataprep_conn_id",)
response = hook.get_jobs_for_job_group(job_id=self.job_id)
return response
+
+
+class DataprepGetJobGroupOperator(BaseOperator):
+ """
+ Get the specified job group.
+ A job group is a job that is executed from a specific node in a flow.
+ API documentation
https://clouddataprep.com/documentation/api#section/Overview
+
+ .. seealso::
+ For more information on how to use this operator, take a look at the
guide:
+ :ref:`howto/operator:DataprepGetJobGroupOperator`
+
+ :param job_id The ID of the job that will be requests
+ :type job_id: int
+ :param embed Comma-separated list of objects to pull in as part of the
response
+ :type embed: string
+ :param include_deleted if set to "true", will include deleted objects
+ :type include_deleted: bool
+ """
+
+ template_fields = ("job_id",)
+
+ @apply_defaults
+ def __init__(
+ self, *, job_id: int, embed: str, include_deleted: bool, **kwargs
+ ) -> None:
+ super().__init__(**kwargs)
+ self.job_id = job_id
+ self.embed = embed
+ self.include_deleted = include_deleted
+
+ def execute(self, context: Dict):
+ self.log.info("Fetching data for job with id: %d ...", self.job_id)
+ hook = GoogleDataprepHook(dataprep_conn_id="dataprep_conn_id")
+ response = hook.get_job_group(job_id=self.job_id, embed="",
include_deleted=self.include_deleted)
Review comment:
Done.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]