tencentcloud-sdk-tse 3.0.843 → 3.0.844
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/v20201207/models.rb +90 -4
- 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: 28b65f0fca0cb0ba54698fded1b60a29342a2d94
|
|
4
|
+
data.tar.gz: e8ed720bfcce9d470e4c69caddf99f2a64f8d0b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7d3c49b78b1e50896ec34458d848ac2cb5f6948bef17b9a1d53ffd42afc7a55d41f79e15737df00dfed791a105bb2f403c0c35ce33b05824d0a81c7bfdea8ce
|
|
7
|
+
data.tar.gz: 206e8b9678ddc404f12340a4d3875833a5a78b5a0edd4c5f7940686e45edda95460078c36a68016535569ca60e584bb59d1c3eb4c95f0b07728b552aade655d1
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.844
|
data/lib/v20201207/models.rb
CHANGED
|
@@ -10619,10 +10619,16 @@ module TencentCloud
|
|
|
10619
10619
|
# @param StorageOption: 存储额外配置选项
|
|
10620
10620
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10621
10621
|
# @type StorageOption: Array
|
|
10622
|
+
# @param ZookeeperRegionInfo: Zookeeper的额外环境数据信息
|
|
10623
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10624
|
+
# @type ZookeeperRegionInfo: :class:`Tencentcloud::Tse.v20201207.models.ZookeeperRegionInfo`
|
|
10625
|
+
# @param DeployMode: 部署架构
|
|
10626
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10627
|
+
# @type DeployMode: String
|
|
10622
10628
|
|
|
10623
|
-
attr_accessor :InstanceId, :Name, :Edition, :Status, :SpecId, :Replica, :Type, :VpcId, :SubnetIds, :EnableStorage, :StorageType, :StorageCapacity, :Paymode, :EKSClusterID, :CreateTime, :EnvInfos, :EngineRegion, :EnableInternet, :VpcInfos, :ServiceGovernanceInfos, :Tags, :EnableConsoleInternet, :EnableConsoleIntranet, :ConfigInfoVisible, :ConsoleDefaultPwd, :TradeType, :AutoRenewFlag, :CurDeadline, :IsolateTime, :RegionInfos, :EKSType, :FeatureVersion, :EnableClientIntranet, :StorageOption
|
|
10629
|
+
attr_accessor :InstanceId, :Name, :Edition, :Status, :SpecId, :Replica, :Type, :VpcId, :SubnetIds, :EnableStorage, :StorageType, :StorageCapacity, :Paymode, :EKSClusterID, :CreateTime, :EnvInfos, :EngineRegion, :EnableInternet, :VpcInfos, :ServiceGovernanceInfos, :Tags, :EnableConsoleInternet, :EnableConsoleIntranet, :ConfigInfoVisible, :ConsoleDefaultPwd, :TradeType, :AutoRenewFlag, :CurDeadline, :IsolateTime, :RegionInfos, :EKSType, :FeatureVersion, :EnableClientIntranet, :StorageOption, :ZookeeperRegionInfo, :DeployMode
|
|
10624
10630
|
|
|
10625
|
-
def initialize(instanceid=nil, name=nil, edition=nil, status=nil, specid=nil, replica=nil, type=nil, vpcid=nil, subnetids=nil, enablestorage=nil, storagetype=nil, storagecapacity=nil, paymode=nil, eksclusterid=nil, createtime=nil, envinfos=nil, engineregion=nil, enableinternet=nil, vpcinfos=nil, servicegovernanceinfos=nil, tags=nil, enableconsoleinternet=nil, enableconsoleintranet=nil, configinfovisible=nil, consoledefaultpwd=nil, tradetype=nil, autorenewflag=nil, curdeadline=nil, isolatetime=nil, regioninfos=nil, ekstype=nil, featureversion=nil, enableclientintranet=nil, storageoption=nil)
|
|
10631
|
+
def initialize(instanceid=nil, name=nil, edition=nil, status=nil, specid=nil, replica=nil, type=nil, vpcid=nil, subnetids=nil, enablestorage=nil, storagetype=nil, storagecapacity=nil, paymode=nil, eksclusterid=nil, createtime=nil, envinfos=nil, engineregion=nil, enableinternet=nil, vpcinfos=nil, servicegovernanceinfos=nil, tags=nil, enableconsoleinternet=nil, enableconsoleintranet=nil, configinfovisible=nil, consoledefaultpwd=nil, tradetype=nil, autorenewflag=nil, curdeadline=nil, isolatetime=nil, regioninfos=nil, ekstype=nil, featureversion=nil, enableclientintranet=nil, storageoption=nil, zookeeperregioninfo=nil, deploymode=nil)
|
|
10626
10632
|
@InstanceId = instanceid
|
|
10627
10633
|
@Name = name
|
|
10628
10634
|
@Edition = edition
|
|
@@ -10657,6 +10663,8 @@ module TencentCloud
|
|
|
10657
10663
|
@FeatureVersion = featureversion
|
|
10658
10664
|
@EnableClientIntranet = enableclientintranet
|
|
10659
10665
|
@StorageOption = storageoption
|
|
10666
|
+
@ZookeeperRegionInfo = zookeeperregioninfo
|
|
10667
|
+
@DeployMode = deploymode
|
|
10660
10668
|
end
|
|
10661
10669
|
|
|
10662
10670
|
def deserialize(params)
|
|
@@ -10736,6 +10744,11 @@ module TencentCloud
|
|
|
10736
10744
|
@StorageOption << storageoption_tmp
|
|
10737
10745
|
end
|
|
10738
10746
|
end
|
|
10747
|
+
unless params['ZookeeperRegionInfo'].nil?
|
|
10748
|
+
@ZookeeperRegionInfo = ZookeeperRegionInfo.new
|
|
10749
|
+
@ZookeeperRegionInfo.deserialize(params['ZookeeperRegionInfo'])
|
|
10750
|
+
end
|
|
10751
|
+
@DeployMode = params['DeployMode']
|
|
10739
10752
|
end
|
|
10740
10753
|
end
|
|
10741
10754
|
|
|
@@ -11263,19 +11276,92 @@ module TencentCloud
|
|
|
11263
11276
|
# @param IntranetAddress: 内网访问地址
|
|
11264
11277
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11265
11278
|
# @type IntranetAddress: String
|
|
11279
|
+
# @param LbSubnetId: 负载均衡均衡接入点子网ID
|
|
11280
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11281
|
+
# @type LbSubnetId: String
|
|
11266
11282
|
|
|
11267
|
-
attr_accessor :VpcId, :SubnetId, :IntranetAddress
|
|
11283
|
+
attr_accessor :VpcId, :SubnetId, :IntranetAddress, :LbSubnetId
|
|
11268
11284
|
|
|
11269
|
-
def initialize(vpcid=nil, subnetid=nil, intranetaddress=nil)
|
|
11285
|
+
def initialize(vpcid=nil, subnetid=nil, intranetaddress=nil, lbsubnetid=nil)
|
|
11270
11286
|
@VpcId = vpcid
|
|
11271
11287
|
@SubnetId = subnetid
|
|
11272
11288
|
@IntranetAddress = intranetaddress
|
|
11289
|
+
@LbSubnetId = lbsubnetid
|
|
11273
11290
|
end
|
|
11274
11291
|
|
|
11275
11292
|
def deserialize(params)
|
|
11276
11293
|
@VpcId = params['VpcId']
|
|
11277
11294
|
@SubnetId = params['SubnetId']
|
|
11278
11295
|
@IntranetAddress = params['IntranetAddress']
|
|
11296
|
+
@LbSubnetId = params['LbSubnetId']
|
|
11297
|
+
end
|
|
11298
|
+
end
|
|
11299
|
+
|
|
11300
|
+
# Zookeeper的地域额外信息记录
|
|
11301
|
+
class ZookeeperRegionInfo < TencentCloud::Common::AbstractModel
|
|
11302
|
+
# @param DeployMode: 部署架构信息
|
|
11303
|
+
|
|
11304
|
+
# - SingleRegion: 普通单地域
|
|
11305
|
+
# - MultiRegion: 普通多地域场景
|
|
11306
|
+
# - MasterSlave: 两地域,主备地域场景
|
|
11307
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11308
|
+
# @type DeployMode: String
|
|
11309
|
+
# @param MainRegion: 主地域的额外信息
|
|
11310
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11311
|
+
# @type MainRegion: :class:`Tencentcloud::Tse.v20201207.models.ZookeeperRegionMyIdInfo`
|
|
11312
|
+
# @param OtherRegions: 其他地域的额外信息
|
|
11313
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11314
|
+
# @type OtherRegions: Array
|
|
11315
|
+
|
|
11316
|
+
attr_accessor :DeployMode, :MainRegion, :OtherRegions
|
|
11317
|
+
|
|
11318
|
+
def initialize(deploymode=nil, mainregion=nil, otherregions=nil)
|
|
11319
|
+
@DeployMode = deploymode
|
|
11320
|
+
@MainRegion = mainregion
|
|
11321
|
+
@OtherRegions = otherregions
|
|
11322
|
+
end
|
|
11323
|
+
|
|
11324
|
+
def deserialize(params)
|
|
11325
|
+
@DeployMode = params['DeployMode']
|
|
11326
|
+
unless params['MainRegion'].nil?
|
|
11327
|
+
@MainRegion = ZookeeperRegionMyIdInfo.new
|
|
11328
|
+
@MainRegion.deserialize(params['MainRegion'])
|
|
11329
|
+
end
|
|
11330
|
+
unless params['OtherRegions'].nil?
|
|
11331
|
+
@OtherRegions = []
|
|
11332
|
+
params['OtherRegions'].each do |i|
|
|
11333
|
+
zookeeperregionmyidinfo_tmp = ZookeeperRegionMyIdInfo.new
|
|
11334
|
+
zookeeperregionmyidinfo_tmp.deserialize(i)
|
|
11335
|
+
@OtherRegions << zookeeperregionmyidinfo_tmp
|
|
11336
|
+
end
|
|
11337
|
+
end
|
|
11338
|
+
end
|
|
11339
|
+
end
|
|
11340
|
+
|
|
11341
|
+
# Zookeeper的地域信息的 myid 信息记录
|
|
11342
|
+
class ZookeeperRegionMyIdInfo < TencentCloud::Common::AbstractModel
|
|
11343
|
+
# @param Region: 地域信息
|
|
11344
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11345
|
+
# @type Region: String
|
|
11346
|
+
# @param MyIdStart: myid 的起始号段
|
|
11347
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11348
|
+
# @type MyIdStart: Integer
|
|
11349
|
+
# @param MyIdEnd: myid 的结束号段
|
|
11350
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11351
|
+
# @type MyIdEnd: Integer
|
|
11352
|
+
|
|
11353
|
+
attr_accessor :Region, :MyIdStart, :MyIdEnd
|
|
11354
|
+
|
|
11355
|
+
def initialize(region=nil, myidstart=nil, myidend=nil)
|
|
11356
|
+
@Region = region
|
|
11357
|
+
@MyIdStart = myidstart
|
|
11358
|
+
@MyIdEnd = myidend
|
|
11359
|
+
end
|
|
11360
|
+
|
|
11361
|
+
def deserialize(params)
|
|
11362
|
+
@Region = params['Region']
|
|
11363
|
+
@MyIdStart = params['MyIdStart']
|
|
11364
|
+
@MyIdEnd = params['MyIdEnd']
|
|
11279
11365
|
end
|
|
11280
11366
|
end
|
|
11281
11367
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-tse
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.844
|
|
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-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|