airflow.providers.google.suite.operators.sheets

模块内容

GoogleSheetsCreateSpreadsheetOperator

创建一个新的电子表格。

class airflow.providers.google.suite.operators.sheets.GoogleSheetsCreateSpreadsheetOperator(*, spreadsheet, gcp_conn_id='google_cloud_default', impersonation_chain=None, **kwargs)[源代码]

基类: airflow.models.BaseOperator

创建一个新的电子表格。

另请参阅

有关如何使用此操作符的更多信息,请查看指南:创建电子表格

参数
  • spreadsheet (dict[str, Any]) – Spreadsheet 的实例 https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets#Spreadsheet

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

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

template_fields: collections.abc.Sequence[str] = ('spreadsheet', 'impersonation_chain')[源代码]
execute(context)[源代码]

在创建操作符时派生。

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

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

此条目是否有帮助?