tencentcloud-sdk-nodejs-dlc 4.1.137 → 4.1.146
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请求参数结构体
|
|
@@ -5622,6 +5650,10 @@ export interface DatasourceConnectionConfig {
|
|
|
5622
5650
|
* TccHive数据目录连接信息
|
|
5623
5651
|
*/
|
|
5624
5652
|
TccHive?: TccHive;
|
|
5653
|
+
/**
|
|
5654
|
+
* MongoDB 数据源
|
|
5655
|
+
*/
|
|
5656
|
+
MongoDB?: DataSourceInfo;
|
|
5625
5657
|
}
|
|
5626
5658
|
/**
|
|
5627
5659
|
* UpdateRowFilter请求参数结构体
|
|
@@ -5767,6 +5799,10 @@ export interface DeleteUserRequest {
|
|
|
5767
5799
|
* 需要删除的用户的Id
|
|
5768
5800
|
*/
|
|
5769
5801
|
UserIds: Array<string>;
|
|
5802
|
+
/**
|
|
5803
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
5804
|
+
*/
|
|
5805
|
+
AccountType?: string;
|
|
5770
5806
|
}
|
|
5771
5807
|
/**
|
|
5772
5808
|
* 引擎规格详情
|
|
@@ -8928,6 +8964,10 @@ export interface UserDetailInfo {
|
|
|
8928
8964
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8929
8965
|
*/
|
|
8930
8966
|
CatalogPolicyInfo?: Policys;
|
|
8967
|
+
/**
|
|
8968
|
+
* 模型权限集合
|
|
8969
|
+
*/
|
|
8970
|
+
ModelPolicyInfo?: Policys;
|
|
8931
8971
|
}
|
|
8932
8972
|
/**
|
|
8933
8973
|
* DescribeTaskResult返回参数结构体
|
|
@@ -9324,6 +9364,10 @@ export interface DetachUserPolicyRequest {
|
|
|
9324
9364
|
* 解绑的权限集合
|
|
9325
9365
|
*/
|
|
9326
9366
|
PolicySet?: Array<Policy>;
|
|
9367
|
+
/**
|
|
9368
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
9369
|
+
*/
|
|
9370
|
+
AccountType?: string;
|
|
9327
9371
|
}
|
|
9328
9372
|
/**
|
|
9329
9373
|
* DescribeTaskLog返回参数结构体
|
|
@@ -9535,6 +9579,10 @@ export interface DescribeUserTypeRequest {
|
|
|
9535
9579
|
* 用户ID(UIN),如果不填默认为调用方的子UIN
|
|
9536
9580
|
*/
|
|
9537
9581
|
UserId?: string;
|
|
9582
|
+
/**
|
|
9583
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
9584
|
+
*/
|
|
9585
|
+
AccountType?: string;
|
|
9538
9586
|
}
|
|
9539
9587
|
/**
|
|
9540
9588
|
* CheckDataEngineConfigPairsValidity请求参数结构体
|
|
@@ -11805,24 +11853,28 @@ export interface UserMessage {
|
|
|
11805
11853
|
/**
|
|
11806
11854
|
* 用户Id,和CAM侧子用户Uin匹配
|
|
11807
11855
|
*/
|
|
11808
|
-
UserId
|
|
11856
|
+
UserId?: string;
|
|
11809
11857
|
/**
|
|
11810
11858
|
* 用户描述
|
|
11811
11859
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11812
11860
|
*/
|
|
11813
|
-
UserDescription
|
|
11861
|
+
UserDescription?: string;
|
|
11814
11862
|
/**
|
|
11815
11863
|
* 当前用户的创建者
|
|
11816
11864
|
*/
|
|
11817
|
-
Creator
|
|
11865
|
+
Creator?: string;
|
|
11818
11866
|
/**
|
|
11819
11867
|
* 当前用户的创建时间,形如2021-07-28 16:19:32
|
|
11820
11868
|
*/
|
|
11821
|
-
CreateTime
|
|
11869
|
+
CreateTime?: string;
|
|
11822
11870
|
/**
|
|
11823
11871
|
* 用户别名
|
|
11824
11872
|
*/
|
|
11825
|
-
UserAlias
|
|
11873
|
+
UserAlias?: string;
|
|
11874
|
+
/**
|
|
11875
|
+
* 用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)
|
|
11876
|
+
*/
|
|
11877
|
+
AccountType?: string;
|
|
11826
11878
|
}
|
|
11827
11879
|
/**
|
|
11828
11880
|
* QueryResult返回参数结构体
|