Class: TencentCloud::Yunjing::V20180228::DescribeBashEventsRequest

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

Overview

DescribeBashEvents请求参数结构体

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) ⇒ DescribeBashEventsRequest

    Returns a new instance of DescribeBashEventsRequest.

    
    
    1750
    1751
    1752
    1753
    1754
    # File 'lib/v20180228/models.rb', line 1750
    
    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:

      过滤条件。

    
    
    1748
    1749
    1750
    # File 'lib/v20180228/models.rb', line 1748
    
    def Filters
      @Filters
    end

    #LimitObject

  • Keywords - String - 是否必填:否 - 关键词(主机内网IP)
  • Parameters:

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    1748
    1749
    1750
    # File 'lib/v20180228/models.rb', line 1748
    
    def Limit
      @Limit
    end

    #OffsetObject

  • Keywords - String - 是否必填:否 - 关键词(主机内网IP)
  • Parameters:

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    1748
    1749
    1750
    # File 'lib/v20180228/models.rb', line 1748
    
    def Offset
      @Offset
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    1756
    1757
    1758
    1759
    1760
    1761
    1762
    1763
    1764
    1765
    1766
    1767
    # File 'lib/v20180228/models.rb', line 1756
    
    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