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.



27360
27361
27362
27363
# File 'lib/v20180228/models.rb', line 27360

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

Instance Attribute Details

#FiltersObject

Parameters:

  • Filters:

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

  • Where:

    导出字段



27358
27359
27360
# File 'lib/v20180228/models.rb', line 27358

def Filters
  @Filters
end

#WhereObject

Parameters:

  • Filters:

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

  • Where:

    导出字段



27358
27359
27360
# File 'lib/v20180228/models.rb', line 27358

def Where
  @Where
end

Instance Method Details

#deserialize(params) ⇒ Object



27365
27366
27367
27368
27369
27370
27371
27372
27373
27374
27375
# File 'lib/v20180228/models.rb', line 27365

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