tencentcloud-sdk-eb 3.0.1103 → 3.0.1161
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/v20210416/models.rb +20 -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: a504a9e977cf1d7cb1c95cfa3363cf4557246fa4
|
|
4
|
+
data.tar.gz: b10ffea433d070d1e8dd8d028d040553930dfa8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: adb3dae585f61a8fcd5938acf3b27710296ab998a02f732e29c79948878ec96a92eb4376db1eff3e1cf7059ec90c346865dd8509b3590fc0218cdc16d52fa6b9
|
|
7
|
+
data.tar.gz: 7eb27ec75bd82858b12c9c7865b7786117cc23b448207cba190d8e5d0d41691348c0dc05be475199276e8aefd9ce747e495ef29f2f162ed33fb1204692636d71
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1161
|
data/lib/v20210416/models.rb
CHANGED
|
@@ -166,12 +166,15 @@ module TencentCloud
|
|
|
166
166
|
# @type TopicName: String
|
|
167
167
|
# @param RetryPolicy: 重试策略
|
|
168
168
|
# @type RetryPolicy: :class:`Tencentcloud::Eb.v20210416.models.RetryPolicy`
|
|
169
|
+
# @param EventDeliveryFormat: 事件投递kafka时的协议格式;目前只支持两种格式:1.CloudEvent(完整的cloudevent消息协议)2.CloudEventDataKey(cloudevent协议中的data字段内容)
|
|
170
|
+
# @type EventDeliveryFormat: String
|
|
169
171
|
|
|
170
|
-
attr_accessor :TopicName, :RetryPolicy
|
|
172
|
+
attr_accessor :TopicName, :RetryPolicy, :EventDeliveryFormat
|
|
171
173
|
|
|
172
|
-
def initialize(topicname=nil, retrypolicy=nil)
|
|
174
|
+
def initialize(topicname=nil, retrypolicy=nil, eventdeliveryformat=nil)
|
|
173
175
|
@TopicName = topicname
|
|
174
176
|
@RetryPolicy = retrypolicy
|
|
177
|
+
@EventDeliveryFormat = eventdeliveryformat
|
|
175
178
|
end
|
|
176
179
|
|
|
177
180
|
def deserialize(params)
|
|
@@ -180,6 +183,7 @@ module TencentCloud
|
|
|
180
183
|
@RetryPolicy = RetryPolicy.new
|
|
181
184
|
@RetryPolicy.deserialize(params['RetryPolicy'])
|
|
182
185
|
end
|
|
186
|
+
@EventDeliveryFormat = params['EventDeliveryFormat']
|
|
183
187
|
end
|
|
184
188
|
end
|
|
185
189
|
|
|
@@ -486,14 +490,23 @@ module TencentCloud
|
|
|
486
490
|
# @type TargetDescription: :class:`Tencentcloud::Eb.v20210416.models.TargetDescription`
|
|
487
491
|
# @param RuleId: 事件规则ID
|
|
488
492
|
# @type RuleId: String
|
|
493
|
+
# @param BatchTimeout: 批量投递最长等待时间
|
|
494
|
+
# @type BatchTimeout: Integer
|
|
495
|
+
# @param BatchEventCount: 批量投递最大事件条数
|
|
496
|
+
# @type BatchEventCount: Integer
|
|
497
|
+
# @param EnableBatchDelivery: 开启批量投递使能
|
|
498
|
+
# @type EnableBatchDelivery: Boolean
|
|
489
499
|
|
|
490
|
-
attr_accessor :EventBusId, :Type, :TargetDescription, :RuleId
|
|
500
|
+
attr_accessor :EventBusId, :Type, :TargetDescription, :RuleId, :BatchTimeout, :BatchEventCount, :EnableBatchDelivery
|
|
491
501
|
|
|
492
|
-
def initialize(eventbusid=nil, type=nil, targetdescription=nil, ruleid=nil)
|
|
502
|
+
def initialize(eventbusid=nil, type=nil, targetdescription=nil, ruleid=nil, batchtimeout=nil, batcheventcount=nil, enablebatchdelivery=nil)
|
|
493
503
|
@EventBusId = eventbusid
|
|
494
504
|
@Type = type
|
|
495
505
|
@TargetDescription = targetdescription
|
|
496
506
|
@RuleId = ruleid
|
|
507
|
+
@BatchTimeout = batchtimeout
|
|
508
|
+
@BatchEventCount = batcheventcount
|
|
509
|
+
@EnableBatchDelivery = enablebatchdelivery
|
|
497
510
|
end
|
|
498
511
|
|
|
499
512
|
def deserialize(params)
|
|
@@ -504,6 +517,9 @@ module TencentCloud
|
|
|
504
517
|
@TargetDescription.deserialize(params['TargetDescription'])
|
|
505
518
|
end
|
|
506
519
|
@RuleId = params['RuleId']
|
|
520
|
+
@BatchTimeout = params['BatchTimeout']
|
|
521
|
+
@BatchEventCount = params['BatchEventCount']
|
|
522
|
+
@EnableBatchDelivery = params['EnableBatchDelivery']
|
|
507
523
|
end
|
|
508
524
|
end
|
|
509
525
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-eb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1161
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|