tencentcloud-sdk-nodejs-wedata 4.1.307 → 4.1.314

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-wedata",
3
- "version": "4.1.307",
3
+ "version": "4.1.314",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -6713,20 +6713,24 @@ export interface ListTriggerTaskVersionsRequest {
6713
6713
  * RunSQLScript请求参数结构体
6714
6714
  */
6715
6715
  export interface RunSQLScriptRequest {
6716
- /**
6717
- * 脚本id
6718
- */
6719
- ScriptId: string;
6720
6716
  /**
6721
6717
  * 项目ID
6722
6718
  */
6723
6719
  ProjectId: string;
6724
6720
  /**
6725
- * 脚本内容,不传则默认执行已保存的全量脚本内容;若传递则要用Base64编码
6721
+ * 脚本id。如果不填则需要传入 ScriptConfig、ScriptContent,此时为免脚本临时运行模式,服务端不保存脚本
6722
+ */
6723
+ ScriptId?: string;
6724
+ /**
6725
+ * 脚本配置。免脚本临时运行模式(未传 ScriptId)下必填,其中 DatasourceId 必填、ExecutorGroupId 选填(缺省时使用项目管理-数据分析配置中的执行资源组);传入 ScriptId 时本字段被忽略,配置取自已保存的脚本
6726
+ */
6727
+ ScriptConfig?: SQLScriptConfig;
6728
+ /**
6729
+ * 脚本内容,支持传递代码原文或者 Base64 编码,服务端自动识别。传 ScriptId 时不传则执行已保存的全量脚本内容;免脚本临时运行模式下必填。注意:若原文恰好由 Base64 字符集组成且长度为 4 的倍数(如 descTBLS),会被识别为已编码,此类内容请显式 Base64 编码后传入
6726
6730
  */
6727
6731
  ScriptContent?: string;
6728
6732
  /**
6729
- * 高级运行参数,JSON格式base64编码
6733
+ * 高级运行参数,支持传递 JSON 格式原文或者 Base64 编码,服务端自动识别。示例:{"executorNum":1} 或 eyJleGVjdXRvck51bSI6MX0=
6730
6734
  */
6731
6735
  Params?: string;
6732
6736
  }
@@ -9492,6 +9496,11 @@ export interface JobExecutionDto {
9492
9496
  注意:此字段可能返回 null,表示取不到有效值。
9493
9497
  */
9494
9498
  ResultPreviewFilePath?: string;
9499
+ /**
9500
+ * 结果集schema信息文件cos路径
9501
+ 注意:此字段可能返回 null,表示取不到有效值。
9502
+ */
9503
+ SchemaInfoFilePath?: string;
9495
9504
  /**
9496
9505
  * 任务执行的结果总行数
9497
9506
  注意:此字段可能返回 null,表示取不到有效值。
@@ -9537,6 +9546,11 @@ export interface JobExecutionDto {
9537
9546
  注意:此字段可能返回 null,表示取不到有效值。
9538
9547
  */
9539
9548
  ScriptContentTruncate?: boolean;
9549
+ /**
9550
+ * 预览结果集是否收集完成
9551
+ 注意:此字段可能返回 null,表示取不到有效值。
9552
+ */
9553
+ CollectedPreviewResult?: boolean;
9540
9554
  }
9541
9555
  /**
9542
9556
  * CreateTaskFolder返回参数结构体