tencentcloud-sdk-nodejs-tcb 4.1.242 → 4.1.245
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
|
@@ -2760,7 +2760,7 @@ export interface ManagedAIModel {
|
|
|
2760
2760
|
*/
|
|
2761
2761
|
export interface DescribeUserListResponse {
|
|
2762
2762
|
/**
|
|
2763
|
-
*
|
|
2763
|
+
* <p>结果返回</p>
|
|
2764
2764
|
*/
|
|
2765
2765
|
Data?: DescribeUserListResp;
|
|
2766
2766
|
/**
|
|
@@ -4525,33 +4525,37 @@ export interface AIModel {
|
|
|
4525
4525
|
*/
|
|
4526
4526
|
export interface DescribeUserListRequest {
|
|
4527
4527
|
/**
|
|
4528
|
-
*
|
|
4528
|
+
* <p>环境id</p>
|
|
4529
4529
|
*/
|
|
4530
4530
|
EnvId: string;
|
|
4531
4531
|
/**
|
|
4532
|
-
*
|
|
4532
|
+
* <p>页码,从1开始,默认1</p>
|
|
4533
4533
|
*/
|
|
4534
4534
|
PageNo?: number;
|
|
4535
4535
|
/**
|
|
4536
|
-
*
|
|
4536
|
+
* <p>每页数量,默认20,最大100</p>
|
|
4537
4537
|
*/
|
|
4538
4538
|
PageSize?: number;
|
|
4539
4539
|
/**
|
|
4540
|
-
*
|
|
4540
|
+
* <p>用户名,模糊查询</p>
|
|
4541
4541
|
*/
|
|
4542
4542
|
Name?: string;
|
|
4543
4543
|
/**
|
|
4544
|
-
*
|
|
4544
|
+
* <p>用户昵称,模糊查询</p>
|
|
4545
4545
|
*/
|
|
4546
4546
|
NickName?: string;
|
|
4547
4547
|
/**
|
|
4548
|
-
*
|
|
4548
|
+
* <p>手机号,模糊查询</p>
|
|
4549
4549
|
*/
|
|
4550
4550
|
Phone?: string;
|
|
4551
4551
|
/**
|
|
4552
|
-
*
|
|
4552
|
+
* <p>邮箱,模糊查询</p>
|
|
4553
4553
|
*/
|
|
4554
4554
|
Email?: string;
|
|
4555
|
+
/**
|
|
4556
|
+
* <p>用户id列表,根据id过滤用户</p>
|
|
4557
|
+
*/
|
|
4558
|
+
UidList?: Array<string>;
|
|
4555
4559
|
}
|
|
4556
4560
|
/**
|
|
4557
4561
|
* DescribeCurveData请求参数结构体
|