airflow.providers.google.cloud.links.dataprep

Attributes

BASE_LINK

DATAPREP_FLOW_LINK

DATAPREP_JOB_GROUP_LINK

Classes

DataprepFlowLink

Helper class for constructing Dataprep flow link.

DataprepJobGroupLink

Helper class for constructing Dataprep job group link.

Module Contents

Bases: airflow.providers.google.cloud.links.base.BaseGoogleLink

Helper class for constructing Dataprep flow link.

name = 'Flow details page'[source]

Name of the link. This will be the button name on the task UI.

key = 'dataprep_flow_page'[source]
format_str = 'https://clouddataprep.com/flows/{flow_id}?projectId={project_id}'[source]
static persist(context, task_instance, project_id, flow_id)[source]

Bases: airflow.providers.google.cloud.links.base.BaseGoogleLink

Helper class for constructing Dataprep job group link.

name = 'Job group details page'[source]

Name of the link. This will be the button name on the task UI.

key = 'dataprep_job_group_page'[source]
format_str = 'https://clouddataprep.com/jobs/{job_group_id}?projectId={project_id}'[source]
static persist(context, task_instance, project_id, job_group_id)[source]

Was this entry helpful?