Class: TencentCloud::Sqlserver::V20180328::Parameter
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Sqlserver::V20180328::Parameter
- Defined in:
- lib/v20180328/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.
9886 9887 9888 9889 |
# File 'lib/v20180328/models.rb', line 9886 def initialize(name=nil, currentvalue=nil) @Name = name @CurrentValue = currentvalue end |
Instance Attribute Details
#CurrentValue ⇒ Object
9884 9885 9886 |
# File 'lib/v20180328/models.rb', line 9884 def CurrentValue @CurrentValue end |
#Name ⇒ Object
9884 9885 9886 |
# File 'lib/v20180328/models.rb', line 9884 def Name @Name end |
Instance Method Details
#deserialize(params) ⇒ Object
9891 9892 9893 9894 |
# File 'lib/v20180328/models.rb', line 9891 def deserialize(params) @Name = params['Name'] @CurrentValue = params['CurrentValue'] end |