tencentcloud-sdk-tdmq 3.0.693 → 3.0.695
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 +49 -5
- 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: 6f7e30ec35270d681ad6a1095b6f470fcb860cdb
|
4
|
+
data.tar.gz: 919aa8e7d2e805dd1a890a5ec4c91dfed5ddccbd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfcb4947c7feabd041c2d98db20fff49651a8d67c5d448944036125fcd92bc444f52ba072fabea606561a95e71e0e97ee4d2e1a21b1143e19d6e3afb82321f52
|
7
|
+
data.tar.gz: 47b6467d55e4fcab8bee767358a4e977d0afa4c95b60fbf3a3b1615131abd7465393b59a0e65ae485874ac7ac50af2a263049ffab9810555dde138753e715212
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.695
|
data/lib/v20200217/models.rb
CHANGED
@@ -4926,7 +4926,7 @@ module TencentCloud
|
|
4926
4926
|
# @type ClusterInfo: :class:`Tencentcloud::Tdmq.v20200217.models.RocketMQClusterInfo`
|
4927
4927
|
# @param ClusterConfig: 集群配置
|
4928
4928
|
# @type ClusterConfig: :class:`Tencentcloud::Tdmq.v20200217.models.RocketMQClusterConfig`
|
4929
|
-
# @param ClusterStats:
|
4929
|
+
# @param ClusterStats: 集群最近使用量,即将废弃,请使用云监控获取相关数据。
|
4930
4930
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4931
4931
|
# @type ClusterStats: :class:`Tencentcloud::Tdmq.v20200217.models.RocketMQClusterRecentStats`
|
4932
4932
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
@@ -9483,10 +9483,13 @@ module TencentCloud
|
|
9483
9483
|
# @param MaxQueuesPerTopic: 单个主题最大队列数
|
9484
9484
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
9485
9485
|
# @type MaxQueuesPerTopic: Integer
|
9486
|
+
# @param TopicDistribution: topic分布
|
9487
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9488
|
+
# @type TopicDistribution: Array
|
9486
9489
|
|
9487
|
-
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :MaxRetentionTime, :MaxLatencyTime, :MaxQueuesPerTopic
|
9490
|
+
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :MaxRetentionTime, :MaxLatencyTime, :MaxQueuesPerTopic, :TopicDistribution
|
9488
9491
|
|
9489
|
-
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, maxretentiontime=nil, maxlatencytime=nil, maxqueuespertopic=nil)
|
9492
|
+
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, maxretentiontime=nil, maxlatencytime=nil, maxqueuespertopic=nil, topicdistribution=nil)
|
9490
9493
|
@MaxTpsPerNamespace = maxtpspernamespace
|
9491
9494
|
@MaxNamespaceNum = maxnamespacenum
|
9492
9495
|
@UsedNamespaceNum = usednamespacenum
|
@@ -9497,6 +9500,7 @@ module TencentCloud
|
|
9497
9500
|
@MaxRetentionTime = maxretentiontime
|
9498
9501
|
@MaxLatencyTime = maxlatencytime
|
9499
9502
|
@MaxQueuesPerTopic = maxqueuespertopic
|
9503
|
+
@TopicDistribution = topicdistribution
|
9500
9504
|
end
|
9501
9505
|
|
9502
9506
|
def deserialize(params)
|
@@ -9510,6 +9514,14 @@ module TencentCloud
|
|
9510
9514
|
@MaxRetentionTime = params['MaxRetentionTime']
|
9511
9515
|
@MaxLatencyTime = params['MaxLatencyTime']
|
9512
9516
|
@MaxQueuesPerTopic = params['MaxQueuesPerTopic']
|
9517
|
+
unless params['TopicDistribution'].nil?
|
9518
|
+
@TopicDistribution = []
|
9519
|
+
params['TopicDistribution'].each do |i|
|
9520
|
+
rocketmqtopicdistribution_tmp = RocketMQTopicDistribution.new
|
9521
|
+
rocketmqtopicdistribution_tmp.deserialize(i)
|
9522
|
+
@TopicDistribution << rocketmqtopicdistribution_tmp
|
9523
|
+
end
|
9524
|
+
end
|
9513
9525
|
end
|
9514
9526
|
end
|
9515
9527
|
|
@@ -9591,10 +9603,28 @@ module TencentCloud
|
|
9591
9603
|
# @param HttpInternalEndpoint: HTTP协议内部接入地址
|
9592
9604
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
9593
9605
|
# @type HttpInternalEndpoint: String
|
9606
|
+
# @param AclEnabled: 是否开启ACL鉴权,专享实例支持关闭
|
9607
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9608
|
+
# @type AclEnabled: Boolean
|
9609
|
+
# @param PublicClbId: 公网CLB实例ID
|
9610
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9611
|
+
# @type PublicClbId: String
|
9612
|
+
# @param Vip: vip
|
9613
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9614
|
+
# @type Vip: String
|
9615
|
+
# @param VpcId: 所属VPC
|
9616
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9617
|
+
# @type VpcId: String
|
9618
|
+
# @param SupportMigration: 是否支持迁移
|
9619
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9620
|
+
# @type SupportMigration: Boolean
|
9621
|
+
# @param InstanceStatus: 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败,6 - 变配中,7 - 变配失败
|
9622
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9623
|
+
# @type InstanceStatus: Integer
|
9594
9624
|
|
9595
|
-
attr_accessor :ClusterId, :ClusterName, :Region, :CreateTime, :Remark, :PublicEndPoint, :VpcEndPoint, :SupportNamespaceEndpoint, :Vpcs, :IsVip, :RocketMQFlag, :Status, :IsolateTime, :HttpPublicEndpoint, :HttpVpcEndpoint, :InternalEndpoint, :HttpInternalEndpoint
|
9625
|
+
attr_accessor :ClusterId, :ClusterName, :Region, :CreateTime, :Remark, :PublicEndPoint, :VpcEndPoint, :SupportNamespaceEndpoint, :Vpcs, :IsVip, :RocketMQFlag, :Status, :IsolateTime, :HttpPublicEndpoint, :HttpVpcEndpoint, :InternalEndpoint, :HttpInternalEndpoint, :AclEnabled, :PublicClbId, :Vip, :VpcId, :SupportMigration, :InstanceStatus
|
9596
9626
|
|
9597
|
-
def initialize(clusterid=nil, clustername=nil, region=nil, createtime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil, supportnamespaceendpoint=nil, vpcs=nil, isvip=nil, rocketmqflag=nil, status=nil, isolatetime=nil, httppublicendpoint=nil, httpvpcendpoint=nil, internalendpoint=nil, httpinternalendpoint=nil)
|
9627
|
+
def initialize(clusterid=nil, clustername=nil, region=nil, createtime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil, supportnamespaceendpoint=nil, vpcs=nil, isvip=nil, rocketmqflag=nil, status=nil, isolatetime=nil, httppublicendpoint=nil, httpvpcendpoint=nil, internalendpoint=nil, httpinternalendpoint=nil, aclenabled=nil, publicclbid=nil, vip=nil, vpcid=nil, supportmigration=nil, instancestatus=nil)
|
9598
9628
|
@ClusterId = clusterid
|
9599
9629
|
@ClusterName = clustername
|
9600
9630
|
@Region = region
|
@@ -9612,6 +9642,12 @@ module TencentCloud
|
|
9612
9642
|
@HttpVpcEndpoint = httpvpcendpoint
|
9613
9643
|
@InternalEndpoint = internalendpoint
|
9614
9644
|
@HttpInternalEndpoint = httpinternalendpoint
|
9645
|
+
@AclEnabled = aclenabled
|
9646
|
+
@PublicClbId = publicclbid
|
9647
|
+
@Vip = vip
|
9648
|
+
@VpcId = vpcid
|
9649
|
+
@SupportMigration = supportmigration
|
9650
|
+
@InstanceStatus = instancestatus
|
9615
9651
|
end
|
9616
9652
|
|
9617
9653
|
def deserialize(params)
|
@@ -9639,6 +9675,12 @@ module TencentCloud
|
|
9639
9675
|
@HttpVpcEndpoint = params['HttpVpcEndpoint']
|
9640
9676
|
@InternalEndpoint = params['InternalEndpoint']
|
9641
9677
|
@HttpInternalEndpoint = params['HttpInternalEndpoint']
|
9678
|
+
@AclEnabled = params['AclEnabled']
|
9679
|
+
@PublicClbId = params['PublicClbId']
|
9680
|
+
@Vip = params['Vip']
|
9681
|
+
@VpcId = params['VpcId']
|
9682
|
+
@SupportMigration = params['SupportMigration']
|
9683
|
+
@InstanceStatus = params['InstanceStatus']
|
9642
9684
|
end
|
9643
9685
|
end
|
9644
9686
|
|
@@ -11034,8 +11076,10 @@ module TencentCloud
|
|
11034
11076
|
# 标签的key/value的类型
|
11035
11077
|
class Tag < TencentCloud::Common::AbstractModel
|
11036
11078
|
# @param TagKey: 标签的key的值
|
11079
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11037
11080
|
# @type TagKey: String
|
11038
11081
|
# @param TagValue: 标签的Value的值
|
11082
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11039
11083
|
# @type TagValue: String
|
11040
11084
|
|
11041
11085
|
attr_accessor :TagKey, :TagValue
|
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.695
|
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-11-
|
11
|
+
date: 2023-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|