davidzollo commented on code in PR #8706: URL: https://github.com/apache/seatunnel/pull/8706#discussion_r1955785496
########## docs/zh/connector-v2/source/GoogleSheets.md: ########## @@ -0,0 +1,79 @@ +# GoogleSheets + +> GoogleSheets 源连接器 + +## 描述 + +用于从GoogleSheets读取数据. + +## 关键特性 + +- [x] [批处理](../../concept/connector-v2-features.md) +- [ ] [流处理](../../concept/connector-v2-features.md) +- [ ] [精确一次](../../concept/connector-v2-features.md) +- [ ] [列投影](../../concept/connector-v2-features.md) +- [ ] [并行度](../../concept/connector-v2-features.md) +- [ ] [支持用户自定义分片](../../concept/connector-v2-features.md) +- [ ] 文件格式 + - [ ] text + - [ ] csv + - [ ] json + +## 选项 + +| 名称 | 类型 | 必需 | 默认值 | +|---------------------|--------|----------|---------------| +| service_account_key | string | yes | - | +| sheet_id | string | yes | - | +| sheet_name | string | yes | - | +| range | string | yes | - | +| schema | config | no | - | + +### service_account_key [string] + +谷歌云服务帐户,需要base64编码 + +### sheet_id [string] + +Google表格URL中的表格id + +### sheet_name [string] + +要导入的工作表的名称 + +### range [string] + +要导入的图纸范围 Review Comment: `图纸`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
