tencentcloud-sdk-nodejs-dlc 4.0.532 → 4.0.534
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/CHANGELOG.md +585 -0
- package/SERVICE_CHANGELOG.md +713 -40
- package/package.json +1 -1
- package/products.md +29 -28
- package/src/services/dlc/v20210125/dlc_client.ts +26 -0
- package/src/services/dlc/v20210125/dlc_models.ts +183 -5
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +9 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +12 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +153 -5
|
@@ -225,6 +225,15 @@ export interface CreateResultDownloadResponse {
|
|
|
225
225
|
*/
|
|
226
226
|
RequestId?: string;
|
|
227
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* ModifyGovernEventRule返回参数结构体
|
|
230
|
+
*/
|
|
231
|
+
export interface ModifyGovernEventRuleResponse {
|
|
232
|
+
/**
|
|
233
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
234
|
+
*/
|
|
235
|
+
RequestId?: string;
|
|
236
|
+
}
|
|
228
237
|
/**
|
|
229
238
|
* CreateDMSDatabase返回参数结构体
|
|
230
239
|
*/
|
|
@@ -346,7 +355,7 @@ export interface DescribeTablesResponse {
|
|
|
346
355
|
RequestId?: string;
|
|
347
356
|
}
|
|
348
357
|
/**
|
|
349
|
-
* spark
|
|
358
|
+
* spark作业详情。
|
|
350
359
|
*/
|
|
351
360
|
export interface SparkJobInfo {
|
|
352
361
|
/**
|
|
@@ -475,6 +484,11 @@ export interface SparkJobInfo {
|
|
|
475
484
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
476
485
|
*/
|
|
477
486
|
JobArchives: string;
|
|
487
|
+
/**
|
|
488
|
+
* Spark Image 版本
|
|
489
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
490
|
+
*/
|
|
491
|
+
SparkImage: string;
|
|
478
492
|
/**
|
|
479
493
|
* pyspark:python依赖, 除py文件外,还支持zip/egg等归档格式,多文件以逗号分隔
|
|
480
494
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -490,6 +504,11 @@ export interface SparkJobInfo {
|
|
|
490
504
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
491
505
|
*/
|
|
492
506
|
DataEngineStatus: number;
|
|
507
|
+
/**
|
|
508
|
+
* 指定的Executor数量(最大值),默认为1,当开启动态分配有效,若未开启,则该值等于JobExecutorNums
|
|
509
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
510
|
+
*/
|
|
511
|
+
JobExecutorMaxNumbers?: number;
|
|
493
512
|
}
|
|
494
513
|
/**
|
|
495
514
|
* SuspendResumeDataEngine返回参数结构体
|
|
@@ -919,6 +938,18 @@ export interface ModifySparkAppRequest {
|
|
|
919
938
|
* archives:依赖资源
|
|
920
939
|
*/
|
|
921
940
|
AppArchives?: string;
|
|
941
|
+
/**
|
|
942
|
+
* Spark Image 版本
|
|
943
|
+
*/
|
|
944
|
+
SparkImage?: string;
|
|
945
|
+
/**
|
|
946
|
+
* Spark Image 版本名称
|
|
947
|
+
*/
|
|
948
|
+
SparkImageVersion?: string;
|
|
949
|
+
/**
|
|
950
|
+
* 指定的Executor数量(最大值),默认为1,当开启动态分配有效,若未开启,则该值等于AppExecutorNums
|
|
951
|
+
*/
|
|
952
|
+
AppExecutorMaxNumbers?: number;
|
|
922
953
|
}
|
|
923
954
|
/**
|
|
924
955
|
* spark流任务统计信息
|
|
@@ -1256,6 +1287,27 @@ export interface AttachUserPolicyRequest {
|
|
|
1256
1287
|
*/
|
|
1257
1288
|
PolicySet?: Array<Policy>;
|
|
1258
1289
|
}
|
|
1290
|
+
/**
|
|
1291
|
+
* CreateInternalTable请求参数结构体
|
|
1292
|
+
*/
|
|
1293
|
+
export interface CreateInternalTableRequest {
|
|
1294
|
+
/**
|
|
1295
|
+
* 表基本信息
|
|
1296
|
+
*/
|
|
1297
|
+
TableBaseInfo: TableBaseInfo;
|
|
1298
|
+
/**
|
|
1299
|
+
* 表字段信息
|
|
1300
|
+
*/
|
|
1301
|
+
Columns: Array<TColumn>;
|
|
1302
|
+
/**
|
|
1303
|
+
* 表分区信息
|
|
1304
|
+
*/
|
|
1305
|
+
Partitions?: Array<TPartition>;
|
|
1306
|
+
/**
|
|
1307
|
+
* 表属性信息
|
|
1308
|
+
*/
|
|
1309
|
+
Properties?: Array<Property>;
|
|
1310
|
+
}
|
|
1259
1311
|
/**
|
|
1260
1312
|
* ListTaskJobLogDetail请求参数结构体
|
|
1261
1313
|
*/
|
|
@@ -1452,6 +1504,43 @@ export interface DescribeDMSPartitionsRequest {
|
|
|
1452
1504
|
*/
|
|
1453
1505
|
Expression?: string;
|
|
1454
1506
|
}
|
|
1507
|
+
/**
|
|
1508
|
+
* 表分区字段信息
|
|
1509
|
+
*/
|
|
1510
|
+
export interface TPartition {
|
|
1511
|
+
/**
|
|
1512
|
+
* 字段名称
|
|
1513
|
+
*/
|
|
1514
|
+
Name: string;
|
|
1515
|
+
/**
|
|
1516
|
+
* 字段类型
|
|
1517
|
+
*/
|
|
1518
|
+
Type?: string;
|
|
1519
|
+
/**
|
|
1520
|
+
* 字段描述
|
|
1521
|
+
*/
|
|
1522
|
+
Comment?: string;
|
|
1523
|
+
/**
|
|
1524
|
+
* 分区类型
|
|
1525
|
+
*/
|
|
1526
|
+
PartitionType?: string;
|
|
1527
|
+
/**
|
|
1528
|
+
* 分区格式
|
|
1529
|
+
*/
|
|
1530
|
+
PartitionFormat?: string;
|
|
1531
|
+
/**
|
|
1532
|
+
* 分区分隔数
|
|
1533
|
+
*/
|
|
1534
|
+
PartitionDot?: number;
|
|
1535
|
+
/**
|
|
1536
|
+
* 分区转换策略
|
|
1537
|
+
*/
|
|
1538
|
+
Transform?: string;
|
|
1539
|
+
/**
|
|
1540
|
+
* 策略参数
|
|
1541
|
+
*/
|
|
1542
|
+
TransformArgs?: Array<string>;
|
|
1543
|
+
}
|
|
1455
1544
|
/**
|
|
1456
1545
|
* DescribeSparkAppJobs请求参数结构体
|
|
1457
1546
|
*/
|
|
@@ -1722,11 +1811,11 @@ export interface DescribeSparkAppJobResponse {
|
|
|
1722
1811
|
* spark作业详情
|
|
1723
1812
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1724
1813
|
*/
|
|
1725
|
-
Job
|
|
1814
|
+
Job?: SparkJobInfo;
|
|
1726
1815
|
/**
|
|
1727
1816
|
* 查询的spark作业是否存在
|
|
1728
1817
|
*/
|
|
1729
|
-
IsExists
|
|
1818
|
+
IsExists?: boolean;
|
|
1730
1819
|
/**
|
|
1731
1820
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1732
1821
|
*/
|
|
@@ -3530,6 +3619,11 @@ export interface DMSColumnOrder {
|
|
|
3530
3619
|
* CreateSparkApp返回参数结构体
|
|
3531
3620
|
*/
|
|
3532
3621
|
export interface CreateSparkAppResponse {
|
|
3622
|
+
/**
|
|
3623
|
+
* App唯一标识
|
|
3624
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3625
|
+
*/
|
|
3626
|
+
SparkAppId?: string;
|
|
3533
3627
|
/**
|
|
3534
3628
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3535
3629
|
*/
|
|
@@ -3621,11 +3715,11 @@ export interface DescribeSparkAppJobsResponse {
|
|
|
3621
3715
|
/**
|
|
3622
3716
|
* spark作业列表详情
|
|
3623
3717
|
*/
|
|
3624
|
-
SparkAppJobs
|
|
3718
|
+
SparkAppJobs?: Array<SparkJobInfo>;
|
|
3625
3719
|
/**
|
|
3626
3720
|
* spark作业总数
|
|
3627
3721
|
*/
|
|
3628
|
-
TotalCount
|
|
3722
|
+
TotalCount?: number;
|
|
3629
3723
|
/**
|
|
3630
3724
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3631
3725
|
*/
|
|
@@ -3947,6 +4041,18 @@ export interface CreateSparkAppRequest {
|
|
|
3947
4041
|
* archives:依赖资源
|
|
3948
4042
|
*/
|
|
3949
4043
|
AppArchives?: string;
|
|
4044
|
+
/**
|
|
4045
|
+
* Spark Image 版本
|
|
4046
|
+
*/
|
|
4047
|
+
SparkImage?: string;
|
|
4048
|
+
/**
|
|
4049
|
+
* Spark Image 版本名称
|
|
4050
|
+
*/
|
|
4051
|
+
SparkImageVersion?: string;
|
|
4052
|
+
/**
|
|
4053
|
+
* 指定的Executor数量(最大值),默认为1,当开启动态分配有效,若未开启,则该值等于AppExecutorNums
|
|
4054
|
+
*/
|
|
4055
|
+
AppExecutorMaxNumbers?: number;
|
|
3950
4056
|
}
|
|
3951
4057
|
/**
|
|
3952
4058
|
* UnbindWorkGroupsFromUser返回参数结构体
|
|
@@ -4000,6 +4106,19 @@ export interface CreateWorkGroupRequest {
|
|
|
4000
4106
|
*/
|
|
4001
4107
|
UserIds?: Array<string>;
|
|
4002
4108
|
}
|
|
4109
|
+
/**
|
|
4110
|
+
* CreateInternalTable返回参数结构体
|
|
4111
|
+
*/
|
|
4112
|
+
export interface CreateInternalTableResponse {
|
|
4113
|
+
/**
|
|
4114
|
+
* 创建托管存储内表sql语句描述
|
|
4115
|
+
*/
|
|
4116
|
+
Execution: string;
|
|
4117
|
+
/**
|
|
4118
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4119
|
+
*/
|
|
4120
|
+
RequestId?: string;
|
|
4121
|
+
}
|
|
4003
4122
|
/**
|
|
4004
4123
|
* DescribeSparkAppTasks请求参数结构体
|
|
4005
4124
|
*/
|
|
@@ -4224,6 +4343,10 @@ export interface DescribeDMSTableRequest {
|
|
|
4224
4343
|
*/
|
|
4225
4344
|
Type?: string;
|
|
4226
4345
|
}
|
|
4346
|
+
/**
|
|
4347
|
+
* ModifyGovernEventRule请求参数结构体
|
|
4348
|
+
*/
|
|
4349
|
+
export declare type ModifyGovernEventRuleRequest = null;
|
|
4227
4350
|
/**
|
|
4228
4351
|
* DescribeViews返回参数结构体
|
|
4229
4352
|
*/
|
|
@@ -4353,6 +4476,31 @@ export interface DMSColumn {
|
|
|
4353
4476
|
*/
|
|
4354
4477
|
IsPartition?: boolean;
|
|
4355
4478
|
}
|
|
4479
|
+
/**
|
|
4480
|
+
* 表字段描述信息
|
|
4481
|
+
*/
|
|
4482
|
+
export interface TColumn {
|
|
4483
|
+
/**
|
|
4484
|
+
* 字段名称
|
|
4485
|
+
*/
|
|
4486
|
+
Name: string;
|
|
4487
|
+
/**
|
|
4488
|
+
* 字段类型
|
|
4489
|
+
*/
|
|
4490
|
+
Type: string;
|
|
4491
|
+
/**
|
|
4492
|
+
* 字段描述
|
|
4493
|
+
*/
|
|
4494
|
+
Comment?: string;
|
|
4495
|
+
/**
|
|
4496
|
+
* 字段默认值
|
|
4497
|
+
*/
|
|
4498
|
+
Default?: string;
|
|
4499
|
+
/**
|
|
4500
|
+
* 字段是否是非空
|
|
4501
|
+
*/
|
|
4502
|
+
NotNull?: boolean;
|
|
4503
|
+
}
|
|
4356
4504
|
/**
|
|
4357
4505
|
* DescribeResultDownload请求参数结构体
|
|
4358
4506
|
*/
|