tencentcloud-sdk-tcb 1.0.210 → 1.0.211

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180608/models.rb +56 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e3b55d7d5504693b469ab8e94250d67b18ad5c93
4
- data.tar.gz: ce6d5b99dcab4d7d23b07e35de970f2a73832444
3
+ metadata.gz: 31d55782084c580c0081ae32f46dc6f2736806bd
4
+ data.tar.gz: b5e00f013a0d0f1e6576f02b4447ff95ae44c1a1
5
5
  SHA512:
6
- metadata.gz: 5b139e52ed5ef5167271d5bb5cf33b3a4f57b931509781df322049c60a7f5dfe29cd27d11c25c0fc1bb5345979dba9cf432ea15eeb3d9293e51add2f7fd4f675
7
- data.tar.gz: 63ebf5dfc156fc6d11f5e9813aba6a36bdfe5f8c8231ed217e43810e385c9f08ec2845ba8fe6e6bbe4d781dd8b130f3f364f7d85ef91b7a2c935a9ac30d761c4
6
+ metadata.gz: b76b7f769cdfd4f34f79b18ad4f283a942d4e0c943f19202f5193d11f0826adb3cbc9cc8e39589cdead0a24bbed489de32f428c03b603f186a2101fd165355f5
7
+ data.tar.gz: 186fb757c69b49f409124984e5694906c6a9a066842bbd3cffceedb1f734ddd4f7e2f84ee2df70ac30de953c69fd8a00cc88483fadc9c5150a3e6de546109a37
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.210
1
+ 1.0.211
@@ -2880,12 +2880,16 @@ module TencentCloud
2880
2880
  # @type FailReason: String
2881
2881
  # @param UserEnvId: 用户envId
2882
2882
  # @type UserEnvId: String
2883
+ # @param StartTime: 创建时间
2884
+ # @type StartTime: String
2885
+ # @param Steps: 步骤信息
2886
+ # @type Steps: Array
2883
2887
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2884
2888
  # @type RequestId: String
2885
2889
 
2886
- attr_accessor :ExternalId, :EnvId, :UserUin, :ServerName, :VersionName, :CreateTime, :Stage, :Status, :FailReason, :UserEnvId, :RequestId
2890
+ attr_accessor :ExternalId, :EnvId, :UserUin, :ServerName, :VersionName, :CreateTime, :Stage, :Status, :FailReason, :UserEnvId, :StartTime, :Steps, :RequestId
2887
2891
 
2888
- def initialize(externalid=nil, envid=nil, useruin=nil, servername=nil, versionname=nil, createtime=nil, stage=nil, status=nil, failreason=nil, userenvid=nil, requestid=nil)
2892
+ def initialize(externalid=nil, envid=nil, useruin=nil, servername=nil, versionname=nil, createtime=nil, stage=nil, status=nil, failreason=nil, userenvid=nil, starttime=nil, steps=nil, requestid=nil)
2889
2893
  @ExternalId = externalid
2890
2894
  @EnvId = envid
2891
2895
  @UserUin = useruin
@@ -2896,6 +2900,8 @@ module TencentCloud
2896
2900
  @Status = status
2897
2901
  @FailReason = failreason
2898
2902
  @UserEnvId = userenvid
2903
+ @StartTime = starttime
2904
+ @Steps = steps
2899
2905
  @RequestId = requestid
2900
2906
  end
2901
2907
 
@@ -2910,6 +2916,15 @@ module TencentCloud
2910
2916
  @Status = params['Status']
2911
2917
  @FailReason = params['FailReason']
2912
2918
  @UserEnvId = params['UserEnvId']
2919
+ @StartTime = params['StartTime']
2920
+ unless params['Steps'].nil?
2921
+ @Steps = []
2922
+ params['Steps'].each do |i|
2923
+ oneclicktaskstepinfo_tmp = OneClickTaskStepInfo.new
2924
+ oneclicktaskstepinfo_tmp.deserialize(i)
2925
+ @Steps << oneclicktaskstepinfo_tmp
2926
+ end
2927
+ end
2913
2928
  @RequestId = params['RequestId']
2914
2929
  end
2915
2930
  end
@@ -6165,6 +6180,45 @@ module TencentCloud
6165
6180
  end
6166
6181
  end
6167
6182
 
6183
+ # 一键部署步骤信息
6184
+ class OneClickTaskStepInfo < TencentCloud::Common::AbstractModel
6185
+ # @param Status: 未启动:"todo"
6186
+ # 运行中:"running"
6187
+ # 失败:"failed"
6188
+ # 成功结束:"finished"
6189
+ # @type Status: String
6190
+ # @param StartTime: 开始时间
6191
+ # @type StartTime: String
6192
+ # @param EndTime: 结束时间
6193
+ # @type EndTime: String
6194
+ # @param CostTime: 耗时:秒
6195
+ # @type CostTime: Integer
6196
+ # @param FailReason: 失败原因
6197
+ # @type FailReason: String
6198
+ # @param Name: 步骤名
6199
+ # @type Name: String
6200
+
6201
+ attr_accessor :Status, :StartTime, :EndTime, :CostTime, :FailReason, :Name
6202
+
6203
+ def initialize(status=nil, starttime=nil, endtime=nil, costtime=nil, failreason=nil, name=nil)
6204
+ @Status = status
6205
+ @StartTime = starttime
6206
+ @EndTime = endtime
6207
+ @CostTime = costtime
6208
+ @FailReason = failreason
6209
+ @Name = name
6210
+ end
6211
+
6212
+ def deserialize(params)
6213
+ @Status = params['Status']
6214
+ @StartTime = params['StartTime']
6215
+ @EndTime = params['EndTime']
6216
+ @CostTime = params['CostTime']
6217
+ @FailReason = params['FailReason']
6218
+ @Name = params['Name']
6219
+ end
6220
+ end
6221
+
6168
6222
  # 订单信息
6169
6223
  class OrderInfo < TencentCloud::Common::AbstractModel
6170
6224
  # @param TranId: 订单号
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.210
4
+ version: 1.0.211
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-25 00:00:00.000000000 Z
11
+ date: 2021-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common