tencentcloud-sdk-tse 3.0.846 → 3.0.847
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/v20201207/models.rb +11 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a94509269f5afaefa4f99bd4614e94311dc12fd
|
4
|
+
data.tar.gz: f2288af8459fa89094e8407c2aee7c580bca347e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 615859abfd7161f1205eea98d7f5f35b0adc3e47c904834a842195b44c434782823f3f1a9aad445b44af4624b4be0105c0dda6ef5a6d6c23c2587e9bd61ca4a0
|
7
|
+
data.tar.gz: 37bbc7056234e01ada44d595c120feccf62aba490c048db75fdae4cd818801b3ac702ef28f940ac5b56746cc74091effc9ec69c73e1d6f305f7e7273863e3ff6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.847
|
data/lib/v20201207/models.rb
CHANGED
@@ -11306,13 +11306,19 @@ module TencentCloud
|
|
11306
11306
|
# @param UnhealthyHttpStatuses: 异常HTTP状态码
|
11307
11307
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11308
11308
|
# @type UnhealthyHttpStatuses: Array
|
11309
|
-
# @param IgnoreZeroWeightNodes:
|
11309
|
+
# @param IgnoreZeroWeightNodes: 健康检查监控上报的数据屏蔽权重为0的节点
|
11310
11310
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11311
11311
|
# @type IgnoreZeroWeightNodes: Boolean
|
11312
|
+
# @param ZeroWeightHeathCheck: 健康检查支持权重为0节点
|
11313
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11314
|
+
# @type ZeroWeightHeathCheck: Boolean
|
11312
11315
|
|
11313
|
-
attr_accessor :EnableActiveHealthCheck, :ActiveHealthCheck, :EnablePassiveHealthCheck, :PassiveHealthCheck, :Successes, :Failures, :Timeouts, :HealthyHttpStatuses, :UnhealthyHttpStatuses, :IgnoreZeroWeightNodes
|
11316
|
+
attr_accessor :EnableActiveHealthCheck, :ActiveHealthCheck, :EnablePassiveHealthCheck, :PassiveHealthCheck, :Successes, :Failures, :Timeouts, :HealthyHttpStatuses, :UnhealthyHttpStatuses, :IgnoreZeroWeightNodes, :ZeroWeightHeathCheck
|
11317
|
+
extend Gem::Deprecate
|
11318
|
+
deprecate :IgnoreZeroWeightNodes, :none, 2024, 6
|
11319
|
+
deprecate :IgnoreZeroWeightNodes=, :none, 2024, 6
|
11314
11320
|
|
11315
|
-
def initialize(enableactivehealthcheck=nil, activehealthcheck=nil, enablepassivehealthcheck=nil, passivehealthcheck=nil, successes=nil, failures=nil, timeouts=nil, healthyhttpstatuses=nil, unhealthyhttpstatuses=nil, ignorezeroweightnodes=nil)
|
11321
|
+
def initialize(enableactivehealthcheck=nil, activehealthcheck=nil, enablepassivehealthcheck=nil, passivehealthcheck=nil, successes=nil, failures=nil, timeouts=nil, healthyhttpstatuses=nil, unhealthyhttpstatuses=nil, ignorezeroweightnodes=nil, zeroweightheathcheck=nil)
|
11316
11322
|
@EnableActiveHealthCheck = enableactivehealthcheck
|
11317
11323
|
@ActiveHealthCheck = activehealthcheck
|
11318
11324
|
@EnablePassiveHealthCheck = enablepassivehealthcheck
|
@@ -11323,6 +11329,7 @@ module TencentCloud
|
|
11323
11329
|
@HealthyHttpStatuses = healthyhttpstatuses
|
11324
11330
|
@UnhealthyHttpStatuses = unhealthyhttpstatuses
|
11325
11331
|
@IgnoreZeroWeightNodes = ignorezeroweightnodes
|
11332
|
+
@ZeroWeightHeathCheck = zeroweightheathcheck
|
11326
11333
|
end
|
11327
11334
|
|
11328
11335
|
def deserialize(params)
|
@@ -11342,6 +11349,7 @@ module TencentCloud
|
|
11342
11349
|
@HealthyHttpStatuses = params['HealthyHttpStatuses']
|
11343
11350
|
@UnhealthyHttpStatuses = params['UnhealthyHttpStatuses']
|
11344
11351
|
@IgnoreZeroWeightNodes = params['IgnoreZeroWeightNodes']
|
11352
|
+
@ZeroWeightHeathCheck = params['ZeroWeightHeathCheck']
|
11345
11353
|
end
|
11346
11354
|
end
|
11347
11355
|
|