Class: TencentCloud::Cdb::V20170320::DescribeInstanceParamRecordsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdb::V20170320::DescribeInstanceParamRecordsResponse
- Defined in:
- lib/v20170320/models.rb
Overview
DescribeInstanceParamRecords返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeInstanceParamRecordsResponse
constructor
A new instance of DescribeInstanceParamRecordsResponse.
Constructor Details
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeInstanceParamRecordsResponse
Returns a new instance of DescribeInstanceParamRecordsResponse.
7293 7294 7295 7296 7297 |
# File 'lib/v20170320/models.rb', line 7293 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
7291 7292 7293 |
# File 'lib/v20170320/models.rb', line 7291 def Items @Items end |
#RequestId ⇒ Object
7291 7292 7293 |
# File 'lib/v20170320/models.rb', line 7291 def RequestId @RequestId end |
#TotalCount ⇒ Object
7291 7292 7293 |
# File 'lib/v20170320/models.rb', line 7291 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 |
# File 'lib/v20170320/models.rb', line 7299 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| paramrecord_tmp = ParamRecord.new paramrecord_tmp.deserialize(i) @Items << paramrecord_tmp end end @RequestId = params['RequestId'] end |