Class: TencentCloud::Cls::V20201016::HistogramInfo

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

Overview

直方图详细信息

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(count = nil, btime = nil) ⇒ HistogramInfo

Returns a new instance of HistogramInfo.



11580
11581
11582
11583
# File 'lib/v20201016/models.rb', line 11580

def initialize(count=nil, btime=nil)
  @Count = count
  @BTime = btime
end

Instance Attribute Details

#BTime ⇒ Object

Parameters:

  • Count: —

    统计周期内的日志条数

  • BTime: —

    按 period 取整后的 unix timestamp: 单位毫秒



11578
11579
11580
# File 'lib/v20201016/models.rb', line 11578

def BTime
  @BTime
end

#Count ⇒ Object

Parameters:

  • Count: —

    统计周期内的日志条数

  • BTime: —

    按 period 取整后的 unix timestamp: 单位毫秒



11578
11579
11580
# File 'lib/v20201016/models.rb', line 11578

def Count
  @Count
end

Instance Method Details

#deserialize(params) ⇒ Object



11585
11586
11587
11588
# File 'lib/v20201016/models.rb', line 11585

def deserialize(params)
  @Count = params['Count']
  @BTime = params['BTime']
end