Class: TencentCloud::Dbbrain::V20210527::DescribeSlowLogsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20210527::DescribeSlowLogsResponse
- Defined in:
- lib/v20210527/models.rb
Overview
DescribeSlowLogs返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, rows = nil, requestid = nil) ⇒ DescribeSlowLogsResponse
constructor
A new instance of DescribeSlowLogsResponse.
Constructor Details
#initialize(totalcount = nil, rows = nil, requestid = nil) ⇒ DescribeSlowLogsResponse
4567 4568 4569 4570 4571 |
# File 'lib/v20210527/models.rb', line 4567 def initialize(totalcount=nil, rows=nil, requestid=nil) @TotalCount = totalcount @Rows = rows @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
4565 4566 4567 |
# File 'lib/v20210527/models.rb', line 4565 def RequestId @RequestId end |
#Rows ⇒ Object
4565 4566 4567 |
# File 'lib/v20210527/models.rb', line 4565 def Rows @Rows end |
#TotalCount ⇒ Object
4565 4566 4567 |
# File 'lib/v20210527/models.rb', line 4565 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 |
# File 'lib/v20210527/models.rb', line 4573 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Rows'].nil? @Rows = [] params['Rows'].each do |i| slowloginfoitem_tmp = SlowLogInfoItem.new slowloginfoitem_tmp.deserialize(i) @Rows << slowloginfoitem_tmp end end @RequestId = params['RequestId'] end |