Class: TencentCloud::Postgres::V20170312::DescribeSlowQueryAnalysisResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Postgres::V20170312::DescribeSlowQueryAnalysisResponse
- Defined in:
- lib/v20170312/models.rb
Overview
DescribeSlowQueryAnalysis返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, detail = nil, requestid = nil) ⇒ DescribeSlowQueryAnalysisResponse
constructor
A new instance of DescribeSlowQueryAnalysisResponse.
Constructor Details
#initialize(totalcount = nil, detail = nil, requestid = nil) ⇒ DescribeSlowQueryAnalysisResponse
Returns a new instance of DescribeSlowQueryAnalysisResponse.
4381 4382 4383 4384 4385 |
# File 'lib/v20170312/models.rb', line 4381 def initialize(totalcount=nil, detail=nil, requestid=nil) @TotalCount = totalcount @Detail = detail @RequestId = requestid end |
Instance Attribute Details
#Detail ⇒ Object
4379 4380 4381 |
# File 'lib/v20170312/models.rb', line 4379 def Detail @Detail end |
#RequestId ⇒ Object
4379 4380 4381 |
# File 'lib/v20170312/models.rb', line 4379 def RequestId @RequestId end |
#TotalCount ⇒ Object
4379 4380 4381 |
# File 'lib/v20170312/models.rb', line 4379 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4387 4388 4389 4390 4391 4392 4393 4394 |
# File 'lib/v20170312/models.rb', line 4387 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Detail'].nil? @Detail = Detail.new @Detail.deserialize(params['Detail']) end @RequestId = params['RequestId'] end |