Class: TencentCloud::Ssl::V20191205::DescribeHostDeployRecordResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20191205/models.rb

Overview

DescribeHostDeployRecord返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, deployrecordlist = nil, requestid = nil) ⇒ DescribeHostDeployRecordResponse

Returns a new instance of DescribeHostDeployRecordResponse.



4659
4660
4661
4662
4663
# File 'lib/v20191205/models.rb', line 4659

def initialize(totalcount=nil, deployrecordlist=nil, requestid=nil)
  @TotalCount = totalcount
  @DeployRecordList = deployrecordlist
  @RequestId = requestid
end

Instance Attribute Details

#DeployRecordListObject

Parameters:

  • TotalCount:

    总数

  • DeployRecordList:

    证书部署记录列表

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



4657
4658
4659
# File 'lib/v20191205/models.rb', line 4657

def DeployRecordList
  @DeployRecordList
end

#RequestIdObject

Parameters:

  • TotalCount:

    总数

  • DeployRecordList:

    证书部署记录列表

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



4657
4658
4659
# File 'lib/v20191205/models.rb', line 4657

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • TotalCount:

    总数

  • DeployRecordList:

    证书部署记录列表

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



4657
4658
4659
# File 'lib/v20191205/models.rb', line 4657

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
# File 'lib/v20191205/models.rb', line 4665

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['DeployRecordList'].nil?
    @DeployRecordList = []
    params['DeployRecordList'].each do |i|
      deployrecordinfo_tmp = DeployRecordInfo.new
      deployrecordinfo_tmp.deserialize(i)
      @DeployRecordList << deployrecordinfo_tmp
    end
  end
  @RequestId = params['RequestId']
end