tencentcloud-sdk-trro 3.0.875 → 3.0.876
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20220325/models.rb +111 -5
- 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: ca95a6f7e633b437cd1f612b94ceb866965912ab
|
4
|
+
data.tar.gz: dfecb07a50d983ac6bd23e03b06c2ada3f490be2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43ce0f9b44d1520fb9e6bb2606a3a29db5eb6523e2fe55f4bd6c6777caf007880aec32d35914810812288619c135890a653bc529e4e69ab2440080fa570e5da0
|
7
|
+
data.tar.gz: ac0e9533483cf0e2bc54fead757dfde63593cfafd910b142016f748e993c4d70ed77ae45f852d511fa1f023f40860f44c64911eeee53b63cdc8c6d66ea740fcf
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.876
|
data/lib/v20220325/models.rb
CHANGED
@@ -334,15 +334,18 @@ module TencentCloud
|
|
334
334
|
# @type PageSize: Integer
|
335
335
|
# @param PageNumber: 当前页码,不填默认为1(首页)
|
336
336
|
# @type PageNumber: Integer
|
337
|
+
# @param DeviceStatus: 设备状态筛选,不填默认为不过滤。取值:["ready","connected","online"],online代表ready或connected
|
338
|
+
# @type DeviceStatus: String
|
337
339
|
|
338
|
-
attr_accessor :ProjectId, :DeviceType, :SearchWords, :PageSize, :PageNumber
|
340
|
+
attr_accessor :ProjectId, :DeviceType, :SearchWords, :PageSize, :PageNumber, :DeviceStatus
|
339
341
|
|
340
|
-
def initialize(projectid=nil, devicetype=nil, searchwords=nil, pagesize=nil, pagenumber=nil)
|
342
|
+
def initialize(projectid=nil, devicetype=nil, searchwords=nil, pagesize=nil, pagenumber=nil, devicestatus=nil)
|
341
343
|
@ProjectId = projectid
|
342
344
|
@DeviceType = devicetype
|
343
345
|
@SearchWords = searchwords
|
344
346
|
@PageSize = pagesize
|
345
347
|
@PageNumber = pagenumber
|
348
|
+
@DeviceStatus = devicestatus
|
346
349
|
end
|
347
350
|
|
348
351
|
def deserialize(params)
|
@@ -351,6 +354,7 @@ module TencentCloud
|
|
351
354
|
@SearchWords = params['SearchWords']
|
352
355
|
@PageSize = params['PageSize']
|
353
356
|
@PageNumber = params['PageNumber']
|
357
|
+
@DeviceStatus = params['DeviceStatus']
|
354
358
|
end
|
355
359
|
end
|
356
360
|
|
@@ -1368,6 +1372,48 @@ module TencentCloud
|
|
1368
1372
|
end
|
1369
1373
|
end
|
1370
1374
|
|
1375
|
+
# 多网的网卡状态信息
|
1376
|
+
class MultiNet < TencentCloud::Common::AbstractModel
|
1377
|
+
# @param NetId: 网卡序号
|
1378
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1379
|
+
# @type NetId: Integer
|
1380
|
+
# @param NetIp: 网卡IP
|
1381
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1382
|
+
# @type NetIp: String
|
1383
|
+
# @param Rtt: 时延,单位ms
|
1384
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1385
|
+
# @type Rtt: Array
|
1386
|
+
# @param Lost: 丢包率,单位%
|
1387
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1388
|
+
# @type Lost: Array
|
1389
|
+
# @param SendBps: 发送bps,单位kbps
|
1390
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1391
|
+
# @type SendBps: Array
|
1392
|
+
# @param RecvBps: 接收bps,单位kbps
|
1393
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1394
|
+
# @type RecvBps: Array
|
1395
|
+
|
1396
|
+
attr_accessor :NetId, :NetIp, :Rtt, :Lost, :SendBps, :RecvBps
|
1397
|
+
|
1398
|
+
def initialize(netid=nil, netip=nil, rtt=nil, lost=nil, sendbps=nil, recvbps=nil)
|
1399
|
+
@NetId = netid
|
1400
|
+
@NetIp = netip
|
1401
|
+
@Rtt = rtt
|
1402
|
+
@Lost = lost
|
1403
|
+
@SendBps = sendbps
|
1404
|
+
@RecvBps = recvbps
|
1405
|
+
end
|
1406
|
+
|
1407
|
+
def deserialize(params)
|
1408
|
+
@NetId = params['NetId']
|
1409
|
+
@NetIp = params['NetIp']
|
1410
|
+
@Rtt = params['Rtt']
|
1411
|
+
@Lost = params['Lost']
|
1412
|
+
@SendBps = params['SendBps']
|
1413
|
+
@RecvBps = params['RecvBps']
|
1414
|
+
end
|
1415
|
+
end
|
1416
|
+
|
1371
1417
|
# 权限信息
|
1372
1418
|
class PolicyInfo < TencentCloud::Common::AbstractModel
|
1373
1419
|
# @param RemoteDeviceId: 远端设备ID
|
@@ -1499,7 +1545,7 @@ module TencentCloud
|
|
1499
1545
|
# @param DecodeCost: 解码耗时,单位:ms
|
1500
1546
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1501
1547
|
# @type DecodeCost: Array
|
1502
|
-
# @param RenderConst:
|
1548
|
+
# @param RenderConst: 【已废弃,使用RenderCost】
|
1503
1549
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1504
1550
|
# @type RenderConst: Array
|
1505
1551
|
# @param K100: 卡顿k100
|
@@ -1526,10 +1572,43 @@ module TencentCloud
|
|
1526
1572
|
# @param CaptureCost: 采集耗时,单位:ms
|
1527
1573
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1528
1574
|
# @type CaptureCost: Array
|
1575
|
+
# @param RenderCost: 渲染耗时,单位:ms
|
1576
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1577
|
+
# @type RenderCost: Array
|
1578
|
+
# @param ConfigWidth: 配置宽度
|
1579
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1580
|
+
# @type ConfigWidth: Integer
|
1581
|
+
# @param ConfigHeight: 配置高度
|
1582
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1583
|
+
# @type ConfigHeight: Integer
|
1584
|
+
# @param FrameDelta: 平均帧间隔
|
1585
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1586
|
+
# @type FrameDelta: Array
|
1587
|
+
# @param MaxFrameDelta: 最大帧间隔
|
1588
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1589
|
+
# @type MaxFrameDelta: Array
|
1590
|
+
# @param TotalBitrateEstimate: 总码率评估,单位:kbps
|
1591
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1592
|
+
# @type TotalBitrateEstimate: Array
|
1593
|
+
# @param Lag100Duration: 帧间隔大于100ms的卡顿时长
|
1594
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1595
|
+
# @type Lag100Duration: Array
|
1596
|
+
# @param Lag150Duration: 帧间隔大于150ms的卡顿时长
|
1597
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1598
|
+
# @type Lag150Duration: Array
|
1599
|
+
# @param MultiMode: 是否开启多网:0 单网,1 多网
|
1600
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1601
|
+
# @type MultiMode: Integer
|
1602
|
+
# @param MultiNet: 多网卡信息
|
1603
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1604
|
+
# @type MultiNet: Array
|
1529
1605
|
|
1530
|
-
attr_accessor :DeviceType, :StartTime, :EndTime, :SessionId, :Rate, :Fps, :Lost, :NetworkLatency, :VideoLatency, :CpuUsed, :MemUsed, :TimeOffset, :ProjectId, :DeviceId, :Ver, :SdkMode, :DecodeCost, :RenderConst, :K100, :K150, :NACK, :BitRateEstimate, :Width, :Height, :EncodeCost, :CaptureCost
|
1606
|
+
attr_accessor :DeviceType, :StartTime, :EndTime, :SessionId, :Rate, :Fps, :Lost, :NetworkLatency, :VideoLatency, :CpuUsed, :MemUsed, :TimeOffset, :ProjectId, :DeviceId, :Ver, :SdkMode, :DecodeCost, :RenderConst, :K100, :K150, :NACK, :BitRateEstimate, :Width, :Height, :EncodeCost, :CaptureCost, :RenderCost, :ConfigWidth, :ConfigHeight, :FrameDelta, :MaxFrameDelta, :TotalBitrateEstimate, :Lag100Duration, :Lag150Duration, :MultiMode, :MultiNet
|
1607
|
+
extend Gem::Deprecate
|
1608
|
+
deprecate :RenderConst, :none, 2024, 7
|
1609
|
+
deprecate :RenderConst=, :none, 2024, 7
|
1531
1610
|
|
1532
|
-
def initialize(devicetype=nil, starttime=nil, endtime=nil, sessionid=nil, rate=nil, fps=nil, lost=nil, networklatency=nil, videolatency=nil, cpuused=nil, memused=nil, timeoffset=nil, projectid=nil, deviceid=nil, ver=nil, sdkmode=nil, decodecost=nil, renderconst=nil, k100=nil, k150=nil, nack=nil, bitrateestimate=nil, width=nil, height=nil, encodecost=nil, capturecost=nil)
|
1611
|
+
def initialize(devicetype=nil, starttime=nil, endtime=nil, sessionid=nil, rate=nil, fps=nil, lost=nil, networklatency=nil, videolatency=nil, cpuused=nil, memused=nil, timeoffset=nil, projectid=nil, deviceid=nil, ver=nil, sdkmode=nil, decodecost=nil, renderconst=nil, k100=nil, k150=nil, nack=nil, bitrateestimate=nil, width=nil, height=nil, encodecost=nil, capturecost=nil, rendercost=nil, configwidth=nil, configheight=nil, framedelta=nil, maxframedelta=nil, totalbitrateestimate=nil, lag100duration=nil, lag150duration=nil, multimode=nil, multinet=nil)
|
1533
1612
|
@DeviceType = devicetype
|
1534
1613
|
@StartTime = starttime
|
1535
1614
|
@EndTime = endtime
|
@@ -1556,6 +1635,16 @@ module TencentCloud
|
|
1556
1635
|
@Height = height
|
1557
1636
|
@EncodeCost = encodecost
|
1558
1637
|
@CaptureCost = capturecost
|
1638
|
+
@RenderCost = rendercost
|
1639
|
+
@ConfigWidth = configwidth
|
1640
|
+
@ConfigHeight = configheight
|
1641
|
+
@FrameDelta = framedelta
|
1642
|
+
@MaxFrameDelta = maxframedelta
|
1643
|
+
@TotalBitrateEstimate = totalbitrateestimate
|
1644
|
+
@Lag100Duration = lag100duration
|
1645
|
+
@Lag150Duration = lag150duration
|
1646
|
+
@MultiMode = multimode
|
1647
|
+
@MultiNet = multinet
|
1559
1648
|
end
|
1560
1649
|
|
1561
1650
|
def deserialize(params)
|
@@ -1585,6 +1674,23 @@ module TencentCloud
|
|
1585
1674
|
@Height = params['Height']
|
1586
1675
|
@EncodeCost = params['EncodeCost']
|
1587
1676
|
@CaptureCost = params['CaptureCost']
|
1677
|
+
@RenderCost = params['RenderCost']
|
1678
|
+
@ConfigWidth = params['ConfigWidth']
|
1679
|
+
@ConfigHeight = params['ConfigHeight']
|
1680
|
+
@FrameDelta = params['FrameDelta']
|
1681
|
+
@MaxFrameDelta = params['MaxFrameDelta']
|
1682
|
+
@TotalBitrateEstimate = params['TotalBitrateEstimate']
|
1683
|
+
@Lag100Duration = params['Lag100Duration']
|
1684
|
+
@Lag150Duration = params['Lag150Duration']
|
1685
|
+
@MultiMode = params['MultiMode']
|
1686
|
+
unless params['MultiNet'].nil?
|
1687
|
+
@MultiNet = []
|
1688
|
+
params['MultiNet'].each do |i|
|
1689
|
+
multinet_tmp = MultiNet.new
|
1690
|
+
multinet_tmp.deserialize(i)
|
1691
|
+
@MultiNet << multinet_tmp
|
1692
|
+
end
|
1693
|
+
end
|
1588
1694
|
end
|
1589
1695
|
end
|
1590
1696
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-trro
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.876
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|