tencentcloud-sdk-tdmq 3.0.848 → 3.0.849
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 +12 -2
- 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: 5022cb6c4faccdd0bffef0cbf9bb0fcde743b983
|
|
4
|
+
data.tar.gz: 1e64f324b87edcb1cf6cfc7c04e6f7d1a8649682
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44bdf4ff6a80c41c1a0d3071e447ce102757e1710952df400b4d6cb7c9d9b33a3b3215eb1ebd21e05b4a08faa9780bd05fea09e41ad412772ac12440fa24f3ea
|
|
7
|
+
data.tar.gz: 1887452575a8b045a23fe8b911e3a871e358104782e97dd40a56f609d1ec82cb9b728e8b254471d0b1b12d6cf6290380570e7e64bc62d3ad8432b1811a094fc6
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.849
|
data/lib/v20200217/models.rb
CHANGED
|
@@ -10840,10 +10840,16 @@ module TencentCloud
|
|
|
10840
10840
|
# @param InstanceStatus: 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败,6 - 变配中,7 - 变配失败
|
|
10841
10841
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10842
10842
|
# @type InstanceStatus: Integer
|
|
10843
|
+
# @param ZoneId: 集群所属可用区,表明集群归属的可用区
|
|
10844
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10845
|
+
# @type ZoneId: Integer
|
|
10846
|
+
# @param ZoneIds: 集群节点所在的可用区,若该集群为跨可用区集群,则包含该集群节点所在的多个可用区。
|
|
10847
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10848
|
+
# @type ZoneIds: Array
|
|
10843
10849
|
|
|
10844
|
-
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
|
|
10850
|
+
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, :ZoneId, :ZoneIds
|
|
10845
10851
|
|
|
10846
|
-
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)
|
|
10852
|
+
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, zoneid=nil, zoneids=nil)
|
|
10847
10853
|
@ClusterId = clusterid
|
|
10848
10854
|
@ClusterName = clustername
|
|
10849
10855
|
@Region = region
|
|
@@ -10867,6 +10873,8 @@ module TencentCloud
|
|
|
10867
10873
|
@VpcId = vpcid
|
|
10868
10874
|
@SupportMigration = supportmigration
|
|
10869
10875
|
@InstanceStatus = instancestatus
|
|
10876
|
+
@ZoneId = zoneid
|
|
10877
|
+
@ZoneIds = zoneids
|
|
10870
10878
|
end
|
|
10871
10879
|
|
|
10872
10880
|
def deserialize(params)
|
|
@@ -10900,6 +10908,8 @@ module TencentCloud
|
|
|
10900
10908
|
@VpcId = params['VpcId']
|
|
10901
10909
|
@SupportMigration = params['SupportMigration']
|
|
10902
10910
|
@InstanceStatus = params['InstanceStatus']
|
|
10911
|
+
@ZoneId = params['ZoneId']
|
|
10912
|
+
@ZoneIds = params['ZoneIds']
|
|
10903
10913
|
end
|
|
10904
10914
|
end
|
|
10905
10915
|
|
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.849
|
|
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-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|