tencentcloud-sdk-tse 3.0.843 → 3.0.845
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 +170 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cec5fa3642e708d14c67d03d76a17d30495fe72a
|
4
|
+
data.tar.gz: 304e5d308187e3c7e2c90e3de37b87390b64a28c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40ea72167202ad468690730b767e7d7275d83d2c79aee5cc1c3e39c3bb2a81301fb00a17d151398459195973738e6d493a3c174352254ee95b73238e97529949
|
7
|
+
data.tar.gz: 78fc5f9d338b02ca89129ecd5b9e4e2e591ef0836954cddcf94698d14352d86ce854865836595f0fb8dd79b34636c73c17f85c6396b9342c6e872d51b14492bf
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.845
|
data/lib/v20201207/models.rb
CHANGED
@@ -6331,20 +6331,61 @@ module TencentCloud
|
|
6331
6331
|
|
6332
6332
|
# DescribePublicAddressConfig返回参数结构体
|
6333
6333
|
class DescribePublicAddressConfigResponse < TencentCloud::Common::AbstractModel
|
6334
|
+
# @param Result: 公网地址信息
|
6335
|
+
# @type Result: :class:`Tencentcloud::Tse.v20201207.models.DescribePublicAddressConfigResult`
|
6334
6336
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6335
6337
|
# @type RequestId: String
|
6336
6338
|
|
6337
|
-
attr_accessor :RequestId
|
6339
|
+
attr_accessor :Result, :RequestId
|
6338
6340
|
|
6339
|
-
def initialize(requestid=nil)
|
6341
|
+
def initialize(result=nil, requestid=nil)
|
6342
|
+
@Result = result
|
6340
6343
|
@RequestId = requestid
|
6341
6344
|
end
|
6342
6345
|
|
6343
6346
|
def deserialize(params)
|
6347
|
+
unless params['Result'].nil?
|
6348
|
+
@Result = DescribePublicAddressConfigResult.new
|
6349
|
+
@Result.deserialize(params['Result'])
|
6350
|
+
end
|
6344
6351
|
@RequestId = params['RequestId']
|
6345
6352
|
end
|
6346
6353
|
end
|
6347
6354
|
|
6355
|
+
# 获取云原生api网关公网地址信息响应结果
|
6356
|
+
class DescribePublicAddressConfigResult < TencentCloud::Common::AbstractModel
|
6357
|
+
# @param GatewayId: 网关实例id
|
6358
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6359
|
+
# @type GatewayId: String
|
6360
|
+
# @param ConfigList: 公网地址信息
|
6361
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6362
|
+
# @type ConfigList: Array
|
6363
|
+
# @param TotalCount: 总个数
|
6364
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6365
|
+
# @type TotalCount: Integer
|
6366
|
+
|
6367
|
+
attr_accessor :GatewayId, :ConfigList, :TotalCount
|
6368
|
+
|
6369
|
+
def initialize(gatewayid=nil, configlist=nil, totalcount=nil)
|
6370
|
+
@GatewayId = gatewayid
|
6371
|
+
@ConfigList = configlist
|
6372
|
+
@TotalCount = totalcount
|
6373
|
+
end
|
6374
|
+
|
6375
|
+
def deserialize(params)
|
6376
|
+
@GatewayId = params['GatewayId']
|
6377
|
+
unless params['ConfigList'].nil?
|
6378
|
+
@ConfigList = []
|
6379
|
+
params['ConfigList'].each do |i|
|
6380
|
+
publicaddressconfig_tmp = PublicAddressConfig.new
|
6381
|
+
publicaddressconfig_tmp.deserialize(i)
|
6382
|
+
@ConfigList << publicaddressconfig_tmp
|
6383
|
+
end
|
6384
|
+
end
|
6385
|
+
@TotalCount = params['TotalCount']
|
6386
|
+
end
|
6387
|
+
end
|
6388
|
+
|
6348
6389
|
# DescribePublicNetwork请求参数结构体
|
6349
6390
|
class DescribePublicNetworkRequest < TencentCloud::Common::AbstractModel
|
6350
6391
|
# @param GatewayId: 云原生API网关实例ID。
|
@@ -10283,6 +10324,43 @@ module TencentCloud
|
|
10283
10324
|
end
|
10284
10325
|
end
|
10285
10326
|
|
10327
|
+
# 公网地址信息
|
10328
|
+
class PublicAddressConfig < TencentCloud::Common::AbstractModel
|
10329
|
+
# @param Vip: 公网 ip
|
10330
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10331
|
+
# @type Vip: String
|
10332
|
+
# @param InternetMaxBandwidthOut: 公网最大带宽
|
10333
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10334
|
+
# @type InternetMaxBandwidthOut: Integer
|
10335
|
+
# @param GroupId: 公网所属分组 id
|
10336
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10337
|
+
# @type GroupId: String
|
10338
|
+
# @param GroupName: 公网所属分组名
|
10339
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10340
|
+
# @type GroupName: String
|
10341
|
+
# @param NetworkId: 公网负载均衡 id
|
10342
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10343
|
+
# @type NetworkId: String
|
10344
|
+
|
10345
|
+
attr_accessor :Vip, :InternetMaxBandwidthOut, :GroupId, :GroupName, :NetworkId
|
10346
|
+
|
10347
|
+
def initialize(vip=nil, internetmaxbandwidthout=nil, groupid=nil, groupname=nil, networkid=nil)
|
10348
|
+
@Vip = vip
|
10349
|
+
@InternetMaxBandwidthOut = internetmaxbandwidthout
|
10350
|
+
@GroupId = groupid
|
10351
|
+
@GroupName = groupname
|
10352
|
+
@NetworkId = networkid
|
10353
|
+
end
|
10354
|
+
|
10355
|
+
def deserialize(params)
|
10356
|
+
@Vip = params['Vip']
|
10357
|
+
@InternetMaxBandwidthOut = params['InternetMaxBandwidthOut']
|
10358
|
+
@GroupId = params['GroupId']
|
10359
|
+
@GroupName = params['GroupName']
|
10360
|
+
@NetworkId = params['NetworkId']
|
10361
|
+
end
|
10362
|
+
end
|
10363
|
+
|
10286
10364
|
# PublishConfigFiles请求参数结构体
|
10287
10365
|
class PublishConfigFilesRequest < TencentCloud::Common::AbstractModel
|
10288
10366
|
# @param InstanceId: TSE实例id
|
@@ -10619,10 +10697,16 @@ module TencentCloud
|
|
10619
10697
|
# @param StorageOption: 存储额外配置选项
|
10620
10698
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10621
10699
|
# @type StorageOption: Array
|
10700
|
+
# @param ZookeeperRegionInfo: Zookeeper的额外环境数据信息
|
10701
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10702
|
+
# @type ZookeeperRegionInfo: :class:`Tencentcloud::Tse.v20201207.models.ZookeeperRegionInfo`
|
10703
|
+
# @param DeployMode: 部署架构
|
10704
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10705
|
+
# @type DeployMode: String
|
10622
10706
|
|
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
|
10707
|
+
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
10708
|
|
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)
|
10709
|
+
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
10710
|
@InstanceId = instanceid
|
10627
10711
|
@Name = name
|
10628
10712
|
@Edition = edition
|
@@ -10657,6 +10741,8 @@ module TencentCloud
|
|
10657
10741
|
@FeatureVersion = featureversion
|
10658
10742
|
@EnableClientIntranet = enableclientintranet
|
10659
10743
|
@StorageOption = storageoption
|
10744
|
+
@ZookeeperRegionInfo = zookeeperregioninfo
|
10745
|
+
@DeployMode = deploymode
|
10660
10746
|
end
|
10661
10747
|
|
10662
10748
|
def deserialize(params)
|
@@ -10736,6 +10822,11 @@ module TencentCloud
|
|
10736
10822
|
@StorageOption << storageoption_tmp
|
10737
10823
|
end
|
10738
10824
|
end
|
10825
|
+
unless params['ZookeeperRegionInfo'].nil?
|
10826
|
+
@ZookeeperRegionInfo = ZookeeperRegionInfo.new
|
10827
|
+
@ZookeeperRegionInfo.deserialize(params['ZookeeperRegionInfo'])
|
10828
|
+
end
|
10829
|
+
@DeployMode = params['DeployMode']
|
10739
10830
|
end
|
10740
10831
|
end
|
10741
10832
|
|
@@ -11263,19 +11354,92 @@ module TencentCloud
|
|
11263
11354
|
# @param IntranetAddress: 内网访问地址
|
11264
11355
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11265
11356
|
# @type IntranetAddress: String
|
11357
|
+
# @param LbSubnetId: 负载均衡均衡接入点子网ID
|
11358
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11359
|
+
# @type LbSubnetId: String
|
11266
11360
|
|
11267
|
-
attr_accessor :VpcId, :SubnetId, :IntranetAddress
|
11361
|
+
attr_accessor :VpcId, :SubnetId, :IntranetAddress, :LbSubnetId
|
11268
11362
|
|
11269
|
-
def initialize(vpcid=nil, subnetid=nil, intranetaddress=nil)
|
11363
|
+
def initialize(vpcid=nil, subnetid=nil, intranetaddress=nil, lbsubnetid=nil)
|
11270
11364
|
@VpcId = vpcid
|
11271
11365
|
@SubnetId = subnetid
|
11272
11366
|
@IntranetAddress = intranetaddress
|
11367
|
+
@LbSubnetId = lbsubnetid
|
11273
11368
|
end
|
11274
11369
|
|
11275
11370
|
def deserialize(params)
|
11276
11371
|
@VpcId = params['VpcId']
|
11277
11372
|
@SubnetId = params['SubnetId']
|
11278
11373
|
@IntranetAddress = params['IntranetAddress']
|
11374
|
+
@LbSubnetId = params['LbSubnetId']
|
11375
|
+
end
|
11376
|
+
end
|
11377
|
+
|
11378
|
+
# Zookeeper的地域额外信息记录
|
11379
|
+
class ZookeeperRegionInfo < TencentCloud::Common::AbstractModel
|
11380
|
+
# @param DeployMode: 部署架构信息
|
11381
|
+
|
11382
|
+
# - SingleRegion: 普通单地域
|
11383
|
+
# - MultiRegion: 普通多地域场景
|
11384
|
+
# - MasterSlave: 两地域,主备地域场景
|
11385
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11386
|
+
# @type DeployMode: String
|
11387
|
+
# @param MainRegion: 主地域的额外信息
|
11388
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11389
|
+
# @type MainRegion: :class:`Tencentcloud::Tse.v20201207.models.ZookeeperRegionMyIdInfo`
|
11390
|
+
# @param OtherRegions: 其他地域的额外信息
|
11391
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11392
|
+
# @type OtherRegions: Array
|
11393
|
+
|
11394
|
+
attr_accessor :DeployMode, :MainRegion, :OtherRegions
|
11395
|
+
|
11396
|
+
def initialize(deploymode=nil, mainregion=nil, otherregions=nil)
|
11397
|
+
@DeployMode = deploymode
|
11398
|
+
@MainRegion = mainregion
|
11399
|
+
@OtherRegions = otherregions
|
11400
|
+
end
|
11401
|
+
|
11402
|
+
def deserialize(params)
|
11403
|
+
@DeployMode = params['DeployMode']
|
11404
|
+
unless params['MainRegion'].nil?
|
11405
|
+
@MainRegion = ZookeeperRegionMyIdInfo.new
|
11406
|
+
@MainRegion.deserialize(params['MainRegion'])
|
11407
|
+
end
|
11408
|
+
unless params['OtherRegions'].nil?
|
11409
|
+
@OtherRegions = []
|
11410
|
+
params['OtherRegions'].each do |i|
|
11411
|
+
zookeeperregionmyidinfo_tmp = ZookeeperRegionMyIdInfo.new
|
11412
|
+
zookeeperregionmyidinfo_tmp.deserialize(i)
|
11413
|
+
@OtherRegions << zookeeperregionmyidinfo_tmp
|
11414
|
+
end
|
11415
|
+
end
|
11416
|
+
end
|
11417
|
+
end
|
11418
|
+
|
11419
|
+
# Zookeeper的地域信息的 myid 信息记录
|
11420
|
+
class ZookeeperRegionMyIdInfo < TencentCloud::Common::AbstractModel
|
11421
|
+
# @param Region: 地域信息
|
11422
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11423
|
+
# @type Region: String
|
11424
|
+
# @param MyIdStart: myid 的起始号段
|
11425
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11426
|
+
# @type MyIdStart: Integer
|
11427
|
+
# @param MyIdEnd: myid 的结束号段
|
11428
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11429
|
+
# @type MyIdEnd: Integer
|
11430
|
+
|
11431
|
+
attr_accessor :Region, :MyIdStart, :MyIdEnd
|
11432
|
+
|
11433
|
+
def initialize(region=nil, myidstart=nil, myidend=nil)
|
11434
|
+
@Region = region
|
11435
|
+
@MyIdStart = myidstart
|
11436
|
+
@MyIdEnd = myidend
|
11437
|
+
end
|
11438
|
+
|
11439
|
+
def deserialize(params)
|
11440
|
+
@Region = params['Region']
|
11441
|
+
@MyIdStart = params['MyIdStart']
|
11442
|
+
@MyIdEnd = params['MyIdEnd']
|
11279
11443
|
end
|
11280
11444
|
end
|
11281
11445
|
|
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.845
|
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-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/tencentcloud-sdk-tse.rb
|
37
36
|
- lib/v20201207/models.rb
|
38
37
|
- lib/v20201207/client.rb
|
38
|
+
- lib/tencentcloud-sdk-tse.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|