tencentcloud-sdk-ioa 3.0.728 → 3.0.729
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20220601/models.rb +241 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 853f3452bf718276c4b10a66e897c05be1d9e9df
|
4
|
+
data.tar.gz: c89a305ac9033d342cd3c2108a89a726ea09d4d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b21acecf120df83de5eb950c6cf6d42d5de2a3dccb26656a79daa91ef7f8f908c3dcb03634e3392a17bc5c5fe0af653adb6f69d4d9b5a0fd849d3e0b4f6d03a
|
7
|
+
data.tar.gz: 85aac12e6baff155b8a57d45aac08346db4d485b6399db91eada0f38cf2a536753814b631684f6899cfe6e79b8471a80c5d28a6f1517b561fcc6dcbde48d5137
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.729
|
data/lib/v20220601/models.rb
CHANGED
@@ -81,11 +81,15 @@ module TencentCloud
|
|
81
81
|
# @param Paging: 数据分页信息
|
82
82
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
83
83
|
# @type Paging: :class:`Tencentcloud::Ioa.v20220601.models.Paging`
|
84
|
+
# @param Items: 业务响应数据
|
85
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
86
|
+
# @type Items: Array
|
84
87
|
|
85
|
-
attr_accessor :Paging
|
88
|
+
attr_accessor :Paging, :Items
|
86
89
|
|
87
|
-
def initialize(paging=nil)
|
90
|
+
def initialize(paging=nil, items=nil)
|
88
91
|
@Paging = paging
|
92
|
+
@Items = items
|
89
93
|
end
|
90
94
|
|
91
95
|
def deserialize(params)
|
@@ -93,6 +97,14 @@ module TencentCloud
|
|
93
97
|
@Paging = Paging.new
|
94
98
|
@Paging.deserialize(params['Paging'])
|
95
99
|
end
|
100
|
+
unless params['Items'].nil?
|
101
|
+
@Items = []
|
102
|
+
params['Items'].each do |i|
|
103
|
+
devicedetail_tmp = DeviceDetail.new
|
104
|
+
devicedetail_tmp.deserialize(i)
|
105
|
+
@Items << devicedetail_tmp
|
106
|
+
end
|
107
|
+
end
|
96
108
|
end
|
97
109
|
end
|
98
110
|
|
@@ -200,6 +212,233 @@ module TencentCloud
|
|
200
212
|
end
|
201
213
|
end
|
202
214
|
|
215
|
+
# 业务响应数据
|
216
|
+
class DeviceDetail < TencentCloud::Common::AbstractModel
|
217
|
+
# @param Id: 设备ID(只支持32位)
|
218
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
219
|
+
# @type Id: Integer
|
220
|
+
# @param Mid: 设备唯一标识符
|
221
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
222
|
+
# @type Mid: String
|
223
|
+
# @param Name: 终端名(设备名)
|
224
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
225
|
+
# @type Name: String
|
226
|
+
# @param GroupId: 设备所在分组ID(只支持32位)
|
227
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
228
|
+
# @type GroupId: Integer
|
229
|
+
# @param OsType: OS平台(只支持32位)
|
230
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
231
|
+
# @type OsType: Integer
|
232
|
+
# @param Ip: 设备IP地址(出口IP)
|
233
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
234
|
+
# @type Ip: String
|
235
|
+
# @param OnlineStatus: 在线状态 2 在线 0,1 离线(只支持32位)
|
236
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
237
|
+
# @type OnlineStatus: Integer
|
238
|
+
# @param Version: 客户端版本号-大整数
|
239
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
240
|
+
# @type Version: String
|
241
|
+
# @param StrVersion: 客户端版本号-点分字符串
|
242
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
243
|
+
# @type StrVersion: String
|
244
|
+
# @param Itime: 首次在线时间
|
245
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
246
|
+
# @type Itime: String
|
247
|
+
# @param ConnActiveTime: 最后一次在线时间
|
248
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
249
|
+
# @type ConnActiveTime: String
|
250
|
+
# @param Locked: 设备是否加锁 1 锁定 0 2 非锁定(只支持32位)
|
251
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
252
|
+
# @type Locked: Integer
|
253
|
+
# @param LocalIpList: 设备本地IP列表, 包括IP
|
254
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
255
|
+
# @type LocalIpList: String
|
256
|
+
# @param HostId: 主机ID(只支持32位)
|
257
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
258
|
+
# @type HostId: Integer
|
259
|
+
# @param GroupName: 设备所属分组名
|
260
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
261
|
+
# @type GroupName: String
|
262
|
+
# @param GroupNamePath: 设备所属分组路径
|
263
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
264
|
+
# @type GroupNamePath: String
|
265
|
+
# @param CriticalVulListCount: 未修复高危漏洞数(只支持32位)
|
266
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
267
|
+
# @type CriticalVulListCount: Integer
|
268
|
+
# @param ComputerName: 设备名 和Name相同,保留参数
|
269
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
270
|
+
# @type ComputerName: String
|
271
|
+
# @param DomainName: 登录域名
|
272
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
273
|
+
# @type DomainName: String
|
274
|
+
# @param MacAddr: MAC地址
|
275
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
276
|
+
# @type MacAddr: String
|
277
|
+
# @param VulCount: 漏洞数(只支持32位)
|
278
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
279
|
+
# @type VulCount: Integer
|
280
|
+
# @param RiskCount: 病毒风险数(只支持32位)
|
281
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
282
|
+
# @type RiskCount: Integer
|
283
|
+
# @param VirusVer: 病毒库版本
|
284
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
285
|
+
# @type VirusVer: String
|
286
|
+
# @param VulVersion: 漏洞库版本
|
287
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
288
|
+
# @type VulVersion: String
|
289
|
+
# @param SysRepVersion: 系统修复引擎版本
|
290
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
291
|
+
# @type SysRepVersion: String
|
292
|
+
# @param VulCriticalList: 高危补丁列表
|
293
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
294
|
+
# @type VulCriticalList: Array
|
295
|
+
# @param Tags: 标签
|
296
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
297
|
+
# @type Tags: String
|
298
|
+
# @param UserName: 终端用户名
|
299
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
300
|
+
# @type UserName: String
|
301
|
+
# @param FirewallStatus: 防火墙状态(只支持32位)
|
302
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
303
|
+
# @type FirewallStatus: Integer
|
304
|
+
# @param SerialNum: SN序列号
|
305
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
306
|
+
# @type SerialNum: String
|
307
|
+
# @param DeviceStrategyVer: 设备管控策略版本
|
308
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
309
|
+
# @type DeviceStrategyVer: String
|
310
|
+
# @param NGNStrategyVer: NGN策略版本
|
311
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
312
|
+
# @type NGNStrategyVer: String
|
313
|
+
# @param IOAUserName: 最近登录账号
|
314
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
315
|
+
# @type IOAUserName: String
|
316
|
+
# @param DeviceNewStrategyVer: 设备管控新策略
|
317
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
318
|
+
# @type DeviceNewStrategyVer: String
|
319
|
+
# @param NGNNewStrategyVer: NGN策略新版本
|
320
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
321
|
+
# @type NGNNewStrategyVer: String
|
322
|
+
# @param HostName: 主机名称
|
323
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
324
|
+
# @type HostName: String
|
325
|
+
# @param BaseBoardSn: 主板序列号
|
326
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
327
|
+
# @type BaseBoardSn: String
|
328
|
+
# @param AccountUsers: 绑定账户只有名字
|
329
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
330
|
+
# @type AccountUsers: String
|
331
|
+
# @param IdentityStrategyVer: 身份策略版本
|
332
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
333
|
+
# @type IdentityStrategyVer: String
|
334
|
+
# @param IdentityNewStrategyVer: 身份策略新版本
|
335
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
336
|
+
# @type IdentityNewStrategyVer: String
|
337
|
+
# @param AccountGroupName: 最近登录账号部门
|
338
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
339
|
+
# @type AccountGroupName: String
|
340
|
+
# @param AccountName: 登录账号姓名
|
341
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
342
|
+
# @type AccountName: String
|
343
|
+
# @param AccountGroupId: 账号组id
|
344
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
345
|
+
# @type AccountGroupId: Integer
|
346
|
+
|
347
|
+
attr_accessor :Id, :Mid, :Name, :GroupId, :OsType, :Ip, :OnlineStatus, :Version, :StrVersion, :Itime, :ConnActiveTime, :Locked, :LocalIpList, :HostId, :GroupName, :GroupNamePath, :CriticalVulListCount, :ComputerName, :DomainName, :MacAddr, :VulCount, :RiskCount, :VirusVer, :VulVersion, :SysRepVersion, :VulCriticalList, :Tags, :UserName, :FirewallStatus, :SerialNum, :DeviceStrategyVer, :NGNStrategyVer, :IOAUserName, :DeviceNewStrategyVer, :NGNNewStrategyVer, :HostName, :BaseBoardSn, :AccountUsers, :IdentityStrategyVer, :IdentityNewStrategyVer, :AccountGroupName, :AccountName, :AccountGroupId
|
348
|
+
|
349
|
+
def initialize(id=nil, mid=nil, name=nil, groupid=nil, ostype=nil, ip=nil, onlinestatus=nil, version=nil, strversion=nil, itime=nil, connactivetime=nil, locked=nil, localiplist=nil, hostid=nil, groupname=nil, groupnamepath=nil, criticalvullistcount=nil, computername=nil, domainname=nil, macaddr=nil, vulcount=nil, riskcount=nil, virusver=nil, vulversion=nil, sysrepversion=nil, vulcriticallist=nil, tags=nil, username=nil, firewallstatus=nil, serialnum=nil, devicestrategyver=nil, ngnstrategyver=nil, ioausername=nil, devicenewstrategyver=nil, ngnnewstrategyver=nil, hostname=nil, baseboardsn=nil, accountusers=nil, identitystrategyver=nil, identitynewstrategyver=nil, accountgroupname=nil, accountname=nil, accountgroupid=nil)
|
350
|
+
@Id = id
|
351
|
+
@Mid = mid
|
352
|
+
@Name = name
|
353
|
+
@GroupId = groupid
|
354
|
+
@OsType = ostype
|
355
|
+
@Ip = ip
|
356
|
+
@OnlineStatus = onlinestatus
|
357
|
+
@Version = version
|
358
|
+
@StrVersion = strversion
|
359
|
+
@Itime = itime
|
360
|
+
@ConnActiveTime = connactivetime
|
361
|
+
@Locked = locked
|
362
|
+
@LocalIpList = localiplist
|
363
|
+
@HostId = hostid
|
364
|
+
@GroupName = groupname
|
365
|
+
@GroupNamePath = groupnamepath
|
366
|
+
@CriticalVulListCount = criticalvullistcount
|
367
|
+
@ComputerName = computername
|
368
|
+
@DomainName = domainname
|
369
|
+
@MacAddr = macaddr
|
370
|
+
@VulCount = vulcount
|
371
|
+
@RiskCount = riskcount
|
372
|
+
@VirusVer = virusver
|
373
|
+
@VulVersion = vulversion
|
374
|
+
@SysRepVersion = sysrepversion
|
375
|
+
@VulCriticalList = vulcriticallist
|
376
|
+
@Tags = tags
|
377
|
+
@UserName = username
|
378
|
+
@FirewallStatus = firewallstatus
|
379
|
+
@SerialNum = serialnum
|
380
|
+
@DeviceStrategyVer = devicestrategyver
|
381
|
+
@NGNStrategyVer = ngnstrategyver
|
382
|
+
@IOAUserName = ioausername
|
383
|
+
@DeviceNewStrategyVer = devicenewstrategyver
|
384
|
+
@NGNNewStrategyVer = ngnnewstrategyver
|
385
|
+
@HostName = hostname
|
386
|
+
@BaseBoardSn = baseboardsn
|
387
|
+
@AccountUsers = accountusers
|
388
|
+
@IdentityStrategyVer = identitystrategyver
|
389
|
+
@IdentityNewStrategyVer = identitynewstrategyver
|
390
|
+
@AccountGroupName = accountgroupname
|
391
|
+
@AccountName = accountname
|
392
|
+
@AccountGroupId = accountgroupid
|
393
|
+
end
|
394
|
+
|
395
|
+
def deserialize(params)
|
396
|
+
@Id = params['Id']
|
397
|
+
@Mid = params['Mid']
|
398
|
+
@Name = params['Name']
|
399
|
+
@GroupId = params['GroupId']
|
400
|
+
@OsType = params['OsType']
|
401
|
+
@Ip = params['Ip']
|
402
|
+
@OnlineStatus = params['OnlineStatus']
|
403
|
+
@Version = params['Version']
|
404
|
+
@StrVersion = params['StrVersion']
|
405
|
+
@Itime = params['Itime']
|
406
|
+
@ConnActiveTime = params['ConnActiveTime']
|
407
|
+
@Locked = params['Locked']
|
408
|
+
@LocalIpList = params['LocalIpList']
|
409
|
+
@HostId = params['HostId']
|
410
|
+
@GroupName = params['GroupName']
|
411
|
+
@GroupNamePath = params['GroupNamePath']
|
412
|
+
@CriticalVulListCount = params['CriticalVulListCount']
|
413
|
+
@ComputerName = params['ComputerName']
|
414
|
+
@DomainName = params['DomainName']
|
415
|
+
@MacAddr = params['MacAddr']
|
416
|
+
@VulCount = params['VulCount']
|
417
|
+
@RiskCount = params['RiskCount']
|
418
|
+
@VirusVer = params['VirusVer']
|
419
|
+
@VulVersion = params['VulVersion']
|
420
|
+
@SysRepVersion = params['SysRepVersion']
|
421
|
+
@VulCriticalList = params['VulCriticalList']
|
422
|
+
@Tags = params['Tags']
|
423
|
+
@UserName = params['UserName']
|
424
|
+
@FirewallStatus = params['FirewallStatus']
|
425
|
+
@SerialNum = params['SerialNum']
|
426
|
+
@DeviceStrategyVer = params['DeviceStrategyVer']
|
427
|
+
@NGNStrategyVer = params['NGNStrategyVer']
|
428
|
+
@IOAUserName = params['IOAUserName']
|
429
|
+
@DeviceNewStrategyVer = params['DeviceNewStrategyVer']
|
430
|
+
@NGNNewStrategyVer = params['NGNNewStrategyVer']
|
431
|
+
@HostName = params['HostName']
|
432
|
+
@BaseBoardSn = params['BaseBoardSn']
|
433
|
+
@AccountUsers = params['AccountUsers']
|
434
|
+
@IdentityStrategyVer = params['IdentityStrategyVer']
|
435
|
+
@IdentityNewStrategyVer = params['IdentityNewStrategyVer']
|
436
|
+
@AccountGroupName = params['AccountGroupName']
|
437
|
+
@AccountName = params['AccountName']
|
438
|
+
@AccountGroupId = params['AccountGroupId']
|
439
|
+
end
|
440
|
+
end
|
441
|
+
|
203
442
|
# Filters 条件过滤
|
204
443
|
class Filter < TencentCloud::Common::AbstractModel
|
205
444
|
# @param Field: 过滤字段
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ioa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.729
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|