Class: TencentCloud::Keewidb::V20220308::InstanceMultiParam
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Keewidb::V20220308::InstanceMultiParam
- Defined in:
- lib/v20220308/models.rb
Overview
实例多选项类型参数描述
Instance Attribute Summary collapse
- #CurrentValue ⇒ Object
- #DefaultValue ⇒ Object
- #EnumValue ⇒ Object
- #NeedRestart ⇒ Object
- #ParamName ⇒ Object
- #Status ⇒ Object
- #Tips ⇒ Object
- #ValueType ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(paramname = nil, valuetype = nil, needrestart = nil, defaultvalue = nil, currentvalue = nil, tips = nil, enumvalue = nil, status = nil) ⇒ InstanceMultiParam
constructor
A new instance of InstanceMultiParam.
Constructor Details
#initialize(paramname = nil, valuetype = nil, needrestart = nil, defaultvalue = nil, currentvalue = nil, tips = nil, enumvalue = nil, status = nil) ⇒ InstanceMultiParam
Returns a new instance of InstanceMultiParam.
2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 |
# File 'lib/v20220308/models.rb', line 2137 def initialize(paramname=nil, valuetype=nil, needrestart=nil, defaultvalue=nil, currentvalue=nil, tips=nil, enumvalue=nil, status=nil) @ParamName = paramname @ValueType = valuetype @NeedRestart = needrestart @DefaultValue = defaultvalue @CurrentValue = currentvalue @Tips = tips @EnumValue = enumvalue @Status = status end |
Instance Attribute Details
#CurrentValue ⇒ Object
2135 2136 2137 |
# File 'lib/v20220308/models.rb', line 2135 def CurrentValue @CurrentValue end |
#DefaultValue ⇒ Object
2135 2136 2137 |
# File 'lib/v20220308/models.rb', line 2135 def DefaultValue @DefaultValue end |
#EnumValue ⇒ Object
2135 2136 2137 |
# File 'lib/v20220308/models.rb', line 2135 def EnumValue @EnumValue end |
#NeedRestart ⇒ Object
2135 2136 2137 |
# File 'lib/v20220308/models.rb', line 2135 def NeedRestart @NeedRestart end |
#ParamName ⇒ Object
2135 2136 2137 |
# File 'lib/v20220308/models.rb', line 2135 def ParamName @ParamName end |
#Status ⇒ Object
2135 2136 2137 |
# File 'lib/v20220308/models.rb', line 2135 def Status @Status end |
#Tips ⇒ Object
2135 2136 2137 |
# File 'lib/v20220308/models.rb', line 2135 def Tips @Tips end |
#ValueType ⇒ Object
2135 2136 2137 |
# File 'lib/v20220308/models.rb', line 2135 def ValueType @ValueType end |
Instance Method Details
#deserialize(params) ⇒ Object
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 |
# File 'lib/v20220308/models.rb', line 2148 def deserialize(params) @ParamName = params['ParamName'] @ValueType = params['ValueType'] @NeedRestart = params['NeedRestart'] @DefaultValue = params['DefaultValue'] @CurrentValue = params['CurrentValue'] @Tips = params['Tips'] @EnumValue = params['EnumValue'] @Status = params['Status'] end |