tencentcloud-sdk-as 3.0.977 → 3.0.978
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/v20180419/models.rb +13 -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: f7ac79b896a0eb8f8e7f7da221ddf038e48ff91c
|
4
|
+
data.tar.gz: 55418200767274e668d44305372672983ada1dfc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 184cf507592854e16ab13e58c851aa44334b73294dfabf4bd92bc558731dcdf1bcae2ca589343c2f65dca4013e6f6d7e61763042b26f36508e278d756a0fbf99
|
7
|
+
data.tar.gz: ade8ed749fdb697fb9c5d71a4ecd2cf36fbfe2e09d523d5a2476d31614e2f2b0c69931724ced537df1fbed16a17a19370ecf7f4f2eeab31c0d808187b8976275
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.978
|
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,
|
74
|
-
deprecate :ActivityRelatedInstanceSet=, :none,
|
73
|
+
deprecate :ActivityRelatedInstanceSet, :none, 2025, 1
|
74
|
+
deprecate :ActivityRelatedInstanceSet=, :none, 2025, 1
|
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
|
@@ -2685,8 +2685,8 @@ module TencentCloud
|
|
2685
2685
|
|
2686
2686
|
attr_accessor :SecurityService, :MonitorService, :AutomationService, :AutomationToolsService
|
2687
2687
|
extend Gem::Deprecate
|
2688
|
-
deprecate :AutomationService, :none,
|
2689
|
-
deprecate :AutomationService=, :none,
|
2688
|
+
deprecate :AutomationService, :none, 2025, 1
|
2689
|
+
deprecate :AutomationService=, :none, 2025, 1
|
2690
2690
|
|
2691
2691
|
def initialize(securityservice=nil, monitorservice=nil, automationservice=nil, automationtoolsservice=nil)
|
2692
2692
|
@SecurityService = securityservice
|
@@ -4819,19 +4819,26 @@ module TencentCloud
|
|
4819
4819
|
# @param MaxSurge: 最大额外数量。设置该参数后,在滚动更新开始前根据启动配置创建一批按量计费的额外实例,滚动更新完成后销毁额外实例。
|
4820
4820
|
# 该参数用于保证滚动更新过程中可用实例的数量,最大额外数量不能超过滚动更新单个批次的刷新实例数。回滚流程暂不支持该参数。
|
4821
4821
|
# @type MaxSurge: Integer
|
4822
|
+
# @param FailProcess: 失败处理策略。默认值为 AUTO_PAUSE,取值范围如下:
|
4823
|
+
# <li>AUTO_PAUSE:刷新失败后暂停</li>
|
4824
|
+
# <li>AUTO_ROLLBACK:刷新失败后回滚。回滚时每批次回滚一台实例,CheckInstanceTargetHealth 参数值与原刷新活动一致。MaxSurge参数引入的扩缩容流程失败无需回滚,会用取消动作代替回滚</li>
|
4825
|
+
# <li>AUTO_CANCEL:刷新失败后取消</li>
|
4826
|
+
# @type FailProcess: String
|
4822
4827
|
|
4823
|
-
attr_accessor :BatchNumber, :BatchPause, :MaxSurge
|
4828
|
+
attr_accessor :BatchNumber, :BatchPause, :MaxSurge, :FailProcess
|
4824
4829
|
|
4825
|
-
def initialize(batchnumber=nil, batchpause=nil, maxsurge=nil)
|
4830
|
+
def initialize(batchnumber=nil, batchpause=nil, maxsurge=nil, failprocess=nil)
|
4826
4831
|
@BatchNumber = batchnumber
|
4827
4832
|
@BatchPause = batchpause
|
4828
4833
|
@MaxSurge = maxsurge
|
4834
|
+
@FailProcess = failprocess
|
4829
4835
|
end
|
4830
4836
|
|
4831
4837
|
def deserialize(params)
|
4832
4838
|
@BatchNumber = params['BatchNumber']
|
4833
4839
|
@BatchPause = params['BatchPause']
|
4834
4840
|
@MaxSurge = params['MaxSurge']
|
4841
|
+
@FailProcess = params['FailProcess']
|
4835
4842
|
end
|
4836
4843
|
end
|
4837
4844
|
|
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.978
|
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-01-
|
11
|
+
date: 2025-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|