tencentcloud-sdk-as 3.0.1094 → 3.0.1099
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/v20180419/models.rb +10 -6
- 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: e90a527b29a2169385e3cf848bd057c720137051
|
4
|
+
data.tar.gz: ff8e412279f78006572c51f93cefc8166c07b73f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa6df7ae3b6c8033d782fd18b6f74927db19dd9de9defeffc0639922fdcbdfbe61130affe5a80566acfe8c92a98d46843d32f0de20091c847c8b0274dade0321
|
7
|
+
data.tar.gz: feda1e08972868b812c2e4670f4891788479e0a88fc26bc5572071a5dfb483eab3352a328817f8b9a16ad6fb6c8c3101bc33ca30c4ab865699022f99694372cc
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1099
|
data/lib/v20180419/models.rb
CHANGED
@@ -70,8 +70,8 @@ module TencentCloud
|
|
70
70
|
|
71
71
|
attr_accessor :AutoScalingGroupId, :ActivityId, :ActivityType, :StatusCode, :StatusMessage, :Cause, :Description, :StartTime, :EndTime, :CreatedTime, :ActivityRelatedInstanceSet, :StatusMessageSimplified, :LifecycleActionResultSet, :DetailedStatusMessageSet, :InvocationResultSet, :RelatedInstanceSet
|
72
72
|
extend Gem::Deprecate
|
73
|
-
deprecate :ActivityRelatedInstanceSet, :none, 2025,
|
74
|
-
deprecate :ActivityRelatedInstanceSet=, :none, 2025,
|
73
|
+
deprecate :ActivityRelatedInstanceSet, :none, 2025, 7
|
74
|
+
deprecate :ActivityRelatedInstanceSet=, :none, 2025, 7
|
75
75
|
|
76
76
|
def initialize(autoscalinggroupid=nil, activityid=nil, activitytype=nil, statuscode=nil, statusmessage=nil, cause=nil, description=nil, starttime=nil, endtime=nil, createdtime=nil, activityrelatedinstanceset=nil, statusmessagesimplified=nil, lifecycleactionresultset=nil, detailedstatusmessageset=nil, invocationresultset=nil, relatedinstanceset=nil)
|
77
77
|
@AutoScalingGroupId = autoscalinggroupid
|
@@ -2745,8 +2745,8 @@ module TencentCloud
|
|
2745
2745
|
|
2746
2746
|
attr_accessor :SecurityService, :MonitorService, :AutomationService, :AutomationToolsService
|
2747
2747
|
extend Gem::Deprecate
|
2748
|
-
deprecate :AutomationService, :none, 2025,
|
2749
|
-
deprecate :AutomationService=, :none, 2025,
|
2748
|
+
deprecate :AutomationService, :none, 2025, 7
|
2749
|
+
deprecate :AutomationService=, :none, 2025, 7
|
2750
2750
|
|
2751
2751
|
def initialize(securityservice=nil, monitorservice=nil, automationservice=nil, automationtoolsservice=nil)
|
2752
2752
|
@SecurityService = securityservice
|
@@ -4791,12 +4791,15 @@ module TencentCloud
|
|
4791
4791
|
# @type RollingUpdateSettings: :class:`Tencentcloud::As.v20180419.models.RollingUpdateSettings`
|
4792
4792
|
# @param CheckInstanceTargetHealth: 实例后端服务健康状态检查,默认为 FALSE。仅针对绑定应用型负载均衡器的伸缩组生效,开启该检查后,如刷新后实例未通过检查,负载均衡器端口权重始终为 0,且标记为刷新失败。取值范围如下:<li>TRUE:开启检查</li><li>FALSE:不开启检查</li>
|
4793
4793
|
# @type CheckInstanceTargetHealth: Boolean
|
4794
|
+
# @param CheckInstanceTargetHealthTimeout: 实例后端服务健康状态检查的超时时间,单位为秒,取值范围[60,7200],默认时间1800秒。仅在CheckInstanceTargetHealth参数开启后生效,若实例健康检查超时,则标记为刷新失败。
|
4795
|
+
# @type CheckInstanceTargetHealthTimeout: Integer
|
4794
4796
|
|
4795
|
-
attr_accessor :RollingUpdateSettings, :CheckInstanceTargetHealth
|
4797
|
+
attr_accessor :RollingUpdateSettings, :CheckInstanceTargetHealth, :CheckInstanceTargetHealthTimeout
|
4796
4798
|
|
4797
|
-
def initialize(rollingupdatesettings=nil, checkinstancetargethealth=nil)
|
4799
|
+
def initialize(rollingupdatesettings=nil, checkinstancetargethealth=nil, checkinstancetargethealthtimeout=nil)
|
4798
4800
|
@RollingUpdateSettings = rollingupdatesettings
|
4799
4801
|
@CheckInstanceTargetHealth = checkinstancetargethealth
|
4802
|
+
@CheckInstanceTargetHealthTimeout = checkinstancetargethealthtimeout
|
4800
4803
|
end
|
4801
4804
|
|
4802
4805
|
def deserialize(params)
|
@@ -4805,6 +4808,7 @@ module TencentCloud
|
|
4805
4808
|
@RollingUpdateSettings.deserialize(params['RollingUpdateSettings'])
|
4806
4809
|
end
|
4807
4810
|
@CheckInstanceTargetHealth = params['CheckInstanceTargetHealth']
|
4811
|
+
@CheckInstanceTargetHealthTimeout = params['CheckInstanceTargetHealthTimeout']
|
4808
4812
|
end
|
4809
4813
|
end
|
4810
4814
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-as
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1099
|
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-07-
|
11
|
+
date: 2025-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|