tencentcloud-sdk-nodejs-dlc 4.1.145 → 4.1.147
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
|
@@ -1385,6 +1385,10 @@ export interface ModifyUserTypeRequest {
|
|
|
1385
1385
|
* 用户要修改到的类型,ADMIN:管理员,COMMON:一般用户。
|
|
1386
1386
|
*/
|
|
1387
1387
|
UserType: string;
|
|
1388
|
+
/**
|
|
1389
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
1390
|
+
*/
|
|
1391
|
+
AccountType?: string;
|
|
1388
1392
|
}
|
|
1389
1393
|
/**
|
|
1390
1394
|
* NotebookSessionStatement详情。
|
|
@@ -2209,11 +2213,11 @@ export interface DescribeUsersResponse {
|
|
|
2209
2213
|
/**
|
|
2210
2214
|
* 查询到的用户总数
|
|
2211
2215
|
*/
|
|
2212
|
-
TotalCount
|
|
2216
|
+
TotalCount?: number;
|
|
2213
2217
|
/**
|
|
2214
2218
|
* 查询到的授权用户信息集合
|
|
2215
2219
|
*/
|
|
2216
|
-
UserSet
|
|
2220
|
+
UserSet?: Array<UserInfo>;
|
|
2217
2221
|
/**
|
|
2218
2222
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2219
2223
|
*/
|
|
@@ -2517,6 +2521,10 @@ export interface Policy {
|
|
|
2517
2521
|
|
|
2518
2522
|
*/
|
|
2519
2523
|
EngineGeneration?: string;
|
|
2524
|
+
/**
|
|
2525
|
+
* 需要授权的Model名,填 * 代表当前Database下所有表。当授权类型为管理员级别时,只允许填“*”,当授权类型为数据连接级别、数据库级别时只允许填空,其他类型下可以任意指定数据表。
|
|
2526
|
+
*/
|
|
2527
|
+
Model?: string;
|
|
2520
2528
|
}
|
|
2521
2529
|
/**
|
|
2522
2530
|
* DescribeTaskLog请求参数结构体
|
|
@@ -3054,6 +3062,10 @@ export interface ModifyUserRequest {
|
|
|
3054
3062
|
* 用户描述
|
|
3055
3063
|
*/
|
|
3056
3064
|
UserDescription: string;
|
|
3065
|
+
/**
|
|
3066
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
3067
|
+
*/
|
|
3068
|
+
AccountType?: string;
|
|
3057
3069
|
}
|
|
3058
3070
|
/**
|
|
3059
3071
|
* DescribeTasksCostInfo返回参数结构体
|
|
@@ -3692,6 +3704,10 @@ export interface DescribeUserInfoRequest {
|
|
|
3692
3704
|
* 偏移量,默认为0
|
|
3693
3705
|
*/
|
|
3694
3706
|
Offset?: number;
|
|
3707
|
+
/**
|
|
3708
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
3709
|
+
*/
|
|
3710
|
+
AccountType?: string;
|
|
3695
3711
|
}
|
|
3696
3712
|
/**
|
|
3697
3713
|
* PauseStandardEngineResourceGroups返回参数结构体
|
|
@@ -4102,6 +4118,10 @@ export interface DescribeUsersRequest {
|
|
|
4102
4118
|
* 过滤条件,支持如下字段类型,user-type:根据用户类型过滤。user-keyword:根据用户名称过滤
|
|
4103
4119
|
*/
|
|
4104
4120
|
Filters?: Array<Filter>;
|
|
4121
|
+
/**
|
|
4122
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
4123
|
+
*/
|
|
4124
|
+
AccountType?: string;
|
|
4105
4125
|
}
|
|
4106
4126
|
/**
|
|
4107
4127
|
* CreateExportTask返回参数结构体
|
|
@@ -4293,6 +4313,10 @@ export interface AttachUserPolicyRequest {
|
|
|
4293
4313
|
* 鉴权策略集合
|
|
4294
4314
|
*/
|
|
4295
4315
|
PolicySet?: Array<Policy>;
|
|
4316
|
+
/**
|
|
4317
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
4318
|
+
*/
|
|
4319
|
+
AccountType?: string;
|
|
4296
4320
|
}
|
|
4297
4321
|
/**
|
|
4298
4322
|
* CancelTask请求参数结构体
|
|
@@ -5414,6 +5438,10 @@ export interface CreateUserRequest {
|
|
|
5414
5438
|
* 用户别名,字符长度小50
|
|
5415
5439
|
*/
|
|
5416
5440
|
UserAlias?: string;
|
|
5441
|
+
/**
|
|
5442
|
+
* 账号类型,UserAccount:用户账号 RoleAccount:角色账号,默认为用户账号
|
|
5443
|
+
*/
|
|
5444
|
+
AccountType?: string;
|
|
5417
5445
|
}
|
|
5418
5446
|
/**
|
|
5419
5447
|
* AlterDMSDatabase请求参数结构体
|
|
@@ -5771,6 +5799,10 @@ export interface DeleteUserRequest {
|
|
|
5771
5799
|
* 需要删除的用户的Id
|
|
5772
5800
|
*/
|
|
5773
5801
|
UserIds: Array<string>;
|
|
5802
|
+
/**
|
|
5803
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
5804
|
+
*/
|
|
5805
|
+
AccountType?: string;
|
|
5774
5806
|
}
|
|
5775
5807
|
/**
|
|
5776
5808
|
* 引擎规格详情
|
|
@@ -8932,6 +8964,10 @@ export interface UserDetailInfo {
|
|
|
8932
8964
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8933
8965
|
*/
|
|
8934
8966
|
CatalogPolicyInfo?: Policys;
|
|
8967
|
+
/**
|
|
8968
|
+
* 模型权限集合
|
|
8969
|
+
*/
|
|
8970
|
+
ModelPolicyInfo?: Policys;
|
|
8935
8971
|
}
|
|
8936
8972
|
/**
|
|
8937
8973
|
* DescribeTaskResult返回参数结构体
|
|
@@ -9328,6 +9364,10 @@ export interface DetachUserPolicyRequest {
|
|
|
9328
9364
|
* 解绑的权限集合
|
|
9329
9365
|
*/
|
|
9330
9366
|
PolicySet?: Array<Policy>;
|
|
9367
|
+
/**
|
|
9368
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
9369
|
+
*/
|
|
9370
|
+
AccountType?: string;
|
|
9331
9371
|
}
|
|
9332
9372
|
/**
|
|
9333
9373
|
* DescribeTaskLog返回参数结构体
|
|
@@ -9539,6 +9579,10 @@ export interface DescribeUserTypeRequest {
|
|
|
9539
9579
|
* 用户ID(UIN),如果不填默认为调用方的子UIN
|
|
9540
9580
|
*/
|
|
9541
9581
|
UserId?: string;
|
|
9582
|
+
/**
|
|
9583
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
9584
|
+
*/
|
|
9585
|
+
AccountType?: string;
|
|
9542
9586
|
}
|
|
9543
9587
|
/**
|
|
9544
9588
|
* CheckDataEngineConfigPairsValidity请求参数结构体
|
|
@@ -11809,24 +11853,28 @@ export interface UserMessage {
|
|
|
11809
11853
|
/**
|
|
11810
11854
|
* 用户Id,和CAM侧子用户Uin匹配
|
|
11811
11855
|
*/
|
|
11812
|
-
UserId
|
|
11856
|
+
UserId?: string;
|
|
11813
11857
|
/**
|
|
11814
11858
|
* 用户描述
|
|
11815
11859
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11816
11860
|
*/
|
|
11817
|
-
UserDescription
|
|
11861
|
+
UserDescription?: string;
|
|
11818
11862
|
/**
|
|
11819
11863
|
* 当前用户的创建者
|
|
11820
11864
|
*/
|
|
11821
|
-
Creator
|
|
11865
|
+
Creator?: string;
|
|
11822
11866
|
/**
|
|
11823
11867
|
* 当前用户的创建时间,形如2021-07-28 16:19:32
|
|
11824
11868
|
*/
|
|
11825
|
-
CreateTime
|
|
11869
|
+
CreateTime?: string;
|
|
11826
11870
|
/**
|
|
11827
11871
|
* 用户别名
|
|
11828
11872
|
*/
|
|
11829
|
-
UserAlias
|
|
11873
|
+
UserAlias?: string;
|
|
11874
|
+
/**
|
|
11875
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
11876
|
+
*/
|
|
11877
|
+
AccountType?: string;
|
|
11830
11878
|
}
|
|
11831
11879
|
/**
|
|
11832
11880
|
* QueryResult返回参数结构体
|