Class: TencentCloud::Cdb::V20170320::Parameter
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdb::V20170320::Parameter
- Defined in:
- lib/v20170320/models.rb
Overview
数据库实例参数
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, currentvalue = nil) ⇒ Parameter
constructor
A new instance of Parameter.
Constructor Details
#initialize(name = nil, currentvalue = nil) ⇒ Parameter
Returns a new instance of Parameter.
12337 12338 12339 12340 |
# File 'lib/v20170320/models.rb', line 12337 def initialize(name=nil, currentvalue=nil) @Name = name @CurrentValue = currentvalue end |
Instance Attribute Details
#CurrentValue ⇒ Object
12335 12336 12337 |
# File 'lib/v20170320/models.rb', line 12335 def CurrentValue @CurrentValue end |
#Name ⇒ Object
12335 12336 12337 |
# File 'lib/v20170320/models.rb', line 12335 def Name @Name end |
Instance Method Details
#deserialize(params) ⇒ Object
12342 12343 12344 12345 |
# File 'lib/v20170320/models.rb', line 12342 def deserialize(params) @Name = params['Name'] @CurrentValue = params['CurrentValue'] end |