tencentcloud-sdk-clb 3.0.1074 → 3.0.1082
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 +13 -5
- 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: f210a07615ca369a6ef8ac50956dc6c6fb464688
|
4
|
+
data.tar.gz: 864b29ce91dde9557893b14f2c853ddb26085c17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69b287dc30319f7ea067ac8ea27dcfb532d41e42ae6e77f5fbf987ccebf1337a756095fbc59025ad7ed19b404309cdb5187ea80da0aaa145f4e167af1c28f756
|
7
|
+
data.tar.gz: 93f432bf92b28dcaa1c1989fd6febadaac48acef26de681ae15cf5680e77c8f8ba49a44b773f99f5fa0dc92945a872bc69250b9d5ae3b7a48dc81dc760d6f42c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1082
|
data/lib/v20180317/models.rb
CHANGED
@@ -1478,6 +1478,8 @@ module TencentCloud
|
|
1478
1478
|
# @type MaxCps: Integer
|
1479
1479
|
# @param IdleConnectTimeout: 空闲连接超时时间,此参数仅适用于TCP监听器,单位:秒。取值范围:共享型实例和独占型实例支持:300-900,性能容量型实例支持:300-1980。如需设置请通过 [工单申请](https://console.cloud.tencent.com/workorder/category)。
|
1480
1480
|
# @type IdleConnectTimeout: Integer
|
1481
|
+
# @param ProxyProtocol: TCP_SSL和QUIC是否支持PP
|
1482
|
+
# @type ProxyProtocol: Boolean
|
1481
1483
|
# @param SnatEnable: 是否开启SNAT,True(开启)、False(关闭)。
|
1482
1484
|
# 默认为关闭。
|
1483
1485
|
# @type SnatEnable: Boolean
|
@@ -1492,9 +1494,9 @@ module TencentCloud
|
|
1492
1494
|
# @param DataCompressMode: 数据压缩模式。可选值:transparent(透传模式)、compatibility(兼容模式)
|
1493
1495
|
# @type DataCompressMode: String
|
1494
1496
|
|
1495
|
-
attr_accessor :LoadBalancerId, :Ports, :Protocol, :ListenerNames, :HealthCheck, :Certificate, :SessionExpireTime, :Scheduler, :SniSwitch, :TargetType, :SessionType, :KeepaliveEnable, :EndPort, :DeregisterTargetRst, :MultiCertInfo, :MaxConn, :MaxCps, :IdleConnectTimeout, :SnatEnable, :FullEndPorts, :H2cSwitch, :SslCloseSwitch, :DataCompressMode
|
1497
|
+
attr_accessor :LoadBalancerId, :Ports, :Protocol, :ListenerNames, :HealthCheck, :Certificate, :SessionExpireTime, :Scheduler, :SniSwitch, :TargetType, :SessionType, :KeepaliveEnable, :EndPort, :DeregisterTargetRst, :MultiCertInfo, :MaxConn, :MaxCps, :IdleConnectTimeout, :ProxyProtocol, :SnatEnable, :FullEndPorts, :H2cSwitch, :SslCloseSwitch, :DataCompressMode
|
1496
1498
|
|
1497
|
-
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, snatenable=nil, fullendports=nil, h2cswitch=nil, sslcloseswitch=nil, datacompressmode=nil)
|
1499
|
+
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, proxyprotocol=nil, snatenable=nil, fullendports=nil, h2cswitch=nil, sslcloseswitch=nil, datacompressmode=nil)
|
1498
1500
|
@LoadBalancerId = loadbalancerid
|
1499
1501
|
@Ports = ports
|
1500
1502
|
@Protocol = protocol
|
@@ -1513,6 +1515,7 @@ module TencentCloud
|
|
1513
1515
|
@MaxConn = maxconn
|
1514
1516
|
@MaxCps = maxcps
|
1515
1517
|
@IdleConnectTimeout = idleconnecttimeout
|
1518
|
+
@ProxyProtocol = proxyprotocol
|
1516
1519
|
@SnatEnable = snatenable
|
1517
1520
|
@FullEndPorts = fullendports
|
1518
1521
|
@H2cSwitch = h2cswitch
|
@@ -1548,6 +1551,7 @@ module TencentCloud
|
|
1548
1551
|
@MaxConn = params['MaxConn']
|
1549
1552
|
@MaxCps = params['MaxCps']
|
1550
1553
|
@IdleConnectTimeout = params['IdleConnectTimeout']
|
1554
|
+
@ProxyProtocol = params['ProxyProtocol']
|
1551
1555
|
@SnatEnable = params['SnatEnable']
|
1552
1556
|
@FullEndPorts = params['FullEndPorts']
|
1553
1557
|
@H2cSwitch = params['H2cSwitch']
|
@@ -4657,7 +4661,7 @@ module TencentCloud
|
|
4657
4661
|
# @param HttpCheckMethod: 健康检查方法(仅适用于HTTP/HTTPS转发规则、TCP监听器的HTTP健康检查方式),默认值:HEAD,可选值HEAD或GET。
|
4658
4662
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4659
4663
|
# @type HttpCheckMethod: String
|
4660
|
-
# @param CheckPort:
|
4664
|
+
# @param CheckPort: 自定义探测相关参数。健康检查端口,默认为后端服务的端口,除非您希望指定特定端口,否则建议留空。传参数值-1可恢复默认设置。(仅适用于TCP/UDP监听器)。
|
4661
4665
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4662
4666
|
# @type CheckPort: Integer
|
4663
4667
|
# @param ContextType: 自定义探测相关参数。健康检查协议CheckType的值取CUSTOM时,必填此字段,代表健康检查的输入格式,可取值:HEX或TEXT;取值为HEX时,SendContext和RecvContext的字符只能在0123456789ABCDEF中选取且长度必须是偶数位。(仅适用于TCP/UDP监听器)
|
@@ -6545,15 +6549,17 @@ module TencentCloud
|
|
6545
6549
|
# @type MaxCps: Integer
|
6546
6550
|
# @param IdleConnectTimeout: 空闲连接超时时间,此参数仅适用于TCP监听器,单位:秒。默认值:900,取值范围:共享型实例和独占型实例支持:300~900,性能容量型实例支持:300~1980。如需设置超过2000s,请通过 [工单申请](https://console.cloud.tencent.com/workorder/category),最大可设置到3600s。
|
6547
6551
|
# @type IdleConnectTimeout: Integer
|
6552
|
+
# @param ProxyProtocol: TCP_SSL和QUIC是否支持PP
|
6553
|
+
# @type ProxyProtocol: Boolean
|
6548
6554
|
# @param SnatEnable: 是否开启SNAT, True 表示开启 SNAT,False 表示不开启 SNAT。
|
6549
6555
|
# 不传则表示不修改。
|
6550
6556
|
# @type SnatEnable: Boolean
|
6551
6557
|
# @param DataCompressMode: 数据压缩模式
|
6552
6558
|
# @type DataCompressMode: String
|
6553
6559
|
|
6554
|
-
attr_accessor :LoadBalancerId, :ListenerId, :ListenerName, :SessionExpireTime, :HealthCheck, :Certificate, :Scheduler, :SniSwitch, :TargetType, :KeepaliveEnable, :DeregisterTargetRst, :SessionType, :MultiCertInfo, :MaxConn, :MaxCps, :IdleConnectTimeout, :SnatEnable, :DataCompressMode
|
6560
|
+
attr_accessor :LoadBalancerId, :ListenerId, :ListenerName, :SessionExpireTime, :HealthCheck, :Certificate, :Scheduler, :SniSwitch, :TargetType, :KeepaliveEnable, :DeregisterTargetRst, :SessionType, :MultiCertInfo, :MaxConn, :MaxCps, :IdleConnectTimeout, :ProxyProtocol, :SnatEnable, :DataCompressMode
|
6555
6561
|
|
6556
|
-
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, snatenable=nil, datacompressmode=nil)
|
6562
|
+
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, proxyprotocol=nil, snatenable=nil, datacompressmode=nil)
|
6557
6563
|
@LoadBalancerId = loadbalancerid
|
6558
6564
|
@ListenerId = listenerid
|
6559
6565
|
@ListenerName = listenername
|
@@ -6570,6 +6576,7 @@ module TencentCloud
|
|
6570
6576
|
@MaxConn = maxconn
|
6571
6577
|
@MaxCps = maxcps
|
6572
6578
|
@IdleConnectTimeout = idleconnecttimeout
|
6579
|
+
@ProxyProtocol = proxyprotocol
|
6573
6580
|
@SnatEnable = snatenable
|
6574
6581
|
@DataCompressMode = datacompressmode
|
6575
6582
|
end
|
@@ -6600,6 +6607,7 @@ module TencentCloud
|
|
6600
6607
|
@MaxConn = params['MaxConn']
|
6601
6608
|
@MaxCps = params['MaxCps']
|
6602
6609
|
@IdleConnectTimeout = params['IdleConnectTimeout']
|
6610
|
+
@ProxyProtocol = params['ProxyProtocol']
|
6603
6611
|
@SnatEnable = params['SnatEnable']
|
6604
6612
|
@DataCompressMode = params['DataCompressMode']
|
6605
6613
|
end
|
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.1082
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|