tencentcloud-sdk-nodejs-dlc 4.0.727 → 4.0.729

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.
@@ -289,6 +289,21 @@ export interface DescribeDatabasesRequest {
289
289
  */
290
290
  Asc?: boolean;
291
291
  }
292
+ /**
293
+ * ip端口对信息
294
+ */
295
+ export interface IpPortPair {
296
+ /**
297
+ * ip信息
298
+ 注意:此字段可能返回 null,表示取不到有效值。
299
+ */
300
+ Ip?: string;
301
+ /**
302
+ * 端口信息
303
+ 注意:此字段可能返回 null,表示取不到有效值。
304
+ */
305
+ Port?: number;
306
+ }
292
307
  /**
293
308
  * 工作组部分信息
294
309
  */
@@ -934,19 +949,38 @@ export interface SwitchDataEngineRequest {
934
949
  StartStandbyCluster: boolean;
935
950
  }
936
951
  /**
937
- * ip端口对信息
952
+ * DescribeDataEngineEvents返回参数结构体
938
953
  */
939
- export interface IpPortPair {
954
+ export interface DescribeDataEngineEventsResponse {
940
955
  /**
941
- * ip信息
956
+ * 事件详细信息
942
957
  注意:此字段可能返回 null,表示取不到有效值。
943
958
  */
944
- Ip?: string;
959
+ Events: Array<HouseEventsInfo>;
945
960
  /**
946
- * 端口信息
961
+ * 分页号
947
962
  注意:此字段可能返回 null,表示取不到有效值。
948
963
  */
949
- Port?: number;
964
+ Page: number;
965
+ /**
966
+ * 分页大小
967
+ 注意:此字段可能返回 null,表示取不到有效值。
968
+ */
969
+ Size: number;
970
+ /**
971
+ * 总页数
972
+ 注意:此字段可能返回 null,表示取不到有效值。
973
+ */
974
+ TotalPages: number;
975
+ /**
976
+ * 总条数
977
+ 注意:此字段可能返回 null,表示取不到有效值。
978
+ */
979
+ TotalCount: number;
980
+ /**
981
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
982
+ */
983
+ RequestId?: string;
950
984
  }
951
985
  /**
952
986
  * DeleteSparkApp请求参数结构体
@@ -2562,41 +2596,35 @@ export interface DescribeDatabasesResponse {
2562
2596
  RequestId?: string;
2563
2597
  }
2564
2598
  /**
2565
- * 元数据加锁内容
2599
+ * DescribeNotebookSessionStatementSqlResult返回参数结构体
2566
2600
  */
2567
- export interface LockComponentInfo {
2568
- /**
2569
- * 数据库名称
2570
- */
2571
- DbName: string;
2572
- /**
2573
- * 表名称
2574
- */
2575
- TableName?: string;
2601
+ export interface DescribeNotebookSessionStatementSqlResultResponse {
2576
2602
  /**
2577
- * 分区
2603
+ * 任务Id
2578
2604
  */
2579
- Partition?: string;
2605
+ TaskId?: string;
2580
2606
  /**
2581
- * 锁类型:SHARED_READ、SHARED_WRITE、EXCLUSIVE
2607
+ * 结果数据
2582
2608
  */
2583
- LockType?: string;
2609
+ ResultSet?: string;
2584
2610
  /**
2585
- * 锁级别:DB、TABLE、PARTITION
2611
+ * schema
2586
2612
  */
2587
- LockLevel?: string;
2613
+ ResultSchema?: Array<Column>;
2588
2614
  /**
2589
- * 锁操作:SELECT,INSERT,UPDATE,DELETE,UNSET,NO_TXN
2615
+ * 分页信息
2616
+ 注意:此字段可能返回 null,表示取不到有效值。
2590
2617
  */
2591
- DataOperationType?: string;
2618
+ NextToken?: string;
2592
2619
  /**
2593
- * 是否保持Acid
2620
+ * 存储结果地址
2621
+ 注意:此字段可能返回 null,表示取不到有效值。
2594
2622
  */
2595
- IsAcid?: boolean;
2623
+ OutputPath?: string;
2596
2624
  /**
2597
- * 是否动态分区写
2625
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2598
2626
  */
2599
- IsDynamicPartitionWrite?: boolean;
2627
+ RequestId?: string;
2600
2628
  }
2601
2629
  /**
2602
2630
  * DescribeNotebookSessions返回参数结构体
@@ -3213,13 +3241,41 @@ export interface DescribeAdvancedStoreLocationResponse {
3213
3241
  RequestId?: string;
3214
3242
  }
3215
3243
  /**
3216
- * UpgradeDataEngineImage请求参数结构体
3244
+ * 元数据加锁内容
3217
3245
  */
3218
- export interface UpgradeDataEngineImageRequest {
3246
+ export interface LockComponentInfo {
3219
3247
  /**
3220
- * 引擎ID
3248
+ * 数据库名称
3221
3249
  */
3222
- DataEngineId: string;
3250
+ DbName: string;
3251
+ /**
3252
+ * 表名称
3253
+ */
3254
+ TableName?: string;
3255
+ /**
3256
+ * 分区
3257
+ */
3258
+ Partition?: string;
3259
+ /**
3260
+ * 锁类型:SHARED_READ、SHARED_WRITE、EXCLUSIVE
3261
+ */
3262
+ LockType?: string;
3263
+ /**
3264
+ * 锁级别:DB、TABLE、PARTITION
3265
+ */
3266
+ LockLevel?: string;
3267
+ /**
3268
+ * 锁操作:SELECT,INSERT,UPDATE,DELETE,UNSET,NO_TXN
3269
+ */
3270
+ DataOperationType?: string;
3271
+ /**
3272
+ * 是否保持Acid
3273
+ */
3274
+ IsAcid?: boolean;
3275
+ /**
3276
+ * 是否动态分区写
3277
+ */
3278
+ IsDynamicPartitionWrite?: boolean;
3223
3279
  }
3224
3280
  /**
3225
3281
  * CSV类型数据格式
@@ -5816,35 +5872,21 @@ export interface CancelSparkSessionBatchSQLResponse {
5816
5872
  RequestId?: string;
5817
5873
  }
5818
5874
  /**
5819
- * DescribeNotebookSessionStatementSqlResult返回参数结构体
5875
+ * DescribeDataEngineEvents请求参数结构体
5820
5876
  */
5821
- export interface DescribeNotebookSessionStatementSqlResultResponse {
5822
- /**
5823
- * 任务Id
5824
- */
5825
- TaskId?: string;
5826
- /**
5827
- * 结果数据
5828
- */
5829
- ResultSet?: string;
5830
- /**
5831
- * schema
5832
- */
5833
- ResultSchema?: Array<Column>;
5877
+ export interface DescribeDataEngineEventsRequest {
5834
5878
  /**
5835
- * 分页信息
5836
- 注意:此字段可能返回 null,表示取不到有效值。
5879
+ * 虚拟集群名称
5837
5880
  */
5838
- NextToken?: string;
5881
+ DataEngineName: string;
5839
5882
  /**
5840
- * 存储结果地址
5841
- 注意:此字段可能返回 null,表示取不到有效值。
5883
+ * 返回数量,默认为10,最大为100
5842
5884
  */
5843
- OutputPath?: string;
5885
+ Limit?: number;
5844
5886
  /**
5845
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5887
+ * 偏移量,默认为0
5846
5888
  */
5847
- RequestId?: string;
5889
+ Offset?: number;
5848
5890
  }
5849
5891
  /**
5850
5892
  * 迁移元数据分区对象
@@ -5993,6 +6035,15 @@ export interface WorkGroupDetailInfo {
5993
6035
  */
5994
6036
  RowFilterInfo: Policys;
5995
6037
  }
6038
+ /**
6039
+ * UpgradeDataEngineImage请求参数结构体
6040
+ */
6041
+ export interface UpgradeDataEngineImageRequest {
6042
+ /**
6043
+ * 引擎ID
6044
+ */
6045
+ DataEngineId: string;
6046
+ }
5996
6047
  /**
5997
6048
  * SuspendResumeDataEngine返回参数结构体
5998
6049
  */
@@ -7510,6 +7561,26 @@ export interface DescribeNotebookSessionStatementsRequest {
7510
7561
  */
7511
7562
  BatchId: string;
7512
7563
  }
7564
+ /**
7565
+ * 集群事件日志
7566
+ */
7567
+ export interface HouseEventsInfo {
7568
+ /**
7569
+ * 事件时间
7570
+ 注意:此字段可能返回 null,表示取不到有效值。
7571
+ */
7572
+ Time: Array<string>;
7573
+ /**
7574
+ * 事件类型
7575
+ 注意:此字段可能返回 null,表示取不到有效值。
7576
+ */
7577
+ EventsAction: Array<string>;
7578
+ /**
7579
+ * 集群信息
7580
+ 注意:此字段可能返回 null,表示取不到有效值。
7581
+ */
7582
+ ClusterInfo: Array<string>;
7583
+ }
7513
7584
  /**
7514
7585
  * AlterDMSDatabase请求参数结构体
7515
7586
  */