Class: TencentCloud::Yunjing::V20180228::DescribeHistoryAccountsRequest

Inherits:
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.

    
    
    2139
    2140
    2141
    2142
    2143
    2144
    # File 'lib/v20180228/models.rb', line 2139
    
    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:

      过滤条件。

    
    
    2137
    2138
    2139
    # File 'lib/v20180228/models.rb', line 2137
    
    def Filters
      @Filters
    end

    #LimitObject

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

    • Uuid:

      云镜客户端唯一Uuid。

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    2137
    2138
    2139
    # File 'lib/v20180228/models.rb', line 2137
    
    def Limit
      @Limit
    end

    #OffsetObject

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

    • Uuid:

      云镜客户端唯一Uuid。

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    2137
    2138
    2139
    # File 'lib/v20180228/models.rb', line 2137
    
    def Offset
      @Offset
    end

    #UuidObject

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

    • Uuid:

      云镜客户端唯一Uuid。

    • Limit:

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

    • Offset:

      偏移量,默认为0。

    • Filters:

      过滤条件。

    
    
    2137
    2138
    2139
    # File 'lib/v20180228/models.rb', line 2137
    
    def Uuid
      @Uuid
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    2146
    2147
    2148
    2149
    2150
    2151
    2152
    2153
    2154
    2155
    2156
    2157
    2158
    # File 'lib/v20180228/models.rb', line 2146
    
    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