Class: TencentCloud::Sqlserver::V20180328::ParamRecord
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Sqlserver::V20180328::ParamRecord
- Defined in:
- lib/v20180328/models.rb
Overview
实例参数修改记录
Instance Attribute Summary collapse
- #InstanceId ⇒ Object
- #ModifyTime ⇒ Object
- #NewValue ⇒ Object
- #OldValue ⇒ Object
- #ParamName ⇒ Object
- #Status ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, paramname = nil, oldvalue = nil, newvalue = nil, status = nil, modifytime = nil) ⇒ ParamRecord
constructor
A new instance of ParamRecord.
Constructor Details
#initialize(instanceid = nil, paramname = nil, oldvalue = nil, newvalue = nil, status = nil, modifytime = nil) ⇒ ParamRecord
Returns a new instance of ParamRecord.
9858 9859 9860 9861 9862 9863 9864 9865 |
# File 'lib/v20180328/models.rb', line 9858 def initialize(instanceid=nil, paramname=nil, oldvalue=nil, newvalue=nil, status=nil, modifytime=nil) @InstanceId = instanceid @ParamName = paramname @OldValue = oldvalue @NewValue = newvalue @Status = status @ModifyTime = modifytime end |
Instance Attribute Details
#InstanceId ⇒ Object
9856 9857 9858 |
# File 'lib/v20180328/models.rb', line 9856 def InstanceId @InstanceId end |
#ModifyTime ⇒ Object
9856 9857 9858 |
# File 'lib/v20180328/models.rb', line 9856 def ModifyTime @ModifyTime end |
#NewValue ⇒ Object
9856 9857 9858 |
# File 'lib/v20180328/models.rb', line 9856 def NewValue @NewValue end |
#OldValue ⇒ Object
9856 9857 9858 |
# File 'lib/v20180328/models.rb', line 9856 def OldValue @OldValue end |
#ParamName ⇒ Object
9856 9857 9858 |
# File 'lib/v20180328/models.rb', line 9856 def ParamName @ParamName end |
#Status ⇒ Object
9856 9857 9858 |
# File 'lib/v20180328/models.rb', line 9856 def Status @Status end |
Instance Method Details
#deserialize(params) ⇒ Object
9867 9868 9869 9870 9871 9872 9873 9874 |
# File 'lib/v20180328/models.rb', line 9867 def deserialize(params) @InstanceId = params['InstanceId'] @ParamName = params['ParamName'] @OldValue = params['OldValue'] @NewValue = params['NewValue'] @Status = params['Status'] @ModifyTime = params['ModifyTime'] end |