airflow.providers.google.cloud.links.dataflow

This module contains Google Dataflow links.

Attributes

DATAFLOW_BASE_LINK

DATAFLOW_JOB_LINK

DATAFLOW_PIPELINE_BASE_LINK

DATAFLOW_PIPELINE_LINK

Classes

DataflowJobLink

Helper class for constructing Dataflow Job Link.

DataflowPipelineLink

Helper class for constructing Dataflow Pipeline Link.

Module Contents

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

Helper class for constructing Dataflow Job Link.

name = 'Dataflow Job'[source]

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

key = 'dataflow_job_config'[source]
format_str = '/dataflow/jobs/{region}/{job_id}?project={project_id}'[source]
static persist(operator_instance, context, project_id, region, job_id)[source]

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

Helper class for constructing Dataflow Pipeline Link.

name = 'Dataflow Pipeline'[source]

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

key = 'dataflow_pipeline_config'[source]
format_str = '/dataflow/pipelines/{location}/{pipeline_name}?project={project_id}'[source]
static persist(operator_instance, context, project_id, location, pipeline_name)[source]

Was this entry helpful?