Class: TencentCloud::Ssl::V20191205::DescribeHostDeployRecordDetailResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DescribeHostDeployRecordDetailResponse
- Defined in:
- lib/v20191205/models.rb
Overview
DescribeHostDeployRecordDetail返回参数结构体
Instance Attribute Summary collapse
- #DeployRecordDetailList ⇒ Object
- #FailedTotalCount ⇒ Object
- #PendingTotalCount ⇒ Object
- #RequestId ⇒ Object
- #RunningTotalCount ⇒ Object
- #SuccessTotalCount ⇒ Object
- #TotalCount ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, deployrecorddetaillist = nil, successtotalcount = nil, failedtotalcount = nil, runningtotalcount = nil, pendingtotalcount = nil, requestid = nil) ⇒ DescribeHostDeployRecordDetailResponse
constructor
A new instance of DescribeHostDeployRecordDetailResponse.
Constructor Details
#initialize(totalcount = nil, deployrecorddetaillist = nil, successtotalcount = nil, failedtotalcount = nil, runningtotalcount = nil, pendingtotalcount = nil, requestid = nil) ⇒ DescribeHostDeployRecordDetailResponse
Returns a new instance of DescribeHostDeployRecordDetailResponse.
4592 4593 4594 4595 4596 4597 4598 4599 4600 |
# File 'lib/v20191205/models.rb', line 4592 def initialize(totalcount=nil, deployrecorddetaillist=nil, successtotalcount=nil, failedtotalcount=nil, runningtotalcount=nil, pendingtotalcount=nil, requestid=nil) @TotalCount = totalcount @DeployRecordDetailList = deployrecorddetaillist @SuccessTotalCount = successtotalcount @FailedTotalCount = failedtotalcount @RunningTotalCount = runningtotalcount @PendingTotalCount = pendingtotalcount @RequestId = requestid end |
Instance Attribute Details
#DeployRecordDetailList ⇒ Object
4590 4591 4592 |
# File 'lib/v20191205/models.rb', line 4590 def DeployRecordDetailList @DeployRecordDetailList end |
#FailedTotalCount ⇒ Object
4590 4591 4592 |
# File 'lib/v20191205/models.rb', line 4590 def FailedTotalCount @FailedTotalCount end |
#PendingTotalCount ⇒ Object
4590 4591 4592 |
# File 'lib/v20191205/models.rb', line 4590 def PendingTotalCount @PendingTotalCount end |
#RequestId ⇒ Object
4590 4591 4592 |
# File 'lib/v20191205/models.rb', line 4590 def RequestId @RequestId end |
#RunningTotalCount ⇒ Object
4590 4591 4592 |
# File 'lib/v20191205/models.rb', line 4590 def RunningTotalCount @RunningTotalCount end |
#SuccessTotalCount ⇒ Object
4590 4591 4592 |
# File 'lib/v20191205/models.rb', line 4590 def SuccessTotalCount @SuccessTotalCount end |
#TotalCount ⇒ Object
4590 4591 4592 |
# File 'lib/v20191205/models.rb', line 4590 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 |
# File 'lib/v20191205/models.rb', line 4602 def deserialize(params) @TotalCount = params['TotalCount'] unless params['DeployRecordDetailList'].nil? @DeployRecordDetailList = [] params['DeployRecordDetailList'].each do |i| deployrecorddetail_tmp = DeployRecordDetail.new deployrecorddetail_tmp.deserialize(i) @DeployRecordDetailList << deployrecorddetail_tmp end end @SuccessTotalCount = params['SuccessTotalCount'] @FailedTotalCount = params['FailedTotalCount'] @RunningTotalCount = params['RunningTotalCount'] @PendingTotalCount = params['PendingTotalCount'] @RequestId = params['RequestId'] end |