tencentcloud-sdk-tse 3.0.676 → 3.0.678
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 +188 -15
- 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: 13a89589b88e1aa6649c860cc16b1936a83f7545
|
4
|
+
data.tar.gz: 7b224a2280d094449993c9bfcc83f0ff3fb9862c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f072d229bbaed97b5cefc77cfed325525df54ec97227aa37e874582796ce950d35cea74154c732431785fc3e55dcf6bcd209969f31efb1adb4d2b72f64720353
|
7
|
+
data.tar.gz: 32a1856b9373e6a118f064051a90e3f66e1f06bb0c1ae197faa32a632d3efd1e66cd0470a205b8e9615de623268ca78d5c105b683e499029c24d5fee91a39a83
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.678
|
data/lib/v20201207/models.rb
CHANGED
@@ -159,19 +159,51 @@ module TencentCloud
|
|
159
159
|
# @param SyncMode: 服务同步模式,all为全量同步,demand为按需同步
|
160
160
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
161
161
|
# @type SyncMode: String
|
162
|
+
# @param BindRegion: 绑定的kubernetes集群所在地域
|
163
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
164
|
+
# @type BindRegion: String
|
162
165
|
|
163
|
-
attr_accessor :BoundClusterId, :BoundClusterType, :SyncMode
|
166
|
+
attr_accessor :BoundClusterId, :BoundClusterType, :SyncMode, :BindRegion
|
164
167
|
|
165
|
-
def initialize(boundclusterid=nil, boundclustertype=nil, syncmode=nil)
|
168
|
+
def initialize(boundclusterid=nil, boundclustertype=nil, syncmode=nil, bindregion=nil)
|
166
169
|
@BoundClusterId = boundclusterid
|
167
170
|
@BoundClusterType = boundclustertype
|
168
171
|
@SyncMode = syncmode
|
172
|
+
@BindRegion = bindregion
|
169
173
|
end
|
170
174
|
|
171
175
|
def deserialize(params)
|
172
176
|
@BoundClusterId = params['BoundClusterId']
|
173
177
|
@BoundClusterType = params['BoundClusterType']
|
174
178
|
@SyncMode = params['SyncMode']
|
179
|
+
@BindRegion = params['BindRegion']
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
# CLB多可用区信息
|
184
|
+
class CLBMultiRegion < TencentCloud::Common::AbstractModel
|
185
|
+
# @param CLBMultiZoneFlag: 是否启用多可用区
|
186
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
187
|
+
# @type CLBMultiZoneFlag: Boolean
|
188
|
+
# @param CLBMasterZone: 主可用区信息
|
189
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
190
|
+
# @type CLBMasterZone: String
|
191
|
+
# @param CLBSlaveZone: 备可用区信息
|
192
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
193
|
+
# @type CLBSlaveZone: String
|
194
|
+
|
195
|
+
attr_accessor :CLBMultiZoneFlag, :CLBMasterZone, :CLBSlaveZone
|
196
|
+
|
197
|
+
def initialize(clbmultizoneflag=nil, clbmasterzone=nil, clbslavezone=nil)
|
198
|
+
@CLBMultiZoneFlag = clbmultizoneflag
|
199
|
+
@CLBMasterZone = clbmasterzone
|
200
|
+
@CLBSlaveZone = clbslavezone
|
201
|
+
end
|
202
|
+
|
203
|
+
def deserialize(params)
|
204
|
+
@CLBMultiZoneFlag = params['CLBMultiZoneFlag']
|
205
|
+
@CLBMasterZone = params['CLBMasterZone']
|
206
|
+
@CLBSlaveZone = params['CLBSlaveZone']
|
175
207
|
end
|
176
208
|
end
|
177
209
|
|
@@ -2929,21 +2961,37 @@ module TencentCloud
|
|
2929
2961
|
# @param SpecId: 引擎在该地域的规格id
|
2930
2962
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2931
2963
|
# @type SpecId: String
|
2932
|
-
# @param IntranetVpcInfos:
|
2964
|
+
# @param IntranetVpcInfos: 客户端内网的网络信息
|
2933
2965
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2934
2966
|
# @type IntranetVpcInfos: Array
|
2967
|
+
# @param ConsoleIntranetVpcInfos: 控制台内网的网络信息
|
2968
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2969
|
+
# @type ConsoleIntranetVpcInfos: Array
|
2935
2970
|
# @param EnableClientInternet: 是否开公网
|
2936
2971
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2937
2972
|
# @type EnableClientInternet: Boolean
|
2973
|
+
# @param LimiterIntranetVpcInfos: 限流客户端内网的网络信息
|
2974
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2975
|
+
# @type LimiterIntranetVpcInfos: Array
|
2976
|
+
# @param MainRegion: 是否为主地域,仅在服务治理中心多地域有效
|
2977
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2978
|
+
# @type MainRegion: Boolean
|
2979
|
+
# @param EKSClusterID: 该地域所在的EKS集群
|
2980
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2981
|
+
# @type EKSClusterID: String
|
2938
2982
|
|
2939
|
-
attr_accessor :EngineRegion, :Replica, :SpecId, :IntranetVpcInfos, :EnableClientInternet
|
2983
|
+
attr_accessor :EngineRegion, :Replica, :SpecId, :IntranetVpcInfos, :ConsoleIntranetVpcInfos, :EnableClientInternet, :LimiterIntranetVpcInfos, :MainRegion, :EKSClusterID
|
2940
2984
|
|
2941
|
-
def initialize(engineregion=nil, replica=nil, specid=nil, intranetvpcinfos=nil, enableclientinternet=nil)
|
2985
|
+
def initialize(engineregion=nil, replica=nil, specid=nil, intranetvpcinfos=nil, consoleintranetvpcinfos=nil, enableclientinternet=nil, limiterintranetvpcinfos=nil, mainregion=nil, eksclusterid=nil)
|
2942
2986
|
@EngineRegion = engineregion
|
2943
2987
|
@Replica = replica
|
2944
2988
|
@SpecId = specid
|
2945
2989
|
@IntranetVpcInfos = intranetvpcinfos
|
2990
|
+
@ConsoleIntranetVpcInfos = consoleintranetvpcinfos
|
2946
2991
|
@EnableClientInternet = enableclientinternet
|
2992
|
+
@LimiterIntranetVpcInfos = limiterintranetvpcinfos
|
2993
|
+
@MainRegion = mainregion
|
2994
|
+
@EKSClusterID = eksclusterid
|
2947
2995
|
end
|
2948
2996
|
|
2949
2997
|
def deserialize(params)
|
@@ -2958,7 +3006,25 @@ module TencentCloud
|
|
2958
3006
|
@IntranetVpcInfos << vpcinfo_tmp
|
2959
3007
|
end
|
2960
3008
|
end
|
3009
|
+
unless params['ConsoleIntranetVpcInfos'].nil?
|
3010
|
+
@ConsoleIntranetVpcInfos = []
|
3011
|
+
params['ConsoleIntranetVpcInfos'].each do |i|
|
3012
|
+
vpcinfo_tmp = VpcInfo.new
|
3013
|
+
vpcinfo_tmp.deserialize(i)
|
3014
|
+
@ConsoleIntranetVpcInfos << vpcinfo_tmp
|
3015
|
+
end
|
3016
|
+
end
|
2961
3017
|
@EnableClientInternet = params['EnableClientInternet']
|
3018
|
+
unless params['LimiterIntranetVpcInfos'].nil?
|
3019
|
+
@LimiterIntranetVpcInfos = []
|
3020
|
+
params['LimiterIntranetVpcInfos'].each do |i|
|
3021
|
+
vpcinfo_tmp = VpcInfo.new
|
3022
|
+
vpcinfo_tmp.deserialize(i)
|
3023
|
+
@LimiterIntranetVpcInfos << vpcinfo_tmp
|
3024
|
+
end
|
3025
|
+
end
|
3026
|
+
@MainRegion = params['MainRegion']
|
3027
|
+
@EKSClusterID = params['EKSClusterID']
|
2962
3028
|
end
|
2963
3029
|
end
|
2964
3030
|
|
@@ -3229,12 +3295,15 @@ module TencentCloud
|
|
3229
3295
|
# @param LimiterAddressInfos: 北极星限流server节点接入IP
|
3230
3296
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3231
3297
|
# @type LimiterAddressInfos: Array
|
3298
|
+
# @param CLBMultiRegion: InternetAddress 的公网 CLB 多可用区信息
|
3299
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3300
|
+
# @type CLBMultiRegion: :class:`Tencentcloud::Tse.v20201207.models.CLBMultiRegion`
|
3232
3301
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3233
3302
|
# @type RequestId: String
|
3234
3303
|
|
3235
|
-
attr_accessor :IntranetAddress, :InternetAddress, :EnvAddressInfos, :ConsoleInternetAddress, :ConsoleIntranetAddress, :InternetBandWidth, :ConsoleInternetBandWidth, :LimiterAddressInfos, :RequestId
|
3304
|
+
attr_accessor :IntranetAddress, :InternetAddress, :EnvAddressInfos, :ConsoleInternetAddress, :ConsoleIntranetAddress, :InternetBandWidth, :ConsoleInternetBandWidth, :LimiterAddressInfos, :CLBMultiRegion, :RequestId
|
3236
3305
|
|
3237
|
-
def initialize(intranetaddress=nil, internetaddress=nil, envaddressinfos=nil, consoleinternetaddress=nil, consoleintranetaddress=nil, internetbandwidth=nil, consoleinternetbandwidth=nil, limiteraddressinfos=nil, requestid=nil)
|
3306
|
+
def initialize(intranetaddress=nil, internetaddress=nil, envaddressinfos=nil, consoleinternetaddress=nil, consoleintranetaddress=nil, internetbandwidth=nil, consoleinternetbandwidth=nil, limiteraddressinfos=nil, clbmultiregion=nil, requestid=nil)
|
3238
3307
|
@IntranetAddress = intranetaddress
|
3239
3308
|
@InternetAddress = internetaddress
|
3240
3309
|
@EnvAddressInfos = envaddressinfos
|
@@ -3243,6 +3312,7 @@ module TencentCloud
|
|
3243
3312
|
@InternetBandWidth = internetbandwidth
|
3244
3313
|
@ConsoleInternetBandWidth = consoleinternetbandwidth
|
3245
3314
|
@LimiterAddressInfos = limiteraddressinfos
|
3315
|
+
@CLBMultiRegion = clbmultiregion
|
3246
3316
|
@RequestId = requestid
|
3247
3317
|
end
|
3248
3318
|
|
@@ -3269,6 +3339,10 @@ module TencentCloud
|
|
3269
3339
|
@LimiterAddressInfos << polarislimiteraddress_tmp
|
3270
3340
|
end
|
3271
3341
|
end
|
3342
|
+
unless params['CLBMultiRegion'].nil?
|
3343
|
+
@CLBMultiRegion = CLBMultiRegion.new
|
3344
|
+
@CLBMultiRegion.deserialize(params['CLBMultiRegion'])
|
3345
|
+
end
|
3272
3346
|
@RequestId = params['RequestId']
|
3273
3347
|
end
|
3274
3348
|
end
|
@@ -3486,13 +3560,19 @@ module TencentCloud
|
|
3486
3560
|
# @type Replica: Integer
|
3487
3561
|
# @param VpcInfos: 集群网络信息
|
3488
3562
|
# @type VpcInfos: Array
|
3563
|
+
# @param MainRegion: 是否为主地域
|
3564
|
+
# @type MainRegion: Boolean
|
3565
|
+
# @param SpecId: 引擎规格ID
|
3566
|
+
# @type SpecId: String
|
3489
3567
|
|
3490
|
-
attr_accessor :EngineRegion, :Replica, :VpcInfos
|
3568
|
+
attr_accessor :EngineRegion, :Replica, :VpcInfos, :MainRegion, :SpecId
|
3491
3569
|
|
3492
|
-
def initialize(engineregion=nil, replica=nil, vpcinfos=nil)
|
3570
|
+
def initialize(engineregion=nil, replica=nil, vpcinfos=nil, mainregion=nil, specid=nil)
|
3493
3571
|
@EngineRegion = engineregion
|
3494
3572
|
@Replica = replica
|
3495
3573
|
@VpcInfos = vpcinfos
|
3574
|
+
@MainRegion = mainregion
|
3575
|
+
@SpecId = specid
|
3496
3576
|
end
|
3497
3577
|
|
3498
3578
|
def deserialize(params)
|
@@ -3506,6 +3586,8 @@ module TencentCloud
|
|
3506
3586
|
@VpcInfos << vpcinfo_tmp
|
3507
3587
|
end
|
3508
3588
|
end
|
3589
|
+
@MainRegion = params['MainRegion']
|
3590
|
+
@SpecId = params['SpecId']
|
3509
3591
|
end
|
3510
3592
|
end
|
3511
3593
|
|
@@ -3526,16 +3608,20 @@ module TencentCloud
|
|
3526
3608
|
# @param InternetBandWidth: 客户端公网带宽
|
3527
3609
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3528
3610
|
# @type InternetBandWidth: Integer
|
3611
|
+
# @param CLBMultiRegion: 客户端公网CLB多可用区信息
|
3612
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3613
|
+
# @type CLBMultiRegion: :class:`Tencentcloud::Tse.v20201207.models.CLBMultiRegion`
|
3529
3614
|
|
3530
|
-
attr_accessor :EnvName, :EnableConfigInternet, :ConfigInternetServiceIp, :ConfigIntranetAddress, :EnableConfigIntranet, :InternetBandWidth
|
3615
|
+
attr_accessor :EnvName, :EnableConfigInternet, :ConfigInternetServiceIp, :ConfigIntranetAddress, :EnableConfigIntranet, :InternetBandWidth, :CLBMultiRegion
|
3531
3616
|
|
3532
|
-
def initialize(envname=nil, enableconfiginternet=nil, configinternetserviceip=nil, configintranetaddress=nil, enableconfigintranet=nil, internetbandwidth=nil)
|
3617
|
+
def initialize(envname=nil, enableconfiginternet=nil, configinternetserviceip=nil, configintranetaddress=nil, enableconfigintranet=nil, internetbandwidth=nil, clbmultiregion=nil)
|
3533
3618
|
@EnvName = envname
|
3534
3619
|
@EnableConfigInternet = enableconfiginternet
|
3535
3620
|
@ConfigInternetServiceIp = configinternetserviceip
|
3536
3621
|
@ConfigIntranetAddress = configintranetaddress
|
3537
3622
|
@EnableConfigIntranet = enableconfigintranet
|
3538
3623
|
@InternetBandWidth = internetbandwidth
|
3624
|
+
@CLBMultiRegion = clbmultiregion
|
3539
3625
|
end
|
3540
3626
|
|
3541
3627
|
def deserialize(params)
|
@@ -3545,6 +3631,10 @@ module TencentCloud
|
|
3545
3631
|
@ConfigIntranetAddress = params['ConfigIntranetAddress']
|
3546
3632
|
@EnableConfigIntranet = params['EnableConfigIntranet']
|
3547
3633
|
@InternetBandWidth = params['InternetBandWidth']
|
3634
|
+
unless params['CLBMultiRegion'].nil?
|
3635
|
+
@CLBMultiRegion = CLBMultiRegion.new
|
3636
|
+
@CLBMultiRegion.deserialize(params['CLBMultiRegion'])
|
3637
|
+
end
|
3548
3638
|
end
|
3549
3639
|
end
|
3550
3640
|
|
@@ -5110,6 +5200,38 @@ module TencentCloud
|
|
5110
5200
|
end
|
5111
5201
|
end
|
5112
5202
|
|
5203
|
+
# 北极星日志主题信息
|
5204
|
+
class PolarisCLSTopicInfo < TencentCloud::Common::AbstractModel
|
5205
|
+
# @param LogSetId: 日志集ID
|
5206
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5207
|
+
# @type LogSetId: String
|
5208
|
+
# @param LogSetName: 日志集名称
|
5209
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5210
|
+
# @type LogSetName: String
|
5211
|
+
# @param TopicId: 日志主题ID
|
5212
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5213
|
+
# @type TopicId: String
|
5214
|
+
# @param TopicName: 日志主题名称
|
5215
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5216
|
+
# @type TopicName: String
|
5217
|
+
|
5218
|
+
attr_accessor :LogSetId, :LogSetName, :TopicId, :TopicName
|
5219
|
+
|
5220
|
+
def initialize(logsetid=nil, logsetname=nil, topicid=nil, topicname=nil)
|
5221
|
+
@LogSetId = logsetid
|
5222
|
+
@LogSetName = logsetname
|
5223
|
+
@TopicId = topicid
|
5224
|
+
@TopicName = topicname
|
5225
|
+
end
|
5226
|
+
|
5227
|
+
def deserialize(params)
|
5228
|
+
@LogSetId = params['LogSetId']
|
5229
|
+
@LogSetName = params['LogSetName']
|
5230
|
+
@TopicId = params['TopicId']
|
5231
|
+
@TopicName = params['TopicName']
|
5232
|
+
end
|
5233
|
+
end
|
5234
|
+
|
5113
5235
|
# 查询Limiter的接入地址
|
5114
5236
|
class PolarisLimiterAddress < TencentCloud::Common::AbstractModel
|
5115
5237
|
# @param IntranetAddress: VPC接入IP列表
|
@@ -5274,10 +5396,13 @@ module TencentCloud
|
|
5274
5396
|
# @param EnableClientIntranet: 引擎实例是否开启客户端内网访问地址
|
5275
5397
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5276
5398
|
# @type EnableClientIntranet: Boolean
|
5399
|
+
# @param StorageOption: 存储额外配置选项
|
5400
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5401
|
+
# @type StorageOption: Array
|
5277
5402
|
|
5278
|
-
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
|
5403
|
+
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
|
5279
5404
|
|
5280
|
-
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)
|
5405
|
+
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)
|
5281
5406
|
@InstanceId = instanceid
|
5282
5407
|
@Name = name
|
5283
5408
|
@Edition = edition
|
@@ -5311,6 +5436,7 @@ module TencentCloud
|
|
5311
5436
|
@EKSType = ekstype
|
5312
5437
|
@FeatureVersion = featureversion
|
5313
5438
|
@EnableClientIntranet = enableclientintranet
|
5439
|
+
@StorageOption = storageoption
|
5314
5440
|
end
|
5315
5441
|
|
5316
5442
|
def deserialize(params)
|
@@ -5382,6 +5508,14 @@ module TencentCloud
|
|
5382
5508
|
@EKSType = params['EKSType']
|
5383
5509
|
@FeatureVersion = params['FeatureVersion']
|
5384
5510
|
@EnableClientIntranet = params['EnableClientIntranet']
|
5511
|
+
unless params['StorageOption'].nil?
|
5512
|
+
@StorageOption = []
|
5513
|
+
params['StorageOption'].each do |i|
|
5514
|
+
storageoption_tmp = StorageOption.new
|
5515
|
+
storageoption_tmp.deserialize(i)
|
5516
|
+
@StorageOption << storageoption_tmp
|
5517
|
+
end
|
5518
|
+
end
|
5385
5519
|
end
|
5386
5520
|
end
|
5387
5521
|
|
@@ -5403,10 +5537,13 @@ module TencentCloud
|
|
5403
5537
|
# @type PgwVpcInfos: Array
|
5404
5538
|
# @param LimiterVpcInfos: 服务治理限流server引擎绑定的网络信息
|
5405
5539
|
# @type LimiterVpcInfos: Array
|
5540
|
+
# @param CLSTopics: 引擎关联CLS日志主题信息
|
5541
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5542
|
+
# @type CLSTopics: Array
|
5406
5543
|
|
5407
|
-
attr_accessor :EngineRegion, :BoundK8SInfos, :VpcInfos, :AuthOpen, :Features, :MainPassword, :PgwVpcInfos, :LimiterVpcInfos
|
5544
|
+
attr_accessor :EngineRegion, :BoundK8SInfos, :VpcInfos, :AuthOpen, :Features, :MainPassword, :PgwVpcInfos, :LimiterVpcInfos, :CLSTopics
|
5408
5545
|
|
5409
|
-
def initialize(engineregion=nil, boundk8sinfos=nil, vpcinfos=nil, authopen=nil, features=nil, mainpassword=nil, pgwvpcinfos=nil, limitervpcinfos=nil)
|
5546
|
+
def initialize(engineregion=nil, boundk8sinfos=nil, vpcinfos=nil, authopen=nil, features=nil, mainpassword=nil, pgwvpcinfos=nil, limitervpcinfos=nil, clstopics=nil)
|
5410
5547
|
@EngineRegion = engineregion
|
5411
5548
|
@BoundK8SInfos = boundk8sinfos
|
5412
5549
|
@VpcInfos = vpcinfos
|
@@ -5415,6 +5552,7 @@ module TencentCloud
|
|
5415
5552
|
@MainPassword = mainpassword
|
5416
5553
|
@PgwVpcInfos = pgwvpcinfos
|
5417
5554
|
@LimiterVpcInfos = limitervpcinfos
|
5555
|
+
@CLSTopics = clstopics
|
5418
5556
|
end
|
5419
5557
|
|
5420
5558
|
def deserialize(params)
|
@@ -5454,6 +5592,41 @@ module TencentCloud
|
|
5454
5592
|
@LimiterVpcInfos << vpcinfo_tmp
|
5455
5593
|
end
|
5456
5594
|
end
|
5595
|
+
unless params['CLSTopics'].nil?
|
5596
|
+
@CLSTopics = []
|
5597
|
+
params['CLSTopics'].each do |i|
|
5598
|
+
polarisclstopicinfo_tmp = PolarisCLSTopicInfo.new
|
5599
|
+
polarisclstopicinfo_tmp.deserialize(i)
|
5600
|
+
@CLSTopics << polarisclstopicinfo_tmp
|
5601
|
+
end
|
5602
|
+
end
|
5603
|
+
end
|
5604
|
+
end
|
5605
|
+
|
5606
|
+
# 存储的额外选项
|
5607
|
+
class StorageOption < TencentCloud::Common::AbstractModel
|
5608
|
+
# @param Name: 存储对象,分为snap和txn两种
|
5609
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5610
|
+
# @type Name: String
|
5611
|
+
# @param Type: 存储类型,分为三类CLOUD_PREMIUM/CLOUD_SSD/CLOUD_SSD_PLUS,分别对应高性能云硬盘、SSD云硬盘、增强型SSD云硬盘
|
5612
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5613
|
+
# @type Type: String
|
5614
|
+
# @param Capacity: 存储容量,[50, 3200]的范围
|
5615
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5616
|
+
# @type Capacity: Integer
|
5617
|
+
|
5618
|
+
attr_accessor :Name, :Type, :Capacity
|
5619
|
+
|
5620
|
+
def initialize(name=nil, type=nil, capacity=nil)
|
5621
|
+
@Name = name
|
5622
|
+
@Type = type
|
5623
|
+
@Capacity = capacity
|
5624
|
+
end
|
5625
|
+
|
5626
|
+
def deserialize(params)
|
5627
|
+
@Name = params['Name']
|
5628
|
+
@Type = params['Type']
|
5629
|
+
@Capacity = params['Capacity']
|
5457
5630
|
end
|
5458
5631
|
end
|
5459
5632
|
|
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.678
|
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-10-
|
11
|
+
date: 2023-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,8 +33,8 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20201207/client.rb
|
37
36
|
- lib/v20201207/models.rb
|
37
|
+
- lib/v20201207/client.rb
|
38
38
|
- lib/tencentcloud-sdk-tse.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|