Class: TencentCloud::Keewidb::V20220308::InstanceParamHistory
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Keewidb::V20220308::InstanceParamHistory
- Defined in:
- lib/v20220308/models.rb
Overview
实例参数修改历史
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(paramname = nil, prevalue = nil, newvalue = nil, status = nil, modifytime = nil) ⇒ InstanceParamHistory
constructor
A new instance of InstanceParamHistory.
Constructor Details
#initialize(paramname = nil, prevalue = nil, newvalue = nil, status = nil, modifytime = nil) ⇒ InstanceParamHistory
Returns a new instance of InstanceParamHistory.
2215 2216 2217 2218 2219 2220 2221 |
# File 'lib/v20220308/models.rb', line 2215 def initialize(paramname=nil, prevalue=nil, newvalue=nil, status=nil, modifytime=nil) @ParamName = paramname @PreValue = prevalue @NewValue = newvalue @Status = status @ModifyTime = modifytime end |
Instance Attribute Details
#ModifyTime ⇒ Object
2213 2214 2215 |
# File 'lib/v20220308/models.rb', line 2213 def ModifyTime @ModifyTime end |
#NewValue ⇒ Object
2213 2214 2215 |
# File 'lib/v20220308/models.rb', line 2213 def NewValue @NewValue end |
#ParamName ⇒ Object
2213 2214 2215 |
# File 'lib/v20220308/models.rb', line 2213 def ParamName @ParamName end |
#PreValue ⇒ Object
2213 2214 2215 |
# File 'lib/v20220308/models.rb', line 2213 def PreValue @PreValue end |
#Status ⇒ Object
2213 2214 2215 |
# File 'lib/v20220308/models.rb', line 2213 def Status @Status end |
Instance Method Details
#deserialize(params) ⇒ Object
2223 2224 2225 2226 2227 2228 2229 |
# File 'lib/v20220308/models.rb', line 2223 def deserialize(params) @ParamName = params['ParamName'] @PreValue = params['PreValue'] @NewValue = params['NewValue'] @Status = params['Status'] @ModifyTime = params['ModifyTime'] end |