Class: TencentCloud::Cwp::V20180228::DescribeReverseShellRulesRequest

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

Overview

DescribeReverseShellRules请求参数结构体

Instance Attribute Summary collapse

  • #Limit ⇒ Object
  • Keywords - String - 是否必填:否 - 关键字(进程名称)
  • .
  • #Offset ⇒ Object
  • Keywords - String - 是否必填:否 - 关键字(进程名称)
  • .

    Instance Method Summary collapse

    Constructor Details

    #initialize(limit = nil, offset = nil, filters = nil) ⇒ DescribeReverseShellRulesRequest

    Returns a new instance of DescribeReverseShellRulesRequest.

    
    
    20059
    20060
    20061
    20062
    20063
    # File 'lib/v20180228/models.rb', line 20059
    
    def initialize(limit=nil, offset=nil, filters=nil)
      @Limit = limit
      @Offset = offset
      @Filters = filters
    end

    Instance Attribute Details

    #FiltersObject

  • Keywords - String - 是否必填:否 - 关键字(进程名称)
  • Parameters:

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    20057
    20058
    20059
    # File 'lib/v20180228/models.rb', line 20057
    
    def Filters
      @Filters
    end

    #LimitObject

  • Keywords - String - 是否必填:否 - 关键字(进程名称)
  • Parameters:

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    20057
    20058
    20059
    # File 'lib/v20180228/models.rb', line 20057
    
    def Limit
      @Limit
    end

    #OffsetObject

  • Keywords - String - 是否必填:否 - 关键字(进程名称)
  • Parameters:

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    20057
    20058
    20059
    # File 'lib/v20180228/models.rb', line 20057
    
    def Offset
      @Offset
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    20065
    20066
    20067
    20068
    20069
    20070
    20071
    20072
    20073
    20074
    20075
    20076
    # File 'lib/v20180228/models.rb', line 20065
    
    def deserialize(params)
      @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