Class: TencentCloud::Cwp::V20180228::DescribeJavaMemShellPluginListResponse

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

Overview

DescribeJavaMemShellPluginList返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(list = nil, totalcount = nil, requestid = nil) ⇒ DescribeJavaMemShellPluginListResponse

Returns a new instance of DescribeJavaMemShellPluginListResponse.



15908
15909
15910
15911
15912
# File 'lib/v20180228/models.rb', line 15908

def initialize(list=nil, totalcount=nil, requestid=nil)
  @List = list
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#ListObject

Parameters:

  • List:

    java内存马插件列表

  • TotalCount:

    总数

  • RequestId:

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



15906
15907
15908
# File 'lib/v20180228/models.rb', line 15906

def List
  @List
end

#RequestIdObject

Parameters:

  • List:

    java内存马插件列表

  • TotalCount:

    总数

  • RequestId:

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



15906
15907
15908
# File 'lib/v20180228/models.rb', line 15906

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • List:

    java内存马插件列表

  • TotalCount:

    总数

  • RequestId:

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



15906
15907
15908
# File 'lib/v20180228/models.rb', line 15906

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



15914
15915
15916
15917
15918
15919
15920
15921
15922
15923
15924
15925
# File 'lib/v20180228/models.rb', line 15914

def deserialize(params)
  unless params['List'].nil?
    @List = []
    params['List'].each do |i|
      javamemshellpluginsetting_tmp = JavaMemShellPluginSetting.new
      javamemshellpluginsetting_tmp.deserialize(i)
      @List << javamemshellpluginsetting_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end