tencentcloud-sdk-live 3.0.683 → 3.0.685
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/models.rb +17 -7
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0492609590443eb9fddde0a3680e9741f0829dca
|
|
4
|
+
data.tar.gz: 964e3740c494a1c62e9bca92d0f83045e639f61e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 539f5f8c50fef70854005c23a9f947072aeb641c4a07c0865bdfa498bb23cc013cbbd90a4564dc74d34f3d3627e2859e12a99882103dc37bf16e83be9c642fec
|
|
7
|
+
data.tar.gz: 647b5f3fbecab674ba13dbe02c559b49a03bbdd60226aa9453e6a152f8e26263ed42fce0ddbf1a66eedad9e71397076202ab7fe92835899ee3758f014358246e
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.685
|
data/lib/v20180801/models.rb
CHANGED
|
@@ -535,7 +535,7 @@ module TencentCloud
|
|
|
535
535
|
# @type StreamMixNotifyUrl: String
|
|
536
536
|
# @param StreamEndNotifyUrl: 断流回调 URL。
|
|
537
537
|
# @type StreamEndNotifyUrl: String
|
|
538
|
-
# @param RecordNotifyUrl:
|
|
538
|
+
# @param RecordNotifyUrl: 录制文件回调 URL。
|
|
539
539
|
# @type RecordNotifyUrl: String
|
|
540
540
|
# @param SnapshotNotifyUrl: 截图回调 URL。
|
|
541
541
|
# @type SnapshotNotifyUrl: String
|
|
@@ -1157,9 +1157,12 @@ module TencentCloud
|
|
|
1157
1157
|
# @param StreamEndNotifyUrl: 断流回调 URL,
|
|
1158
1158
|
# 相关协议文档:[事件消息通知](/document/product/267/32744)。
|
|
1159
1159
|
# @type StreamEndNotifyUrl: String
|
|
1160
|
-
# @param RecordNotifyUrl:
|
|
1160
|
+
# @param RecordNotifyUrl: 录制文件回调 URL,
|
|
1161
1161
|
# 相关协议文档:[事件消息通知](/document/product/267/32744)。
|
|
1162
1162
|
# @type RecordNotifyUrl: String
|
|
1163
|
+
# @param RecordStatusNotifyUrl: 录制状态回调 URL ,
|
|
1164
|
+
# 相关协议文档:[事件消息通知](/document/product/267/32744)。
|
|
1165
|
+
# @type RecordStatusNotifyUrl: String
|
|
1163
1166
|
# @param SnapshotNotifyUrl: 截图回调 URL,
|
|
1164
1167
|
# 相关协议文档:[事件消息通知](/document/product/267/32744)。
|
|
1165
1168
|
# @type SnapshotNotifyUrl: String
|
|
@@ -1176,14 +1179,15 @@ module TencentCloud
|
|
|
1176
1179
|
# @param AudioAuditNotifyUrl: 音频审核回调 URL。
|
|
1177
1180
|
# @type AudioAuditNotifyUrl: String
|
|
1178
1181
|
|
|
1179
|
-
attr_accessor :TemplateName, :Description, :StreamBeginNotifyUrl, :StreamEndNotifyUrl, :RecordNotifyUrl, :SnapshotNotifyUrl, :PornCensorshipNotifyUrl, :CallbackKey, :StreamMixNotifyUrl, :PushExceptionNotifyUrl, :AudioAuditNotifyUrl
|
|
1182
|
+
attr_accessor :TemplateName, :Description, :StreamBeginNotifyUrl, :StreamEndNotifyUrl, :RecordNotifyUrl, :RecordStatusNotifyUrl, :SnapshotNotifyUrl, :PornCensorshipNotifyUrl, :CallbackKey, :StreamMixNotifyUrl, :PushExceptionNotifyUrl, :AudioAuditNotifyUrl
|
|
1180
1183
|
|
|
1181
|
-
def initialize(templatename=nil, description=nil, streambeginnotifyurl=nil, streamendnotifyurl=nil, recordnotifyurl=nil, snapshotnotifyurl=nil, porncensorshipnotifyurl=nil, callbackkey=nil, streammixnotifyurl=nil, pushexceptionnotifyurl=nil, audioauditnotifyurl=nil)
|
|
1184
|
+
def initialize(templatename=nil, description=nil, streambeginnotifyurl=nil, streamendnotifyurl=nil, recordnotifyurl=nil, recordstatusnotifyurl=nil, snapshotnotifyurl=nil, porncensorshipnotifyurl=nil, callbackkey=nil, streammixnotifyurl=nil, pushexceptionnotifyurl=nil, audioauditnotifyurl=nil)
|
|
1182
1185
|
@TemplateName = templatename
|
|
1183
1186
|
@Description = description
|
|
1184
1187
|
@StreamBeginNotifyUrl = streambeginnotifyurl
|
|
1185
1188
|
@StreamEndNotifyUrl = streamendnotifyurl
|
|
1186
1189
|
@RecordNotifyUrl = recordnotifyurl
|
|
1190
|
+
@RecordStatusNotifyUrl = recordstatusnotifyurl
|
|
1187
1191
|
@SnapshotNotifyUrl = snapshotnotifyurl
|
|
1188
1192
|
@PornCensorshipNotifyUrl = porncensorshipnotifyurl
|
|
1189
1193
|
@CallbackKey = callbackkey
|
|
@@ -1198,6 +1202,7 @@ module TencentCloud
|
|
|
1198
1202
|
@StreamBeginNotifyUrl = params['StreamBeginNotifyUrl']
|
|
1199
1203
|
@StreamEndNotifyUrl = params['StreamEndNotifyUrl']
|
|
1200
1204
|
@RecordNotifyUrl = params['RecordNotifyUrl']
|
|
1205
|
+
@RecordStatusNotifyUrl = params['RecordStatusNotifyUrl']
|
|
1201
1206
|
@SnapshotNotifyUrl = params['SnapshotNotifyUrl']
|
|
1202
1207
|
@PornCensorshipNotifyUrl = params['PornCensorshipNotifyUrl']
|
|
1203
1208
|
@CallbackKey = params['CallbackKey']
|
|
@@ -8494,6 +8499,7 @@ module TencentCloud
|
|
|
8494
8499
|
class HlsSpecialParam < TencentCloud::Common::AbstractModel
|
|
8495
8500
|
# @param FlowContinueDuration: HLS续流超时时间。
|
|
8496
8501
|
# 取值范围[0,1800]。
|
|
8502
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
8497
8503
|
# @type FlowContinueDuration: Integer
|
|
8498
8504
|
|
|
8499
8505
|
attr_accessor :FlowContinueDuration
|
|
@@ -9075,8 +9081,10 @@ module TencentCloud
|
|
|
9075
9081
|
# @type StreamBeginNotifyUrl: String
|
|
9076
9082
|
# @param StreamEndNotifyUrl: 断流回调 URL。
|
|
9077
9083
|
# @type StreamEndNotifyUrl: String
|
|
9078
|
-
# @param RecordNotifyUrl:
|
|
9084
|
+
# @param RecordNotifyUrl: 录制文件回调 URL。
|
|
9079
9085
|
# @type RecordNotifyUrl: String
|
|
9086
|
+
# @param RecordStatusNotifyUrl: 录制状态回调 URL 。
|
|
9087
|
+
# @type RecordStatusNotifyUrl: String
|
|
9080
9088
|
# @param SnapshotNotifyUrl: 截图回调 URL。
|
|
9081
9089
|
# @type SnapshotNotifyUrl: String
|
|
9082
9090
|
# @param PornCensorshipNotifyUrl: 鉴黄回调 URL。
|
|
@@ -9089,15 +9097,16 @@ module TencentCloud
|
|
|
9089
9097
|
# @param AudioAuditNotifyUrl: 音频审核回调 URL。
|
|
9090
9098
|
# @type AudioAuditNotifyUrl: String
|
|
9091
9099
|
|
|
9092
|
-
attr_accessor :TemplateId, :TemplateName, :Description, :StreamBeginNotifyUrl, :StreamEndNotifyUrl, :RecordNotifyUrl, :SnapshotNotifyUrl, :PornCensorshipNotifyUrl, :CallbackKey, :PushExceptionNotifyUrl, :AudioAuditNotifyUrl
|
|
9100
|
+
attr_accessor :TemplateId, :TemplateName, :Description, :StreamBeginNotifyUrl, :StreamEndNotifyUrl, :RecordNotifyUrl, :RecordStatusNotifyUrl, :SnapshotNotifyUrl, :PornCensorshipNotifyUrl, :CallbackKey, :PushExceptionNotifyUrl, :AudioAuditNotifyUrl
|
|
9093
9101
|
|
|
9094
|
-
def initialize(templateid=nil, templatename=nil, description=nil, streambeginnotifyurl=nil, streamendnotifyurl=nil, recordnotifyurl=nil, snapshotnotifyurl=nil, porncensorshipnotifyurl=nil, callbackkey=nil, pushexceptionnotifyurl=nil, audioauditnotifyurl=nil)
|
|
9102
|
+
def initialize(templateid=nil, templatename=nil, description=nil, streambeginnotifyurl=nil, streamendnotifyurl=nil, recordnotifyurl=nil, recordstatusnotifyurl=nil, snapshotnotifyurl=nil, porncensorshipnotifyurl=nil, callbackkey=nil, pushexceptionnotifyurl=nil, audioauditnotifyurl=nil)
|
|
9095
9103
|
@TemplateId = templateid
|
|
9096
9104
|
@TemplateName = templatename
|
|
9097
9105
|
@Description = description
|
|
9098
9106
|
@StreamBeginNotifyUrl = streambeginnotifyurl
|
|
9099
9107
|
@StreamEndNotifyUrl = streamendnotifyurl
|
|
9100
9108
|
@RecordNotifyUrl = recordnotifyurl
|
|
9109
|
+
@RecordStatusNotifyUrl = recordstatusnotifyurl
|
|
9101
9110
|
@SnapshotNotifyUrl = snapshotnotifyurl
|
|
9102
9111
|
@PornCensorshipNotifyUrl = porncensorshipnotifyurl
|
|
9103
9112
|
@CallbackKey = callbackkey
|
|
@@ -9112,6 +9121,7 @@ module TencentCloud
|
|
|
9112
9121
|
@StreamBeginNotifyUrl = params['StreamBeginNotifyUrl']
|
|
9113
9122
|
@StreamEndNotifyUrl = params['StreamEndNotifyUrl']
|
|
9114
9123
|
@RecordNotifyUrl = params['RecordNotifyUrl']
|
|
9124
|
+
@RecordStatusNotifyUrl = params['RecordStatusNotifyUrl']
|
|
9115
9125
|
@SnapshotNotifyUrl = params['SnapshotNotifyUrl']
|
|
9116
9126
|
@PornCensorshipNotifyUrl = params['PornCensorshipNotifyUrl']
|
|
9117
9127
|
@CallbackKey = params['CallbackKey']
|
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.685
|
|
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-10-
|
|
11
|
+
date: 2023-10-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,8 +33,8 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/v20180801/models.rb
|
|
37
36
|
- lib/v20180801/client.rb
|
|
37
|
+
- lib/v20180801/models.rb
|
|
38
38
|
- lib/tencentcloud-sdk-live.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|