tencentcloud-sdk-nodejs-tione 4.1.198 → 4.1.203
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
|
@@ -164,7 +164,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
164
164
|
/**
|
|
165
165
|
* 批量查询子账号Linux用户信息
|
|
166
166
|
*/
|
|
167
|
-
DescribeSubAccountLinuxUserInfos(req
|
|
167
|
+
DescribeSubAccountLinuxUserInfos(req: DescribeSubAccountLinuxUserInfosRequest, cb?: (error: string, rep: DescribeSubAccountLinuxUserInfosResponse) => void): Promise<DescribeSubAccountLinuxUserInfosResponse>;
|
|
168
168
|
/**
|
|
169
169
|
* 修改一个 AuthToken
|
|
170
170
|
*/
|
|
@@ -3785,6 +3785,14 @@ export interface SubAccountInfo {
|
|
|
3785
3785
|
* 子账号在Linux下的用户名
|
|
3786
3786
|
*/
|
|
3787
3787
|
LinuxUserName?: string;
|
|
3788
|
+
/**
|
|
3789
|
+
* 是否开启 root 登录
|
|
3790
|
+
*/
|
|
3791
|
+
EnableRootLogin?: boolean;
|
|
3792
|
+
/**
|
|
3793
|
+
* 更新时间
|
|
3794
|
+
*/
|
|
3795
|
+
UpdateTime?: string;
|
|
3788
3796
|
}
|
|
3789
3797
|
/**
|
|
3790
3798
|
* UpdateSubAccountLinuxUserInfo返回参数结构体
|
|
@@ -6905,7 +6913,20 @@ export interface SSHConfig {
|
|
|
6905
6913
|
/**
|
|
6906
6914
|
* DescribeSubAccountLinuxUserInfos请求参数结构体
|
|
6907
6915
|
*/
|
|
6908
|
-
export
|
|
6916
|
+
export interface DescribeSubAccountLinuxUserInfosRequest {
|
|
6917
|
+
/**
|
|
6918
|
+
* 分页偏移量(0 表示全量)
|
|
6919
|
+
*/
|
|
6920
|
+
Offset?: number;
|
|
6921
|
+
/**
|
|
6922
|
+
* 每页数量(0 表示全量)
|
|
6923
|
+
*/
|
|
6924
|
+
Limit?: number;
|
|
6925
|
+
/**
|
|
6926
|
+
* 过滤条件
|
|
6927
|
+
*/
|
|
6928
|
+
Filters?: Array<Filter>;
|
|
6929
|
+
}
|
|
6909
6930
|
/**
|
|
6910
6931
|
* ChatCompletion返回参数结构体
|
|
6911
6932
|
*/
|
|
@@ -6989,6 +7010,10 @@ export interface DescribeSubAccountLinuxUserInfosResponse {
|
|
|
6989
7010
|
* 子账号信息列表
|
|
6990
7011
|
*/
|
|
6991
7012
|
SubAccountList?: Array<SubAccountInfo>;
|
|
7013
|
+
/**
|
|
7014
|
+
* 总数(配合分页使用)
|
|
7015
|
+
*/
|
|
7016
|
+
TotalCount?: number;
|
|
6992
7017
|
/**
|
|
6993
7018
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6994
7019
|
*/
|