Class: TencentCloud::Yunjing::V20180228::DescribeBruteAttacksRequest

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

Overview

DescribeBruteAttacks请求参数结构体

Instance Attribute Summary collapse

  • #Limit ⇒ Object
  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 查询状态(FAILED:破解失败 |SUCCESS:破解成功)
  • .
  • #Offset ⇒ Object
  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 查询状态(FAILED:破解失败 |SUCCESS:破解成功)
  • .
  • #Uuid ⇒ Object
  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 查询状态(FAILED:破解失败 |SUCCESS:破解成功)
  • .

    Instance Method Summary collapse

    Constructor Details

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

    Returns a new instance of DescribeBruteAttacksRequest.

    
    
    1883
    1884
    1885
    1886
    1887
    1888
    # File 'lib/v20180228/models.rb', line 1883
    
    def initialize(uuid=nil, offset=nil, filters=nil, limit=nil)
      @Uuid = uuid
      @Offset = offset
      @Filters = filters
      @Limit = limit
    end

    Instance Attribute Details

    #FiltersObject

  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 查询状态(FAILED:破解失败 |SUCCESS:破解成功)
  • Parameters:

    • Uuid:

      客户端唯一Uuid。

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    • Limit:

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

    
    
    1881
    1882
    1883
    # File 'lib/v20180228/models.rb', line 1881
    
    def Filters
      @Filters
    end

    #LimitObject

  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 查询状态(FAILED:破解失败 |SUCCESS:破解成功)
  • Parameters:

    • Uuid:

      客户端唯一Uuid。

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    • Limit:

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

    
    
    1881
    1882
    1883
    # File 'lib/v20180228/models.rb', line 1881
    
    def Limit
      @Limit
    end

    #OffsetObject

  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 查询状态(FAILED:破解失败 |SUCCESS:破解成功)
  • Parameters:

    • Uuid:

      客户端唯一Uuid。

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    • Limit:

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

    
    
    1881
    1882
    1883
    # File 'lib/v20180228/models.rb', line 1881
    
    def Offset
      @Offset
    end

    #UuidObject

  • Keywords - String - 是否必填:否 - 查询关键字
  • Status - String - 是否必填:否 - 查询状态(FAILED:破解失败 |SUCCESS:破解成功)
  • Parameters:

    • Uuid:

      客户端唯一Uuid。

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    • Limit:

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

    
    
    1881
    1882
    1883
    # File 'lib/v20180228/models.rb', line 1881
    
    def Uuid
      @Uuid
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    1890
    1891
    1892
    1893
    1894
    1895
    1896
    1897
    1898
    1899
    1900
    1901
    1902
    # File 'lib/v20180228/models.rb', line 1890
    
    def deserialize(params)
      @Uuid = params['Uuid']
      @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
      @Limit = params['Limit']
    end