tencentcloud-sdk-nodejs-bh 4.1.65 → 4.1.68
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
|
@@ -2031,6 +2031,87 @@ export interface DeleteOperationTasksResponse {
|
|
|
2031
2031
|
*/
|
|
2032
2032
|
RequestId?: string;
|
|
2033
2033
|
}
|
|
2034
|
+
/**
|
|
2035
|
+
* 命令集合
|
|
2036
|
+
*/
|
|
2037
|
+
export interface Command {
|
|
2038
|
+
/**
|
|
2039
|
+
* 命令
|
|
2040
|
+
*/
|
|
2041
|
+
Cmd?: string;
|
|
2042
|
+
/**
|
|
2043
|
+
* 命令输入的时间
|
|
2044
|
+
*/
|
|
2045
|
+
Time?: string;
|
|
2046
|
+
/**
|
|
2047
|
+
* 命令执行时间相对于所属会话开始时间的偏移量,单位ms
|
|
2048
|
+
*/
|
|
2049
|
+
TimeOffset?: number;
|
|
2050
|
+
/**
|
|
2051
|
+
* 命令执行情况,1--允许,2--拒绝,3--确认
|
|
2052
|
+
*/
|
|
2053
|
+
Action?: number;
|
|
2054
|
+
/**
|
|
2055
|
+
* 会话id
|
|
2056
|
+
*/
|
|
2057
|
+
Sid?: string;
|
|
2058
|
+
/**
|
|
2059
|
+
* 用户名
|
|
2060
|
+
*/
|
|
2061
|
+
UserName?: string;
|
|
2062
|
+
/**
|
|
2063
|
+
* 设备account
|
|
2064
|
+
*/
|
|
2065
|
+
Account?: string;
|
|
2066
|
+
/**
|
|
2067
|
+
* 设备ip
|
|
2068
|
+
*/
|
|
2069
|
+
InstanceId?: string;
|
|
2070
|
+
/**
|
|
2071
|
+
* source ip
|
|
2072
|
+
*/
|
|
2073
|
+
FromIp?: string;
|
|
2074
|
+
/**
|
|
2075
|
+
* 该命令所属会话的会话开始时间
|
|
2076
|
+
*/
|
|
2077
|
+
SessTime?: string;
|
|
2078
|
+
/**
|
|
2079
|
+
* 该命令所属会话的会话开始时间
|
|
2080
|
+
*/
|
|
2081
|
+
SessionTime?: string;
|
|
2082
|
+
/**
|
|
2083
|
+
* 复核时间
|
|
2084
|
+
*/
|
|
2085
|
+
ConfirmTime?: string;
|
|
2086
|
+
/**
|
|
2087
|
+
* 用户部门id
|
|
2088
|
+
*/
|
|
2089
|
+
UserDepartmentId?: string;
|
|
2090
|
+
/**
|
|
2091
|
+
* 用户部门name
|
|
2092
|
+
*/
|
|
2093
|
+
UserDepartmentName?: string;
|
|
2094
|
+
/**
|
|
2095
|
+
* 设备部门id
|
|
2096
|
+
*/
|
|
2097
|
+
DeviceDepartmentId?: string;
|
|
2098
|
+
/**
|
|
2099
|
+
* 设备部门name
|
|
2100
|
+
*/
|
|
2101
|
+
DeviceDepartmentName?: string;
|
|
2102
|
+
/**
|
|
2103
|
+
* 会话大小
|
|
2104
|
+
*/
|
|
2105
|
+
Size?: number;
|
|
2106
|
+
/**
|
|
2107
|
+
* 签名值
|
|
2108
|
+
*/
|
|
2109
|
+
SignValue?: string;
|
|
2110
|
+
/**
|
|
2111
|
+
* 资产类型
|
|
2112
|
+
*/
|
|
2113
|
+
DeviceKind?: string;
|
|
2114
|
+
}
|
|
2034
2115
|
/**
|
|
2035
2116
|
* ModifyAcl请求参数结构体
|
|
2036
2117
|
*/
|
|
@@ -2247,6 +2328,10 @@ export interface SearchCommandBySidResponse {
|
|
|
2247
2328
|
* 总记录数
|
|
2248
2329
|
*/
|
|
2249
2330
|
TotalCount?: number;
|
|
2331
|
+
/**
|
|
2332
|
+
* 命令列表
|
|
2333
|
+
*/
|
|
2334
|
+
CommandSet?: Array<Command>;
|
|
2250
2335
|
/**
|
|
2251
2336
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2252
2337
|
*/
|
|
@@ -3647,6 +3732,27 @@ export interface UnlockUserRequest {
|
|
|
3647
3732
|
*/
|
|
3648
3733
|
IdSet: Array<number | bigint>;
|
|
3649
3734
|
}
|
|
3735
|
+
/**
|
|
3736
|
+
* 回放所需字段信息
|
|
3737
|
+
*/
|
|
3738
|
+
export interface ReplayInformation {
|
|
3739
|
+
/**
|
|
3740
|
+
* 令牌
|
|
3741
|
+
*/
|
|
3742
|
+
Token?: string;
|
|
3743
|
+
/**
|
|
3744
|
+
* 会话开始时间
|
|
3745
|
+
*/
|
|
3746
|
+
StartTime?: string;
|
|
3747
|
+
/**
|
|
3748
|
+
* 回放链接
|
|
3749
|
+
*/
|
|
3750
|
+
Address?: string;
|
|
3751
|
+
/**
|
|
3752
|
+
* 回放类型 ,默认0, 1-rfb 2-mp4 3-ssh
|
|
3753
|
+
*/
|
|
3754
|
+
ReplayType?: number;
|
|
3755
|
+
}
|
|
3650
3756
|
/**
|
|
3651
3757
|
* CreateDeviceAccount请求参数结构体
|
|
3652
3758
|
*/
|
|
@@ -4903,6 +5009,10 @@ export interface SearchFileResult {
|
|
|
4903
5009
|
* ReplaySession返回参数结构体
|
|
4904
5010
|
*/
|
|
4905
5011
|
export interface ReplaySessionResponse {
|
|
5012
|
+
/**
|
|
5013
|
+
* 回放所需信息
|
|
5014
|
+
*/
|
|
5015
|
+
ReplayInfo?: ReplayInformation;
|
|
4906
5016
|
/**
|
|
4907
5017
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4908
5018
|
*/
|