Class: TencentCloud::Yunjing::V20180228::DescribeMalwaresRequest

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

Overview

DescribeMalwares请求参数结构体

Instance Attribute Summary collapse

  • #Limit ⇒ Object
  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 木马状态(UN_OPERATED: 未处理 | SEGREGATED: 已隔离|TRUSTED:信任)
  • 每个过滤条件只支持一个值,暂不支持多个值“或”关系查询。.
  • #Offset ⇒ Object
  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 木马状态(UN_OPERATED: 未处理 | SEGREGATED: 已隔离|TRUSTED:信任)
  • 每个过滤条件只支持一个值,暂不支持多个值“或”关系查询。.
  • #Uuid ⇒ Object
  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 木马状态(UN_OPERATED: 未处理 | SEGREGATED: 已隔离|TRUSTED:信任)
  • 每个过滤条件只支持一个值,暂不支持多个值“或”关系查询。.

    Instance Method Summary collapse

    Constructor Details

    #initialize(uuid = nil, limit = nil, offset = nil, filters = nil) ⇒ DescribeMalwaresRequest

    Returns a new instance of DescribeMalwaresRequest.

    
    
    2587
    2588
    2589
    2590
    2591
    2592
    # File 'lib/v20180228/models.rb', line 2587
    
    def initialize(uuid=nil, limit=nil, offset=nil, filters=nil)
      @Uuid = uuid
      @Limit = limit
      @Offset = offset
      @Filters = filters
    end

    Instance Attribute Details

    #FiltersObject

  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 木马状态(UN_OPERATED: 未处理 | SEGREGATED: 已隔离|TRUSTED:信任)
  • 每个过滤条件只支持一个值,暂不支持多个值“或”关系查询。

    Parameters:

    • Uuid:

      客户端唯一Uuid。

    • Limit:

      返回数量,默认为10,最大值为100。

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    2585
    2586
    2587
    # File 'lib/v20180228/models.rb', line 2585
    
    def Filters
      @Filters
    end

    #LimitObject

  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 木马状态(UN_OPERATED: 未处理 | SEGREGATED: 已隔离|TRUSTED:信任)
  • 每个过滤条件只支持一个值,暂不支持多个值“或”关系查询。

    Parameters:

    • Uuid:

      客户端唯一Uuid。

    • Limit:

      返回数量,默认为10,最大值为100。

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    2585
    2586
    2587
    # File 'lib/v20180228/models.rb', line 2585
    
    def Limit
      @Limit
    end

    #OffsetObject

  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 木马状态(UN_OPERATED: 未处理 | SEGREGATED: 已隔离|TRUSTED:信任)
  • 每个过滤条件只支持一个值,暂不支持多个值“或”关系查询。

    Parameters:

    • Uuid:

      客户端唯一Uuid。

    • Limit:

      返回数量,默认为10,最大值为100。

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    2585
    2586
    2587
    # File 'lib/v20180228/models.rb', line 2585
    
    def Offset
      @Offset
    end

    #UuidObject

  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 木马状态(UN_OPERATED: 未处理 | SEGREGATED: 已隔离|TRUSTED:信任)
  • 每个过滤条件只支持一个值,暂不支持多个值“或”关系查询。

    Parameters:

    • Uuid:

      客户端唯一Uuid。

    • Limit:

      返回数量,默认为10,最大值为100。

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    2585
    2586
    2587
    # File 'lib/v20180228/models.rb', line 2585
    
    def Uuid
      @Uuid
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    2594
    2595
    2596
    2597
    2598
    2599
    2600
    2601
    2602
    2603
    2604
    2605
    2606
    # File 'lib/v20180228/models.rb', line 2594
    
    def deserialize(params)
      @Uuid = params['Uuid']
      @Limit = params['Limit']
      @Offset = params['Offset']
      unless params['Filters'].nil?
        @Filters = []
        params['Filters'].each do |i|
          filter_tmp = Filter.new
          filter_tmp.deserialize(i)
          @Filters << filter_tmp
        end
      end
    end