tencentcloud-sdk-trocket 3.0.961 → 3.0.962
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/v20230308/models.rb +12 -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: b9c9edb438e47b279da2d39f45e46d79a432964d
|
4
|
+
data.tar.gz: 44ecb9a97922455b32a4d5a6b604408fb1a8920a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fee7affefcb0d115d872ca3c64165943ed4a48aeed3dbbe95738baf60b50932ecd709c04c0b4f8d5547f236b0310ab50463e4396c9da19a8ed924fd6caf9a403
|
7
|
+
data.tar.gz: d7401e2d3644759c1b25773d54a30358e0b051dccde3392f8e75cbcda2ecf64452899d7f6ac9bf3d07cf4bce27d5be1accc5664725f53f679bee1ba75676c173
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.962
|
data/lib/v20230308/models.rb
CHANGED
@@ -171,10 +171,12 @@ module TencentCloud
|
|
171
171
|
# @type TimeSpan: Integer
|
172
172
|
# @param MaxTopicNum: 最大可创建主题数
|
173
173
|
# @type MaxTopicNum: Integer
|
174
|
+
# @param ZoneIds: 部署可用区列表
|
175
|
+
# @type ZoneIds: Array
|
174
176
|
|
175
|
-
attr_accessor :InstanceType, :Name, :SkuCode, :Remark, :TagList, :VpcList, :EnablePublic, :BillingFlow, :Bandwidth, :IpRules, :MessageRetention, :PayMode, :RenewFlag, :TimeSpan, :MaxTopicNum
|
177
|
+
attr_accessor :InstanceType, :Name, :SkuCode, :Remark, :TagList, :VpcList, :EnablePublic, :BillingFlow, :Bandwidth, :IpRules, :MessageRetention, :PayMode, :RenewFlag, :TimeSpan, :MaxTopicNum, :ZoneIds
|
176
178
|
|
177
|
-
def initialize(instancetype=nil, name=nil, skucode=nil, remark=nil, taglist=nil, vpclist=nil, enablepublic=nil, billingflow=nil, bandwidth=nil, iprules=nil, messageretention=nil, paymode=nil, renewflag=nil, timespan=nil, maxtopicnum=nil)
|
179
|
+
def initialize(instancetype=nil, name=nil, skucode=nil, remark=nil, taglist=nil, vpclist=nil, enablepublic=nil, billingflow=nil, bandwidth=nil, iprules=nil, messageretention=nil, paymode=nil, renewflag=nil, timespan=nil, maxtopicnum=nil, zoneids=nil)
|
178
180
|
@InstanceType = instancetype
|
179
181
|
@Name = name
|
180
182
|
@SkuCode = skucode
|
@@ -190,6 +192,7 @@ module TencentCloud
|
|
190
192
|
@RenewFlag = renewflag
|
191
193
|
@TimeSpan = timespan
|
192
194
|
@MaxTopicNum = maxtopicnum
|
195
|
+
@ZoneIds = zoneids
|
193
196
|
end
|
194
197
|
|
195
198
|
def deserialize(params)
|
@@ -229,6 +232,7 @@ module TencentCloud
|
|
229
232
|
@RenewFlag = params['RenewFlag']
|
230
233
|
@TimeSpan = params['TimeSpan']
|
231
234
|
@MaxTopicNum = params['MaxTopicNum']
|
235
|
+
@ZoneIds = params['ZoneIds']
|
232
236
|
end
|
233
237
|
end
|
234
238
|
|
@@ -1349,12 +1353,14 @@ module TencentCloud
|
|
1349
1353
|
# @param TopicNumUpperLimit: 最大可设置的topic个数
|
1350
1354
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1351
1355
|
# @type TopicNumUpperLimit: Integer
|
1356
|
+
# @param ZoneIds: 可用区列表
|
1357
|
+
# @type ZoneIds: Array
|
1352
1358
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1353
1359
|
# @type RequestId: String
|
1354
1360
|
|
1355
|
-
attr_accessor :InstanceType, :InstanceId, :InstanceName, :TopicNum, :TopicNumLimit, :GroupNum, :GroupNumLimit, :MessageRetention, :RetentionUpperLimit, :RetentionLowerLimit, :TpsLimit, :ScaledTpsLimit, :MaxMessageDelay, :CreatedTime, :SendReceiveRatio, :TagList, :EndpointList, :TopicQueueNumUpperLimit, :TopicQueueNumLowerLimit, :Remark, :InstanceStatus, :SkuCode, :PayMode, :ScaledTpsEnabled, :RenewFlag, :ExpiryTime, :RoleNumLimit, :AclEnabled, :TopicNumLowerLimit, :TopicNumUpperLimit, :RequestId
|
1361
|
+
attr_accessor :InstanceType, :InstanceId, :InstanceName, :TopicNum, :TopicNumLimit, :GroupNum, :GroupNumLimit, :MessageRetention, :RetentionUpperLimit, :RetentionLowerLimit, :TpsLimit, :ScaledTpsLimit, :MaxMessageDelay, :CreatedTime, :SendReceiveRatio, :TagList, :EndpointList, :TopicQueueNumUpperLimit, :TopicQueueNumLowerLimit, :Remark, :InstanceStatus, :SkuCode, :PayMode, :ScaledTpsEnabled, :RenewFlag, :ExpiryTime, :RoleNumLimit, :AclEnabled, :TopicNumLowerLimit, :TopicNumUpperLimit, :ZoneIds, :RequestId
|
1356
1362
|
|
1357
|
-
def initialize(instancetype=nil, instanceid=nil, instancename=nil, topicnum=nil, topicnumlimit=nil, groupnum=nil, groupnumlimit=nil, messageretention=nil, retentionupperlimit=nil, retentionlowerlimit=nil, tpslimit=nil, scaledtpslimit=nil, maxmessagedelay=nil, createdtime=nil, sendreceiveratio=nil, taglist=nil, endpointlist=nil, topicqueuenumupperlimit=nil, topicqueuenumlowerlimit=nil, remark=nil, instancestatus=nil, skucode=nil, paymode=nil, scaledtpsenabled=nil, renewflag=nil, expirytime=nil, rolenumlimit=nil, aclenabled=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil, requestid=nil)
|
1363
|
+
def initialize(instancetype=nil, instanceid=nil, instancename=nil, topicnum=nil, topicnumlimit=nil, groupnum=nil, groupnumlimit=nil, messageretention=nil, retentionupperlimit=nil, retentionlowerlimit=nil, tpslimit=nil, scaledtpslimit=nil, maxmessagedelay=nil, createdtime=nil, sendreceiveratio=nil, taglist=nil, endpointlist=nil, topicqueuenumupperlimit=nil, topicqueuenumlowerlimit=nil, remark=nil, instancestatus=nil, skucode=nil, paymode=nil, scaledtpsenabled=nil, renewflag=nil, expirytime=nil, rolenumlimit=nil, aclenabled=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil, zoneids=nil, requestid=nil)
|
1358
1364
|
@InstanceType = instancetype
|
1359
1365
|
@InstanceId = instanceid
|
1360
1366
|
@InstanceName = instancename
|
@@ -1385,6 +1391,7 @@ module TencentCloud
|
|
1385
1391
|
@AclEnabled = aclenabled
|
1386
1392
|
@TopicNumLowerLimit = topicnumlowerlimit
|
1387
1393
|
@TopicNumUpperLimit = topicnumupperlimit
|
1394
|
+
@ZoneIds = zoneids
|
1388
1395
|
@RequestId = requestid
|
1389
1396
|
end
|
1390
1397
|
|
@@ -1433,6 +1440,7 @@ module TencentCloud
|
|
1433
1440
|
@AclEnabled = params['AclEnabled']
|
1434
1441
|
@TopicNumLowerLimit = params['TopicNumLowerLimit']
|
1435
1442
|
@TopicNumUpperLimit = params['TopicNumUpperLimit']
|
1443
|
+
@ZoneIds = params['ZoneIds']
|
1436
1444
|
@RequestId = params['RequestId']
|
1437
1445
|
end
|
1438
1446
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-trocket
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.962
|
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-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|