Class: TencentCloud::Mongodb::V20180408::DescribeSlowLogResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mongodb::V20180408::DescribeSlowLogResponse
- Defined in:
- lib/v20180408/models.rb
Overview
DescribeSlowLog返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, slowloglist = nil, requestid = nil) ⇒ DescribeSlowLogResponse
constructor
A new instance of DescribeSlowLogResponse.
Constructor Details
#initialize(totalcount = nil, slowloglist = nil, requestid = nil) ⇒ DescribeSlowLogResponse
Returns a new instance of DescribeSlowLogResponse.
463 464 465 466 467 |
# File 'lib/v20180408/models.rb', line 463 def initialize(totalcount=nil, slowloglist=nil, requestid=nil) @TotalCount = totalcount @SlowLogList = slowloglist @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
461 462 463 |
# File 'lib/v20180408/models.rb', line 461 def RequestId @RequestId end |
#SlowLogList ⇒ Object
461 462 463 |
# File 'lib/v20180408/models.rb', line 461 def SlowLogList @SlowLogList end |
#TotalCount ⇒ Object
461 462 463 |
# File 'lib/v20180408/models.rb', line 461 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
469 470 471 472 473 |
# File 'lib/v20180408/models.rb', line 469 def deserialize(params) @TotalCount = params['TotalCount'] @SlowLogList = params['SlowLogList'] @RequestId = params['RequestId'] end |