Class: TencentCloud::Cwp::V20180228::DescribeHistoryAccountsRequest

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

Overview

DescribeHistoryAccounts请求参数结构体

Instance Attribute Summary collapse

  • #Limit ⇒ Object
  • Username - String - 是否必填:否 - 帐号名
  • .
  • #Offset ⇒ Object
  • Username - String - 是否必填:否 - 帐号名
  • .
  • #Uuid ⇒ Object
  • Username - String - 是否必填:否 - 帐号名
  • .

    Instance Method Summary collapse

    Constructor Details

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

    Returns a new instance of DescribeHistoryAccountsRequest.

    
    
    14884
    14885
    14886
    14887
    14888
    14889
    # File 'lib/v20180228/models.rb', line 14884
    
    def initialize(uuid=nil, limit=nil, offset=nil, filters=nil)
      @Uuid = uuid
      @Limit = limit
      @Offset = offset
      @Filters = filters
    end

    Instance Attribute Details

    #FiltersObject

  • Username - String - 是否必填:否 - 帐号名
  • Parameters:

    • Uuid:

      云镜客户端唯一Uuid。

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    14882
    14883
    14884
    # File 'lib/v20180228/models.rb', line 14882
    
    def Filters
      @Filters
    end

    #LimitObject

  • Username - String - 是否必填:否 - 帐号名
  • Parameters:

    • Uuid:

      云镜客户端唯一Uuid。

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    14882
    14883
    14884
    # File 'lib/v20180228/models.rb', line 14882
    
    def Limit
      @Limit
    end

    #OffsetObject

  • Username - String - 是否必填:否 - 帐号名
  • Parameters:

    • Uuid:

      云镜客户端唯一Uuid。

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    14882
    14883
    14884
    # File 'lib/v20180228/models.rb', line 14882
    
    def Offset
      @Offset
    end

    #UuidObject

  • Username - String - 是否必填:否 - 帐号名
  • Parameters:

    • Uuid:

      云镜客户端唯一Uuid。

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    14882
    14883
    14884
    # File 'lib/v20180228/models.rb', line 14882
    
    def Uuid
      @Uuid
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    14891
    14892
    14893
    14894
    14895
    14896
    14897
    14898
    14899
    14900
    14901
    14902
    14903
    # File 'lib/v20180228/models.rb', line 14891
    
    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