tencentcloud-sdk-nodejs-dlc 4.1.113 → 4.1.115

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-dlc",
3
- "version": "4.1.113",
3
+ "version": "4.1.115",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -449,7 +449,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
449
449
  /**
450
450
  * 本接口(DescribeTablePartitions)用于查询数据表分区信息
451
451
  */
452
- DescribeTablePartitions(req?: DescribeTablePartitionsRequest, cb?: (error: string, rep: DescribeTablePartitionsResponse) => void): Promise<DescribeTablePartitionsResponse>;
452
+ DescribeTablePartitions(req: DescribeTablePartitionsRequest, cb?: (error: string, rep: DescribeTablePartitionsResponse) => void): Promise<DescribeTablePartitionsResponse>;
453
453
  /**
454
454
  * 本接口(CheckDataEngineImageCanBeRollback)用于查看集群是否能回滚。
455
455
  */
@@ -258,6 +258,31 @@ export interface PythonSparkImage {
258
258
  */
259
259
  UpdateTime?: string;
260
260
  }
261
+ /**
262
+ * DLC分区信息查询返回数据结构
263
+ */
264
+ export interface MixedTablePartitions {
265
+ /**
266
+ * 数据表格式
267
+ */
268
+ TableFormat?: string;
269
+ /**
270
+ * 分区总数
271
+ */
272
+ TotalSize?: number;
273
+ /**
274
+ * 分页查询的游标信息,在获取下一页信息时需要回传到服务端
275
+ */
276
+ NextCursor?: string;
277
+ /**
278
+ * iceberg表分区信息
279
+ */
280
+ IcebergPartitions?: Array<IcebergTablePartition>;
281
+ /**
282
+ * hive表分区信息
283
+ */
284
+ HivePartitions?: Array<HiveTablePartition>;
285
+ }
261
286
  /**
262
287
  * ModifyGovernEventRule返回参数结构体
263
288
  */
@@ -1261,6 +1286,19 @@ export interface DescribeSparkSessionBatchSQLRequest {
1261
1286
  */
1262
1287
  CustomKey?: string;
1263
1288
  }
1289
+ /**
1290
+ * Location信息结构
1291
+ */
1292
+ export interface LocationInfo {
1293
+ /**
1294
+ * 桶名称
1295
+ */
1296
+ Bucket?: string;
1297
+ /**
1298
+ * location路径
1299
+ */
1300
+ DataLocation?: string;
1301
+ }
1264
1302
  /**
1265
1303
  * UpdateEngineResourceGroupNetworkConfigInfo请求参数结构体
1266
1304
  */
@@ -3103,7 +3141,40 @@ export interface SparkSessionBatchLogOperate {
3103
3141
  /**
3104
3142
  * DescribeTablePartitions请求参数结构体
3105
3143
  */
3106
- export declare type DescribeTablePartitionsRequest = null;
3144
+ export interface DescribeTablePartitionsRequest {
3145
+ /**
3146
+ * 数据目录名称
3147
+ */
3148
+ Catalog: string;
3149
+ /**
3150
+ * 数据库名称
3151
+ */
3152
+ Database: string;
3153
+ /**
3154
+ * 数据表名称
3155
+ */
3156
+ Table: string;
3157
+ /**
3158
+ * 查询偏移位置
3159
+ */
3160
+ Offset: number;
3161
+ /**
3162
+ * 当次查询的数量限制
3163
+ */
3164
+ Limit: number;
3165
+ /**
3166
+ * 模糊查询的分区名称
3167
+ */
3168
+ FuzzyPartition?: string;
3169
+ /**
3170
+ * 排序信息
3171
+ */
3172
+ Sorts?: Array<Sort>;
3173
+ /**
3174
+ * 分页查询的游标信息
3175
+ */
3176
+ Cursor?: string;
3177
+ }
3107
3178
  /**
3108
3179
  * Spark监控数据
3109
3180
  */
@@ -7985,6 +8056,19 @@ export interface GenerateCreateMangedTableSqlRequest {
7985
8056
  */
7986
8057
  UpsertKeys?: Array<string>;
7987
8058
  }
8059
+ /**
8060
+ * 排序结构
8061
+ */
8062
+ export interface Sort {
8063
+ /**
8064
+ * 排序字段
8065
+ */
8066
+ Field: string;
8067
+ /**
8068
+ * 是否按照ASC排序,否则DESC排序
8069
+ */
8070
+ Asc: boolean;
8071
+ }
7988
8072
  /**
7989
8073
  * statement信息
7990
8074
  */
@@ -9355,6 +9439,10 @@ export interface CheckDataEngineConfigPairsValidityRequest {
9355
9439
  * DescribeTablePartitions返回参数结构体
9356
9440
  */
9357
9441
  export interface DescribeTablePartitionsResponse {
9442
+ /**
9443
+ * 分区信息值
9444
+ */
9445
+ MixedPartitions?: MixedTablePartitions;
9358
9446
  /**
9359
9447
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9360
9448
  */
@@ -10338,6 +10426,35 @@ export interface DescribeSparkAppJobResponse {
10338
10426
  */
10339
10427
  RequestId?: string;
10340
10428
  }
10429
+ /**
10430
+ * Hive表分区信息
10431
+ */
10432
+ export interface HiveTablePartition {
10433
+ /**
10434
+ * 分区信息名称
10435
+ */
10436
+ Partition?: string;
10437
+ /**
10438
+ * 分区记录数
10439
+ */
10440
+ Records?: number;
10441
+ /**
10442
+ * 分区数据文件存储量
10443
+ */
10444
+ DataFileStorage?: number;
10445
+ /**
10446
+ * 分区创建时间
10447
+ */
10448
+ CreateTime?: string;
10449
+ /**
10450
+ * 分区schema更新时间
10451
+ */
10452
+ ModifiedTime?: string;
10453
+ /**
10454
+ * 最后一次分区更新的访问时间
10455
+ */
10456
+ LastAccessTime?: string;
10457
+ }
10341
10458
  /**
10342
10459
  * UDF权限信息
10343
10460
  */
@@ -11691,6 +11808,43 @@ export interface DescribeDMSTableRequest {
11691
11808
  * ModifyGovernEventRule请求参数结构体
11692
11809
  */
11693
11810
  export declare type ModifyGovernEventRuleRequest = null;
11811
+ /**
11812
+ * Iceberg表分区信息
11813
+ */
11814
+ export interface IcebergTablePartition {
11815
+ /**
11816
+ * 分区信息名称
11817
+ */
11818
+ Partition?: string;
11819
+ /**
11820
+ * 分区记录数
11821
+ */
11822
+ Records?: number;
11823
+ /**
11824
+ * 分区数据文件数量
11825
+ */
11826
+ DataFileSize?: number;
11827
+ /**
11828
+ * 分区数据文件存储量
11829
+ */
11830
+ DataFileStorage?: number;
11831
+ /**
11832
+ * 分区创建时间
11833
+ */
11834
+ CreateTime?: string;
11835
+ /**
11836
+ * 分区更新时间
11837
+ */
11838
+ UpdateTime?: string;
11839
+ /**
11840
+ * 最后一次分区更新的快照ID
11841
+ */
11842
+ LastUpdateSnapshotId?: string;
11843
+ /**
11844
+ * 分区的location
11845
+ */
11846
+ Location?: LocationInfo;
11847
+ }
11694
11848
  /**
11695
11849
  * 数据库对象
11696
11850
  */