Class: TencentCloud::Sqlserver::V20180328::DescribeInstanceParamsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Sqlserver::V20180328::DescribeInstanceParamsResponse
- Defined in:
- lib/v20180328/models.rb
Overview
DescribeInstanceParams返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeInstanceParamsResponse
constructor
A new instance of DescribeInstanceParamsResponse.
Constructor Details
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeInstanceParamsResponse
Returns a new instance of DescribeInstanceParamsResponse.
5431 5432 5433 5434 5435 |
# File 'lib/v20180328/models.rb', line 5431 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
5429 5430 5431 |
# File 'lib/v20180328/models.rb', line 5429 def Items @Items end |
#RequestId ⇒ Object
5429 5430 5431 |
# File 'lib/v20180328/models.rb', line 5429 def RequestId @RequestId end |
#TotalCount ⇒ Object
5429 5430 5431 |
# File 'lib/v20180328/models.rb', line 5429 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 |
# File 'lib/v20180328/models.rb', line 5437 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| parameterdetail_tmp = ParameterDetail.new parameterdetail_tmp.deserialize(i) @Items << parameterdetail_tmp end end @RequestId = params['RequestId'] end |