tencentcloud-sdk-as 3.0.951 → 3.0.952
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: 24ecf1992164577ae2caa63a6f857a0f104f7f77
|
4
|
+
data.tar.gz: f946bc5f03935eab2c02b7073056693220d063bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f45b3352291e7fdbc0e2ca5681bb53c19ae46ad56287e5b9669dec42b699bff3d5e0d0c37178214cd3fc8368e21c2c85489459afebcb2bfdead21acb89b3f81c
|
7
|
+
data.tar.gz: 5a85534d636e276185a4b17c9e146b866b283060d7c50b6d10fd09160e5d175a158a004e59e3bc50a24b5fa24c3cf53ddd050d799d75a8084ec9f74dc9525a8d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.952
|
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, 2024,
|
74
|
-
deprecate :ActivityRelatedInstanceSet=, :none, 2024,
|
73
|
+
deprecate :ActivityRelatedInstanceSet, :none, 2024, 12
|
74
|
+
deprecate :ActivityRelatedInstanceSet=, :none, 2024, 12
|
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, 2024,
|
2689
|
-
deprecate :AutomationService=, :none, 2024,
|
2688
|
+
deprecate :AutomationService, :none, 2024, 12
|
2689
|
+
deprecate :AutomationService=, :none, 2024, 12
|
2690
2690
|
|
2691
2691
|
def initialize(securityservice=nil, monitorservice=nil, automationservice=nil, automationtoolsservice=nil)
|
2692
2692
|
@SecurityService = securityservice
|
@@ -5132,14 +5132,17 @@ module TencentCloud
|
|
5132
5132
|
# 默认取值:RECREATE
|
5133
5133
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5134
5134
|
# @type ReplaceMode: String
|
5135
|
+
# @param AutoUpdateInstanceTags: 自动更新实例标签。默认取值为 false,配置后如伸缩组标签发生更新,会同步更新(同步更新仅支持新增、修改标签,暂不支持删除标签)伸缩组内运行中状态实例的标签,同步更新非立即生效,存在一定延迟。
|
5136
|
+
# @type AutoUpdateInstanceTags: Boolean
|
5135
5137
|
|
5136
|
-
attr_accessor :ReplaceMonitorUnhealthy, :ScalingMode, :ReplaceLoadBalancerUnhealthy, :ReplaceMode
|
5138
|
+
attr_accessor :ReplaceMonitorUnhealthy, :ScalingMode, :ReplaceLoadBalancerUnhealthy, :ReplaceMode, :AutoUpdateInstanceTags
|
5137
5139
|
|
5138
|
-
def initialize(replacemonitorunhealthy=nil, scalingmode=nil, replaceloadbalancerunhealthy=nil, replacemode=nil)
|
5140
|
+
def initialize(replacemonitorunhealthy=nil, scalingmode=nil, replaceloadbalancerunhealthy=nil, replacemode=nil, autoupdateinstancetags=nil)
|
5139
5141
|
@ReplaceMonitorUnhealthy = replacemonitorunhealthy
|
5140
5142
|
@ScalingMode = scalingmode
|
5141
5143
|
@ReplaceLoadBalancerUnhealthy = replaceloadbalancerunhealthy
|
5142
5144
|
@ReplaceMode = replacemode
|
5145
|
+
@AutoUpdateInstanceTags = autoupdateinstancetags
|
5143
5146
|
end
|
5144
5147
|
|
5145
5148
|
def deserialize(params)
|
@@ -5147,6 +5150,7 @@ module TencentCloud
|
|
5147
5150
|
@ScalingMode = params['ScalingMode']
|
5148
5151
|
@ReplaceLoadBalancerUnhealthy = params['ReplaceLoadBalancerUnhealthy']
|
5149
5152
|
@ReplaceMode = params['ReplaceMode']
|
5153
|
+
@AutoUpdateInstanceTags = params['AutoUpdateInstanceTags']
|
5150
5154
|
end
|
5151
5155
|
end
|
5152
5156
|
|
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.952
|
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-
|
11
|
+
date: 2024-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|