tencentcloud-sdk-nodejs-dlc 4.0.710 → 4.0.712
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 +364 -0
- package/SERVICE_CHANGELOG.md +396 -68
- package/package.json +1 -1
- package/products.md +27 -27
- package/src/services/dlc/v20210125/dlc_client.ts +28 -3
- package/src/services/dlc/v20210125/dlc_models.ts +104 -27
- 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 +99 -27
|
@@ -691,6 +691,15 @@ export interface CreateScriptResponse {
|
|
|
691
691
|
*/
|
|
692
692
|
RequestId?: string;
|
|
693
693
|
}
|
|
694
|
+
/**
|
|
695
|
+
* ModifyWorkGroup返回参数结构体
|
|
696
|
+
*/
|
|
697
|
+
export interface ModifyWorkGroupResponse {
|
|
698
|
+
/**
|
|
699
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
700
|
+
*/
|
|
701
|
+
RequestId?: string;
|
|
702
|
+
}
|
|
694
703
|
/**
|
|
695
704
|
* CreateTasksInOrder返回参数结构体
|
|
696
705
|
*/
|
|
@@ -1143,6 +1152,19 @@ export interface CrontabResumeSuspendStrategy {
|
|
|
1143
1152
|
*/
|
|
1144
1153
|
SuspendStrategy?: number;
|
|
1145
1154
|
}
|
|
1155
|
+
/**
|
|
1156
|
+
* SwitchDataEngineImage请求参数结构体
|
|
1157
|
+
*/
|
|
1158
|
+
export interface SwitchDataEngineImageRequest {
|
|
1159
|
+
/**
|
|
1160
|
+
* 引擎ID
|
|
1161
|
+
*/
|
|
1162
|
+
DataEngineId: string;
|
|
1163
|
+
/**
|
|
1164
|
+
* 新镜像版本ID
|
|
1165
|
+
*/
|
|
1166
|
+
NewImageVersionId: string;
|
|
1167
|
+
}
|
|
1146
1168
|
/**
|
|
1147
1169
|
* AlterDMSTable返回参数结构体
|
|
1148
1170
|
*/
|
|
@@ -2016,26 +2038,9 @@ export interface AlterDMSPartitionRequest {
|
|
|
2016
2038
|
Partition?: DMSPartition;
|
|
2017
2039
|
}
|
|
2018
2040
|
/**
|
|
2019
|
-
*
|
|
2041
|
+
* DescribeAdvancedStoreLocation请求参数结构体
|
|
2020
2042
|
*/
|
|
2021
|
-
export
|
|
2022
|
-
/**
|
|
2023
|
-
* 该视图所属数据库名字
|
|
2024
|
-
*/
|
|
2025
|
-
DatabaseName: string;
|
|
2026
|
-
/**
|
|
2027
|
-
* 视图名称
|
|
2028
|
-
*/
|
|
2029
|
-
ViewName: string;
|
|
2030
|
-
/**
|
|
2031
|
-
* 视图创建人昵称
|
|
2032
|
-
*/
|
|
2033
|
-
UserAlias?: string;
|
|
2034
|
-
/**
|
|
2035
|
-
* 视图创建人ID
|
|
2036
|
-
*/
|
|
2037
|
-
UserSubUin?: string;
|
|
2038
|
-
}
|
|
2043
|
+
export declare type DescribeAdvancedStoreLocationRequest = null;
|
|
2039
2044
|
/**
|
|
2040
2045
|
* CheckLockMetaData请求参数结构体
|
|
2041
2046
|
*/
|
|
@@ -3181,6 +3186,32 @@ export interface DescribeNotebookSessionRequest {
|
|
|
3181
3186
|
*/
|
|
3182
3187
|
SessionId: string;
|
|
3183
3188
|
}
|
|
3189
|
+
/**
|
|
3190
|
+
* DescribeAdvancedStoreLocation返回参数结构体
|
|
3191
|
+
*/
|
|
3192
|
+
export interface DescribeAdvancedStoreLocationResponse {
|
|
3193
|
+
/**
|
|
3194
|
+
* 是否启用高级设置:0-否,1-是
|
|
3195
|
+
*/
|
|
3196
|
+
Enable: number;
|
|
3197
|
+
/**
|
|
3198
|
+
* 查询结果保存cos路径
|
|
3199
|
+
*/
|
|
3200
|
+
StoreLocation: string;
|
|
3201
|
+
/**
|
|
3202
|
+
* 是否有托管存储权限
|
|
3203
|
+
*/
|
|
3204
|
+
HasLakeFs: boolean;
|
|
3205
|
+
/**
|
|
3206
|
+
* 托管存储状态,HasLakeFs等于true时,该值才有意义
|
|
3207
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3208
|
+
*/
|
|
3209
|
+
LakeFsStatus: string;
|
|
3210
|
+
/**
|
|
3211
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3212
|
+
*/
|
|
3213
|
+
RequestId?: string;
|
|
3214
|
+
}
|
|
3184
3215
|
/**
|
|
3185
3216
|
* UpgradeDataEngineImage请求参数结构体
|
|
3186
3217
|
*/
|
|
@@ -3471,17 +3502,17 @@ export interface AddUsersToWorkGroupResponse {
|
|
|
3471
3502
|
RequestId?: string;
|
|
3472
3503
|
}
|
|
3473
3504
|
/**
|
|
3474
|
-
*
|
|
3505
|
+
* ModifyAdvancedStoreLocation请求参数结构体
|
|
3475
3506
|
*/
|
|
3476
|
-
export interface
|
|
3507
|
+
export interface ModifyAdvancedStoreLocationRequest {
|
|
3477
3508
|
/**
|
|
3478
|
-
*
|
|
3509
|
+
* 查询结果保存cos路径
|
|
3479
3510
|
*/
|
|
3480
|
-
|
|
3511
|
+
StoreLocation: string;
|
|
3481
3512
|
/**
|
|
3482
|
-
*
|
|
3513
|
+
* 是否启用高级设置:0-否,1-是
|
|
3483
3514
|
*/
|
|
3484
|
-
|
|
3515
|
+
Enable: number;
|
|
3485
3516
|
}
|
|
3486
3517
|
/**
|
|
3487
3518
|
* DescribeNotebookSessionLog请求参数结构体
|
|
@@ -3999,9 +4030,9 @@ export interface AttachWorkGroupPolicyResponse {
|
|
|
3999
4030
|
RequestId?: string;
|
|
4000
4031
|
}
|
|
4001
4032
|
/**
|
|
4002
|
-
*
|
|
4033
|
+
* ModifyAdvancedStoreLocation返回参数结构体
|
|
4003
4034
|
*/
|
|
4004
|
-
export interface
|
|
4035
|
+
export interface ModifyAdvancedStoreLocationResponse {
|
|
4005
4036
|
/**
|
|
4006
4037
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4007
4038
|
*/
|
|
@@ -5872,6 +5903,27 @@ export interface DMSPartition {
|
|
|
5872
5903
|
*/
|
|
5873
5904
|
Sds?: DMSSds;
|
|
5874
5905
|
}
|
|
5906
|
+
/**
|
|
5907
|
+
* 视图基本配置信息
|
|
5908
|
+
*/
|
|
5909
|
+
export interface ViewBaseInfo {
|
|
5910
|
+
/**
|
|
5911
|
+
* 该视图所属数据库名字
|
|
5912
|
+
*/
|
|
5913
|
+
DatabaseName: string;
|
|
5914
|
+
/**
|
|
5915
|
+
* 视图名称
|
|
5916
|
+
*/
|
|
5917
|
+
ViewName: string;
|
|
5918
|
+
/**
|
|
5919
|
+
* 视图创建人昵称
|
|
5920
|
+
*/
|
|
5921
|
+
UserAlias?: string;
|
|
5922
|
+
/**
|
|
5923
|
+
* 视图创建人ID
|
|
5924
|
+
*/
|
|
5925
|
+
UserSubUin?: string;
|
|
5926
|
+
}
|
|
5875
5927
|
/**
|
|
5876
5928
|
* 数据库对象
|
|
5877
5929
|
*/
|
|
@@ -6070,6 +6122,11 @@ export interface CreateSparkSessionBatchSQLResponse {
|
|
|
6070
6122
|
* 批任务唯一标识
|
|
6071
6123
|
*/
|
|
6072
6124
|
BatchId?: string;
|
|
6125
|
+
/**
|
|
6126
|
+
* Statement任务列表信息
|
|
6127
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6128
|
+
*/
|
|
6129
|
+
Statements?: Array<StatementInformation>;
|
|
6073
6130
|
/**
|
|
6074
6131
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6075
6132
|
*/
|
|
@@ -7479,6 +7536,21 @@ export interface CheckDataEngineImageCanBeUpgradeRequest {
|
|
|
7479
7536
|
*/
|
|
7480
7537
|
DataEngineId: string;
|
|
7481
7538
|
}
|
|
7539
|
+
/**
|
|
7540
|
+
* statement信息
|
|
7541
|
+
*/
|
|
7542
|
+
export interface StatementInformation {
|
|
7543
|
+
/**
|
|
7544
|
+
* SQL任务唯一ID
|
|
7545
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7546
|
+
*/
|
|
7547
|
+
TaskId?: string;
|
|
7548
|
+
/**
|
|
7549
|
+
* SQL内容
|
|
7550
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7551
|
+
*/
|
|
7552
|
+
SQL?: string;
|
|
7553
|
+
}
|
|
7482
7554
|
/**
|
|
7483
7555
|
* SQL查询任务
|
|
7484
7556
|
*/
|