tencentcloud-sdk-tdmq 3.0.449 → 3.0.451
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 +40 -3
- 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: ee65cbd85808f437ec2a317c6e5b2902d8c425aa
|
4
|
+
data.tar.gz: 3977eec2a47637d0d6e5936487021e11e93caaff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02aca5a9d870ff19c79025cb9541576c2b901a213e75668115cbc1327f94077aa0a3bd47cf03877b358ad4b2e468206078ac1838b64df64e92f88f29efc02e6b
|
7
|
+
data.tar.gz: cf23396655caae93f78889e8ef5d747a9d5c449b1332c005ef63c9c85beb81eb8286ac5c6b0072dc3cb1b6b79e1346240d5ff175fcd80d4083970598cf09cb52
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.451
|
data/lib/v20200217/models.rb
CHANGED
@@ -4533,7 +4533,7 @@ module TencentCloud
|
|
4533
4533
|
|
4534
4534
|
# DescribeRabbitMQNodeList请求参数结构体
|
4535
4535
|
class DescribeRabbitMQNodeListRequest < TencentCloud::Common::AbstractModel
|
4536
|
-
# @param InstanceId:
|
4536
|
+
# @param InstanceId: rabbitmq集群ID
|
4537
4537
|
# @type InstanceId: String
|
4538
4538
|
# @param Offset: 偏移量
|
4539
4539
|
# @type Offset: Integer
|
@@ -6971,10 +6971,16 @@ module TencentCloud
|
|
6971
6971
|
# @param SupportNamespaceEndpoint: 是否支持命名空间接入点
|
6972
6972
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6973
6973
|
# @type SupportNamespaceEndpoint: Boolean
|
6974
|
+
# @param Vpcs: VPC信息
|
6975
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6976
|
+
# @type Vpcs: Array
|
6977
|
+
# @param IsVip: 是否为专享实例
|
6978
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6979
|
+
# @type IsVip: Boolean
|
6974
6980
|
|
6975
|
-
attr_accessor :ClusterId, :ClusterName, :Region, :CreateTime, :Remark, :PublicEndPoint, :VpcEndPoint, :SupportNamespaceEndpoint
|
6981
|
+
attr_accessor :ClusterId, :ClusterName, :Region, :CreateTime, :Remark, :PublicEndPoint, :VpcEndPoint, :SupportNamespaceEndpoint, :Vpcs, :IsVip
|
6976
6982
|
|
6977
|
-
def initialize(clusterid=nil, clustername=nil, region=nil, createtime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil, supportnamespaceendpoint=nil)
|
6983
|
+
def initialize(clusterid=nil, clustername=nil, region=nil, createtime=nil, remark=nil, publicendpoint=nil, vpcendpoint=nil, supportnamespaceendpoint=nil, vpcs=nil, isvip=nil)
|
6978
6984
|
@ClusterId = clusterid
|
6979
6985
|
@ClusterName = clustername
|
6980
6986
|
@Region = region
|
@@ -6983,6 +6989,8 @@ module TencentCloud
|
|
6983
6989
|
@PublicEndPoint = publicendpoint
|
6984
6990
|
@VpcEndPoint = vpcendpoint
|
6985
6991
|
@SupportNamespaceEndpoint = supportnamespaceendpoint
|
6992
|
+
@Vpcs = vpcs
|
6993
|
+
@IsVip = isvip
|
6986
6994
|
end
|
6987
6995
|
|
6988
6996
|
def deserialize(params)
|
@@ -6994,6 +7002,15 @@ module TencentCloud
|
|
6994
7002
|
@PublicEndPoint = params['PublicEndPoint']
|
6995
7003
|
@VpcEndPoint = params['VpcEndPoint']
|
6996
7004
|
@SupportNamespaceEndpoint = params['SupportNamespaceEndpoint']
|
7005
|
+
unless params['Vpcs'].nil?
|
7006
|
+
@Vpcs = []
|
7007
|
+
params['Vpcs'].each do |i|
|
7008
|
+
vpcconfig_tmp = VpcConfig.new
|
7009
|
+
vpcconfig_tmp.deserialize(i)
|
7010
|
+
@Vpcs << vpcconfig_tmp
|
7011
|
+
end
|
7012
|
+
end
|
7013
|
+
@IsVip = params['IsVip']
|
6997
7014
|
end
|
6998
7015
|
end
|
6999
7016
|
|
@@ -7910,6 +7927,26 @@ module TencentCloud
|
|
7910
7927
|
end
|
7911
7928
|
end
|
7912
7929
|
|
7930
|
+
# VPC配置信息
|
7931
|
+
class VpcConfig < TencentCloud::Common::AbstractModel
|
7932
|
+
# @param VpcId: vpc的id
|
7933
|
+
# @type VpcId: String
|
7934
|
+
# @param SubnetId: 子网id
|
7935
|
+
# @type SubnetId: String
|
7936
|
+
|
7937
|
+
attr_accessor :VpcId, :SubnetId
|
7938
|
+
|
7939
|
+
def initialize(vpcid=nil, subnetid=nil)
|
7940
|
+
@VpcId = vpcid
|
7941
|
+
@SubnetId = subnetid
|
7942
|
+
end
|
7943
|
+
|
7944
|
+
def deserialize(params)
|
7945
|
+
@VpcId = params['VpcId']
|
7946
|
+
@SubnetId = params['SubnetId']
|
7947
|
+
end
|
7948
|
+
end
|
7949
|
+
|
7913
7950
|
end
|
7914
7951
|
end
|
7915
7952
|
end
|
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.451
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-11-
|
11
|
+
date: 2022-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|