airflow.providers.google.cloud.sensors.datafusion

This module contains a Google Cloud Data Fusion sensors.

Module Contents

Classes

CloudDataFusionPipelineStateSensor

Check the status of the pipeline in the Google Cloud Data Fusion

class airflow.providers.google.cloud.sensors.datafusion.CloudDataFusionPipelineStateSensor(pipeline_name, pipeline_id, expected_statuses, instance_name, location, failure_statuses=None, project_id=None, namespace='default', gcp_conn_id='google_cloud_default', delegate_to=None, impersonation_chain=None, **kwargs)[source]

Bases: airflow.sensors.base.BaseSensorOperator

Check the status of the pipeline in the Google Cloud Data Fusion

Parameters
  • pipeline_name (str) -- Your pipeline name.

  • pipeline_id (str) -- Your pipeline ID.

  • expected_statuses (Iterable[str]) -- State that is expected

  • failure_statuses (Optional[Iterable[str]]) -- State that will terminate the sensor with an exception

  • instance_name (str) -- The name of the instance.

  • location (str) -- The Cloud Data Fusion location in which to handle the request.

  • project_id (Optional[str]) -- The ID of the Google Cloud project that the instance belongs to.

  • namespace (str) -- If your pipeline belongs to a Basic edition instance, the namespace ID is always default. If your pipeline belongs to an Enterprise edition instance, you can create a namespace.

  • gcp_conn_id (str) -- The connection ID to use when fetching connection info.

  • delegate_to (Optional[str]) -- The account to impersonate using domain-wide delegation of authority, if any. For this to work, the service account making the request must have domain-wide delegation enabled.

  • impersonation_chain (Optional[Union[str, Sequence[str]]]) -- Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated).

template_fields :Sequence[str] = ['pipeline_id'][source]
poke(self, context)[source]

Function that the sensors defined while deriving this class should override.

Was this entry helpful?