Class: TencentCloud::Yunjing::V20180228::DescribeReverseShellEventsRequest

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

Overview

DescribeReverseShellEvents请求参数结构体

Instance Attribute Summary collapse

  • #Limit ⇒ Object
  • Keywords - String - 是否必填:否 - 关键字(主机内网IP|进程名)
  • .
  • #Offset ⇒ Object
  • Keywords - String - 是否必填:否 - 关键字(主机内网IP|进程名)
  • .

    Instance Method Summary collapse

    Constructor Details

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

    Returns a new instance of DescribeReverseShellEventsRequest.

    
    
    3291
    3292
    3293
    3294
    3295
    # File 'lib/v20180228/models.rb', line 3291
    
    def initialize(limit=nil, offset=nil, filters=nil)
      @Limit = limit
      @Offset = offset
      @Filters = filters
    end

    Instance Attribute Details

    #FiltersObject

  • Keywords - String - 是否必填:否 - 关键字(主机内网IP|进程名)
  • Parameters:

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    3289
    3290
    3291
    # File 'lib/v20180228/models.rb', line 3289
    
    def Filters
      @Filters
    end

    #LimitObject

  • Keywords - String - 是否必填:否 - 关键字(主机内网IP|进程名)
  • Parameters:

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    3289
    3290
    3291
    # File 'lib/v20180228/models.rb', line 3289
    
    def Limit
      @Limit
    end

    #OffsetObject

  • Keywords - String - 是否必填:否 - 关键字(主机内网IP|进程名)
  • Parameters:

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    3289
    3290
    3291
    # File 'lib/v20180228/models.rb', line 3289
    
    def Offset
      @Offset
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    3297
    3298
    3299
    3300
    3301
    3302
    3303
    3304
    3305
    3306
    3307
    3308
    # File 'lib/v20180228/models.rb', line 3297
    
    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