Class: TencentCloud::Ssl::V20191205::DeployRecordList

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

Overview

托管记录详情信息

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(resourcetype = nil, list = nil, totalcount = nil) ⇒ DeployRecordList

Returns a new instance of DeployRecordList.



2710
2711
2712
2713
2714
# File 'lib/v20191205/models.rb', line 2710

def initialize(resourcetype=nil, list=nil, totalcount=nil)
  @ResourceType = resourcetype
  @List = list
  @TotalCount = totalcount
end

Instance Attribute Details

#ListObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • ResourceType:

    部署资源类型

  • List:

    部署资源详情列表

  • TotalCount:

    该部署资源总数



2708
2709
2710
# File 'lib/v20191205/models.rb', line 2708

def List
  @List
end

#ResourceTypeObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • ResourceType:

    部署资源类型

  • List:

    部署资源详情列表

  • TotalCount:

    该部署资源总数



2708
2709
2710
# File 'lib/v20191205/models.rb', line 2708

def ResourceType
  @ResourceType
end

#TotalCountObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • ResourceType:

    部署资源类型

  • List:

    部署资源详情列表

  • TotalCount:

    该部署资源总数



2708
2709
2710
# File 'lib/v20191205/models.rb', line 2708

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
# File 'lib/v20191205/models.rb', line 2716

def deserialize(params)
  @ResourceType = params['ResourceType']
  unless params['List'].nil?
    @List = []
    params['List'].each do |i|
      deployrecorditem_tmp = DeployRecordItem.new
      deployrecorditem_tmp.deserialize(i)
      @List << deployrecorditem_tmp
    end
  end
  @TotalCount = params['TotalCount']
end