tencentcloud-sdk-gaap 1.0.363 → 1.0.364
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/v20180529/models.rb +171 -30
- 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: 742432c30d85330db6e91b5fbd6645f99b751c56
|
4
|
+
data.tar.gz: 1586d655a912ccf7812855e6df96d23ea6403e9e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ef0ab56bc1347780fbda9fa7004aae637d8c08e448586052b8ba0f2136568dd555ec9cfdea49a482c3c7b7d59c8daab81855ecbfda820568adcc72992dd3dd8
|
7
|
+
data.tar.gz: 47fcd4bd8ea502fdb62f15d2db3c1800c275bdb75052da171e90acfa139f008faaa710bbb943eb8450cd3feebca3653947f1c7352156086c6844730bbe0cc64e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.364
|
data/lib/v20180529/models.rb
CHANGED
@@ -295,16 +295,19 @@ module TencentCloud
|
|
295
295
|
# @type RealServerPort: Integer
|
296
296
|
# @param DownIPList: 当源站为域名时,域名被解析成一个或者多个IP,该字段表示其中异常的IP列表。状态异常,但该字段为空时,表示域名解析异常。
|
297
297
|
# @type DownIPList: Array
|
298
|
+
# @param RealServerFailoverRole: 源站主备角色:master表示主,slave表示备,该参数必须在监听器打开了源站主备模式。
|
299
|
+
# @type RealServerFailoverRole: String
|
298
300
|
|
299
|
-
attr_accessor :RealServerId, :RealServerIP, :RealServerWeight, :RealServerStatus, :RealServerPort, :DownIPList
|
301
|
+
attr_accessor :RealServerId, :RealServerIP, :RealServerWeight, :RealServerStatus, :RealServerPort, :DownIPList, :RealServerFailoverRole
|
300
302
|
|
301
|
-
def initialize(realserverid=nil, realserverip=nil, realserverweight=nil, realserverstatus=nil, realserverport=nil, downiplist=nil)
|
303
|
+
def initialize(realserverid=nil, realserverip=nil, realserverweight=nil, realserverstatus=nil, realserverport=nil, downiplist=nil, realserverfailoverrole=nil)
|
302
304
|
@RealServerId = realserverid
|
303
305
|
@RealServerIP = realserverip
|
304
306
|
@RealServerWeight = realserverweight
|
305
307
|
@RealServerStatus = realserverstatus
|
306
308
|
@RealServerPort = realserverport
|
307
309
|
@DownIPList = downiplist
|
310
|
+
@RealServerFailoverRole = realserverfailoverrole
|
308
311
|
end
|
309
312
|
|
310
313
|
def deserialize(params)
|
@@ -314,6 +317,7 @@ module TencentCloud
|
|
314
317
|
@RealServerStatus = params['RealServerStatus']
|
315
318
|
@RealServerPort = params['RealServerPort']
|
316
319
|
@DownIPList = params['DownIPList']
|
320
|
+
@RealServerFailoverRole = params['RealServerFailoverRole']
|
317
321
|
end
|
318
322
|
end
|
319
323
|
|
@@ -1441,7 +1445,7 @@ module TencentCloud
|
|
1441
1445
|
# @type Path: String
|
1442
1446
|
# @param RealServerType: 转发规则对应源站的类型,支持IP和DOMAIN类型。
|
1443
1447
|
# @type RealServerType: String
|
1444
|
-
# @param Scheduler:
|
1448
|
+
# @param Scheduler: 监听器源站访问策略,其中:rr表示轮询;wrr表示加权轮询;lc表示最小连接数;lrtt表示最小时延。
|
1445
1449
|
# @type Scheduler: String
|
1446
1450
|
# @param HealthCheck: 规则是否开启健康检查,1开启,0关闭。
|
1447
1451
|
# @type HealthCheck: Integer
|
@@ -1612,11 +1616,11 @@ module TencentCloud
|
|
1612
1616
|
# @type ListenerName: String
|
1613
1617
|
# @param Ports: 监听器端口列表。
|
1614
1618
|
# @type Ports: Array
|
1615
|
-
# @param Scheduler:
|
1619
|
+
# @param Scheduler: 监听器源站访问策略,其中:rr表示轮询;wrr表示加权轮询;lc表示最小连接数;lrtt表示最小时延。
|
1616
1620
|
# @type Scheduler: String
|
1617
1621
|
# @param HealthCheck: 源站是否开启健康检查:1开启,0关闭,UDP监听器不支持健康检查
|
1618
1622
|
# @type HealthCheck: Integer
|
1619
|
-
# @param RealServerType:
|
1623
|
+
# @param RealServerType: 监听器绑定源站类型。IP表示IP地址,DOMAIN表示域名。
|
1620
1624
|
# @type RealServerType: String
|
1621
1625
|
# @param ProxyId: 通道ID,ProxyId和GroupId必须设置一个,但不能同时设置。
|
1622
1626
|
# @type ProxyId: String
|
@@ -1700,9 +1704,9 @@ module TencentCloud
|
|
1700
1704
|
# @type ListenerName: String
|
1701
1705
|
# @param Ports: 监听器端口列表
|
1702
1706
|
# @type Ports: Array
|
1703
|
-
# @param Scheduler:
|
1707
|
+
# @param Scheduler: 监听器源站访问策略,其中:rr表示轮询;wrr表示加权轮询;lc表示最小连接数;lrtt表示最小时延。
|
1704
1708
|
# @type Scheduler: String
|
1705
|
-
# @param RealServerType:
|
1709
|
+
# @param RealServerType: 监听器绑定源站类型。IP表示IP地址,DOMAIN表示域名。
|
1706
1710
|
# @type RealServerType: String
|
1707
1711
|
# @param ProxyId: 通道ID,ProxyId和GroupId必须设置一个,但不能同时设置。
|
1708
1712
|
# @type ProxyId: String
|
@@ -1710,10 +1714,32 @@ module TencentCloud
|
|
1710
1714
|
# @type GroupId: String
|
1711
1715
|
# @param RealServerPorts: 源站端口列表,该参数仅支持v1版本监听器和通道组监听器
|
1712
1716
|
# @type RealServerPorts: Array
|
1713
|
-
|
1714
|
-
|
1715
|
-
|
1716
|
-
|
1717
|
+
# @param DelayLoop: 源站健康检查时间间隔,单位:秒。时间间隔取值在[5,300]之间。
|
1718
|
+
# @type DelayLoop: Integer
|
1719
|
+
# @param ConnectTimeout: 源站健康检查响应超时时间,单位:秒。超时时间取值在[2,60]之间。超时时间应小于健康检查时间间隔DelayLoop。
|
1720
|
+
# @type ConnectTimeout: Integer
|
1721
|
+
# @param HealthyThreshold: 健康阈值,表示连续检查成功多少次后认定源站健康。范围为1到10
|
1722
|
+
# @type HealthyThreshold: Integer
|
1723
|
+
# @param UnhealthyThreshold: 不健康阈值,表示连续检查失败多少次数后认为源站不健康。范围为1到10
|
1724
|
+
# @type UnhealthyThreshold: Integer
|
1725
|
+
# @param FailoverSwitch: 源站是否开启主备模式:1开启,0关闭,DOMAIN类型源站不支持开启
|
1726
|
+
# @type FailoverSwitch: Integer
|
1727
|
+
# @param HealthCheck: 源站是否开启健康检查:1开启,0关闭。
|
1728
|
+
# @type HealthCheck: Integer
|
1729
|
+
# @param CheckType: UDP源站健康类型。PORT表示检查端口,PING表示PING。
|
1730
|
+
# @type CheckType: String
|
1731
|
+
# @param CheckPort: UDP源站健康检查探测端口。
|
1732
|
+
# @type CheckPort: Integer
|
1733
|
+
# @param ContextType: UDP源站健康检查端口探测报文类型:TEXT表示文本。仅在健康检查类型为PORT时使用。
|
1734
|
+
# @type ContextType: String
|
1735
|
+
# @param SendContext: UDP源站健康检查端口探测发送报文。仅在健康检查类型为PORT时使用。
|
1736
|
+
# @type SendContext: String
|
1737
|
+
# @param RecvContext: UDP源站健康检查端口探测接收报文。仅在健康检查类型为PORT时使用。
|
1738
|
+
# @type RecvContext: String
|
1739
|
+
|
1740
|
+
attr_accessor :ListenerName, :Ports, :Scheduler, :RealServerType, :ProxyId, :GroupId, :RealServerPorts, :DelayLoop, :ConnectTimeout, :HealthyThreshold, :UnhealthyThreshold, :FailoverSwitch, :HealthCheck, :CheckType, :CheckPort, :ContextType, :SendContext, :RecvContext
|
1741
|
+
|
1742
|
+
def initialize(listenername=nil, ports=nil, scheduler=nil, realservertype=nil, proxyid=nil, groupid=nil, realserverports=nil, delayloop=nil, connecttimeout=nil, healthythreshold=nil, unhealthythreshold=nil, failoverswitch=nil, healthcheck=nil, checktype=nil, checkport=nil, contexttype=nil, sendcontext=nil, recvcontext=nil)
|
1717
1743
|
@ListenerName = listenername
|
1718
1744
|
@Ports = ports
|
1719
1745
|
@Scheduler = scheduler
|
@@ -1721,6 +1747,17 @@ module TencentCloud
|
|
1721
1747
|
@ProxyId = proxyid
|
1722
1748
|
@GroupId = groupid
|
1723
1749
|
@RealServerPorts = realserverports
|
1750
|
+
@DelayLoop = delayloop
|
1751
|
+
@ConnectTimeout = connecttimeout
|
1752
|
+
@HealthyThreshold = healthythreshold
|
1753
|
+
@UnhealthyThreshold = unhealthythreshold
|
1754
|
+
@FailoverSwitch = failoverswitch
|
1755
|
+
@HealthCheck = healthcheck
|
1756
|
+
@CheckType = checktype
|
1757
|
+
@CheckPort = checkport
|
1758
|
+
@ContextType = contexttype
|
1759
|
+
@SendContext = sendcontext
|
1760
|
+
@RecvContext = recvcontext
|
1724
1761
|
end
|
1725
1762
|
|
1726
1763
|
def deserialize(params)
|
@@ -1731,6 +1768,17 @@ module TencentCloud
|
|
1731
1768
|
@ProxyId = params['ProxyId']
|
1732
1769
|
@GroupId = params['GroupId']
|
1733
1770
|
@RealServerPorts = params['RealServerPorts']
|
1771
|
+
@DelayLoop = params['DelayLoop']
|
1772
|
+
@ConnectTimeout = params['ConnectTimeout']
|
1773
|
+
@HealthyThreshold = params['HealthyThreshold']
|
1774
|
+
@UnhealthyThreshold = params['UnhealthyThreshold']
|
1775
|
+
@FailoverSwitch = params['FailoverSwitch']
|
1776
|
+
@HealthCheck = params['HealthCheck']
|
1777
|
+
@CheckType = params['CheckType']
|
1778
|
+
@CheckPort = params['CheckPort']
|
1779
|
+
@ContextType = params['ContextType']
|
1780
|
+
@SendContext = params['SendContext']
|
1781
|
+
@RecvContext = params['RecvContext']
|
1734
1782
|
end
|
1735
1783
|
end
|
1736
1784
|
|
@@ -5568,10 +5616,7 @@ module TencentCloud
|
|
5568
5616
|
# @type ListenerId: String
|
5569
5617
|
# @param RuleId: 转发规则ID
|
5570
5618
|
# @type RuleId: String
|
5571
|
-
# @param Scheduler:
|
5572
|
-
# rr,轮询;
|
5573
|
-
# wrr,加权轮询;
|
5574
|
-
# lc,最小连接数。
|
5619
|
+
# @param Scheduler: 监听器源站访问策略,其中:rr表示轮询;wrr表示加权轮询;lc表示最小连接数;lrtt表示最小时延。
|
5575
5620
|
# @type Scheduler: String
|
5576
5621
|
# @param HealthCheck: 源站健康检查开关,其中:
|
5577
5622
|
# 1,开启;
|
@@ -5714,7 +5759,7 @@ module TencentCloud
|
|
5714
5759
|
# @type ProxyId: String
|
5715
5760
|
# @param ListenerName: 监听器名称
|
5716
5761
|
# @type ListenerName: String
|
5717
|
-
# @param Scheduler:
|
5762
|
+
# @param Scheduler: 监听器源站访问策略,其中:rr表示轮询;wrr表示加权轮询;lc表示最小连接数;lrtt表示最小时延。
|
5718
5763
|
# @type Scheduler: String
|
5719
5764
|
# @param DelayLoop: 源站健康检查时间间隔,单位:秒。时间间隔取值在[5,300]之间。
|
5720
5765
|
# @type DelayLoop: Integer
|
@@ -5786,17 +5831,50 @@ module TencentCloud
|
|
5786
5831
|
# @type ProxyId: String
|
5787
5832
|
# @param ListenerName: 监听器名称
|
5788
5833
|
# @type ListenerName: String
|
5789
|
-
# @param Scheduler:
|
5834
|
+
# @param Scheduler: 监听器源站访问策略,其中:rr表示轮询;wrr表示加权轮询;lc表示最小连接数;lrtt表示最小时延。
|
5790
5835
|
# @type Scheduler: String
|
5791
|
-
|
5792
|
-
|
5793
|
-
|
5794
|
-
|
5836
|
+
# @param DelayLoop: 源站健康检查时间间隔,单位:秒。时间间隔取值在[5,300]之间。
|
5837
|
+
# @type DelayLoop: Integer
|
5838
|
+
# @param ConnectTimeout: 源站健康检查响应超时时间,单位:秒。超时时间取值在[2,60]之间。超时时间应小于健康检查时间间隔DelayLoop。
|
5839
|
+
# @type ConnectTimeout: Integer
|
5840
|
+
# @param HealthyThreshold: 健康阈值,表示连续检查成功多少次后认定源站健康。范围为1到10
|
5841
|
+
# @type HealthyThreshold: Integer
|
5842
|
+
# @param UnhealthyThreshold: 不健康阈值,表示连续检查失败多少次数后认为源站不健康。范围为1到10
|
5843
|
+
# @type UnhealthyThreshold: Integer
|
5844
|
+
# @param FailoverSwitch: 源站是否开启主备模式:1开启,0关闭,DOMAIN类型源站不支持开启
|
5845
|
+
# @type FailoverSwitch: Integer
|
5846
|
+
# @param HealthCheck: 源站是否开启健康检查:1开启,0关闭。
|
5847
|
+
# @type HealthCheck: Integer
|
5848
|
+
# @param CheckType: UDP源站健康类型。PORT表示检查端口,PING表示PING。
|
5849
|
+
# @type CheckType: String
|
5850
|
+
# @param CheckPort: UDP源站健康检查探测端口。
|
5851
|
+
# @type CheckPort: Integer
|
5852
|
+
# @param ContextType: UDP源站健康检查端口探测报文类型:TEXT表示文本。仅在健康检查类型为PORT时使用。
|
5853
|
+
# @type ContextType: String
|
5854
|
+
# @param SendContext: UDP源站健康检查端口探测发送报文。仅在健康检查类型为PORT时使用。
|
5855
|
+
# @type SendContext: String
|
5856
|
+
# @param RecvContext: UDP源站健康检查端口探测接收报文。仅在健康检查类型为PORT时使用。
|
5857
|
+
# @type RecvContext: String
|
5858
|
+
|
5859
|
+
attr_accessor :ListenerId, :GroupId, :ProxyId, :ListenerName, :Scheduler, :DelayLoop, :ConnectTimeout, :HealthyThreshold, :UnhealthyThreshold, :FailoverSwitch, :HealthCheck, :CheckType, :CheckPort, :ContextType, :SendContext, :RecvContext
|
5860
|
+
|
5861
|
+
def initialize(listenerid=nil, groupid=nil, proxyid=nil, listenername=nil, scheduler=nil, delayloop=nil, connecttimeout=nil, healthythreshold=nil, unhealthythreshold=nil, failoverswitch=nil, healthcheck=nil, checktype=nil, checkport=nil, contexttype=nil, sendcontext=nil, recvcontext=nil)
|
5795
5862
|
@ListenerId = listenerid
|
5796
5863
|
@GroupId = groupid
|
5797
5864
|
@ProxyId = proxyid
|
5798
5865
|
@ListenerName = listenername
|
5799
5866
|
@Scheduler = scheduler
|
5867
|
+
@DelayLoop = delayloop
|
5868
|
+
@ConnectTimeout = connecttimeout
|
5869
|
+
@HealthyThreshold = healthythreshold
|
5870
|
+
@UnhealthyThreshold = unhealthythreshold
|
5871
|
+
@FailoverSwitch = failoverswitch
|
5872
|
+
@HealthCheck = healthcheck
|
5873
|
+
@CheckType = checktype
|
5874
|
+
@CheckPort = checkport
|
5875
|
+
@ContextType = contexttype
|
5876
|
+
@SendContext = sendcontext
|
5877
|
+
@RecvContext = recvcontext
|
5800
5878
|
end
|
5801
5879
|
|
5802
5880
|
def deserialize(params)
|
@@ -5805,6 +5883,17 @@ module TencentCloud
|
|
5805
5883
|
@ProxyId = params['ProxyId']
|
5806
5884
|
@ListenerName = params['ListenerName']
|
5807
5885
|
@Scheduler = params['Scheduler']
|
5886
|
+
@DelayLoop = params['DelayLoop']
|
5887
|
+
@ConnectTimeout = params['ConnectTimeout']
|
5888
|
+
@HealthyThreshold = params['HealthyThreshold']
|
5889
|
+
@UnhealthyThreshold = params['UnhealthyThreshold']
|
5890
|
+
@FailoverSwitch = params['FailoverSwitch']
|
5891
|
+
@HealthCheck = params['HealthCheck']
|
5892
|
+
@CheckType = params['CheckType']
|
5893
|
+
@CheckPort = params['CheckPort']
|
5894
|
+
@ContextType = params['ContextType']
|
5895
|
+
@SendContext = params['SendContext']
|
5896
|
+
@RecvContext = params['RecvContext']
|
5808
5897
|
end
|
5809
5898
|
end
|
5810
5899
|
|
@@ -6509,7 +6598,7 @@ module TencentCloud
|
|
6509
6598
|
# @type RealServerIP: String
|
6510
6599
|
# @param RealServerWeight: 源站权重
|
6511
6600
|
# @type RealServerWeight: Integer
|
6512
|
-
# @param RealServerFailoverRole: 源站主备角色:master
|
6601
|
+
# @param RealServerFailoverRole: 源站主备角色:master表示主,slave表示备,该参数必须在监听器打开了源站主备模式。
|
6513
6602
|
# @type RealServerFailoverRole: String
|
6514
6603
|
|
6515
6604
|
attr_accessor :RealServerId, :RealServerPort, :RealServerIP, :RealServerWeight, :RealServerFailoverRole
|
@@ -6703,7 +6792,7 @@ module TencentCloud
|
|
6703
6792
|
# @type Path: String
|
6704
6793
|
# @param RealServerType: 源站类型
|
6705
6794
|
# @type RealServerType: String
|
6706
|
-
# @param Scheduler:
|
6795
|
+
# @param Scheduler: 监听器源站访问策略,其中:rr表示轮询;wrr表示加权轮询;lc表示最小连接数;lrtt表示最小时延。
|
6707
6796
|
# @type Scheduler: String
|
6708
6797
|
# @param HealthCheck: 是否开启健康检查标志,1表示开启,0表示关闭
|
6709
6798
|
# @type HealthCheck: Integer
|
@@ -7000,10 +7089,7 @@ module TencentCloud
|
|
7000
7089
|
# 3表示源站调整中;
|
7001
7090
|
# 4表示配置变更中。
|
7002
7091
|
# @type ListenerStatus: Integer
|
7003
|
-
# @param Scheduler: 监听器源站访问策略,其中:
|
7004
|
-
# rr表示轮询;
|
7005
|
-
# wrr表示加权轮询;
|
7006
|
-
# lc表示最小连接数。
|
7092
|
+
# @param Scheduler: 监听器源站访问策略,其中:rr表示轮询;wrr表示加权轮询;lc表示最小连接数;lrtt表示最小时延。
|
7007
7093
|
# @type Scheduler: String
|
7008
7094
|
# @param ConnectTimeout: 源站健康检查响应超时时间,单位:秒
|
7009
7095
|
# @type ConnectTimeout: Integer
|
@@ -7157,7 +7243,7 @@ module TencentCloud
|
|
7157
7243
|
# 3表示源站调整中;
|
7158
7244
|
# 4表示配置变更中。
|
7159
7245
|
# @type ListenerStatus: Integer
|
7160
|
-
# @param Scheduler:
|
7246
|
+
# @param Scheduler: 监听器源站访问策略,其中:rr表示轮询;wrr表示加权轮询;lc表示最小连接数;lrtt表示最小时延。
|
7161
7247
|
# @type Scheduler: String
|
7162
7248
|
# @param BindStatus: 监听器绑定源站状态, 0表示正常,1表示IP异常,2表示域名解析异常
|
7163
7249
|
# @type BindStatus: Integer
|
@@ -7168,10 +7254,43 @@ module TencentCloud
|
|
7168
7254
|
# @param SessionPersist: 是否开启会话保持选项:0关闭, 非0开启,非0值为会话保持时间
|
7169
7255
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7170
7256
|
# @type SessionPersist: Integer
|
7257
|
+
# @param DelayLoop: 源站健康检查时间间隔,单位:秒。时间间隔取值在[5,300]之间。
|
7258
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7259
|
+
# @type DelayLoop: Integer
|
7260
|
+
# @param ConnectTimeout: 源站健康检查响应超时时间,单位:秒。超时时间取值在[2,60]之间。超时时间应小于健康检查时间间隔DelayLoop。
|
7261
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7262
|
+
# @type ConnectTimeout: Integer
|
7263
|
+
# @param HealthyThreshold: 健康阈值,表示连续检查成功多少次后认定源站健康。范围为1到10
|
7264
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7265
|
+
# @type HealthyThreshold: Integer
|
7266
|
+
# @param UnhealthyThreshold: 不健康阈值,表示连续检查失败多少次数后认为源站不健康。范围为1到10
|
7267
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7268
|
+
# @type UnhealthyThreshold: Integer
|
7269
|
+
# @param FailoverSwitch: 源站是否开启主备模式:1开启,0关闭,DOMAIN类型源站不支持开启
|
7270
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7271
|
+
# @type FailoverSwitch: Integer
|
7272
|
+
# @param HealthCheck: 源站是否开启健康检查:1开启,0关闭。
|
7273
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7274
|
+
# @type HealthCheck: Integer
|
7275
|
+
# @param CheckType: UDP源站健康类型。PORT表示检查端口,PING表示PING。
|
7276
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7277
|
+
# @type CheckType: String
|
7278
|
+
# @param CheckPort: UDP源站健康检查探测端口。
|
7279
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7280
|
+
# @type CheckPort: Integer
|
7281
|
+
# @param ContextType: UDP源站健康检查端口探测报文类型:TEXT表示文本。仅在健康检查类型为PORT时使用。
|
7282
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7283
|
+
# @type ContextType: String
|
7284
|
+
# @param SendContext: UDP源站健康检查端口探测发送报文。仅在健康检查类型为PORT时使用。
|
7285
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7286
|
+
# @type SendContext: String
|
7287
|
+
# @param RecvContext: UDP源站健康检查端口探测接收报文。仅在健康检查类型为PORT时使用。
|
7288
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7289
|
+
# @type RecvContext: String
|
7171
7290
|
|
7172
|
-
attr_accessor :ListenerId, :ListenerName, :Port, :RealServerPort, :RealServerType, :Protocol, :ListenerStatus, :Scheduler, :BindStatus, :RealServerSet, :CreateTime, :SessionPersist
|
7291
|
+
attr_accessor :ListenerId, :ListenerName, :Port, :RealServerPort, :RealServerType, :Protocol, :ListenerStatus, :Scheduler, :BindStatus, :RealServerSet, :CreateTime, :SessionPersist, :DelayLoop, :ConnectTimeout, :HealthyThreshold, :UnhealthyThreshold, :FailoverSwitch, :HealthCheck, :CheckType, :CheckPort, :ContextType, :SendContext, :RecvContext
|
7173
7292
|
|
7174
|
-
def initialize(listenerid=nil, listenername=nil, port=nil, realserverport=nil, realservertype=nil, protocol=nil, listenerstatus=nil, scheduler=nil, bindstatus=nil, realserverset=nil, createtime=nil, sessionpersist=nil)
|
7293
|
+
def initialize(listenerid=nil, listenername=nil, port=nil, realserverport=nil, realservertype=nil, protocol=nil, listenerstatus=nil, scheduler=nil, bindstatus=nil, realserverset=nil, createtime=nil, sessionpersist=nil, delayloop=nil, connecttimeout=nil, healthythreshold=nil, unhealthythreshold=nil, failoverswitch=nil, healthcheck=nil, checktype=nil, checkport=nil, contexttype=nil, sendcontext=nil, recvcontext=nil)
|
7175
7294
|
@ListenerId = listenerid
|
7176
7295
|
@ListenerName = listenername
|
7177
7296
|
@Port = port
|
@@ -7184,6 +7303,17 @@ module TencentCloud
|
|
7184
7303
|
@RealServerSet = realserverset
|
7185
7304
|
@CreateTime = createtime
|
7186
7305
|
@SessionPersist = sessionpersist
|
7306
|
+
@DelayLoop = delayloop
|
7307
|
+
@ConnectTimeout = connecttimeout
|
7308
|
+
@HealthyThreshold = healthythreshold
|
7309
|
+
@UnhealthyThreshold = unhealthythreshold
|
7310
|
+
@FailoverSwitch = failoverswitch
|
7311
|
+
@HealthCheck = healthcheck
|
7312
|
+
@CheckType = checktype
|
7313
|
+
@CheckPort = checkport
|
7314
|
+
@ContextType = contexttype
|
7315
|
+
@SendContext = sendcontext
|
7316
|
+
@RecvContext = recvcontext
|
7187
7317
|
end
|
7188
7318
|
|
7189
7319
|
def deserialize(params)
|
@@ -7206,6 +7336,17 @@ module TencentCloud
|
|
7206
7336
|
end
|
7207
7337
|
@CreateTime = params['CreateTime']
|
7208
7338
|
@SessionPersist = params['SessionPersist']
|
7339
|
+
@DelayLoop = params['DelayLoop']
|
7340
|
+
@ConnectTimeout = params['ConnectTimeout']
|
7341
|
+
@HealthyThreshold = params['HealthyThreshold']
|
7342
|
+
@UnhealthyThreshold = params['UnhealthyThreshold']
|
7343
|
+
@FailoverSwitch = params['FailoverSwitch']
|
7344
|
+
@HealthCheck = params['HealthCheck']
|
7345
|
+
@CheckType = params['CheckType']
|
7346
|
+
@CheckPort = params['CheckPort']
|
7347
|
+
@ContextType = params['ContextType']
|
7348
|
+
@SendContext = params['SendContext']
|
7349
|
+
@RecvContext = params['RecvContext']
|
7209
7350
|
end
|
7210
7351
|
end
|
7211
7352
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-gaap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.364
|
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-07-
|
11
|
+
date: 2022-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|