airflow.providers.google.cloud.transfers.sheets_to_gcs
¶
模块内容¶
类¶
将 Google Sheet 数据写入 Google Cloud Storage。 |
- class airflow.providers.google.cloud.transfers.sheets_to_gcs.GoogleSheetsToGCSOperator(*, spreadsheet_id, destination_bucket, sheet_filter=None, destination_path=None, gcp_conn_id='google_cloud_default', impersonation_chain=None, **kwargs)[源代码]¶
基类:
airflow.models.BaseOperator
将 Google Sheet 数据写入 Google Cloud Storage。
另请参阅
有关如何使用此操作符的更多信息,请查看以下指南:从 Google Sheets 上传数据到 GCS
- 参数
spreadsheet_id (str) – 要与之交互的 Google Sheet ID。
sheet_filter (list[str] | None) – 默认为 None,如果提供,则应为要从中提取的工作表标题数组。
destination_bucket (str) – 报告应写入的目标 Google 云存储存储桶。(已模板化)
destination_path (str | None) – 操作符创建的对象的目标 Google 云存储 URI 数组。例如:
path/to/my/files
。gcp_conn_id (str) – 获取连接信息时要使用的连接 ID。
impersonation_chain (str | collections.abc.Sequence[str] | None) – 可选的服务帐户,用于使用短期凭据模拟,或用于获取列表中最后一个帐户的 access_token 的链式帐户列表,该帐户将在请求中被模拟。如果设置为字符串,则该帐户必须授予原始帐户“服务帐户令牌创建者”IAM 角色。如果设置为序列,则列表中的标识必须向紧接在前的标识授予“服务帐户令牌创建者”IAM 角色,列表中的第一个帐户将此角色授予原始帐户(已模板化)。
- template_fields: collections.abc.Sequence[str] = ('spreadsheet_id', 'destination_bucket', 'destination_path', 'sheet_filter', 'impersonation_chain')[源代码]¶