airflow.providers.google.cloud.transfers.gdrive_to_gcs

模块内容

GoogleDriveToGCSOperator

将 Google Drive 文件写入 Google Cloud Storage。

class airflow.providers.google.cloud.transfers.gdrive_to_gcs.GoogleDriveToGCSOperator(*, bucket_name, object_name=None, file_name, folder_id, drive_id=None, gcp_conn_id='google_cloud_default', impersonation_chain=None, **kwargs)[源代码]

基类:airflow.models.BaseOperator

将 Google Drive 文件写入 Google Cloud Storage。

另请参阅

有关如何使用此操作符的更多信息,请查看指南:操作符

参数
  • bucket_name (str) – 应该写入文件的目标 Google 云存储存储桶

  • object_name (str | None) – 操作符创建的 Google Cloud Storage 对象名称。 例如:path/to/my/file/file.txt

  • folder_id (str) – Google Drive 文件所在的文件夹的文件夹 ID

  • file_name (str) – 位于 Google Drive 中的文件名

  • drive_id (str | None) – 可选。文件所在的共享 Google Drive 的 ID。

  • gcp_conn_id (str) – 获取连接信息时要使用的 GCP 连接 ID。

  • impersonation_chain (str | collections.abc.Sequence[str] | None) – 可选服务帐户,用于使用短期凭据模拟,或获取列表中最后一个帐户的 access_token 所需的帐户链式列表,该帐户将在请求中被模拟。如果设置为字符串,则该帐户必须向原始帐户授予“服务帐户令牌创建者”IAM 角色。如果设置为序列,则列表中的标识必须将“服务帐户令牌创建者”IAM 角色授予紧随其后的标识,列表中的第一个帐户将此角色授予原始帐户(已模板化)。

template_fields: collections.abc.Sequence[str] = ('bucket_name', 'object_name', 'folder_id', 'file_name', 'drive_id', 'impersonation_chain')[源代码]
execute(context)[源代码]

在创建操作符时派生。

上下文与渲染 Jinja 模板时使用的字典相同。

有关更多上下文,请参阅 get_template_context。

此条目是否有帮助?