Class: TencentCloud::Cwp::V20180228::ExportJavaMemShellPluginsRequest

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

Overview

ExportJavaMemShellPlugins请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(filters = nil, where = nil) ⇒ ExportJavaMemShellPluginsRequest

Returns a new instance of ExportJavaMemShellPluginsRequest.



27821
27822
27823
27824
# File 'lib/v20180228/models.rb', line 27821

def initialize(filters=nil, where=nil)
  @Filters = filters
  @Where = where
end

Instance Attribute Details

#FiltersObject

Parameters:

  • Filters:

    过滤条件:Keywords: ip或者主机名模糊查询, Pid精确匹配,MainClass模糊匹配

  • Where:

    导出字段



27819
27820
27821
# File 'lib/v20180228/models.rb', line 27819

def Filters
  @Filters
end

#WhereObject

Parameters:

  • Filters:

    过滤条件:Keywords: ip或者主机名模糊查询, Pid精确匹配,MainClass模糊匹配

  • Where:

    导出字段



27819
27820
27821
# File 'lib/v20180228/models.rb', line 27819

def Where
  @Where
end

Instance Method Details

#deserialize(params) ⇒ Object



27826
27827
27828
27829
27830
27831
27832
27833
27834
27835
27836
# File 'lib/v20180228/models.rb', line 27826

def deserialize(params)
  unless params['Filters'].nil?
    @Filters = []
    params['Filters'].each do |i|
      filter_tmp = Filter.new
      filter_tmp.deserialize(i)
      @Filters << filter_tmp
    end
  end
  @Where = params['Where']
end