tencentcloud-sdk-nodejs-dlc 4.0.709 → 4.0.711

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.
@@ -225,6 +225,12 @@ class Client extends TencentCloudCommon.AbstractClient {
225
225
  async UpdateRowFilter(req, cb) {
226
226
  return this.request("UpdateRowFilter", req, cb);
227
227
  }
228
+ /**
229
+ * 查询sql查询界面高级设置
230
+ */
231
+ async DescribeAdvancedStoreLocation(req, cb) {
232
+ return this.request("DescribeAdvancedStoreLocation", req, cb);
233
+ }
228
234
  /**
229
235
  * 元数据锁
230
236
  */
@@ -351,6 +357,12 @@ class Client extends TencentCloudCommon.AbstractClient {
351
357
  async CreateResultDownload(req, cb) {
352
358
  return this.request("CreateResultDownload", req, cb);
353
359
  }
360
+ /**
361
+ * 修改sql查询界面高级设置。
362
+ */
363
+ async ModifyAdvancedStoreLocation(req, cb) {
364
+ return this.request("ModifyAdvancedStoreLocation", req, cb);
365
+ }
354
366
  /**
355
367
  * 本接口(DescribeNotebookSessionStatementSqlResult)用于获取statement运行结果。
356
368
  */
@@ -1,52 +1,27 @@
1
1
  /**
2
- * 用户详细信息
2
+ * LakeFileSystem使用的临时token
3
3
  */
4
- export interface UserDetailInfo {
5
- /**
6
- * 用户Id
7
- 注意:此字段可能返回 null,表示取不到有效值。
8
- */
9
- UserId: string;
10
- /**
11
- * 返回的信息类型,Group:返回的当前用户的工作组信息;DataAuth:返回的当前用户的数据权限信息;EngineAuth:返回的当前用户的引擎权限信息
12
- 注意:此字段可能返回 null,表示取不到有效值。
13
- */
14
- Type: string;
4
+ export interface LakeFileSystemToken {
15
5
  /**
16
- * 用户类型:ADMIN:管理员 COMMON:一般用户
17
- 注意:此字段可能返回 null,表示取不到有效值。
18
- */
19
- UserType: string;
20
- /**
21
- * 用户描述信息
22
- 注意:此字段可能返回 null,表示取不到有效值。
23
- */
24
- UserDescription: string;
25
- /**
26
- * 数据权限信息集合
27
- 注意:此字段可能返回 null,表示取不到有效值。
6
+ * Token使用的临时秘钥的ID
28
7
  */
29
- DataPolicyInfo: Policys;
8
+ SecretId: string;
30
9
  /**
31
- * 引擎权限集合
32
- 注意:此字段可能返回 null,表示取不到有效值。
10
+ * Token使用的临时秘钥
33
11
  */
34
- EnginePolicyInfo: Policys;
12
+ SecretKey: string;
35
13
  /**
36
- * 绑定到该用户的工作组集合信息
37
- 注意:此字段可能返回 null,表示取不到有效值。
14
+ * Token信息
38
15
  */
39
- WorkGroupInfo: WorkGroups;
16
+ Token: string;
40
17
  /**
41
- * 用户别名
42
- 注意:此字段可能返回 null,表示取不到有效值。
18
+ * 过期时间
43
19
  */
44
- UserAlias: string;
20
+ ExpiredTime: number;
45
21
  /**
46
- * 行过滤集合
47
- 注意:此字段可能返回 null,表示取不到有效值。
22
+ * 颁布时间
48
23
  */
49
- RowFilterInfo: Policys;
24
+ IssueTime: number;
50
25
  }
51
26
  /**
52
27
  * UpdateDataEngine请求参数结构体
@@ -716,6 +691,15 @@ export interface CreateScriptResponse {
716
691
  */
717
692
  RequestId?: string;
718
693
  }
694
+ /**
695
+ * ModifyWorkGroup返回参数结构体
696
+ */
697
+ export interface ModifyWorkGroupResponse {
698
+ /**
699
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
700
+ */
701
+ RequestId?: string;
702
+ }
719
703
  /**
720
704
  * CreateTasksInOrder返回参数结构体
721
705
  */
@@ -1013,6 +997,56 @@ export interface DeleteScriptResponse {
1013
997
  */
1014
998
  RequestId?: string;
1015
999
  }
1000
+ /**
1001
+ * 用户详细信息
1002
+ */
1003
+ export interface UserDetailInfo {
1004
+ /**
1005
+ * 用户Id
1006
+ 注意:此字段可能返回 null,表示取不到有效值。
1007
+ */
1008
+ UserId: string;
1009
+ /**
1010
+ * 返回的信息类型,Group:返回的当前用户的工作组信息;DataAuth:返回的当前用户的数据权限信息;EngineAuth:返回的当前用户的引擎权限信息
1011
+ 注意:此字段可能返回 null,表示取不到有效值。
1012
+ */
1013
+ Type: string;
1014
+ /**
1015
+ * 用户类型:ADMIN:管理员 COMMON:一般用户
1016
+ 注意:此字段可能返回 null,表示取不到有效值。
1017
+ */
1018
+ UserType: string;
1019
+ /**
1020
+ * 用户描述信息
1021
+ 注意:此字段可能返回 null,表示取不到有效值。
1022
+ */
1023
+ UserDescription: string;
1024
+ /**
1025
+ * 数据权限信息集合
1026
+ 注意:此字段可能返回 null,表示取不到有效值。
1027
+ */
1028
+ DataPolicyInfo: Policys;
1029
+ /**
1030
+ * 引擎权限集合
1031
+ 注意:此字段可能返回 null,表示取不到有效值。
1032
+ */
1033
+ EnginePolicyInfo: Policys;
1034
+ /**
1035
+ * 绑定到该用户的工作组集合信息
1036
+ 注意:此字段可能返回 null,表示取不到有效值。
1037
+ */
1038
+ WorkGroupInfo: WorkGroups;
1039
+ /**
1040
+ * 用户别名
1041
+ 注意:此字段可能返回 null,表示取不到有效值。
1042
+ */
1043
+ UserAlias: string;
1044
+ /**
1045
+ * 行过滤集合
1046
+ 注意:此字段可能返回 null,表示取不到有效值。
1047
+ */
1048
+ RowFilterInfo: Policys;
1049
+ }
1016
1050
  /**
1017
1051
  * 返回数据表的相关信息。
1018
1052
  */
@@ -1118,6 +1152,19 @@ export interface CrontabResumeSuspendStrategy {
1118
1152
  */
1119
1153
  SuspendStrategy?: number;
1120
1154
  }
1155
+ /**
1156
+ * SwitchDataEngineImage请求参数结构体
1157
+ */
1158
+ export interface SwitchDataEngineImageRequest {
1159
+ /**
1160
+ * 引擎ID
1161
+ */
1162
+ DataEngineId: string;
1163
+ /**
1164
+ * 新镜像版本ID
1165
+ */
1166
+ NewImageVersionId: string;
1167
+ }
1121
1168
  /**
1122
1169
  * AlterDMSTable返回参数结构体
1123
1170
  */
@@ -1991,26 +2038,9 @@ export interface AlterDMSPartitionRequest {
1991
2038
  Partition?: DMSPartition;
1992
2039
  }
1993
2040
  /**
1994
- * 视图基本配置信息
2041
+ * DescribeAdvancedStoreLocation请求参数结构体
1995
2042
  */
1996
- export interface ViewBaseInfo {
1997
- /**
1998
- * 该视图所属数据库名字
1999
- */
2000
- DatabaseName: string;
2001
- /**
2002
- * 视图名称
2003
- */
2004
- ViewName: string;
2005
- /**
2006
- * 视图创建人昵称
2007
- */
2008
- UserAlias?: string;
2009
- /**
2010
- * 视图创建人ID
2011
- */
2012
- UserSubUin?: string;
2013
- }
2043
+ export declare type DescribeAdvancedStoreLocationRequest = null;
2014
2044
  /**
2015
2045
  * CheckLockMetaData请求参数结构体
2016
2046
  */
@@ -3156,6 +3186,32 @@ export interface DescribeNotebookSessionRequest {
3156
3186
  */
3157
3187
  SessionId: string;
3158
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
+ }
3159
3215
  /**
3160
3216
  * UpgradeDataEngineImage请求参数结构体
3161
3217
  */
@@ -3446,17 +3502,17 @@ export interface AddUsersToWorkGroupResponse {
3446
3502
  RequestId?: string;
3447
3503
  }
3448
3504
  /**
3449
- * SwitchDataEngineImage请求参数结构体
3505
+ * ModifyAdvancedStoreLocation请求参数结构体
3450
3506
  */
3451
- export interface SwitchDataEngineImageRequest {
3507
+ export interface ModifyAdvancedStoreLocationRequest {
3452
3508
  /**
3453
- * 引擎ID
3509
+ * 查询结果保存cos路径
3454
3510
  */
3455
- DataEngineId: string;
3511
+ StoreLocation: string;
3456
3512
  /**
3457
- * 新镜像版本ID
3513
+ * 是否启用高级设置:0-否,1-是
3458
3514
  */
3459
- NewImageVersionId: string;
3515
+ Enable: number;
3460
3516
  }
3461
3517
  /**
3462
3518
  * DescribeNotebookSessionLog请求参数结构体
@@ -3974,9 +4030,9 @@ export interface AttachWorkGroupPolicyResponse {
3974
4030
  RequestId?: string;
3975
4031
  }
3976
4032
  /**
3977
- * ModifyWorkGroup返回参数结构体
4033
+ * ModifyAdvancedStoreLocation返回参数结构体
3978
4034
  */
3979
- export interface ModifyWorkGroupResponse {
4035
+ export interface ModifyAdvancedStoreLocationResponse {
3980
4036
  /**
3981
4037
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3982
4038
  */
@@ -4577,7 +4633,12 @@ export interface DeleteScriptRequest {
4577
4633
  /**
4578
4634
  * DescribeLakeFsTaskResult请求参数结构体
4579
4635
  */
4580
- export declare type DescribeLakeFsTaskResultRequest = null;
4636
+ export interface DescribeLakeFsTaskResultRequest {
4637
+ /**
4638
+ * 需要访问的任务结果路径
4639
+ */
4640
+ FsPath: string;
4641
+ }
4581
4642
  /**
4582
4643
  * UnbindWorkGroupsFromUser返回参数结构体
4583
4644
  */
@@ -5842,6 +5903,27 @@ export interface DMSPartition {
5842
5903
  */
5843
5904
  Sds?: DMSSds;
5844
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
+ }
5845
5927
  /**
5846
5928
  * 数据库对象
5847
5929
  */
@@ -6488,6 +6570,10 @@ export interface TableResponseInfo {
6488
6570
  * DescribeLakeFsTaskResult返回参数结构体
6489
6571
  */
6490
6572
  export interface DescribeLakeFsTaskResultResponse {
6573
+ /**
6574
+ * 路径的访问实例
6575
+ */
6576
+ AccessToken?: LakeFileSystemToken;
6491
6577
  /**
6492
6578
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6493
6579
  */