tencentcloud-sdk-mps 3.0.953 → 3.0.954
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/v20190612/models.rb +9 -7
- 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: f424e9625a88bdcaa08be5133d36b761a3b0a330
|
4
|
+
data.tar.gz: 90bae4cee43ec98e66f83ffa30d3f0032f68c1ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7621b6ccfac9b6659f6b69c14b193b5b18e72cce6d43b42cd24aebe436d1c42e70653dfcc68e742ff6014853ae750ac9ba0f050650df5a20e4db77ec00e8372
|
7
|
+
data.tar.gz: 81869bafc66457700914206fe1590a9a7bff458269ce2ba94796091df265bc9fd3ddc55418f231235f3c696a24fbc078fdeba1d349214eb04a38cccf5ca97b0e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.954
|
data/lib/v20190612/models.rb
CHANGED
@@ -14422,10 +14422,14 @@ module TencentCloud
|
|
14422
14422
|
|
14423
14423
|
# 任务处理的事件通知配置。
|
14424
14424
|
class LiveStreamTaskNotifyConfig < TencentCloud::Common::AbstractModel
|
14425
|
-
# @param NotifyType:
|
14425
|
+
# @param NotifyType: 通知类型:
|
14426
|
+
# "CMQ":回调消息写入cmq队列;
|
14427
|
+
# "URL": 指定URL时HTTP回调推送到 NotifyUrl 指定的地址,回调协议http+json,包体内容同[解析直播事件通知接口](https://cloud.tencent.com/document/product/862/39229) 的输出参数
|
14426
14428
|
|
14427
14429
|
# <font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
|
14428
14430
|
# @type NotifyType: String
|
14431
|
+
# @param NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
|
14432
|
+
# @type NotifyUrl: String
|
14429
14433
|
# @param CmqModel: CMQ 的模型,有 Queue 和 Topic 两种,目前仅支持 Queue。
|
14430
14434
|
# @type CmqModel: String
|
14431
14435
|
# @param CmqRegion: CMQ 的园区,如 sh,bj 等。
|
@@ -14434,31 +14438,29 @@ module TencentCloud
|
|
14434
14438
|
# @type QueueName: String
|
14435
14439
|
# @param TopicName: 当模型为 Topic 时有效,表示接收事件通知的 CMQ 的主题名。
|
14436
14440
|
# @type TopicName: String
|
14437
|
-
# @param NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
|
14438
|
-
# @type NotifyUrl: String
|
14439
14441
|
# @param NotifyKey: 用于生成回调签名的 Key。
|
14440
14442
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
14441
14443
|
# @type NotifyKey: String
|
14442
14444
|
|
14443
|
-
attr_accessor :NotifyType, :CmqModel, :CmqRegion, :QueueName, :TopicName, :
|
14445
|
+
attr_accessor :NotifyType, :NotifyUrl, :CmqModel, :CmqRegion, :QueueName, :TopicName, :NotifyKey
|
14444
14446
|
|
14445
|
-
def initialize(notifytype=nil, cmqmodel=nil, cmqregion=nil, queuename=nil, topicname=nil,
|
14447
|
+
def initialize(notifytype=nil, notifyurl=nil, cmqmodel=nil, cmqregion=nil, queuename=nil, topicname=nil, notifykey=nil)
|
14446
14448
|
@NotifyType = notifytype
|
14449
|
+
@NotifyUrl = notifyurl
|
14447
14450
|
@CmqModel = cmqmodel
|
14448
14451
|
@CmqRegion = cmqregion
|
14449
14452
|
@QueueName = queuename
|
14450
14453
|
@TopicName = topicname
|
14451
|
-
@NotifyUrl = notifyurl
|
14452
14454
|
@NotifyKey = notifykey
|
14453
14455
|
end
|
14454
14456
|
|
14455
14457
|
def deserialize(params)
|
14456
14458
|
@NotifyType = params['NotifyType']
|
14459
|
+
@NotifyUrl = params['NotifyUrl']
|
14457
14460
|
@CmqModel = params['CmqModel']
|
14458
14461
|
@CmqRegion = params['CmqRegion']
|
14459
14462
|
@QueueName = params['QueueName']
|
14460
14463
|
@TopicName = params['TopicName']
|
14461
|
-
@NotifyUrl = params['NotifyUrl']
|
14462
14464
|
@NotifyKey = params['NotifyKey']
|
14463
14465
|
end
|
14464
14466
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-mps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.954
|
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-12-
|
11
|
+
date: 2024-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|