Class: TencentCloud::Keewidb::V20220308::InstanceIntegerParam
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Keewidb::V20220308::InstanceIntegerParam
- Defined in:
- lib/v20220308/models.rb
Overview
实例整型参数描述
Instance Attribute Summary collapse
- #CurrentValue ⇒ Object
- #DefaultValue ⇒ Object
- #Max ⇒ Object
- #Min ⇒ Object
- #NeedRestart ⇒ Object
- #ParamName ⇒ Object
- #Status ⇒ Object
- #Tips ⇒ Object
- #Unit ⇒ Object
- #ValueType ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(paramname = nil, valuetype = nil, needrestart = nil, defaultvalue = nil, currentvalue = nil, tips = nil, min = nil, max = nil, status = nil, unit = nil) ⇒ InstanceIntegerParam
constructor
A new instance of InstanceIntegerParam.
Constructor Details
#initialize(paramname = nil, valuetype = nil, needrestart = nil, defaultvalue = nil, currentvalue = nil, tips = nil, min = nil, max = nil, status = nil, unit = nil) ⇒ InstanceIntegerParam
Returns a new instance of InstanceIntegerParam.
2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 |
# File 'lib/v20220308/models.rb', line 2089 def initialize(paramname=nil, valuetype=nil, needrestart=nil, defaultvalue=nil, currentvalue=nil, tips=nil, min=nil, max=nil, status=nil, unit=nil) @ParamName = paramname @ValueType = valuetype @NeedRestart = needrestart @DefaultValue = defaultvalue @CurrentValue = currentvalue @Tips = tips @Min = min @Max = max @Status = status @Unit = unit end |
Instance Attribute Details
#CurrentValue ⇒ Object
2087 2088 2089 |
# File 'lib/v20220308/models.rb', line 2087 def CurrentValue @CurrentValue end |
#DefaultValue ⇒ Object
2087 2088 2089 |
# File 'lib/v20220308/models.rb', line 2087 def DefaultValue @DefaultValue end |
#Max ⇒ Object
2087 2088 2089 |
# File 'lib/v20220308/models.rb', line 2087 def Max @Max end |
#Min ⇒ Object
2087 2088 2089 |
# File 'lib/v20220308/models.rb', line 2087 def Min @Min end |
#NeedRestart ⇒ Object
2087 2088 2089 |
# File 'lib/v20220308/models.rb', line 2087 def NeedRestart @NeedRestart end |
#ParamName ⇒ Object
2087 2088 2089 |
# File 'lib/v20220308/models.rb', line 2087 def ParamName @ParamName end |
#Status ⇒ Object
2087 2088 2089 |
# File 'lib/v20220308/models.rb', line 2087 def Status @Status end |
#Tips ⇒ Object
2087 2088 2089 |
# File 'lib/v20220308/models.rb', line 2087 def Tips @Tips end |
#Unit ⇒ Object
2087 2088 2089 |
# File 'lib/v20220308/models.rb', line 2087 def Unit @Unit end |
#ValueType ⇒ Object
2087 2088 2089 |
# File 'lib/v20220308/models.rb', line 2087 def ValueType @ValueType end |
Instance Method Details
#deserialize(params) ⇒ Object
2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 |
# File 'lib/v20220308/models.rb', line 2102 def deserialize(params) @ParamName = params['ParamName'] @ValueType = params['ValueType'] @NeedRestart = params['NeedRestart'] @DefaultValue = params['DefaultValue'] @CurrentValue = params['CurrentValue'] @Tips = params['Tips'] @Min = params['Min'] @Max = params['Max'] @Status = params['Status'] @Unit = params['Unit'] end |