airflow.providers.google.suite.transfers.gcs_to_sheets

模块内容

GCSToGoogleSheetsOperator

将 .csv 文件从 Google Cloud Storage 上传到提供的 Google 电子表格。

class airflow.providers.google.suite.transfers.gcs_to_sheets.GCSToGoogleSheetsOperator(*, spreadsheet_id, bucket_name, object_name, spreadsheet_range='Sheet1', gcp_conn_id='google_cloud_default', impersonation_chain=None, **kwargs)[源代码]

基类:airflow.models.BaseOperator

将 .csv 文件从 Google Cloud Storage 上传到提供的 Google 电子表格。

参见

有关如何使用此操作符的更多信息,请查看以下指南: 将数据从 GCS 上传到 Google Sheets

参数
  • spreadsheet_id (str) – 要与之交互的 Google Sheet ID。

  • bucket_name (str) – GCS 存储桶的名称。

  • object_name (str) – GCS 存储桶上 .csv 文件的路径。

  • spreadsheet_range (str) – 要检索的值的 A1 表示法。

  • 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', 'bucket_name', 'object_name', 'spreadsheet_range', 'impersonation_chain')[源代码]
execute(context)[源代码]

在创建操作符时派生。

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

请参阅 get_template_context 以获取更多上下文。

此条目是否有帮助?