tencentcloud-sdk-tdmq 3.0.852 → 3.0.853
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/v20200217/models.rb +82 -11
- 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: de0fac9729c3dc3effcc2ec877ea103b91d6e476
|
4
|
+
data.tar.gz: 295dbd5d496e9b89fc9d73946c8c466333f87aac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 09dad262500f27624ea380c5de79b0d2fd9793623e5c49a96bbf17f12c7fc15ddcee363d25653682e9cab30cbe6deb3991d7ebb80ac596551c4cf73c938c743b
|
7
|
+
data.tar.gz: 212e0d8a45c7592a09cc0c3a9fa2e637823b79ecd118a9c9ccc61e9affefd2e5890407957cc257743cfdf6c0ac4066c224c793535364029b83b4714936c5d9b1
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.853
|
data/lib/v20200217/models.rb
CHANGED
@@ -1663,14 +1663,24 @@ module TencentCloud
|
|
1663
1663
|
# @type StorageSize: Integer
|
1664
1664
|
# @param EnableCreateDefaultHaMirrorQueue: 镜像队列,不传默认为false
|
1665
1665
|
# @type EnableCreateDefaultHaMirrorQueue: Boolean
|
1666
|
-
# @param AutoRenewFlag:
|
1666
|
+
# @param AutoRenewFlag: 预付费使用。自动续费,不传默认为true
|
1667
1667
|
# @type AutoRenewFlag: Boolean
|
1668
1668
|
# @param TimeSpan: 购买时长,不传默认为1(月)
|
1669
1669
|
# @type TimeSpan: Integer
|
1670
|
+
# @param PayMode: 付费方式,0 为后付费,即按量计费;1 为预付费,即包年包月。默认包年包月
|
1671
|
+
# @type PayMode: Integer
|
1672
|
+
# @param ClusterVersion: 集群版本,不传默认为 3.8.30,可选值为 3.8.30 和 3.11.8
|
1673
|
+
# @type ClusterVersion: String
|
1674
|
+
# @param IsIntl: 是否国际站请求,默认 false
|
1675
|
+
# @type IsIntl: Boolean
|
1676
|
+
# @param ResourceTags: 资源标签列表
|
1677
|
+
# @type ResourceTags: Array
|
1678
|
+
# @param Bandwidth: 公网带宽大小,单位 M
|
1679
|
+
# @type Bandwidth: Integer
|
1670
1680
|
|
1671
|
-
attr_accessor :ZoneIds, :VpcId, :SubnetId, :ClusterName, :NodeSpec, :NodeNum, :StorageSize, :EnableCreateDefaultHaMirrorQueue, :AutoRenewFlag, :TimeSpan
|
1681
|
+
attr_accessor :ZoneIds, :VpcId, :SubnetId, :ClusterName, :NodeSpec, :NodeNum, :StorageSize, :EnableCreateDefaultHaMirrorQueue, :AutoRenewFlag, :TimeSpan, :PayMode, :ClusterVersion, :IsIntl, :ResourceTags, :Bandwidth
|
1672
1682
|
|
1673
|
-
def initialize(zoneids=nil, vpcid=nil, subnetid=nil, clustername=nil, nodespec=nil, nodenum=nil, storagesize=nil, enablecreatedefaulthamirrorqueue=nil, autorenewflag=nil, timespan=nil)
|
1683
|
+
def initialize(zoneids=nil, vpcid=nil, subnetid=nil, clustername=nil, nodespec=nil, nodenum=nil, storagesize=nil, enablecreatedefaulthamirrorqueue=nil, autorenewflag=nil, timespan=nil, paymode=nil, clusterversion=nil, isintl=nil, resourcetags=nil, bandwidth=nil)
|
1674
1684
|
@ZoneIds = zoneids
|
1675
1685
|
@VpcId = vpcid
|
1676
1686
|
@SubnetId = subnetid
|
@@ -1681,6 +1691,11 @@ module TencentCloud
|
|
1681
1691
|
@EnableCreateDefaultHaMirrorQueue = enablecreatedefaulthamirrorqueue
|
1682
1692
|
@AutoRenewFlag = autorenewflag
|
1683
1693
|
@TimeSpan = timespan
|
1694
|
+
@PayMode = paymode
|
1695
|
+
@ClusterVersion = clusterversion
|
1696
|
+
@IsIntl = isintl
|
1697
|
+
@ResourceTags = resourcetags
|
1698
|
+
@Bandwidth = bandwidth
|
1684
1699
|
end
|
1685
1700
|
|
1686
1701
|
def deserialize(params)
|
@@ -1694,6 +1709,18 @@ module TencentCloud
|
|
1694
1709
|
@EnableCreateDefaultHaMirrorQueue = params['EnableCreateDefaultHaMirrorQueue']
|
1695
1710
|
@AutoRenewFlag = params['AutoRenewFlag']
|
1696
1711
|
@TimeSpan = params['TimeSpan']
|
1712
|
+
@PayMode = params['PayMode']
|
1713
|
+
@ClusterVersion = params['ClusterVersion']
|
1714
|
+
@IsIntl = params['IsIntl']
|
1715
|
+
unless params['ResourceTags'].nil?
|
1716
|
+
@ResourceTags = []
|
1717
|
+
params['ResourceTags'].each do |i|
|
1718
|
+
tag_tmp = Tag.new
|
1719
|
+
tag_tmp.deserialize(i)
|
1720
|
+
@ResourceTags << tag_tmp
|
1721
|
+
end
|
1722
|
+
end
|
1723
|
+
@Bandwidth = params['Bandwidth']
|
1697
1724
|
end
|
1698
1725
|
end
|
1699
1726
|
|
@@ -2685,15 +2712,19 @@ module TencentCloud
|
|
2685
2712
|
class DeleteRabbitMQVipInstanceRequest < TencentCloud::Common::AbstractModel
|
2686
2713
|
# @param InstanceId: 实例Id
|
2687
2714
|
# @type InstanceId: String
|
2715
|
+
# @param IsIntl: 是否国际站请求,默认 false
|
2716
|
+
# @type IsIntl: Boolean
|
2688
2717
|
|
2689
|
-
attr_accessor :InstanceId
|
2718
|
+
attr_accessor :InstanceId, :IsIntl
|
2690
2719
|
|
2691
|
-
def initialize(instanceid=nil)
|
2720
|
+
def initialize(instanceid=nil, isintl=nil)
|
2692
2721
|
@InstanceId = instanceid
|
2722
|
+
@IsIntl = isintl
|
2693
2723
|
end
|
2694
2724
|
|
2695
2725
|
def deserialize(params)
|
2696
2726
|
@InstanceId = params['InstanceId']
|
2727
|
+
@IsIntl = params['IsIntl']
|
2697
2728
|
end
|
2698
2729
|
end
|
2699
2730
|
|
@@ -10380,10 +10411,16 @@ module TencentCloud
|
|
10380
10411
|
# @type ModifyTime: String
|
10381
10412
|
# @param Type: 用户类型,System:系统创建,User:用户创建
|
10382
10413
|
# @type Type: String
|
10414
|
+
# @param MaxConnections: 单个用户最大可用连接数
|
10415
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10416
|
+
# @type MaxConnections: Integer
|
10417
|
+
# @param MaxChannels: 单个用户最大可用通道数
|
10418
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10419
|
+
# @type MaxChannels: Integer
|
10383
10420
|
|
10384
|
-
attr_accessor :InstanceId, :User, :Password, :Description, :Tags, :CreateTime, :ModifyTime, :Type
|
10421
|
+
attr_accessor :InstanceId, :User, :Password, :Description, :Tags, :CreateTime, :ModifyTime, :Type, :MaxConnections, :MaxChannels
|
10385
10422
|
|
10386
|
-
def initialize(instanceid=nil, user=nil, password=nil, description=nil, tags=nil, createtime=nil, modifytime=nil, type=nil)
|
10423
|
+
def initialize(instanceid=nil, user=nil, password=nil, description=nil, tags=nil, createtime=nil, modifytime=nil, type=nil, maxconnections=nil, maxchannels=nil)
|
10387
10424
|
@InstanceId = instanceid
|
10388
10425
|
@User = user
|
10389
10426
|
@Password = password
|
@@ -10392,6 +10429,8 @@ module TencentCloud
|
|
10392
10429
|
@CreateTime = createtime
|
10393
10430
|
@ModifyTime = modifytime
|
10394
10431
|
@Type = type
|
10432
|
+
@MaxConnections = maxconnections
|
10433
|
+
@MaxChannels = maxchannels
|
10395
10434
|
end
|
10396
10435
|
|
10397
10436
|
def deserialize(params)
|
@@ -10403,6 +10442,8 @@ module TencentCloud
|
|
10403
10442
|
@CreateTime = params['CreateTime']
|
10404
10443
|
@ModifyTime = params['ModifyTime']
|
10405
10444
|
@Type = params['Type']
|
10445
|
+
@MaxConnections = params['MaxConnections']
|
10446
|
+
@MaxChannels = params['MaxChannels']
|
10406
10447
|
end
|
10407
10448
|
end
|
10408
10449
|
|
@@ -10450,10 +10491,13 @@ module TencentCloud
|
|
10450
10491
|
# @param Vpcs: VPC 接入点列表
|
10451
10492
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10452
10493
|
# @type Vpcs: Array
|
10494
|
+
# @param CreateTime: 创建时间,毫秒为单位
|
10495
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10496
|
+
# @type CreateTime: Integer
|
10453
10497
|
|
10454
|
-
attr_accessor :InstanceId, :InstanceName, :InstanceVersion, :Status, :NodeCount, :ConfigDisplay, :MaxTps, :MaxBandWidth, :MaxStorage, :ExpireTime, :AutoRenewFlag, :PayMode, :Remark, :SpecName, :ExceptionInformation, :ClusterStatus, :PublicAccessEndpoint, :Vpcs
|
10498
|
+
attr_accessor :InstanceId, :InstanceName, :InstanceVersion, :Status, :NodeCount, :ConfigDisplay, :MaxTps, :MaxBandWidth, :MaxStorage, :ExpireTime, :AutoRenewFlag, :PayMode, :Remark, :SpecName, :ExceptionInformation, :ClusterStatus, :PublicAccessEndpoint, :Vpcs, :CreateTime
|
10455
10499
|
|
10456
|
-
def initialize(instanceid=nil, instancename=nil, instanceversion=nil, status=nil, nodecount=nil, configdisplay=nil, maxtps=nil, maxbandwidth=nil, maxstorage=nil, expiretime=nil, autorenewflag=nil, paymode=nil, remark=nil, specname=nil, exceptioninformation=nil, clusterstatus=nil, publicaccessendpoint=nil, vpcs=nil)
|
10500
|
+
def initialize(instanceid=nil, instancename=nil, instanceversion=nil, status=nil, nodecount=nil, configdisplay=nil, maxtps=nil, maxbandwidth=nil, maxstorage=nil, expiretime=nil, autorenewflag=nil, paymode=nil, remark=nil, specname=nil, exceptioninformation=nil, clusterstatus=nil, publicaccessendpoint=nil, vpcs=nil, createtime=nil)
|
10457
10501
|
@InstanceId = instanceid
|
10458
10502
|
@InstanceName = instancename
|
10459
10503
|
@InstanceVersion = instanceversion
|
@@ -10472,6 +10516,7 @@ module TencentCloud
|
|
10472
10516
|
@ClusterStatus = clusterstatus
|
10473
10517
|
@PublicAccessEndpoint = publicaccessendpoint
|
10474
10518
|
@Vpcs = vpcs
|
10519
|
+
@CreateTime = createtime
|
10475
10520
|
end
|
10476
10521
|
|
10477
10522
|
def deserialize(params)
|
@@ -10500,6 +10545,7 @@ module TencentCloud
|
|
10500
10545
|
@Vpcs << vpcendpointinfo_tmp
|
10501
10546
|
end
|
10502
10547
|
end
|
10548
|
+
@CreateTime = params['CreateTime']
|
10503
10549
|
end
|
10504
10550
|
end
|
10505
10551
|
|
@@ -11384,10 +11430,25 @@ module TencentCloud
|
|
11384
11430
|
# @param MaxQueuesPerTopic: 每个主题最大队列数
|
11385
11431
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11386
11432
|
# @type MaxQueuesPerTopic: Integer
|
11433
|
+
# @param MaxRetention: 最大可设置消息保留时间,小时为单位
|
11434
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11435
|
+
# @type MaxRetention: Integer
|
11436
|
+
# @param MinRetention: 最小可设置消息保留时间,小时为单位
|
11437
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11438
|
+
# @type MinRetention: Integer
|
11439
|
+
# @param Retention: 实例消息保留时间,小时为单位
|
11440
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11441
|
+
# @type Retention: Integer
|
11442
|
+
# @param TopicNumLowerLimit: Topic个数最小配额,即免费额度,默认为集群规格单节点最小配额*节点个数
|
11443
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11444
|
+
# @type TopicNumLowerLimit: Integer
|
11445
|
+
# @param TopicNumUpperLimit: Topic个数最大配额,默认为集群规格单节点最大配额*节点个数
|
11446
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11447
|
+
# @type TopicNumUpperLimit: Integer
|
11387
11448
|
|
11388
|
-
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :ConfigDisplay, :NodeCount, :NodeDistribution, :TopicDistribution, :MaxQueuesPerTopic
|
11449
|
+
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :ConfigDisplay, :NodeCount, :NodeDistribution, :TopicDistribution, :MaxQueuesPerTopic, :MaxRetention, :MinRetention, :Retention, :TopicNumLowerLimit, :TopicNumUpperLimit
|
11389
11450
|
|
11390
|
-
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, configdisplay=nil, nodecount=nil, nodedistribution=nil, topicdistribution=nil, maxqueuespertopic=nil)
|
11451
|
+
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, configdisplay=nil, nodecount=nil, nodedistribution=nil, topicdistribution=nil, maxqueuespertopic=nil, maxretention=nil, minretention=nil, retention=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil)
|
11391
11452
|
@MaxTpsPerNamespace = maxtpspernamespace
|
11392
11453
|
@MaxNamespaceNum = maxnamespacenum
|
11393
11454
|
@UsedNamespaceNum = usednamespacenum
|
@@ -11400,6 +11461,11 @@ module TencentCloud
|
|
11400
11461
|
@NodeDistribution = nodedistribution
|
11401
11462
|
@TopicDistribution = topicdistribution
|
11402
11463
|
@MaxQueuesPerTopic = maxqueuespertopic
|
11464
|
+
@MaxRetention = maxretention
|
11465
|
+
@MinRetention = minretention
|
11466
|
+
@Retention = retention
|
11467
|
+
@TopicNumLowerLimit = topicnumlowerlimit
|
11468
|
+
@TopicNumUpperLimit = topicnumupperlimit
|
11403
11469
|
end
|
11404
11470
|
|
11405
11471
|
def deserialize(params)
|
@@ -11429,6 +11495,11 @@ module TencentCloud
|
|
11429
11495
|
end
|
11430
11496
|
end
|
11431
11497
|
@MaxQueuesPerTopic = params['MaxQueuesPerTopic']
|
11498
|
+
@MaxRetention = params['MaxRetention']
|
11499
|
+
@MinRetention = params['MinRetention']
|
11500
|
+
@Retention = params['Retention']
|
11501
|
+
@TopicNumLowerLimit = params['TopicNumLowerLimit']
|
11502
|
+
@TopicNumUpperLimit = params['TopicNumUpperLimit']
|
11432
11503
|
end
|
11433
11504
|
end
|
11434
11505
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tdmq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.853
|
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-06-
|
11
|
+
date: 2024-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|