Class: TencentCloud::Postgres::V20170312::DescribeDefaultParametersResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Postgres::V20170312::DescribeDefaultParametersResponse
- Defined in:
- lib/v20170312/models.rb
Overview
DescribeDefaultParameters返回参数结构体
Instance Attribute Summary collapse
-
#ParamInfoSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, paraminfoset = nil, requestid = nil) ⇒ DescribeDefaultParametersResponse
constructor
A new instance of DescribeDefaultParametersResponse.
Constructor Details
#initialize(totalcount = nil, paraminfoset = nil, requestid = nil) ⇒ DescribeDefaultParametersResponse
Returns a new instance of DescribeDefaultParametersResponse.
3740 3741 3742 3743 3744 |
# File 'lib/v20170312/models.rb', line 3740 def initialize(totalcount=nil, paraminfoset=nil, requestid=nil) @TotalCount = totalcount @ParamInfoSet = paraminfoset @RequestId = requestid end |
Instance Attribute Details
#ParamInfoSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3738 3739 3740 |
# File 'lib/v20170312/models.rb', line 3738 def ParamInfoSet @ParamInfoSet end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3738 3739 3740 |
# File 'lib/v20170312/models.rb', line 3738 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3738 3739 3740 |
# File 'lib/v20170312/models.rb', line 3738 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 |
# File 'lib/v20170312/models.rb', line 3746 def deserialize(params) @TotalCount = params['TotalCount'] unless params['ParamInfoSet'].nil? @ParamInfoSet = [] params['ParamInfoSet'].each do |i| paraminfo_tmp = ParamInfo.new paraminfo_tmp.deserialize(i) @ParamInfoSet << paraminfo_tmp end end @RequestId = params['RequestId'] end |