Class: TencentCloud::Cynosdb::V20190107::ParamItemInfo
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cynosdb::V20190107::ParamItemInfo
- Defined in:
- lib/v20190107/models.rb
Overview
参数变化信息
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(paramname = nil, newvalue = nil, oldvalue = nil, valuefunction = nil) ⇒ ParamItemInfo
constructor
A new instance of ParamItemInfo.
Constructor Details
#initialize(paramname = nil, newvalue = nil, oldvalue = nil, valuefunction = nil) ⇒ ParamItemInfo
Returns a new instance of ParamItemInfo.
12324 12325 12326 12327 12328 12329 |
# File 'lib/v20190107/models.rb', line 12324 def initialize(paramname=nil, newvalue=nil, oldvalue=nil, valuefunction=nil) @ParamName = paramname @NewValue = newvalue @OldValue = oldvalue @ValueFunction = valuefunction end |
Instance Attribute Details
#NewValue ⇒ Object
12322 12323 12324 |
# File 'lib/v20190107/models.rb', line 12322 def NewValue @NewValue end |
#OldValue ⇒ Object
12322 12323 12324 |
# File 'lib/v20190107/models.rb', line 12322 def OldValue @OldValue end |
#ParamName ⇒ Object
12322 12323 12324 |
# File 'lib/v20190107/models.rb', line 12322 def ParamName @ParamName end |
#ValueFunction ⇒ Object
12322 12323 12324 |
# File 'lib/v20190107/models.rb', line 12322 def ValueFunction @ValueFunction end |
Instance Method Details
#deserialize(params) ⇒ Object
12331 12332 12333 12334 12335 12336 |
# File 'lib/v20190107/models.rb', line 12331 def deserialize(params) @ParamName = params['ParamName'] @NewValue = params['NewValue'] @OldValue = params['OldValue'] @ValueFunction = params['ValueFunction'] end |