tencentcloud-sdk-clb 3.0.545 → 3.0.547
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180317/models.rb +26 -8
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7b5a3e89d4447f9d6e949e681208ef5226385e8
|
4
|
+
data.tar.gz: eb66e405ea8d2a9c5c50b958f91fb7108e910304
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a89bbdd7157336f5480f115e27bd350725b2486756ac1b425e187eeeb72ade7082df56b130cd88d9387c8ff7351dca2881c4f5d827f0fad8d8de738643b61e04
|
7
|
+
data.tar.gz: 57c38f06004618dc31121f7cf576fd2de1c407d47e217373ce2c3eac9ccd02bbae9cb8cae45f7e3212989ab8358fb87e0f440133e9e07237d48ab173b2aa64d0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.547
|
data/lib/v20180317/models.rb
CHANGED
@@ -1279,10 +1279,12 @@ module TencentCloud
|
|
1279
1279
|
# @type MaxConn: Integer
|
1280
1280
|
# @param MaxCps: 监听器最大新增连接数,只有TCP/UDP/TCP_SSL/QUIC监听器支持,不传或者传-1表示监听器维度不限速。
|
1281
1281
|
# @type MaxCps: Integer
|
1282
|
+
# @param IdleConnectTimeout: 空闲连接超时时间,此参数仅适用于TCP监听器,单位:秒。默认值:900,取值范围:共享型实例和独占型实例支持:300~900,性能容量型实例支持:300~2000。如需设置超过2000s,请通过 [工单申请](https://console.cloud.tencent.com/workorder/category),最大可设置到3600s。
|
1283
|
+
# @type IdleConnectTimeout: Integer
|
1282
1284
|
|
1283
|
-
attr_accessor :LoadBalancerId, :Ports, :Protocol, :ListenerNames, :HealthCheck, :Certificate, :SessionExpireTime, :Scheduler, :SniSwitch, :TargetType, :SessionType, :KeepaliveEnable, :EndPort, :DeregisterTargetRst, :MultiCertInfo, :MaxConn, :MaxCps
|
1285
|
+
attr_accessor :LoadBalancerId, :Ports, :Protocol, :ListenerNames, :HealthCheck, :Certificate, :SessionExpireTime, :Scheduler, :SniSwitch, :TargetType, :SessionType, :KeepaliveEnable, :EndPort, :DeregisterTargetRst, :MultiCertInfo, :MaxConn, :MaxCps, :IdleConnectTimeout
|
1284
1286
|
|
1285
|
-
def initialize(loadbalancerid=nil, ports=nil, protocol=nil, listenernames=nil, healthcheck=nil, certificate=nil, sessionexpiretime=nil, scheduler=nil, sniswitch=nil, targettype=nil, sessiontype=nil, keepaliveenable=nil, endport=nil, deregistertargetrst=nil, multicertinfo=nil, maxconn=nil, maxcps=nil)
|
1287
|
+
def initialize(loadbalancerid=nil, ports=nil, protocol=nil, listenernames=nil, healthcheck=nil, certificate=nil, sessionexpiretime=nil, scheduler=nil, sniswitch=nil, targettype=nil, sessiontype=nil, keepaliveenable=nil, endport=nil, deregistertargetrst=nil, multicertinfo=nil, maxconn=nil, maxcps=nil, idleconnecttimeout=nil)
|
1286
1288
|
@LoadBalancerId = loadbalancerid
|
1287
1289
|
@Ports = ports
|
1288
1290
|
@Protocol = protocol
|
@@ -1300,6 +1302,7 @@ module TencentCloud
|
|
1300
1302
|
@MultiCertInfo = multicertinfo
|
1301
1303
|
@MaxConn = maxconn
|
1302
1304
|
@MaxCps = maxcps
|
1305
|
+
@IdleConnectTimeout = idleconnecttimeout
|
1303
1306
|
end
|
1304
1307
|
|
1305
1308
|
def deserialize(params)
|
@@ -1329,6 +1332,7 @@ module TencentCloud
|
|
1329
1332
|
end
|
1330
1333
|
@MaxConn = params['MaxConn']
|
1331
1334
|
@MaxCps = params['MaxCps']
|
1335
|
+
@IdleConnectTimeout = params['IdleConnectTimeout']
|
1332
1336
|
end
|
1333
1337
|
end
|
1334
1338
|
|
@@ -4218,10 +4222,13 @@ module TencentCloud
|
|
4218
4222
|
# @type Status: Integer
|
4219
4223
|
# @param Forward: 负载均衡类型标识,1:负载均衡,0:传统型负载均衡。
|
4220
4224
|
# @type Forward: Integer
|
4225
|
+
# @param Domain: 负载均衡域名
|
4226
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4227
|
+
# @type Domain: String
|
4221
4228
|
|
4222
|
-
attr_accessor :LoadBalancerId, :LoadBalancerName, :Region, :Vip, :IdleReason, :Status, :Forward
|
4229
|
+
attr_accessor :LoadBalancerId, :LoadBalancerName, :Region, :Vip, :IdleReason, :Status, :Forward, :Domain
|
4223
4230
|
|
4224
|
-
def initialize(loadbalancerid=nil, loadbalancername=nil, region=nil, vip=nil, idlereason=nil, status=nil, forward=nil)
|
4231
|
+
def initialize(loadbalancerid=nil, loadbalancername=nil, region=nil, vip=nil, idlereason=nil, status=nil, forward=nil, domain=nil)
|
4225
4232
|
@LoadBalancerId = loadbalancerid
|
4226
4233
|
@LoadBalancerName = loadbalancername
|
4227
4234
|
@Region = region
|
@@ -4229,6 +4236,7 @@ module TencentCloud
|
|
4229
4236
|
@IdleReason = idlereason
|
4230
4237
|
@Status = status
|
4231
4238
|
@Forward = forward
|
4239
|
+
@Domain = domain
|
4232
4240
|
end
|
4233
4241
|
|
4234
4242
|
def deserialize(params)
|
@@ -4239,6 +4247,7 @@ module TencentCloud
|
|
4239
4247
|
@IdleReason = params['IdleReason']
|
4240
4248
|
@Status = params['Status']
|
4241
4249
|
@Forward = params['Forward']
|
4250
|
+
@Domain = params['Domain']
|
4242
4251
|
end
|
4243
4252
|
end
|
4244
4253
|
|
@@ -4446,10 +4455,13 @@ module TencentCloud
|
|
4446
4455
|
# @param MaxCps: 监听器最大新增连接数,-1表示监听器维度不限速。
|
4447
4456
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4448
4457
|
# @type MaxCps: Integer
|
4458
|
+
# @param IdleConnectTimeout: 空闲连接超时时间,仅支持TCP监听器。默认值:900;共享型实例和独占型实例取值范围:300~900,性能容量型实例取值范围:300~1980。
|
4459
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4460
|
+
# @type IdleConnectTimeout: Integer
|
4449
4461
|
|
4450
|
-
attr_accessor :ListenerId, :Protocol, :Port, :Certificate, :HealthCheck, :Scheduler, :SessionExpireTime, :SniSwitch, :Rules, :ListenerName, :CreateTime, :EndPort, :TargetType, :TargetGroup, :SessionType, :KeepaliveEnable, :Toa, :DeregisterTargetRst, :AttrFlags, :TargetGroupList, :MaxConn, :MaxCps
|
4462
|
+
attr_accessor :ListenerId, :Protocol, :Port, :Certificate, :HealthCheck, :Scheduler, :SessionExpireTime, :SniSwitch, :Rules, :ListenerName, :CreateTime, :EndPort, :TargetType, :TargetGroup, :SessionType, :KeepaliveEnable, :Toa, :DeregisterTargetRst, :AttrFlags, :TargetGroupList, :MaxConn, :MaxCps, :IdleConnectTimeout
|
4451
4463
|
|
4452
|
-
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, maxconn=nil, maxcps=nil)
|
4464
|
+
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, maxconn=nil, maxcps=nil, idleconnecttimeout=nil)
|
4453
4465
|
@ListenerId = listenerid
|
4454
4466
|
@Protocol = protocol
|
4455
4467
|
@Port = port
|
@@ -4472,6 +4484,7 @@ module TencentCloud
|
|
4472
4484
|
@TargetGroupList = targetgrouplist
|
4473
4485
|
@MaxConn = maxconn
|
4474
4486
|
@MaxCps = maxcps
|
4487
|
+
@IdleConnectTimeout = idleconnecttimeout
|
4475
4488
|
end
|
4476
4489
|
|
4477
4490
|
def deserialize(params)
|
@@ -4520,6 +4533,7 @@ module TencentCloud
|
|
4520
4533
|
end
|
4521
4534
|
@MaxConn = params['MaxConn']
|
4522
4535
|
@MaxCps = params['MaxCps']
|
4536
|
+
@IdleConnectTimeout = params['IdleConnectTimeout']
|
4523
4537
|
end
|
4524
4538
|
end
|
4525
4539
|
|
@@ -5642,10 +5656,12 @@ module TencentCloud
|
|
5642
5656
|
# @type MaxConn: Integer
|
5643
5657
|
# @param MaxCps: 监听器粒度新建连接数上限,当前仅性能容量型实例且仅TCP/UDP/TCP_SSL/QUIC监听器支持。取值范围:1-实例规格新建连接上限,其中-1表示关闭监听器粒度新建连接数限速。
|
5644
5658
|
# @type MaxCps: Integer
|
5659
|
+
# @param IdleConnectTimeout: 空闲连接超时时间,此参数仅适用于TCP监听器,单位:秒。默认值:900,取值范围:共享型实例和独占型实例支持:300~900,性能容量型实例支持:300~2000。如需设置超过2000s,请通过 [工单申请](https://console.cloud.tencent.com/workorder/category),最大可设置到3600s。
|
5660
|
+
# @type IdleConnectTimeout: Integer
|
5645
5661
|
|
5646
|
-
attr_accessor :LoadBalancerId, :ListenerId, :ListenerName, :SessionExpireTime, :HealthCheck, :Certificate, :Scheduler, :SniSwitch, :TargetType, :KeepaliveEnable, :DeregisterTargetRst, :SessionType, :MultiCertInfo, :MaxConn, :MaxCps
|
5662
|
+
attr_accessor :LoadBalancerId, :ListenerId, :ListenerName, :SessionExpireTime, :HealthCheck, :Certificate, :Scheduler, :SniSwitch, :TargetType, :KeepaliveEnable, :DeregisterTargetRst, :SessionType, :MultiCertInfo, :MaxConn, :MaxCps, :IdleConnectTimeout
|
5647
5663
|
|
5648
|
-
def initialize(loadbalancerid=nil, listenerid=nil, listenername=nil, sessionexpiretime=nil, healthcheck=nil, certificate=nil, scheduler=nil, sniswitch=nil, targettype=nil, keepaliveenable=nil, deregistertargetrst=nil, sessiontype=nil, multicertinfo=nil, maxconn=nil, maxcps=nil)
|
5664
|
+
def initialize(loadbalancerid=nil, listenerid=nil, listenername=nil, sessionexpiretime=nil, healthcheck=nil, certificate=nil, scheduler=nil, sniswitch=nil, targettype=nil, keepaliveenable=nil, deregistertargetrst=nil, sessiontype=nil, multicertinfo=nil, maxconn=nil, maxcps=nil, idleconnecttimeout=nil)
|
5649
5665
|
@LoadBalancerId = loadbalancerid
|
5650
5666
|
@ListenerId = listenerid
|
5651
5667
|
@ListenerName = listenername
|
@@ -5661,6 +5677,7 @@ module TencentCloud
|
|
5661
5677
|
@MultiCertInfo = multicertinfo
|
5662
5678
|
@MaxConn = maxconn
|
5663
5679
|
@MaxCps = maxcps
|
5680
|
+
@IdleConnectTimeout = idleconnecttimeout
|
5664
5681
|
end
|
5665
5682
|
|
5666
5683
|
def deserialize(params)
|
@@ -5688,6 +5705,7 @@ module TencentCloud
|
|
5688
5705
|
end
|
5689
5706
|
@MaxConn = params['MaxConn']
|
5690
5707
|
@MaxCps = params['MaxCps']
|
5708
|
+
@IdleConnectTimeout = params['IdleConnectTimeout']
|
5691
5709
|
end
|
5692
5710
|
end
|
5693
5711
|
|
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.547
|
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-04-
|
11
|
+
date: 2023-04-10 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-clb.rb
|
37
|
-
- lib/v20180317/models.rb
|
38
36
|
- lib/v20180317/client.rb
|
37
|
+
- lib/v20180317/models.rb
|
38
|
+
- lib/tencentcloud-sdk-clb.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|