tencentcloud-sdk-tdmq 3.0.450 → 3.0.451

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200217/models.rb +40 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3ec0d3e4b1ddd70b835689ea47f55797ee31353c
4
- data.tar.gz: f2fc173e9ae8960d39e56315c87bcfbfbd165e8e
3
+ metadata.gz: ee65cbd85808f437ec2a317c6e5b2902d8c425aa
4
+ data.tar.gz: 3977eec2a47637d0d6e5936487021e11e93caaff
5
5
  SHA512:
6
- metadata.gz: cbdd60c8335c383944c160b4385b257958dcaac68f5af2c0b9c79ad81caa94bf88f88c4e94ffcea59397795856b97b17e746658397734b12d6ce1177132ee84e
7
- data.tar.gz: 59afc66d200fbf30522fb1575aa3adc591ec886ea27709f9028db78d97063a989dd6b118b5d7a259638674fb51d8251213d7addb428260b1f6964bc2a2a2bc4d
6
+ metadata.gz: 02aca5a9d870ff19c79025cb9541576c2b901a213e75668115cbc1327f94077aa0a3bd47cf03877b358ad4b2e468206078ac1838b64df64e92f88f29efc02e6b
7
+ data.tar.gz: cf23396655caae93f78889e8ef5d747a9d5c449b1332c005ef63c9c85beb81eb8286ac5c6b0072dc3cb1b6b79e1346240d5ff175fcd80d4083970598cf09cb52
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.450
1
+ 3.0.451
@@ -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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tdmq
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.450
4
+ version: 3.0.451
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud