tencentcloud-sdk-nodejs-dlc 4.0.376 → 4.0.379
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 +605 -0
- package/SERVICE_CHANGELOG.md +1006 -210
- package/package.json +1 -1
- package/products.md +42 -41
- package/src/services/dlc/v20210125/dlc_client.ts +3 -3
- package/src/services/dlc/v20210125/dlc_models.ts +218 -6
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +3 -3
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +182 -6
|
@@ -161,6 +161,26 @@ export interface ReportHeartbeatMetaDataRequest {
|
|
|
161
161
|
* DescribeDMSDatabase返回参数结构体
|
|
162
162
|
*/
|
|
163
163
|
export interface DescribeDMSDatabaseResponse {
|
|
164
|
+
/**
|
|
165
|
+
* 数据库名称
|
|
166
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
167
|
+
*/
|
|
168
|
+
Name: string;
|
|
169
|
+
/**
|
|
170
|
+
* schema名称
|
|
171
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
172
|
+
*/
|
|
173
|
+
SchemaName: string;
|
|
174
|
+
/**
|
|
175
|
+
* 存储地址
|
|
176
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
177
|
+
*/
|
|
178
|
+
Location: string;
|
|
179
|
+
/**
|
|
180
|
+
* 数据对象
|
|
181
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
182
|
+
*/
|
|
183
|
+
Asset: Asset;
|
|
164
184
|
/**
|
|
165
185
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
166
186
|
*/
|
|
@@ -169,7 +189,20 @@ export interface DescribeDMSDatabaseResponse {
|
|
|
169
189
|
/**
|
|
170
190
|
* DropDMSDatabase请求参数结构体
|
|
171
191
|
*/
|
|
172
|
-
export
|
|
192
|
+
export interface DropDMSDatabaseRequest {
|
|
193
|
+
/**
|
|
194
|
+
* 数据库名称
|
|
195
|
+
*/
|
|
196
|
+
Name: string;
|
|
197
|
+
/**
|
|
198
|
+
* 是否删除数据
|
|
199
|
+
*/
|
|
200
|
+
DeleteData?: boolean;
|
|
201
|
+
/**
|
|
202
|
+
* 是否级联删除
|
|
203
|
+
*/
|
|
204
|
+
Cascade?: boolean;
|
|
205
|
+
}
|
|
173
206
|
/**
|
|
174
207
|
* CreateScript返回参数结构体
|
|
175
208
|
*/
|
|
@@ -329,10 +362,30 @@ export interface SparkJobInfo {
|
|
|
329
362
|
*/
|
|
330
363
|
IsLocalPythonFiles: string;
|
|
331
364
|
/**
|
|
332
|
-
*
|
|
365
|
+
* 注:该返回值已废弃
|
|
333
366
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
334
367
|
*/
|
|
335
368
|
AppPythonFiles: string;
|
|
369
|
+
/**
|
|
370
|
+
* archives:依赖上传方式,1、cos;2、lakefs(控制台使用,该方式不支持直接接口调用)
|
|
371
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
372
|
+
*/
|
|
373
|
+
IsLocalArchives: string;
|
|
374
|
+
/**
|
|
375
|
+
* archives:依赖资源
|
|
376
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
377
|
+
*/
|
|
378
|
+
JobArchives: string;
|
|
379
|
+
/**
|
|
380
|
+
* pyspark:python依赖, 除py文件外,还支持zip/egg等归档格式,多文件以逗号分隔
|
|
381
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
382
|
+
*/
|
|
383
|
+
JobPythonFiles: string;
|
|
384
|
+
/**
|
|
385
|
+
* 当前job正在运行或准备运行的任务个数
|
|
386
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
387
|
+
*/
|
|
388
|
+
TaskNum: number;
|
|
336
389
|
}
|
|
337
390
|
/**
|
|
338
391
|
* DeleteSparkApp请求参数结构体
|
|
@@ -736,6 +789,14 @@ export interface ModifySparkAppRequest {
|
|
|
736
789
|
* 数据源名
|
|
737
790
|
*/
|
|
738
791
|
DataSource?: string;
|
|
792
|
+
/**
|
|
793
|
+
* archives:依赖上传方式,1、cos;2、lakefs(控制台使用,该方式不支持直接接口调用)
|
|
794
|
+
*/
|
|
795
|
+
IsLocalArchives?: string;
|
|
796
|
+
/**
|
|
797
|
+
* archives:依赖资源
|
|
798
|
+
*/
|
|
799
|
+
AppArchives?: string;
|
|
739
800
|
}
|
|
740
801
|
/**
|
|
741
802
|
* spark流任务统计信息
|
|
@@ -889,7 +950,68 @@ export interface CheckLockMetaDataRequest {
|
|
|
889
950
|
/**
|
|
890
951
|
* 元数据基本对象
|
|
891
952
|
*/
|
|
892
|
-
export
|
|
953
|
+
export interface Asset {
|
|
954
|
+
/**
|
|
955
|
+
* 主键
|
|
956
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
957
|
+
*/
|
|
958
|
+
Id?: number;
|
|
959
|
+
/**
|
|
960
|
+
* 名称
|
|
961
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
962
|
+
*/
|
|
963
|
+
Name?: string;
|
|
964
|
+
/**
|
|
965
|
+
* 对象GUID值
|
|
966
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
967
|
+
*/
|
|
968
|
+
Guid?: string;
|
|
969
|
+
/**
|
|
970
|
+
* 数据目录
|
|
971
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
972
|
+
*/
|
|
973
|
+
Catalog?: string;
|
|
974
|
+
/**
|
|
975
|
+
* 描述信息
|
|
976
|
+
*/
|
|
977
|
+
Description?: string;
|
|
978
|
+
/**
|
|
979
|
+
* 对象owner
|
|
980
|
+
*/
|
|
981
|
+
Owner?: string;
|
|
982
|
+
/**
|
|
983
|
+
* 对象owner账户
|
|
984
|
+
*/
|
|
985
|
+
OwnerAccount?: string;
|
|
986
|
+
/**
|
|
987
|
+
* 权限
|
|
988
|
+
*/
|
|
989
|
+
PermValues?: Array<KVPair>;
|
|
990
|
+
/**
|
|
991
|
+
* 附加属性
|
|
992
|
+
*/
|
|
993
|
+
Params?: Array<KVPair>;
|
|
994
|
+
/**
|
|
995
|
+
* 附加业务属性
|
|
996
|
+
*/
|
|
997
|
+
BizParams?: Array<KVPair>;
|
|
998
|
+
/**
|
|
999
|
+
* 数据版本
|
|
1000
|
+
*/
|
|
1001
|
+
DataVersion?: number;
|
|
1002
|
+
/**
|
|
1003
|
+
* 创建时间
|
|
1004
|
+
*/
|
|
1005
|
+
CreateTime?: string;
|
|
1006
|
+
/**
|
|
1007
|
+
* 修改时间
|
|
1008
|
+
*/
|
|
1009
|
+
ModifiedTime?: string;
|
|
1010
|
+
/**
|
|
1011
|
+
* 数据源主键
|
|
1012
|
+
*/
|
|
1013
|
+
DatasourceId?: number;
|
|
1014
|
+
}
|
|
893
1015
|
/**
|
|
894
1016
|
* CreateDatabase返回参数结构体
|
|
895
1017
|
*/
|
|
@@ -1216,6 +1338,10 @@ export interface DescribeDMSPartitionsRequest {
|
|
|
1216
1338
|
* 页面数量
|
|
1217
1339
|
*/
|
|
1218
1340
|
Limit?: number;
|
|
1341
|
+
/**
|
|
1342
|
+
* 表达式
|
|
1343
|
+
*/
|
|
1344
|
+
Expression?: string;
|
|
1219
1345
|
}
|
|
1220
1346
|
/**
|
|
1221
1347
|
* DescribeSparkAppJobs请求参数结构体
|
|
@@ -1230,7 +1356,7 @@ export interface DescribeSparkAppJobsRequest {
|
|
|
1230
1356
|
*/
|
|
1231
1357
|
Sorting?: string;
|
|
1232
1358
|
/**
|
|
1233
|
-
*
|
|
1359
|
+
* 按照该参数过滤,支持spark-job-name
|
|
1234
1360
|
*/
|
|
1235
1361
|
Filters?: Array<Filter>;
|
|
1236
1362
|
/**
|
|
@@ -2862,7 +2988,20 @@ export interface UnbindWorkGroupsFromUserRequest {
|
|
|
2862
2988
|
/**
|
|
2863
2989
|
* DescribeDMSDatabase请求参数结构体
|
|
2864
2990
|
*/
|
|
2865
|
-
export
|
|
2991
|
+
export interface DescribeDMSDatabaseRequest {
|
|
2992
|
+
/**
|
|
2993
|
+
* 数据库名称
|
|
2994
|
+
*/
|
|
2995
|
+
Name?: string;
|
|
2996
|
+
/**
|
|
2997
|
+
* schema名称
|
|
2998
|
+
*/
|
|
2999
|
+
SchemaName?: string;
|
|
3000
|
+
/**
|
|
3001
|
+
* 匹配规则
|
|
3002
|
+
*/
|
|
3003
|
+
Pattern?: string;
|
|
3004
|
+
}
|
|
2866
3005
|
/**
|
|
2867
3006
|
* DescribeTable请求参数结构体
|
|
2868
3007
|
*/
|
|
@@ -3413,6 +3552,14 @@ export interface CreateSparkAppRequest {
|
|
|
3413
3552
|
* pyspark:python依赖, 除py文件外,还支持zip/egg等归档格式,多文件以逗号分隔
|
|
3414
3553
|
*/
|
|
3415
3554
|
AppPythonFiles?: string;
|
|
3555
|
+
/**
|
|
3556
|
+
* archives:依赖上传方式,1、cos;2、lakefs(控制台使用,该方式不支持直接接口调用)
|
|
3557
|
+
*/
|
|
3558
|
+
IsLocalArchives?: string;
|
|
3559
|
+
/**
|
|
3560
|
+
* archives:依赖资源
|
|
3561
|
+
*/
|
|
3562
|
+
AppArchives?: string;
|
|
3416
3563
|
}
|
|
3417
3564
|
/**
|
|
3418
3565
|
* UnbindWorkGroupsFromUser返回参数结构体
|
|
@@ -3524,7 +3671,24 @@ export interface CheckLockMetaDataResponse {
|
|
|
3524
3671
|
/**
|
|
3525
3672
|
* AlterDMSDatabase请求参数结构体
|
|
3526
3673
|
*/
|
|
3527
|
-
export
|
|
3674
|
+
export interface AlterDMSDatabaseRequest {
|
|
3675
|
+
/**
|
|
3676
|
+
* 当前名称
|
|
3677
|
+
*/
|
|
3678
|
+
CurrentName?: string;
|
|
3679
|
+
/**
|
|
3680
|
+
* schema名称
|
|
3681
|
+
*/
|
|
3682
|
+
SchemaName?: string;
|
|
3683
|
+
/**
|
|
3684
|
+
* 路径
|
|
3685
|
+
*/
|
|
3686
|
+
Location?: string;
|
|
3687
|
+
/**
|
|
3688
|
+
* 基础对象
|
|
3689
|
+
*/
|
|
3690
|
+
Asset?: Asset;
|
|
3691
|
+
}
|
|
3528
3692
|
/**
|
|
3529
3693
|
* SQL查询任务
|
|
3530
3694
|
*/
|
|
@@ -3590,6 +3754,18 @@ export interface AttachUserPolicyResponse {
|
|
|
3590
3754
|
* CreateDMSDatabase请求参数结构体
|
|
3591
3755
|
*/
|
|
3592
3756
|
export interface CreateDMSDatabaseRequest {
|
|
3757
|
+
/**
|
|
3758
|
+
* 基础元数据对象
|
|
3759
|
+
*/
|
|
3760
|
+
Asset?: Asset;
|
|
3761
|
+
/**
|
|
3762
|
+
* Schema目录
|
|
3763
|
+
*/
|
|
3764
|
+
SchemaName?: string;
|
|
3765
|
+
/**
|
|
3766
|
+
* Db存储路径
|
|
3767
|
+
*/
|
|
3768
|
+
Location?: string;
|
|
3593
3769
|
/**
|
|
3594
3770
|
* 数据库名称
|
|
3595
3771
|
*/
|