@alicloud/csas20230120 1.3.0 → 1.4.0
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/dist/client.d.ts +111 -0
- package/dist/client.js +949 -726
- package/dist/client.js.map +1 -1
- package/package.json +6 -6
- package/src/client.ts +248 -0
package/dist/client.d.ts
CHANGED
|
@@ -1977,6 +1977,54 @@ export declare class ListUserGroupsForRegistrationPolicyResponse extends $tea.Mo
|
|
|
1977
1977
|
[key: string]: any;
|
|
1978
1978
|
});
|
|
1979
1979
|
}
|
|
1980
|
+
export declare class ListUsersRequest extends $tea.Model {
|
|
1981
|
+
currentPage?: number;
|
|
1982
|
+
department?: string;
|
|
1983
|
+
fuzzyUsername?: string;
|
|
1984
|
+
pageSize?: number;
|
|
1985
|
+
preciseUsername?: string;
|
|
1986
|
+
saseUserIds?: string[];
|
|
1987
|
+
status?: string;
|
|
1988
|
+
static names(): {
|
|
1989
|
+
[key: string]: string;
|
|
1990
|
+
};
|
|
1991
|
+
static types(): {
|
|
1992
|
+
[key: string]: any;
|
|
1993
|
+
};
|
|
1994
|
+
constructor(map?: {
|
|
1995
|
+
[key: string]: any;
|
|
1996
|
+
});
|
|
1997
|
+
}
|
|
1998
|
+
export declare class ListUsersResponseBody extends $tea.Model {
|
|
1999
|
+
requestId?: string;
|
|
2000
|
+
totalNum?: string;
|
|
2001
|
+
users?: ListUsersResponseBodyUsers[];
|
|
2002
|
+
static names(): {
|
|
2003
|
+
[key: string]: string;
|
|
2004
|
+
};
|
|
2005
|
+
static types(): {
|
|
2006
|
+
[key: string]: any;
|
|
2007
|
+
};
|
|
2008
|
+
constructor(map?: {
|
|
2009
|
+
[key: string]: any;
|
|
2010
|
+
});
|
|
2011
|
+
}
|
|
2012
|
+
export declare class ListUsersResponse extends $tea.Model {
|
|
2013
|
+
headers?: {
|
|
2014
|
+
[key: string]: string;
|
|
2015
|
+
};
|
|
2016
|
+
statusCode?: number;
|
|
2017
|
+
body?: ListUsersResponseBody;
|
|
2018
|
+
static names(): {
|
|
2019
|
+
[key: string]: string;
|
|
2020
|
+
};
|
|
2021
|
+
static types(): {
|
|
2022
|
+
[key: string]: any;
|
|
2023
|
+
};
|
|
2024
|
+
constructor(map?: {
|
|
2025
|
+
[key: string]: any;
|
|
2026
|
+
});
|
|
2027
|
+
}
|
|
1980
2028
|
export declare class UpdateDynamicRouteRequest extends $tea.Model {
|
|
1981
2029
|
applicationIds?: string[];
|
|
1982
2030
|
applicationType?: string;
|
|
@@ -2371,6 +2419,47 @@ export declare class UpdateUserGroupResponse extends $tea.Model {
|
|
|
2371
2419
|
[key: string]: any;
|
|
2372
2420
|
});
|
|
2373
2421
|
}
|
|
2422
|
+
export declare class UpdateUsersStatusRequest extends $tea.Model {
|
|
2423
|
+
saseUserIds?: string[];
|
|
2424
|
+
status?: string;
|
|
2425
|
+
static names(): {
|
|
2426
|
+
[key: string]: string;
|
|
2427
|
+
};
|
|
2428
|
+
static types(): {
|
|
2429
|
+
[key: string]: any;
|
|
2430
|
+
};
|
|
2431
|
+
constructor(map?: {
|
|
2432
|
+
[key: string]: any;
|
|
2433
|
+
});
|
|
2434
|
+
}
|
|
2435
|
+
export declare class UpdateUsersStatusResponseBody extends $tea.Model {
|
|
2436
|
+
requestId?: string;
|
|
2437
|
+
static names(): {
|
|
2438
|
+
[key: string]: string;
|
|
2439
|
+
};
|
|
2440
|
+
static types(): {
|
|
2441
|
+
[key: string]: any;
|
|
2442
|
+
};
|
|
2443
|
+
constructor(map?: {
|
|
2444
|
+
[key: string]: any;
|
|
2445
|
+
});
|
|
2446
|
+
}
|
|
2447
|
+
export declare class UpdateUsersStatusResponse extends $tea.Model {
|
|
2448
|
+
headers?: {
|
|
2449
|
+
[key: string]: string;
|
|
2450
|
+
};
|
|
2451
|
+
statusCode?: number;
|
|
2452
|
+
body?: UpdateUsersStatusResponseBody;
|
|
2453
|
+
static names(): {
|
|
2454
|
+
[key: string]: string;
|
|
2455
|
+
};
|
|
2456
|
+
static types(): {
|
|
2457
|
+
[key: string]: any;
|
|
2458
|
+
};
|
|
2459
|
+
constructor(map?: {
|
|
2460
|
+
[key: string]: any;
|
|
2461
|
+
});
|
|
2462
|
+
}
|
|
2374
2463
|
export declare class CreatePrivateAccessApplicationRequestPortRanges extends $tea.Model {
|
|
2375
2464
|
begin?: number;
|
|
2376
2465
|
end?: number;
|
|
@@ -3551,6 +3640,24 @@ export declare class ListUserGroupsForRegistrationPolicyResponseBodyPolicies ext
|
|
|
3551
3640
|
[key: string]: any;
|
|
3552
3641
|
});
|
|
3553
3642
|
}
|
|
3643
|
+
export declare class ListUsersResponseBodyUsers extends $tea.Model {
|
|
3644
|
+
department?: string;
|
|
3645
|
+
email?: string;
|
|
3646
|
+
idpName?: string;
|
|
3647
|
+
phone?: string;
|
|
3648
|
+
saseUserId?: string;
|
|
3649
|
+
status?: string;
|
|
3650
|
+
username?: string;
|
|
3651
|
+
static names(): {
|
|
3652
|
+
[key: string]: string;
|
|
3653
|
+
};
|
|
3654
|
+
static types(): {
|
|
3655
|
+
[key: string]: any;
|
|
3656
|
+
};
|
|
3657
|
+
constructor(map?: {
|
|
3658
|
+
[key: string]: any;
|
|
3659
|
+
});
|
|
3660
|
+
}
|
|
3554
3661
|
export declare class UpdateExcessiveDeviceRegistrationApplicationsStatusResponseBodyApplications extends $tea.Model {
|
|
3555
3662
|
applicationId?: string;
|
|
3556
3663
|
createTime?: string;
|
|
@@ -3859,6 +3966,8 @@ export default class Client extends OpenApi {
|
|
|
3859
3966
|
listUserGroupsForPrivateAccessPolicy(request: ListUserGroupsForPrivateAccessPolicyRequest): Promise<ListUserGroupsForPrivateAccessPolicyResponse>;
|
|
3860
3967
|
listUserGroupsForRegistrationPolicyWithOptions(request: ListUserGroupsForRegistrationPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ListUserGroupsForRegistrationPolicyResponse>;
|
|
3861
3968
|
listUserGroupsForRegistrationPolicy(request: ListUserGroupsForRegistrationPolicyRequest): Promise<ListUserGroupsForRegistrationPolicyResponse>;
|
|
3969
|
+
listUsersWithOptions(request: ListUsersRequest, runtime: $Util.RuntimeOptions): Promise<ListUsersResponse>;
|
|
3970
|
+
listUsers(request: ListUsersRequest): Promise<ListUsersResponse>;
|
|
3862
3971
|
updateDynamicRouteWithOptions(request: UpdateDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<UpdateDynamicRouteResponse>;
|
|
3863
3972
|
updateDynamicRoute(request: UpdateDynamicRouteRequest): Promise<UpdateDynamicRouteResponse>;
|
|
3864
3973
|
updateExcessiveDeviceRegistrationApplicationsStatusWithOptions(request: UpdateExcessiveDeviceRegistrationApplicationsStatusRequest, runtime: $Util.RuntimeOptions): Promise<UpdateExcessiveDeviceRegistrationApplicationsStatusResponse>;
|
|
@@ -3875,4 +3984,6 @@ export default class Client extends OpenApi {
|
|
|
3875
3984
|
updateUserDevicesStatus(request: UpdateUserDevicesStatusRequest): Promise<UpdateUserDevicesStatusResponse>;
|
|
3876
3985
|
updateUserGroupWithOptions(request: UpdateUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserGroupResponse>;
|
|
3877
3986
|
updateUserGroup(request: UpdateUserGroupRequest): Promise<UpdateUserGroupResponse>;
|
|
3987
|
+
updateUsersStatusWithOptions(request: UpdateUsersStatusRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUsersStatusResponse>;
|
|
3988
|
+
updateUsersStatus(request: UpdateUsersStatusRequest): Promise<UpdateUsersStatusResponse>;
|
|
3878
3989
|
}
|