GetGoogleSheets 2025.5.31.15¶
捆绑包¶
com.snowflake.openflow.runtime | runtime-google-sheets-processors-nar
描述¶
负责从 Google 表格中提取数据的处理器。默认情况下,每天提取一次数据。
输入要求¶
FORBIDDEN
支持敏感的动态属性¶
false
属性¶
属性 |
描述 |
---|---|
日期时间呈现选项 |
确定应如何在输出中呈现日期。 |
GCP 凭据服务 |
用于获取 Google Cloud Platform 凭据的控制器服务。 |
范围 |
要从中检索值的范围,使用 A1 或 R1C1 表示法,并以逗号分隔。例如:Sheet1!A1:B2,Sheet2!D4:E5,Sheet3。工作表的第一行必须代表列名。如果未指定,则将下载所有工作表。 |
电子表格 ID |
Google 表格电子表格的 ID。可在电子表格的 URL 中找到。 |
数值呈现选项 |
确定应如何在输出中呈现值。 |
关系¶
名称 |
描述 |
---|---|
failure |
从 Google 表格提取时发生错误的 FlowFile。 |
success |
FlowFile 包含一个 JSON 数组,其中每个对象代表源表中的一行。键对应于第一行的列标题,值对应于相应的行条目。 |
写入属性¶
名称 |
描述 |
---|---|
google.sheets.spreadsheet.id |
Google 表格电子表格的 ID。 |
google.sheets.range |
从 Google 表格中提取的数据范围。 |
run.id |
每次引入运行的唯一 ID。允许识别单次运行期间生成的所有 FlowFile。 |
destination.table.schema |
目标表在 Snowflake 中的架构,格式如下:{ "columns": [ { "name": "<column name>", "type": "<column type>", "nullable": <true/false>, "precision": <precision, only for numeric type>, "scale": <scale, only for numeric type> }, ... ], "primaryKeys": ["<name of first primary key column>", "<name of second primary key column>", ...] } |