tencentcloud-sdk-ckafka 3.0.611 → 3.0.612
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/v20190819/models.rb +24 -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: 165abb59e8b7fb279038d0299732073e01f5437a
|
4
|
+
data.tar.gz: c8e2af83ca785d5d72323c49aae2e69b59b86780
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c0f7625d789ae453d5095b71090dd3c497e66b0551119b035208b901cfabbb9995ecf7b64c93a326690d614b0bbd8e7e7c69808fe2f2e0510a11baae5b0c863
|
7
|
+
data.tar.gz: da4054d742ae4e3dc7ee3d1b5974086ae57071e88a6a5f4cbbb24c1f3d94e79e14c106b940ac32dd93b1ecce867aecd15627d80ec966b6f2f77cce5872074331
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.612
|
data/lib/v20190819/models.rb
CHANGED
@@ -9882,10 +9882,19 @@ module TencentCloud
|
|
9882
9882
|
# @param DeleteTimestamp: 时间戳
|
9883
9883
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
9884
9884
|
# @type DeleteTimestamp: String
|
9885
|
+
# @param Subnet: 子网信息
|
9886
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9887
|
+
# @type Subnet: String
|
9888
|
+
# @param BrokerVipList: 虚拟IP列表(1对1 broker节点)
|
9889
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9890
|
+
# @type BrokerVipList: Array
|
9891
|
+
# @param VpcId: vpc信息
|
9892
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9893
|
+
# @type VpcId: String
|
9885
9894
|
|
9886
|
-
attr_accessor :AccessType, :RouteId, :VipType, :VipList, :Domain, :DomainPort, :DeleteTimestamp
|
9895
|
+
attr_accessor :AccessType, :RouteId, :VipType, :VipList, :Domain, :DomainPort, :DeleteTimestamp, :Subnet, :BrokerVipList, :VpcId
|
9887
9896
|
|
9888
|
-
def initialize(accesstype=nil, routeid=nil, viptype=nil, viplist=nil, domain=nil, domainport=nil, deletetimestamp=nil)
|
9897
|
+
def initialize(accesstype=nil, routeid=nil, viptype=nil, viplist=nil, domain=nil, domainport=nil, deletetimestamp=nil, subnet=nil, brokerviplist=nil, vpcid=nil)
|
9889
9898
|
@AccessType = accesstype
|
9890
9899
|
@RouteId = routeid
|
9891
9900
|
@VipType = viptype
|
@@ -9893,6 +9902,9 @@ module TencentCloud
|
|
9893
9902
|
@Domain = domain
|
9894
9903
|
@DomainPort = domainport
|
9895
9904
|
@DeleteTimestamp = deletetimestamp
|
9905
|
+
@Subnet = subnet
|
9906
|
+
@BrokerVipList = brokerviplist
|
9907
|
+
@VpcId = vpcid
|
9896
9908
|
end
|
9897
9909
|
|
9898
9910
|
def deserialize(params)
|
@@ -9910,6 +9922,16 @@ module TencentCloud
|
|
9910
9922
|
@Domain = params['Domain']
|
9911
9923
|
@DomainPort = params['DomainPort']
|
9912
9924
|
@DeleteTimestamp = params['DeleteTimestamp']
|
9925
|
+
@Subnet = params['Subnet']
|
9926
|
+
unless params['BrokerVipList'].nil?
|
9927
|
+
@BrokerVipList = []
|
9928
|
+
params['BrokerVipList'].each do |i|
|
9929
|
+
vipentity_tmp = VipEntity.new
|
9930
|
+
vipentity_tmp.deserialize(i)
|
9931
|
+
@BrokerVipList << vipentity_tmp
|
9932
|
+
end
|
9933
|
+
end
|
9934
|
+
@VpcId = params['VpcId']
|
9913
9935
|
end
|
9914
9936
|
end
|
9915
9937
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ckafka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.612
|
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-07-
|
11
|
+
date: 2023-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|