tencentcloud-sdk-clb 3.0.468 → 3.0.469
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/v20180317/models.rb +60 -11
- 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: efdad5ae75db336a611b13a1eb6aa3c86d873b1e
|
4
|
+
data.tar.gz: d85d787f788621e1f6533e6078fcfa63e6de6cce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab7324dcc0ba7e8b40ff56e716496ef76b9d65036f0afcc5dfdd4afdb6c0a6b843caa49c93ae129baab2a654ac096c5fcce381c1ad87898b3760ff39a6dc6fa0
|
7
|
+
data.tar.gz: a0a43738d965e8547757bed9ca539fcbd3d3852e983e1a1197e66731695ebba701038a754c1c0d7b1f0cb2d03d93ff0801ed3fb46c0fc6552e251ca7d5336714
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.469
|
data/lib/v20180317/models.rb
CHANGED
@@ -587,24 +587,29 @@ module TencentCloud
|
|
587
587
|
class CertificateOutput < TencentCloud::Common::AbstractModel
|
588
588
|
# @param SSLMode: 认证类型,UNIDIRECTIONAL:单向认证,MUTUAL:双向认证
|
589
589
|
# @type SSLMode: String
|
590
|
-
# @param CertId: 服务端证书的
|
590
|
+
# @param CertId: 服务端证书的ID。
|
591
591
|
# @type CertId: String
|
592
592
|
# @param CertCaId: 客户端证书的 ID。
|
593
593
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
594
594
|
# @type CertCaId: String
|
595
|
+
# @param ExtCertIds: 多本服务器证书场景扩展的服务器证书ID。
|
596
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
597
|
+
# @type ExtCertIds: Array
|
595
598
|
|
596
|
-
attr_accessor :SSLMode, :CertId, :CertCaId
|
599
|
+
attr_accessor :SSLMode, :CertId, :CertCaId, :ExtCertIds
|
597
600
|
|
598
|
-
def initialize(sslmode=nil, certid=nil, certcaid=nil)
|
601
|
+
def initialize(sslmode=nil, certid=nil, certcaid=nil, extcertids=nil)
|
599
602
|
@SSLMode = sslmode
|
600
603
|
@CertId = certid
|
601
604
|
@CertCaId = certcaid
|
605
|
+
@ExtCertIds = extcertids
|
602
606
|
end
|
603
607
|
|
604
608
|
def deserialize(params)
|
605
609
|
@SSLMode = params['SSLMode']
|
606
610
|
@CertId = params['CertId']
|
607
611
|
@CertCaId = params['CertCaId']
|
612
|
+
@ExtCertIds = params['ExtCertIds']
|
608
613
|
end
|
609
614
|
end
|
610
615
|
|
@@ -4287,10 +4292,13 @@ module TencentCloud
|
|
4287
4292
|
# @param AttrFlags: 监听器的属性
|
4288
4293
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4289
4294
|
# @type AttrFlags: Array
|
4295
|
+
# @param TargetGroupList: 绑定的目标组列表
|
4296
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4297
|
+
# @type TargetGroupList: Array
|
4290
4298
|
|
4291
|
-
attr_accessor :ListenerId, :Protocol, :Port, :Certificate, :HealthCheck, :Scheduler, :SessionExpireTime, :SniSwitch, :Rules, :ListenerName, :CreateTime, :EndPort, :TargetType, :TargetGroup, :SessionType, :KeepaliveEnable, :Toa, :DeregisterTargetRst, :AttrFlags
|
4299
|
+
attr_accessor :ListenerId, :Protocol, :Port, :Certificate, :HealthCheck, :Scheduler, :SessionExpireTime, :SniSwitch, :Rules, :ListenerName, :CreateTime, :EndPort, :TargetType, :TargetGroup, :SessionType, :KeepaliveEnable, :Toa, :DeregisterTargetRst, :AttrFlags, :TargetGroupList
|
4292
4300
|
|
4293
|
-
def initialize(listenerid=nil, protocol=nil, port=nil, certificate=nil, healthcheck=nil, scheduler=nil, sessionexpiretime=nil, sniswitch=nil, rules=nil, listenername=nil, createtime=nil, endport=nil, targettype=nil, targetgroup=nil, sessiontype=nil, keepaliveenable=nil, toa=nil, deregistertargetrst=nil, attrflags=nil)
|
4301
|
+
def initialize(listenerid=nil, protocol=nil, port=nil, certificate=nil, healthcheck=nil, scheduler=nil, sessionexpiretime=nil, sniswitch=nil, rules=nil, listenername=nil, createtime=nil, endport=nil, targettype=nil, targetgroup=nil, sessiontype=nil, keepaliveenable=nil, toa=nil, deregistertargetrst=nil, attrflags=nil, targetgrouplist=nil)
|
4294
4302
|
@ListenerId = listenerid
|
4295
4303
|
@Protocol = protocol
|
4296
4304
|
@Port = port
|
@@ -4310,6 +4318,7 @@ module TencentCloud
|
|
4310
4318
|
@Toa = toa
|
4311
4319
|
@DeregisterTargetRst = deregistertargetrst
|
4312
4320
|
@AttrFlags = attrflags
|
4321
|
+
@TargetGroupList = targetgrouplist
|
4313
4322
|
end
|
4314
4323
|
|
4315
4324
|
def deserialize(params)
|
@@ -4348,6 +4357,14 @@ module TencentCloud
|
|
4348
4357
|
@Toa = params['Toa']
|
4349
4358
|
@DeregisterTargetRst = params['DeregisterTargetRst']
|
4350
4359
|
@AttrFlags = params['AttrFlags']
|
4360
|
+
unless params['TargetGroupList'].nil?
|
4361
|
+
@TargetGroupList = []
|
4362
|
+
params['TargetGroupList'].each do |i|
|
4363
|
+
basictargetgroupinfo_tmp = BasicTargetGroupInfo.new
|
4364
|
+
basictargetgroupinfo_tmp.deserialize(i)
|
4365
|
+
@TargetGroupList << basictargetgroupinfo_tmp
|
4366
|
+
end
|
4367
|
+
end
|
4351
4368
|
end
|
4352
4369
|
end
|
4353
4370
|
|
@@ -4915,10 +4932,19 @@ module TencentCloud
|
|
4915
4932
|
# @param Domains: 转发规则的域名列表。
|
4916
4933
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4917
4934
|
# @type Domains: String
|
4935
|
+
# @param SlaveZone: 多可用区负载均衡实例所选备区
|
4936
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4937
|
+
# @type SlaveZone: Array
|
4938
|
+
# @param Zones: 内网负载均衡实例所在可用区,由白名单CLB_Internal_Zone控制
|
4939
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4940
|
+
# @type Zones: Array
|
4941
|
+
# @param SniSwitch: 是否开启SNI特性(本参数仅对于HTTPS监听器有意义)。
|
4942
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4943
|
+
# @type SniSwitch: Integer
|
4918
4944
|
|
4919
|
-
attr_accessor :LoadBalancerId, :LoadBalancerName, :LoadBalancerType, :Status, :Address, :AddressIPv6, :AddressIPVersion, :IPv6Mode, :Zone, :AddressIsp, :VpcId, :ProjectId, :CreateTime, :ChargeType, :NetworkAttributes, :PrepaidAttributes, :ExtraInfo, :ConfigId, :Tags, :ListenerId, :Protocol, :Port, :LocationId, :Domain, :Url, :TargetId, :TargetAddress, :TargetPort, :TargetWeight, :Isolation, :SecurityGroup, :LoadBalancerPassToTarget, :TargetHealth, :Domains
|
4945
|
+
attr_accessor :LoadBalancerId, :LoadBalancerName, :LoadBalancerType, :Status, :Address, :AddressIPv6, :AddressIPVersion, :IPv6Mode, :Zone, :AddressIsp, :VpcId, :ProjectId, :CreateTime, :ChargeType, :NetworkAttributes, :PrepaidAttributes, :ExtraInfo, :ConfigId, :Tags, :ListenerId, :Protocol, :Port, :LocationId, :Domain, :Url, :TargetId, :TargetAddress, :TargetPort, :TargetWeight, :Isolation, :SecurityGroup, :LoadBalancerPassToTarget, :TargetHealth, :Domains, :SlaveZone, :Zones, :SniSwitch
|
4920
4946
|
|
4921
|
-
def initialize(loadbalancerid=nil, loadbalancername=nil, loadbalancertype=nil, status=nil, address=nil, addressipv6=nil, addressipversion=nil, ipv6mode=nil, zone=nil, addressisp=nil, vpcid=nil, projectid=nil, createtime=nil, chargetype=nil, networkattributes=nil, prepaidattributes=nil, extrainfo=nil, configid=nil, tags=nil, listenerid=nil, protocol=nil, port=nil, locationid=nil, domain=nil, url=nil, targetid=nil, targetaddress=nil, targetport=nil, targetweight=nil, isolation=nil, securitygroup=nil, loadbalancerpasstotarget=nil, targethealth=nil, domains=nil)
|
4947
|
+
def initialize(loadbalancerid=nil, loadbalancername=nil, loadbalancertype=nil, status=nil, address=nil, addressipv6=nil, addressipversion=nil, ipv6mode=nil, zone=nil, addressisp=nil, vpcid=nil, projectid=nil, createtime=nil, chargetype=nil, networkattributes=nil, prepaidattributes=nil, extrainfo=nil, configid=nil, tags=nil, listenerid=nil, protocol=nil, port=nil, locationid=nil, domain=nil, url=nil, targetid=nil, targetaddress=nil, targetport=nil, targetweight=nil, isolation=nil, securitygroup=nil, loadbalancerpasstotarget=nil, targethealth=nil, domains=nil, slavezone=nil, zones=nil, sniswitch=nil)
|
4922
4948
|
@LoadBalancerId = loadbalancerid
|
4923
4949
|
@LoadBalancerName = loadbalancername
|
4924
4950
|
@LoadBalancerType = loadbalancertype
|
@@ -4953,6 +4979,9 @@ module TencentCloud
|
|
4953
4979
|
@LoadBalancerPassToTarget = loadbalancerpasstotarget
|
4954
4980
|
@TargetHealth = targethealth
|
4955
4981
|
@Domains = domains
|
4982
|
+
@SlaveZone = slavezone
|
4983
|
+
@Zones = zones
|
4984
|
+
@SniSwitch = sniswitch
|
4956
4985
|
end
|
4957
4986
|
|
4958
4987
|
def deserialize(params)
|
@@ -5006,6 +5035,9 @@ module TencentCloud
|
|
5006
5035
|
@LoadBalancerPassToTarget = params['LoadBalancerPassToTarget']
|
5007
5036
|
@TargetHealth = params['TargetHealth']
|
5008
5037
|
@Domains = params['Domains']
|
5038
|
+
@SlaveZone = params['SlaveZone']
|
5039
|
+
@Zones = params['Zones']
|
5040
|
+
@SniSwitch = params['SniSwitch']
|
5009
5041
|
end
|
5010
5042
|
end
|
5011
5043
|
|
@@ -6454,10 +6486,13 @@ module TencentCloud
|
|
6454
6486
|
# @param Domains: 转发规则的域名列表。
|
6455
6487
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6456
6488
|
# @type Domains: Array
|
6489
|
+
# @param TargetGroupList: 绑定的目标组列表
|
6490
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6491
|
+
# @type TargetGroupList: Array
|
6457
6492
|
|
6458
|
-
attr_accessor :LocationId, :Domain, :Url, :SessionExpireTime, :HealthCheck, :Certificate, :Scheduler, :ListenerId, :RewriteTarget, :HttpGzip, :BeAutoCreated, :DefaultServer, :Http2, :ForwardType, :CreateTime, :TargetType, :TargetGroup, :WafDomainId, :TrpcCallee, :TrpcFunc, :QuicStatus, :Domains
|
6493
|
+
attr_accessor :LocationId, :Domain, :Url, :SessionExpireTime, :HealthCheck, :Certificate, :Scheduler, :ListenerId, :RewriteTarget, :HttpGzip, :BeAutoCreated, :DefaultServer, :Http2, :ForwardType, :CreateTime, :TargetType, :TargetGroup, :WafDomainId, :TrpcCallee, :TrpcFunc, :QuicStatus, :Domains, :TargetGroupList
|
6459
6494
|
|
6460
|
-
def initialize(locationid=nil, domain=nil, url=nil, sessionexpiretime=nil, healthcheck=nil, certificate=nil, scheduler=nil, listenerid=nil, rewritetarget=nil, httpgzip=nil, beautocreated=nil, defaultserver=nil, http2=nil, forwardtype=nil, createtime=nil, targettype=nil, targetgroup=nil, wafdomainid=nil, trpccallee=nil, trpcfunc=nil, quicstatus=nil, domains=nil)
|
6495
|
+
def initialize(locationid=nil, domain=nil, url=nil, sessionexpiretime=nil, healthcheck=nil, certificate=nil, scheduler=nil, listenerid=nil, rewritetarget=nil, httpgzip=nil, beautocreated=nil, defaultserver=nil, http2=nil, forwardtype=nil, createtime=nil, targettype=nil, targetgroup=nil, wafdomainid=nil, trpccallee=nil, trpcfunc=nil, quicstatus=nil, domains=nil, targetgrouplist=nil)
|
6461
6496
|
@LocationId = locationid
|
6462
6497
|
@Domain = domain
|
6463
6498
|
@Url = url
|
@@ -6480,6 +6515,7 @@ module TencentCloud
|
|
6480
6515
|
@TrpcFunc = trpcfunc
|
6481
6516
|
@QuicStatus = quicstatus
|
6482
6517
|
@Domains = domains
|
6518
|
+
@TargetGroupList = targetgrouplist
|
6483
6519
|
end
|
6484
6520
|
|
6485
6521
|
def deserialize(params)
|
@@ -6517,6 +6553,14 @@ module TencentCloud
|
|
6517
6553
|
@TrpcFunc = params['TrpcFunc']
|
6518
6554
|
@QuicStatus = params['QuicStatus']
|
6519
6555
|
@Domains = params['Domains']
|
6556
|
+
unless params['TargetGroupList'].nil?
|
6557
|
+
@TargetGroupList = []
|
6558
|
+
params['TargetGroupList'].each do |i|
|
6559
|
+
basictargetgroupinfo_tmp = BasicTargetGroupInfo.new
|
6560
|
+
basictargetgroupinfo_tmp.deserialize(i)
|
6561
|
+
@TargetGroupList << basictargetgroupinfo_tmp
|
6562
|
+
end
|
6563
|
+
end
|
6520
6564
|
end
|
6521
6565
|
end
|
6522
6566
|
|
@@ -7106,15 +7150,19 @@ module TencentCloud
|
|
7106
7150
|
# @param LocalZone: 可用区是否是LocalZone可用区,如:false
|
7107
7151
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7108
7152
|
# @type LocalZone: Boolean
|
7153
|
+
# @param EdgeZone: 可用区是否是EdgeZone可用区,如:false
|
7154
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7155
|
+
# @type EdgeZone: Boolean
|
7109
7156
|
|
7110
|
-
attr_accessor :ZoneId, :Zone, :ZoneName, :ZoneRegion, :LocalZone
|
7157
|
+
attr_accessor :ZoneId, :Zone, :ZoneName, :ZoneRegion, :LocalZone, :EdgeZone
|
7111
7158
|
|
7112
|
-
def initialize(zoneid=nil, zone=nil, zonename=nil, zoneregion=nil, localzone=nil)
|
7159
|
+
def initialize(zoneid=nil, zone=nil, zonename=nil, zoneregion=nil, localzone=nil, edgezone=nil)
|
7113
7160
|
@ZoneId = zoneid
|
7114
7161
|
@Zone = zone
|
7115
7162
|
@ZoneName = zonename
|
7116
7163
|
@ZoneRegion = zoneregion
|
7117
7164
|
@LocalZone = localzone
|
7165
|
+
@EdgeZone = edgezone
|
7118
7166
|
end
|
7119
7167
|
|
7120
7168
|
def deserialize(params)
|
@@ -7123,6 +7171,7 @@ module TencentCloud
|
|
7123
7171
|
@ZoneName = params['ZoneName']
|
7124
7172
|
@ZoneRegion = params['ZoneRegion']
|
7125
7173
|
@LocalZone = params['LocalZone']
|
7174
|
+
@EdgeZone = params['EdgeZone']
|
7126
7175
|
end
|
7127
7176
|
end
|
7128
7177
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-clb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.469
|
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-12-
|
11
|
+
date: 2022-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|