tencentcloud-sdk-iotvideoindustry 1.0.215 → 1.0.216
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/v20201201/models.rb +30 -4
- 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: 245f8b19958db6635282e5287066404c4be885cd
|
4
|
+
data.tar.gz: 069ba9d4c97e05f4dfbfc2391f31abd3826f8636
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fd1ce75f9242e9087bde080f68ef528ef926ac1d1052c2c382aa8ce920764e68a8d29957b119544da27c4f9c0b79d1ec9167357753e711f6bc5b70578608d66
|
7
|
+
data.tar.gz: b72f4eeb3eced5047ab5b881d92683439105c21c22604528378fd1b76e24c7acce3fef1635d53ca58b8d469aae6f19531f682dcd8df3c4da349a6d11a242286d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.216
|
data/lib/v20201201/models.rb
CHANGED
@@ -193,6 +193,10 @@ module TencentCloud
|
|
193
193
|
# @type StreamId: String
|
194
194
|
# @param Command: |控制参数,CmdJson结构转义的json字符串。| Action | string |是|控制动作,play(用于暂停后恢复播放)、pause(暂停)、teardown(停止)、jump(拖动播放)
|
195
195
|
# | Offset | uint |否|拖动播放时的时间偏移量(相对于起始时间),单位:秒
|
196
|
+
# 目前支持的command:
|
197
|
+
# "Command": "{"Action":"PAUSE"}" 暂停
|
198
|
+
# "Command": "{"Action":"PLAY"}" 暂停恢复
|
199
|
+
# "Command": "{"Action":"PLAY","Offset":"15"}" 位置偏移,可以替代jump操作
|
196
200
|
# @type Command: String
|
197
201
|
# @param ChannelId: 通道唯一标识
|
198
202
|
# @type ChannelId: String
|
@@ -1209,6 +1213,7 @@ module TencentCloud
|
|
1209
1213
|
# 4.已用存储容量总数:StorageUsage
|
1210
1214
|
# 5. X-P2P分享流量: P2PFluxTotal
|
1211
1215
|
# 6. X-P2P峰值带宽: P2PPeakValue
|
1216
|
+
# 7. RTMP推流路数(直播推流): LivePushTotal
|
1212
1217
|
# @type StatisticField: String
|
1213
1218
|
|
1214
1219
|
attr_accessor :StartDate, :EndDate, :StatisticField
|
@@ -1290,18 +1295,22 @@ module TencentCloud
|
|
1290
1295
|
# @param P2PPeakValue: X-P2P峰值带宽。 单位bps
|
1291
1296
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1292
1297
|
# @type P2PPeakValue: Float
|
1298
|
+
# @param LivePushTotal: RTMP推流路数 ( 直播推流)
|
1299
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1300
|
+
# @type LivePushTotal: Integer
|
1293
1301
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1294
1302
|
# @type RequestId: String
|
1295
1303
|
|
1296
|
-
attr_accessor :RecordingDevice, :NonRecordingDevice, :WatchFlux, :StorageUsage, :P2PFluxTotal, :P2PPeakValue, :RequestId
|
1304
|
+
attr_accessor :RecordingDevice, :NonRecordingDevice, :WatchFlux, :StorageUsage, :P2PFluxTotal, :P2PPeakValue, :LivePushTotal, :RequestId
|
1297
1305
|
|
1298
|
-
def initialize(recordingdevice=nil, nonrecordingdevice=nil, watchflux=nil, storageusage=nil, p2pfluxtotal=nil, p2ppeakvalue=nil, requestid=nil)
|
1306
|
+
def initialize(recordingdevice=nil, nonrecordingdevice=nil, watchflux=nil, storageusage=nil, p2pfluxtotal=nil, p2ppeakvalue=nil, livepushtotal=nil, requestid=nil)
|
1299
1307
|
@RecordingDevice = recordingdevice
|
1300
1308
|
@NonRecordingDevice = nonrecordingdevice
|
1301
1309
|
@WatchFlux = watchflux
|
1302
1310
|
@StorageUsage = storageusage
|
1303
1311
|
@P2PFluxTotal = p2pfluxtotal
|
1304
1312
|
@P2PPeakValue = p2ppeakvalue
|
1313
|
+
@LivePushTotal = livepushtotal
|
1305
1314
|
@RequestId = requestid
|
1306
1315
|
end
|
1307
1316
|
|
@@ -1312,6 +1321,7 @@ module TencentCloud
|
|
1312
1321
|
@StorageUsage = params['StorageUsage']
|
1313
1322
|
@P2PFluxTotal = params['P2PFluxTotal']
|
1314
1323
|
@P2PPeakValue = params['P2PPeakValue']
|
1324
|
+
@LivePushTotal = params['LivePushTotal']
|
1315
1325
|
@RequestId = params['RequestId']
|
1316
1326
|
end
|
1317
1327
|
end
|
@@ -1409,10 +1419,18 @@ module TencentCloud
|
|
1409
1419
|
# @type IsRecording: Integer
|
1410
1420
|
# @param ChannelId: 通道ID默认必传
|
1411
1421
|
# @type ChannelId: String
|
1422
|
+
# @param PlanId: 录制计划ID
|
1423
|
+
# @type PlanId: String
|
1424
|
+
# @param SceneId: 场景ID
|
1425
|
+
# @type SceneId: Integer
|
1426
|
+
# @param WarnId: 告警ID
|
1427
|
+
# @type WarnId: Integer
|
1428
|
+
# @param RecordType: 录制类型 1: 联动计划录制 2: 告警录制
|
1429
|
+
# @type RecordType: Array
|
1412
1430
|
|
1413
|
-
attr_accessor :Offset, :Limit, :StartTime, :EndTime, :DeviceId, :StartRecordTime, :EndRecordTime, :StartExpireTime, :EndExpireTime, :StartFileSize, :EndFileSize, :IsRecording, :ChannelId
|
1431
|
+
attr_accessor :Offset, :Limit, :StartTime, :EndTime, :DeviceId, :StartRecordTime, :EndRecordTime, :StartExpireTime, :EndExpireTime, :StartFileSize, :EndFileSize, :IsRecording, :ChannelId, :PlanId, :SceneId, :WarnId, :RecordType
|
1414
1432
|
|
1415
|
-
def initialize(offset=nil, limit=nil, starttime=nil, endtime=nil, deviceid=nil, startrecordtime=nil, endrecordtime=nil, startexpiretime=nil, endexpiretime=nil, startfilesize=nil, endfilesize=nil, isrecording=nil, channelid=nil)
|
1433
|
+
def initialize(offset=nil, limit=nil, starttime=nil, endtime=nil, deviceid=nil, startrecordtime=nil, endrecordtime=nil, startexpiretime=nil, endexpiretime=nil, startfilesize=nil, endfilesize=nil, isrecording=nil, channelid=nil, planid=nil, sceneid=nil, warnid=nil, recordtype=nil)
|
1416
1434
|
@Offset = offset
|
1417
1435
|
@Limit = limit
|
1418
1436
|
@StartTime = starttime
|
@@ -1426,6 +1444,10 @@ module TencentCloud
|
|
1426
1444
|
@EndFileSize = endfilesize
|
1427
1445
|
@IsRecording = isrecording
|
1428
1446
|
@ChannelId = channelid
|
1447
|
+
@PlanId = planid
|
1448
|
+
@SceneId = sceneid
|
1449
|
+
@WarnId = warnid
|
1450
|
+
@RecordType = recordtype
|
1429
1451
|
end
|
1430
1452
|
|
1431
1453
|
def deserialize(params)
|
@@ -1442,6 +1464,10 @@ module TencentCloud
|
|
1442
1464
|
@EndFileSize = params['EndFileSize']
|
1443
1465
|
@IsRecording = params['IsRecording']
|
1444
1466
|
@ChannelId = params['ChannelId']
|
1467
|
+
@PlanId = params['PlanId']
|
1468
|
+
@SceneId = params['SceneId']
|
1469
|
+
@WarnId = params['WarnId']
|
1470
|
+
@RecordType = params['RecordType']
|
1445
1471
|
end
|
1446
1472
|
end
|
1447
1473
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-iotvideoindustry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.216
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|