Class: TencentCloud::Ssl::V20191205::DeployRecord
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DeployRecord
- Defined in:
- lib/v20191205/models.rb
Overview
托管记录
Instance Attribute Summary collapse
- #CreateTime ⇒ Object
- #FailedTotalCount ⇒ Object
- #PendingTotalCount ⇒ Object
- #RecordDetailList ⇒ Object
- #RunningTotalCount ⇒ Object
- #Status ⇒ Object
- #SuccessTotalCount ⇒ Object
- #TotalCount ⇒ Object
- #Type ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, successtotalcount = nil, failedtotalcount = nil, runningtotalcount = nil, type = nil, recorddetaillist = nil, status = nil, createtime = nil, pendingtotalcount = nil) ⇒ DeployRecord
constructor
A new instance of DeployRecord.
Constructor Details
#initialize(totalcount = nil, successtotalcount = nil, failedtotalcount = nil, runningtotalcount = nil, type = nil, recorddetaillist = nil, status = nil, createtime = nil, pendingtotalcount = nil) ⇒ DeployRecord
2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 |
# File 'lib/v20191205/models.rb', line 2414 def initialize(totalcount=nil, successtotalcount=nil, failedtotalcount=nil, runningtotalcount=nil, type=nil, recorddetaillist=nil, status=nil, createtime=nil, pendingtotalcount=nil) @TotalCount = totalcount @SuccessTotalCount = successtotalcount @FailedTotalCount = failedtotalcount @RunningTotalCount = runningtotalcount @Type = type @RecordDetailList = recorddetaillist @Status = status @CreateTime = createtime @PendingTotalCount = pendingtotalcount end |
Instance Attribute Details
#CreateTime ⇒ Object
2412 2413 2414 |
# File 'lib/v20191205/models.rb', line 2412 def CreateTime @CreateTime end |
#FailedTotalCount ⇒ Object
2412 2413 2414 |
# File 'lib/v20191205/models.rb', line 2412 def FailedTotalCount @FailedTotalCount end |
#PendingTotalCount ⇒ Object
2412 2413 2414 |
# File 'lib/v20191205/models.rb', line 2412 def PendingTotalCount @PendingTotalCount end |
#RecordDetailList ⇒ Object
2412 2413 2414 |
# File 'lib/v20191205/models.rb', line 2412 def RecordDetailList @RecordDetailList end |
#RunningTotalCount ⇒ Object
2412 2413 2414 |
# File 'lib/v20191205/models.rb', line 2412 def RunningTotalCount @RunningTotalCount end |
#Status ⇒ Object
2412 2413 2414 |
# File 'lib/v20191205/models.rb', line 2412 def Status @Status end |
#SuccessTotalCount ⇒ Object
2412 2413 2414 |
# File 'lib/v20191205/models.rb', line 2412 def SuccessTotalCount @SuccessTotalCount end |
#TotalCount ⇒ Object
2412 2413 2414 |
# File 'lib/v20191205/models.rb', line 2412 def TotalCount @TotalCount end |
#Type ⇒ Object
2412 2413 2414 |
# File 'lib/v20191205/models.rb', line 2412 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 |
# File 'lib/v20191205/models.rb', line 2426 def deserialize(params) @TotalCount = params['TotalCount'] @SuccessTotalCount = params['SuccessTotalCount'] @FailedTotalCount = params['FailedTotalCount'] @RunningTotalCount = params['RunningTotalCount'] @Type = params['Type'] unless params['RecordDetailList'].nil? @RecordDetailList = [] params['RecordDetailList'].each do |i| deployrecordlist_tmp = DeployRecordList.new deployrecordlist_tmp.deserialize(i) @RecordDetailList << deployrecordlist_tmp end end @Status = params['Status'] @CreateTime = params['CreateTime'] @PendingTotalCount = params['PendingTotalCount'] end |