tencentcloud-sdk-as 3.0.909 → 3.0.910
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 +14 -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: 0a06d7af2264f804508e87a8e6e36d6b874ebe6a
|
4
|
+
data.tar.gz: 1821b99185a04240ee52deaf30a0ca7e10f1e63c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e3f51ab7402c15feb3f1e31f7ed5dc3303343cf3f1720a0dbc4f13c4cf7645e4865f2c9d8f97c827e6c08899e9ac9fe7ce31ad568af56fb07f3079c2a5cf376
|
7
|
+
data.tar.gz: a6b02ceae4232503c8d29af3a9ab4210b1a5711ca4a7a1f5bf53e4e0fee925ee929b70ae5b69efddca5550c10d2eb6e10fc4fcd26e9c2cca748194b3bf150955
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.910
|
data/lib/v20180419/models.rb
CHANGED
@@ -64,8 +64,8 @@ module TencentCloud
|
|
64
64
|
|
65
65
|
attr_accessor :AutoScalingGroupId, :ActivityId, :ActivityType, :StatusCode, :StatusMessage, :Cause, :Description, :StartTime, :EndTime, :CreatedTime, :ActivityRelatedInstanceSet, :StatusMessageSimplified, :LifecycleActionResultSet, :DetailedStatusMessageSet, :InvocationResultSet, :RelatedInstanceSet
|
66
66
|
extend Gem::Deprecate
|
67
|
-
deprecate :ActivityRelatedInstanceSet, :none, 2024,
|
68
|
-
deprecate :ActivityRelatedInstanceSet=, :none, 2024,
|
67
|
+
deprecate :ActivityRelatedInstanceSet, :none, 2024, 9
|
68
|
+
deprecate :ActivityRelatedInstanceSet=, :none, 2024, 9
|
69
69
|
|
70
70
|
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)
|
71
71
|
@AutoScalingGroupId = autoscalinggroupid
|
@@ -2656,8 +2656,8 @@ module TencentCloud
|
|
2656
2656
|
|
2657
2657
|
attr_accessor :SecurityService, :MonitorService, :AutomationService, :AutomationToolsService
|
2658
2658
|
extend Gem::Deprecate
|
2659
|
-
deprecate :AutomationService, :none, 2024,
|
2660
|
-
deprecate :AutomationService=, :none, 2024,
|
2659
|
+
deprecate :AutomationService, :none, 2024, 9
|
2660
|
+
deprecate :AutomationService=, :none, 2024, 9
|
2661
2661
|
|
2662
2662
|
def initialize(securityservice=nil, monitorservice=nil, automationservice=nil, automationtoolsservice=nil)
|
2663
2663
|
@SecurityService = securityservice
|
@@ -5047,19 +5047,27 @@ module TencentCloud
|
|
5047
5047
|
# @type ScalingMode: String
|
5048
5048
|
# @param ReplaceLoadBalancerUnhealthy: 开启负载均衡不健康替换服务。若开启则对于负载均衡健康检查判断不健康的实例,弹性伸缩服务会进行替换。若不指定该参数,则默认为 False。
|
5049
5049
|
# @type ReplaceLoadBalancerUnhealthy: Boolean
|
5050
|
+
# @param ReplaceMode: 不健康替换服务的替换模式。取值范围:
|
5051
|
+
# RECREATE:重建实例替代原有不健康实例;
|
5052
|
+
# RESET:对原有不健康实例进行重装系统操作,可保持数据盘、内网IP、实例id等信息不发生变化,实例登录设置、主机名、增强服务和 UserData 与当前启动配置保持一致。
|
5053
|
+
# 默认取值:RECREATE
|
5054
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5055
|
+
# @type ReplaceMode: String
|
5050
5056
|
|
5051
|
-
attr_accessor :ReplaceMonitorUnhealthy, :ScalingMode, :ReplaceLoadBalancerUnhealthy
|
5057
|
+
attr_accessor :ReplaceMonitorUnhealthy, :ScalingMode, :ReplaceLoadBalancerUnhealthy, :ReplaceMode
|
5052
5058
|
|
5053
|
-
def initialize(replacemonitorunhealthy=nil, scalingmode=nil, replaceloadbalancerunhealthy=nil)
|
5059
|
+
def initialize(replacemonitorunhealthy=nil, scalingmode=nil, replaceloadbalancerunhealthy=nil, replacemode=nil)
|
5054
5060
|
@ReplaceMonitorUnhealthy = replacemonitorunhealthy
|
5055
5061
|
@ScalingMode = scalingmode
|
5056
5062
|
@ReplaceLoadBalancerUnhealthy = replaceloadbalancerunhealthy
|
5063
|
+
@ReplaceMode = replacemode
|
5057
5064
|
end
|
5058
5065
|
|
5059
5066
|
def deserialize(params)
|
5060
5067
|
@ReplaceMonitorUnhealthy = params['ReplaceMonitorUnhealthy']
|
5061
5068
|
@ScalingMode = params['ScalingMode']
|
5062
5069
|
@ReplaceLoadBalancerUnhealthy = params['ReplaceLoadBalancerUnhealthy']
|
5070
|
+
@ReplaceMode = params['ReplaceMode']
|
5063
5071
|
end
|
5064
5072
|
end
|
5065
5073
|
|
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.910
|
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-09-
|
11
|
+
date: 2024-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|