tencentcloud-sdk-nodejs-organization 4.1.240 → 4.1.243
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
|
@@ -3329,39 +3329,39 @@ export interface ListTargetsForPolicyNode {
|
|
|
3329
3329
|
*/
|
|
3330
3330
|
export interface ListGroupsRequest {
|
|
3331
3331
|
/**
|
|
3332
|
-
*
|
|
3332
|
+
* <p>空间 ID。</p>
|
|
3333
3333
|
*/
|
|
3334
3334
|
ZoneId: string;
|
|
3335
3335
|
/**
|
|
3336
|
-
*
|
|
3336
|
+
* <p>查询返回结果下一页的令牌。首次调用 API 不需要NextToken。 当您首次调用 API 时,如果返回数据总条数超过MaxResults限制,数据会被截断,只返回MaxResults条数据,同时,返回参数IsTruncated为true,返回一个NextToken。您可以使用上一次返回的NextToken继续调用 API,其他请求参数保持不变,查询被截断的数据。您可以按此方法多次查询,直到IsTruncated为false,表示全部数据查询完毕。</p>
|
|
3337
3337
|
*/
|
|
3338
3338
|
NextToken?: string;
|
|
3339
3339
|
/**
|
|
3340
|
-
*
|
|
3340
|
+
* <p>每页的最大数据条数。 取值范围:1~100。 默认值:10。</p>
|
|
3341
3341
|
*/
|
|
3342
3342
|
MaxResults?: number;
|
|
3343
3343
|
/**
|
|
3344
|
-
*
|
|
3344
|
+
* <p>过滤条件,用户组名称</p>
|
|
3345
3345
|
*/
|
|
3346
3346
|
Filter?: string;
|
|
3347
3347
|
/**
|
|
3348
|
-
*
|
|
3348
|
+
* <p>用户组的类型 Manual:手动创建,Synchronized:外部导入。</p>
|
|
3349
3349
|
*/
|
|
3350
3350
|
GroupType?: string;
|
|
3351
3351
|
/**
|
|
3352
|
-
*
|
|
3352
|
+
* <p>筛选的用户,该用户关联的用户组会返回IsSelected=1</p>
|
|
3353
3353
|
*/
|
|
3354
3354
|
FilterUsers?: Array<string>;
|
|
3355
3355
|
/**
|
|
3356
|
-
*
|
|
3356
|
+
* <p>排序的字段,目前只支持CreateTime,默认是CreateTime字段</p>
|
|
3357
3357
|
*/
|
|
3358
3358
|
SortField?: string;
|
|
3359
3359
|
/**
|
|
3360
|
-
*
|
|
3360
|
+
* <p>排序类型:Desc 倒序 Asc 正序,需要您和SortField一起设置</p>
|
|
3361
3361
|
*/
|
|
3362
3362
|
SortType?: string;
|
|
3363
3363
|
/**
|
|
3364
|
-
*
|
|
3364
|
+
* <p>翻页offset. 不要与NextToken同时使用,优先使用NextToken</p>
|
|
3365
3365
|
*/
|
|
3366
3366
|
Offset?: number;
|
|
3367
3367
|
}
|
|
@@ -3562,23 +3562,23 @@ export interface AddShareUnitMembersResponse {
|
|
|
3562
3562
|
*/
|
|
3563
3563
|
export interface ListGroupsResponse {
|
|
3564
3564
|
/**
|
|
3565
|
-
*
|
|
3565
|
+
* <p>查询返回结果下一页的令牌。 说明 只有IsTruncated为true时,才显示该参数。</p>
|
|
3566
3566
|
*/
|
|
3567
3567
|
NextToken?: string;
|
|
3568
3568
|
/**
|
|
3569
|
-
*
|
|
3569
|
+
* <p>用户组列表。</p>
|
|
3570
3570
|
*/
|
|
3571
3571
|
Groups?: Array<GroupInfo>;
|
|
3572
3572
|
/**
|
|
3573
|
-
*
|
|
3573
|
+
* <p>每页的最大数据条数。</p>
|
|
3574
3574
|
*/
|
|
3575
3575
|
MaxResults?: number;
|
|
3576
3576
|
/**
|
|
3577
|
-
*
|
|
3577
|
+
* <p>符合请求参数条件的数据总条数。</p>
|
|
3578
3578
|
*/
|
|
3579
3579
|
TotalCounts?: number;
|
|
3580
3580
|
/**
|
|
3581
|
-
*
|
|
3581
|
+
* <p>返回结果是否被截断。取值: true:已截断。 false:未截断。</p>
|
|
3582
3582
|
*/
|
|
3583
3583
|
IsTruncated?: boolean;
|
|
3584
3584
|
/**
|