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.
4467 4468 4469 4470 4471 |
# File 'lib/v20170312/models.rb', line 4467 def initialize(totalcount=nil, detail=nil, requestid=nil) @TotalCount = totalcount @Detail = detail @RequestId = requestid end |
Instance Attribute Details
#Detail ⇒ Object
4465 4466 4467 |
# File 'lib/v20170312/models.rb', line 4465 def Detail @Detail end |
#RequestId ⇒ Object
4465 4466 4467 |
# File 'lib/v20170312/models.rb', line 4465 def RequestId @RequestId end |
#TotalCount ⇒ Object
4465 4466 4467 |
# File 'lib/v20170312/models.rb', line 4465 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4473 4474 4475 4476 4477 4478 4479 4480 |
# File 'lib/v20170312/models.rb', line 4473 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Detail'].nil? @Detail = Detail.new @Detail.deserialize(params['Detail']) end @RequestId = params['RequestId'] end |