airflow.providers.google.suite.sensors.drive

This module contains Google Drive sensors.

Module Contents

Classes

GoogleDriveFileExistenceSensor

Checks for the existence of a file in Google Cloud Storage.

class airflow.providers.google.suite.sensors.drive.GoogleDriveFileExistenceSensor(*, folder_id, file_name, drive_id=None, gcp_conn_id='google_cloud_default', delegate_to=None, impersonation_chain=None, **kwargs)[source]

Bases: airflow.sensors.base.BaseSensorOperator

Checks for the existence of a file in Google Cloud Storage.

Parameters
  • folder_id (str) – The Google drive folder where the file is.

  • file_name (str) – The name of the file to check in Google Drive

  • drive_id (str | None) – Optional. The id of the shared Google Drive in which the file resides.

  • gcp_conn_id (str) – The connection ID to use when connecting to Google Cloud Storage.

  • delegate_to (str | None) – 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 (str | Sequence[str] | None) – 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] = ('folder_id', 'file_name', 'drive_id', 'impersonation_chain')[source]
ui_color = '#f0eee4'[source]
poke(context)[source]

Override when deriving this class.

Was this entry helpful?