tencentcloud-sdk-clb 3.0.912 → 3.0.913

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180317/models.rb +11 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 94734aa5134279c3cfca568a5324ca725fd48d5f
4
- data.tar.gz: 0aa91e00e95392ccb273dfb3fc6441f13217134d
3
+ metadata.gz: f1300c480998c5352e86ff0510d4f9c92399f21c
4
+ data.tar.gz: 2bbc8c3db4c2ee344b7471274899a4fd94786577
5
5
  SHA512:
6
- metadata.gz: e4869d9336b9291d7e8325825e697f3e91aad92a29d29eb694794db5b64a7ef49734029073422a08d145d162a5a47443a0e0817177429fd0c8abbc3d9a9656c4
7
- data.tar.gz: cc31633555f54721478adddd541d7dab5877358a20edd3430a09ccfb82b55a7503a0f5351063ee7df38d4c0c66036ba88d95c8aa3220e5d604babf3253889edb
6
+ metadata.gz: 7c4804b1bbbd732a026ce8d8224ae100c06f84c22b01f44da60bf062e6d0850e2f6f6d9579357ea687b0cca58b113997abb6a5855658cc8103d91ecd517b1332
7
+ data.tar.gz: 7230514c480300978b6639de8f7b03e6c0187f23b43cd31ab3779491a3023e2740d5b3305f7cc99b006cf1bb1aa132a5fcac7aa3638228873c9ae175eb9ac31f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.912
1
+ 3.0.913
@@ -1331,7 +1331,7 @@ module TencentCloud
1331
1331
  # @param Scheduler: 监听器转发的方式。可选值:WRR、LEAST_CONN
1332
1332
  # 分别表示按权重轮询、最小连接数, 默认为 WRR。此参数仅适用于TCP/UDP/TCP_SSL/QUIC监听器。
1333
1333
  # @type Scheduler: String
1334
- # @param SniSwitch: 是否开启SNI特性,此参数仅适用于HTTPS监听器。0表示开启,1表示未开启。
1334
+ # @param SniSwitch: 是否开启SNI特性,此参数仅适用于HTTPS监听器。0表示未开启,1表示开启。
1335
1335
  # @type SniSwitch: Integer
1336
1336
  # @param TargetType: 后端目标类型,NODE表示绑定普通节点,TARGETGROUP表示绑定目标组。此参数仅适用于TCP/UDP监听器。七层监听器应在转发规则中设置。
1337
1337
  # @type TargetType: String
@@ -1355,10 +1355,14 @@ module TencentCloud
1355
1355
  # @type SnatEnable: Boolean
1356
1356
  # @param FullEndPorts: 全端口段监听器的结束端口
1357
1357
  # @type FullEndPorts: Array
1358
+ # @param H2cSwitch: 内网http监听器开启h2c开关
1359
+ # @type H2cSwitch: Boolean
1360
+ # @param SslCloseSwitch: TCP_SSL监听器支持关闭SSL后仍然支持混绑,此参数为关闭开关
1361
+ # @type SslCloseSwitch: Boolean
1358
1362
 
1359
- attr_accessor :LoadBalancerId, :Ports, :Protocol, :ListenerNames, :HealthCheck, :Certificate, :SessionExpireTime, :Scheduler, :SniSwitch, :TargetType, :SessionType, :KeepaliveEnable, :EndPort, :DeregisterTargetRst, :MultiCertInfo, :MaxConn, :MaxCps, :IdleConnectTimeout, :SnatEnable, :FullEndPorts
1363
+ attr_accessor :LoadBalancerId, :Ports, :Protocol, :ListenerNames, :HealthCheck, :Certificate, :SessionExpireTime, :Scheduler, :SniSwitch, :TargetType, :SessionType, :KeepaliveEnable, :EndPort, :DeregisterTargetRst, :MultiCertInfo, :MaxConn, :MaxCps, :IdleConnectTimeout, :SnatEnable, :FullEndPorts, :H2cSwitch, :SslCloseSwitch
1360
1364
 
1361
- 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)
1365
+ 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)
1362
1366
  @LoadBalancerId = loadbalancerid
1363
1367
  @Ports = ports
1364
1368
  @Protocol = protocol
@@ -1379,6 +1383,8 @@ module TencentCloud
1379
1383
  @IdleConnectTimeout = idleconnecttimeout
1380
1384
  @SnatEnable = snatenable
1381
1385
  @FullEndPorts = fullendports
1386
+ @H2cSwitch = h2cswitch
1387
+ @SslCloseSwitch = sslcloseswitch
1382
1388
  end
1383
1389
 
1384
1390
  def deserialize(params)
@@ -1411,6 +1417,8 @@ module TencentCloud
1411
1417
  @IdleConnectTimeout = params['IdleConnectTimeout']
1412
1418
  @SnatEnable = params['SnatEnable']
1413
1419
  @FullEndPorts = params['FullEndPorts']
1420
+ @H2cSwitch = params['H2cSwitch']
1421
+ @SslCloseSwitch = params['SslCloseSwitch']
1414
1422
  end
1415
1423
  end
1416
1424
 
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.912
4
+ version: 3.0.913
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-23 00:00:00.000000000 Z
11
+ date: 2024-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common