tencentcloud-sdk-live 3.0.470 → 3.0.472
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/v20180801/client.rb +1 -1
- data/lib/v20180801/models.rb +19 -6
- 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: c9f6c62e0a2717004293d633f37faf70f97e1e20
|
4
|
+
data.tar.gz: 1d1670629c0af34ebdb497a7b84dc202a11330d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3c02ea56591b84c0ba185740becbede28bbb90da2a1318ec6415e8ed2917fcd2e5d0675e07f3a64d5576d79560b3dce51208affe456279fdb360465513dceae
|
7
|
+
data.tar.gz: 74a29a03bc5b33f1e2f044c62550dc2159bf4a4a5561353923bdfaa896fa701ad3ea2d733bd88cefbd7a69198e49791014624d7f8ef7e9dbb607e45330ebaf4a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.472
|
data/lib/v20180801/client.rb
CHANGED
@@ -203,7 +203,7 @@ module TencentCloud
|
|
203
203
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
204
204
|
end
|
205
205
|
|
206
|
-
#
|
206
|
+
# 创建回调模板,数量上限:50,成功返回模板id后,需要调用[CreateLiveCallbackRule](/document/product/267/32638)接口将模板 ID 绑定到域名/路径使用。
|
207
207
|
# <br>回调协议相关文档:[事件消息通知](/document/product/267/32744)。
|
208
208
|
# 注意:至少填写一个回调 URL。
|
209
209
|
|
data/lib/v20180801/models.rb
CHANGED
@@ -434,10 +434,13 @@ module TencentCloud
|
|
434
434
|
# @type PornCensorshipNotifyUrl: String
|
435
435
|
# @param CallbackKey: 回调的鉴权 key。
|
436
436
|
# @type CallbackKey: String
|
437
|
+
# @param PushExceptionNotifyUrl: 推流异常回调 URL。
|
438
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
439
|
+
# @type PushExceptionNotifyUrl: String
|
437
440
|
|
438
|
-
attr_accessor :TemplateId, :TemplateName, :Description, :StreamBeginNotifyUrl, :StreamMixNotifyUrl, :StreamEndNotifyUrl, :RecordNotifyUrl, :SnapshotNotifyUrl, :PornCensorshipNotifyUrl, :CallbackKey
|
441
|
+
attr_accessor :TemplateId, :TemplateName, :Description, :StreamBeginNotifyUrl, :StreamMixNotifyUrl, :StreamEndNotifyUrl, :RecordNotifyUrl, :SnapshotNotifyUrl, :PornCensorshipNotifyUrl, :CallbackKey, :PushExceptionNotifyUrl
|
439
442
|
|
440
|
-
def initialize(templateid=nil, templatename=nil, description=nil, streambeginnotifyurl=nil, streammixnotifyurl=nil, streamendnotifyurl=nil, recordnotifyurl=nil, snapshotnotifyurl=nil, porncensorshipnotifyurl=nil, callbackkey=nil)
|
443
|
+
def initialize(templateid=nil, templatename=nil, description=nil, streambeginnotifyurl=nil, streammixnotifyurl=nil, streamendnotifyurl=nil, recordnotifyurl=nil, snapshotnotifyurl=nil, porncensorshipnotifyurl=nil, callbackkey=nil, pushexceptionnotifyurl=nil)
|
441
444
|
@TemplateId = templateid
|
442
445
|
@TemplateName = templatename
|
443
446
|
@Description = description
|
@@ -448,6 +451,7 @@ module TencentCloud
|
|
448
451
|
@SnapshotNotifyUrl = snapshotnotifyurl
|
449
452
|
@PornCensorshipNotifyUrl = porncensorshipnotifyurl
|
450
453
|
@CallbackKey = callbackkey
|
454
|
+
@PushExceptionNotifyUrl = pushexceptionnotifyurl
|
451
455
|
end
|
452
456
|
|
453
457
|
def deserialize(params)
|
@@ -461,6 +465,7 @@ module TencentCloud
|
|
461
465
|
@SnapshotNotifyUrl = params['SnapshotNotifyUrl']
|
462
466
|
@PornCensorshipNotifyUrl = params['PornCensorshipNotifyUrl']
|
463
467
|
@CallbackKey = params['CallbackKey']
|
468
|
+
@PushExceptionNotifyUrl = params['PushExceptionNotifyUrl']
|
464
469
|
end
|
465
470
|
end
|
466
471
|
|
@@ -1032,10 +1037,12 @@ module TencentCloud
|
|
1032
1037
|
# @type CallbackKey: String
|
1033
1038
|
# @param StreamMixNotifyUrl: 参数已弃用。
|
1034
1039
|
# @type StreamMixNotifyUrl: String
|
1040
|
+
# @param PushExceptionNotifyUrl: 推流异常回调 URL。
|
1041
|
+
# @type PushExceptionNotifyUrl: String
|
1035
1042
|
|
1036
|
-
attr_accessor :TemplateName, :Description, :StreamBeginNotifyUrl, :StreamEndNotifyUrl, :RecordNotifyUrl, :SnapshotNotifyUrl, :PornCensorshipNotifyUrl, :CallbackKey, :StreamMixNotifyUrl
|
1043
|
+
attr_accessor :TemplateName, :Description, :StreamBeginNotifyUrl, :StreamEndNotifyUrl, :RecordNotifyUrl, :SnapshotNotifyUrl, :PornCensorshipNotifyUrl, :CallbackKey, :StreamMixNotifyUrl, :PushExceptionNotifyUrl
|
1037
1044
|
|
1038
|
-
def initialize(templatename=nil, description=nil, streambeginnotifyurl=nil, streamendnotifyurl=nil, recordnotifyurl=nil, snapshotnotifyurl=nil, porncensorshipnotifyurl=nil, callbackkey=nil, streammixnotifyurl=nil)
|
1045
|
+
def initialize(templatename=nil, description=nil, streambeginnotifyurl=nil, streamendnotifyurl=nil, recordnotifyurl=nil, snapshotnotifyurl=nil, porncensorshipnotifyurl=nil, callbackkey=nil, streammixnotifyurl=nil, pushexceptionnotifyurl=nil)
|
1039
1046
|
@TemplateName = templatename
|
1040
1047
|
@Description = description
|
1041
1048
|
@StreamBeginNotifyUrl = streambeginnotifyurl
|
@@ -1045,6 +1052,7 @@ module TencentCloud
|
|
1045
1052
|
@PornCensorshipNotifyUrl = porncensorshipnotifyurl
|
1046
1053
|
@CallbackKey = callbackkey
|
1047
1054
|
@StreamMixNotifyUrl = streammixnotifyurl
|
1055
|
+
@PushExceptionNotifyUrl = pushexceptionnotifyurl
|
1048
1056
|
end
|
1049
1057
|
|
1050
1058
|
def deserialize(params)
|
@@ -1057,6 +1065,7 @@ module TencentCloud
|
|
1057
1065
|
@PornCensorshipNotifyUrl = params['PornCensorshipNotifyUrl']
|
1058
1066
|
@CallbackKey = params['CallbackKey']
|
1059
1067
|
@StreamMixNotifyUrl = params['StreamMixNotifyUrl']
|
1068
|
+
@PushExceptionNotifyUrl = params['PushExceptionNotifyUrl']
|
1060
1069
|
end
|
1061
1070
|
end
|
1062
1071
|
|
@@ -7284,10 +7293,12 @@ module TencentCloud
|
|
7284
7293
|
# @param CallbackKey: 回调 Key,回调 URL 公用,回调签名详见事件消息通知文档。
|
7285
7294
|
# [事件消息通知](/document/product/267/32744)。
|
7286
7295
|
# @type CallbackKey: String
|
7296
|
+
# @param PushExceptionNotifyUrl: 推流异常回调 URL。
|
7297
|
+
# @type PushExceptionNotifyUrl: String
|
7287
7298
|
|
7288
|
-
attr_accessor :TemplateId, :TemplateName, :Description, :StreamBeginNotifyUrl, :StreamEndNotifyUrl, :RecordNotifyUrl, :SnapshotNotifyUrl, :PornCensorshipNotifyUrl, :CallbackKey
|
7299
|
+
attr_accessor :TemplateId, :TemplateName, :Description, :StreamBeginNotifyUrl, :StreamEndNotifyUrl, :RecordNotifyUrl, :SnapshotNotifyUrl, :PornCensorshipNotifyUrl, :CallbackKey, :PushExceptionNotifyUrl
|
7289
7300
|
|
7290
|
-
def initialize(templateid=nil, templatename=nil, description=nil, streambeginnotifyurl=nil, streamendnotifyurl=nil, recordnotifyurl=nil, snapshotnotifyurl=nil, porncensorshipnotifyurl=nil, callbackkey=nil)
|
7301
|
+
def initialize(templateid=nil, templatename=nil, description=nil, streambeginnotifyurl=nil, streamendnotifyurl=nil, recordnotifyurl=nil, snapshotnotifyurl=nil, porncensorshipnotifyurl=nil, callbackkey=nil, pushexceptionnotifyurl=nil)
|
7291
7302
|
@TemplateId = templateid
|
7292
7303
|
@TemplateName = templatename
|
7293
7304
|
@Description = description
|
@@ -7297,6 +7308,7 @@ module TencentCloud
|
|
7297
7308
|
@SnapshotNotifyUrl = snapshotnotifyurl
|
7298
7309
|
@PornCensorshipNotifyUrl = porncensorshipnotifyurl
|
7299
7310
|
@CallbackKey = callbackkey
|
7311
|
+
@PushExceptionNotifyUrl = pushexceptionnotifyurl
|
7300
7312
|
end
|
7301
7313
|
|
7302
7314
|
def deserialize(params)
|
@@ -7309,6 +7321,7 @@ module TencentCloud
|
|
7309
7321
|
@SnapshotNotifyUrl = params['SnapshotNotifyUrl']
|
7310
7322
|
@PornCensorshipNotifyUrl = params['PornCensorshipNotifyUrl']
|
7311
7323
|
@CallbackKey = params['CallbackKey']
|
7324
|
+
@PushExceptionNotifyUrl = params['PushExceptionNotifyUrl']
|
7312
7325
|
end
|
7313
7326
|
end
|
7314
7327
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-live
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.472
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|