Class: TencentCloud::Csip::V20221121::DescribeExposeAssetCategoryResponse

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

Overview

DescribeExposeAssetCategory返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(exposeassettypelist = nil, requestid = nil) ⇒ DescribeExposeAssetCategoryResponse

Returns a new instance of DescribeExposeAssetCategoryResponse.



5752
5753
5754
5755
# File 'lib/v20221121/models.rb', line 5752

def initialize(exposeassettypelist=nil, requestid=nil)
  @ExposeAssetTypeList = exposeassettypelist
  @RequestId = requestid
end

Instance Attribute Details

#ExposeAssetTypeListObject

Parameters:

  • ExposeAssetTypeList:

    云边界分析资产分类列表

  • RequestId:

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



5750
5751
5752
# File 'lib/v20221121/models.rb', line 5750

def ExposeAssetTypeList
  @ExposeAssetTypeList
end

#RequestIdObject

Parameters:

  • ExposeAssetTypeList:

    云边界分析资产分类列表

  • RequestId:

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



5750
5751
5752
# File 'lib/v20221121/models.rb', line 5750

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
# File 'lib/v20221121/models.rb', line 5757

def deserialize(params)
  unless params['ExposeAssetTypeList'].nil?
    @ExposeAssetTypeList = []
    params['ExposeAssetTypeList'].each do |i|
      exposeassettypeitem_tmp = ExposeAssetTypeItem.new
      exposeassettypeitem_tmp.deserialize(i)
      @ExposeAssetTypeList << exposeassettypeitem_tmp
    end
  end
  @RequestId = params['RequestId']
end