Class: TencentCloud::Cynosdb::V20190107::DescribeClusterParamsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cynosdb::V20190107::DescribeClusterParamsResponse
- Defined in:
- lib/v20190107/models.rb
Overview
DescribeClusterParams返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeClusterParamsResponse
constructor
A new instance of DescribeClusterParamsResponse.
Constructor Details
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeClusterParamsResponse
Returns a new instance of DescribeClusterParamsResponse.
6081 6082 6083 6084 6085 |
# File 'lib/v20190107/models.rb', line 6081 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
6079 6080 6081 |
# File 'lib/v20190107/models.rb', line 6079 def Items @Items end |
#RequestId ⇒ Object
6079 6080 6081 |
# File 'lib/v20190107/models.rb', line 6079 def RequestId @RequestId end |
#TotalCount ⇒ Object
6079 6080 6081 |
# File 'lib/v20190107/models.rb', line 6079 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 |
# File 'lib/v20190107/models.rb', line 6087 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| paraminfo_tmp = ParamInfo.new paraminfo_tmp.deserialize(i) @Items << paraminfo_tmp end end @RequestId = params['RequestId'] end |