tencentcloud-sdk-nodejs-bh 4.1.36 → 4.1.38
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
|
@@ -1142,6 +1142,31 @@ export interface BindDeviceAccountPrivateKeyResponse {
|
|
|
1142
1142
|
*/
|
|
1143
1143
|
RequestId?: string;
|
|
1144
1144
|
}
|
|
1145
|
+
/**
|
|
1146
|
+
* 同步过来的ioa用户分组信息
|
|
1147
|
+
*/
|
|
1148
|
+
export interface IOAUserGroup {
|
|
1149
|
+
/**
|
|
1150
|
+
* ioa用户组织id
|
|
1151
|
+
*/
|
|
1152
|
+
OrgId?: number;
|
|
1153
|
+
/**
|
|
1154
|
+
* ioa用户组织名称
|
|
1155
|
+
*/
|
|
1156
|
+
OrgName?: string;
|
|
1157
|
+
/**
|
|
1158
|
+
* ioa用户组织id路径
|
|
1159
|
+
*/
|
|
1160
|
+
OrgIdPath?: string;
|
|
1161
|
+
/**
|
|
1162
|
+
* ioa用户组织名称路径
|
|
1163
|
+
*/
|
|
1164
|
+
OrgNamePath?: string;
|
|
1165
|
+
/**
|
|
1166
|
+
* ioa关联用户源类型
|
|
1167
|
+
*/
|
|
1168
|
+
Source?: number;
|
|
1169
|
+
}
|
|
1145
1170
|
/**
|
|
1146
1171
|
* SearchCommandBySid请求参数结构体
|
|
1147
1172
|
*/
|
|
@@ -2152,6 +2177,10 @@ export interface AssetSyncStatus {
|
|
|
2152
2177
|
* 同步任务是否正在进行中
|
|
2153
2178
|
*/
|
|
2154
2179
|
InProcess?: boolean;
|
|
2180
|
+
/**
|
|
2181
|
+
* 任务错误消息
|
|
2182
|
+
*/
|
|
2183
|
+
ErrMsg?: string;
|
|
2155
2184
|
}
|
|
2156
2185
|
/**
|
|
2157
2186
|
* DescribeResources返回参数结构体
|
|
@@ -2212,7 +2241,7 @@ export interface DescribeUsersRequest {
|
|
|
2212
2241
|
*/
|
|
2213
2242
|
AuthorizedAppAssetIdSet?: Array<number | bigint>;
|
|
2214
2243
|
/**
|
|
2215
|
-
* 认证方式,0 - 本地, 1 - LDAP, 2 - OAuth, 不传为全部
|
|
2244
|
+
* 认证方式,0 - 本地, 1 - LDAP, 2 - OAuth, 3-ioa 不传为全部
|
|
2216
2245
|
*/
|
|
2217
2246
|
AuthTypeSet?: Array<number | bigint>;
|
|
2218
2247
|
/**
|
|
@@ -2224,6 +2253,14 @@ export interface DescribeUsersRequest {
|
|
|
2224
2253
|
|
|
2225
2254
|
*/
|
|
2226
2255
|
Filters?: Array<Filter>;
|
|
2256
|
+
/**
|
|
2257
|
+
* 是否获取cam用户, 0-否,1-是
|
|
2258
|
+
*/
|
|
2259
|
+
IsCamUser?: number;
|
|
2260
|
+
/**
|
|
2261
|
+
* 用户来源,0-bh,1-ioa,不传为全部
|
|
2262
|
+
*/
|
|
2263
|
+
UserFromSet?: Array<number | bigint>;
|
|
2227
2264
|
}
|
|
2228
2265
|
/**
|
|
2229
2266
|
* DeployResource请求参数结构体
|
|
@@ -2829,6 +2866,14 @@ export interface User {
|
|
|
2829
2866
|
* 权限版本
|
|
2830
2867
|
*/
|
|
2831
2868
|
AclVersion?: number;
|
|
2869
|
+
/**
|
|
2870
|
+
* 用户来源,0-bh,1-ioa
|
|
2871
|
+
*/
|
|
2872
|
+
UserFrom?: number;
|
|
2873
|
+
/**
|
|
2874
|
+
* ioa同步过来的用户相关信息
|
|
2875
|
+
*/
|
|
2876
|
+
IOAUserGroup?: IOAUserGroup;
|
|
2832
2877
|
}
|
|
2833
2878
|
/**
|
|
2834
2879
|
* ResetUser请求参数结构体
|
|
@@ -2923,6 +2968,10 @@ export interface Device {
|
|
|
2923
2968
|
* 已上传的SSL证书名称
|
|
2924
2969
|
*/
|
|
2925
2970
|
SSLCertName?: string;
|
|
2971
|
+
/**
|
|
2972
|
+
* IOA侧的资源ID
|
|
2973
|
+
*/
|
|
2974
|
+
IOAId?: number;
|
|
2926
2975
|
}
|
|
2927
2976
|
/**
|
|
2928
2977
|
* CreateDeviceAccount返回参数结构体
|
|
@@ -3990,6 +4039,18 @@ export interface Resource {
|
|
|
3990
4039
|
* 1 默认值,外网访问开启,0 外网访问关闭,2 外网访问开通中,3 外网访问关闭中
|
|
3991
4040
|
*/
|
|
3992
4041
|
ExternalAccess?: number;
|
|
4042
|
+
/**
|
|
4043
|
+
* 0默认值。0-免费版(试用版)ioa,1-付费版ioa
|
|
4044
|
+
*/
|
|
4045
|
+
IOAResource?: number;
|
|
4046
|
+
/**
|
|
4047
|
+
* 零信任堡垒机用户扩展包个数。1个扩展包对应20个用户数
|
|
4048
|
+
*/
|
|
4049
|
+
PackageIOAUserCount?: number;
|
|
4050
|
+
/**
|
|
4051
|
+
* 零信任堡垒机带宽扩展包个数。一个扩展包表示4M带宽
|
|
4052
|
+
*/
|
|
4053
|
+
PackageIOABandwidth?: number;
|
|
3993
4054
|
}
|
|
3994
4055
|
/**
|
|
3995
4056
|
* RunChangePwdTask返回参数结构体
|