tencentcloud-sdk-cvm 3.0.450 → 3.0.451
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/v20170312/models.rb +7 -7
- 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: 09617adf52ad8753f18fea655835012dd65fbff2
|
4
|
+
data.tar.gz: 17132e352ed826562116cddc921ae6493be9b471
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 207ea656f61293c75ea881f1a5cd0c8ccb5b77153f0acc9d7df0fccc5843ea319cca9640bfe12e37a12b448e4a689abd3445d0035d3fd6f4968e6ed0bda9eb05
|
7
|
+
data.tar.gz: 7a5f1a692e521a674cb1bcc18dd8fd1068607017309381ff911d2b7f1dcb803188c5720eaac77284fcdf366f6d8b0bb1dfe88222f2eac09358f9ebc7a960d610
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.451
|
data/lib/v20170312/models.rb
CHANGED
@@ -109,28 +109,28 @@ module TencentCloud
|
|
109
109
|
|
110
110
|
# 定时任务
|
111
111
|
class ActionTimer < TencentCloud::Common::AbstractModel
|
112
|
-
# @param Externals: 扩展数据
|
113
|
-
# @type Externals: :class:`Tencentcloud::Cvm.v20170312.models.Externals`
|
114
112
|
# @param TimerAction: 定时器名称,目前仅支持销毁一个值:TerminateInstances。
|
115
113
|
# @type TimerAction: String
|
116
114
|
# @param ActionTime: 执行时间,格式形如:2018-5-29 11:26:40,执行时间必须大于当前时间5分钟。
|
117
115
|
# @type ActionTime: String
|
116
|
+
# @param Externals: 扩展数据
|
117
|
+
# @type Externals: :class:`Tencentcloud::Cvm.v20170312.models.Externals`
|
118
118
|
|
119
|
-
attr_accessor :
|
119
|
+
attr_accessor :TimerAction, :ActionTime, :Externals
|
120
120
|
|
121
|
-
def initialize(
|
122
|
-
@Externals = externals
|
121
|
+
def initialize(timeraction=nil, actiontime=nil, externals=nil)
|
123
122
|
@TimerAction = timeraction
|
124
123
|
@ActionTime = actiontime
|
124
|
+
@Externals = externals
|
125
125
|
end
|
126
126
|
|
127
127
|
def deserialize(params)
|
128
|
+
@TimerAction = params['TimerAction']
|
129
|
+
@ActionTime = params['ActionTime']
|
128
130
|
unless params['Externals'].nil?
|
129
131
|
@Externals = Externals.new
|
130
132
|
@Externals.deserialize(params['Externals'])
|
131
133
|
end
|
132
|
-
@TimerAction = params['TimerAction']
|
133
|
-
@ActionTime = params['ActionTime']
|
134
134
|
end
|
135
135
|
end
|
136
136
|
|