tencentcloud-sdk-tse 3.0.390 → 3.0.393
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 +58 -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: 64809a484a2b6fcca71f26ffc2c597d43482abb6
|
4
|
+
data.tar.gz: de91da1b814ed6913dc78b51e07e2b080c968540
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df0771ee5f9bc97ff7de5573495e9a270952eb3df8eb4910e4c97156c37bad7e10513b49f5c681d535d96378d50da9059e3e71341e0c8d2b3cb1067051a5a93f
|
7
|
+
data.tar.gz: 71caf374751fdbb178de69dc52e6bbf21f5b9caf1e752f8c6e4642989865f9b49b273dec0d62ef1e3cc7c40b91fa31a5e562c5fba89afd293d460a781593d277
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.393
|
data/lib/v20201207/models.rb
CHANGED
@@ -365,6 +365,50 @@ module TencentCloud
|
|
365
365
|
end
|
366
366
|
end
|
367
367
|
|
368
|
+
# 实例地域信息描述
|
369
|
+
class DescribeInstanceRegionInfo < TencentCloud::Common::AbstractModel
|
370
|
+
# @param EngineRegion: 引擎部署地域信息
|
371
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
372
|
+
# @type EngineRegion: String
|
373
|
+
# @param Replica: 引擎在该地域的副本数
|
374
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
375
|
+
# @type Replica: Integer
|
376
|
+
# @param SpecId: 引擎在该地域的规格id
|
377
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
378
|
+
# @type SpecId: String
|
379
|
+
# @param IntranetVpcInfos: 内网的网络信息
|
380
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
381
|
+
# @type IntranetVpcInfos: Array
|
382
|
+
# @param EnableClientInternet: 是否开公网
|
383
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
384
|
+
# @type EnableClientInternet: Boolean
|
385
|
+
|
386
|
+
attr_accessor :EngineRegion, :Replica, :SpecId, :IntranetVpcInfos, :EnableClientInternet
|
387
|
+
|
388
|
+
def initialize(engineregion=nil, replica=nil, specid=nil, intranetvpcinfos=nil, enableclientinternet=nil)
|
389
|
+
@EngineRegion = engineregion
|
390
|
+
@Replica = replica
|
391
|
+
@SpecId = specid
|
392
|
+
@IntranetVpcInfos = intranetvpcinfos
|
393
|
+
@EnableClientInternet = enableclientinternet
|
394
|
+
end
|
395
|
+
|
396
|
+
def deserialize(params)
|
397
|
+
@EngineRegion = params['EngineRegion']
|
398
|
+
@Replica = params['Replica']
|
399
|
+
@SpecId = params['SpecId']
|
400
|
+
unless params['IntranetVpcInfos'].nil?
|
401
|
+
@IntranetVpcInfos = []
|
402
|
+
params['IntranetVpcInfos'].each do |i|
|
403
|
+
vpcinfo_tmp = VpcInfo.new
|
404
|
+
vpcinfo_tmp.deserialize(i)
|
405
|
+
@IntranetVpcInfos << vpcinfo_tmp
|
406
|
+
end
|
407
|
+
end
|
408
|
+
@EnableClientInternet = params['EnableClientInternet']
|
409
|
+
end
|
410
|
+
end
|
411
|
+
|
368
412
|
# DescribeNacosReplicas请求参数结构体
|
369
413
|
class DescribeNacosReplicasRequest < TencentCloud::Common::AbstractModel
|
370
414
|
# @param InstanceId: 引擎实例ID
|
@@ -1069,10 +1113,13 @@ module TencentCloud
|
|
1069
1113
|
# @param IsolateTime: 隔离开始时间
|
1070
1114
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1071
1115
|
# @type IsolateTime: String
|
1116
|
+
# @param RegionInfos: 实例地域相关的描述信息
|
1117
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1118
|
+
# @type RegionInfos: Array
|
1072
1119
|
|
1073
|
-
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
|
1120
|
+
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
|
1074
1121
|
|
1075
|
-
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)
|
1122
|
+
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)
|
1076
1123
|
@InstanceId = instanceid
|
1077
1124
|
@Name = name
|
1078
1125
|
@Edition = edition
|
@@ -1102,6 +1149,7 @@ module TencentCloud
|
|
1102
1149
|
@AutoRenewFlag = autorenewflag
|
1103
1150
|
@CurDeadline = curdeadline
|
1104
1151
|
@IsolateTime = isolatetime
|
1152
|
+
@RegionInfos = regioninfos
|
1105
1153
|
end
|
1106
1154
|
|
1107
1155
|
def deserialize(params)
|
@@ -1162,6 +1210,14 @@ module TencentCloud
|
|
1162
1210
|
@AutoRenewFlag = params['AutoRenewFlag']
|
1163
1211
|
@CurDeadline = params['CurDeadline']
|
1164
1212
|
@IsolateTime = params['IsolateTime']
|
1213
|
+
unless params['RegionInfos'].nil?
|
1214
|
+
@RegionInfos = []
|
1215
|
+
params['RegionInfos'].each do |i|
|
1216
|
+
describeinstanceregioninfo_tmp = DescribeInstanceRegionInfo.new
|
1217
|
+
describeinstanceregioninfo_tmp.deserialize(i)
|
1218
|
+
@RegionInfos << describeinstanceregioninfo_tmp
|
1219
|
+
end
|
1220
|
+
end
|
1165
1221
|
end
|
1166
1222
|
end
|
1167
1223
|
|
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.393
|
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-08-
|
11
|
+
date: 2022-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|