Class: TencentCloud::Dcdb::V20180411::DBParamValue

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180411/models.rb

Overview

云数据库参数信息。

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(param = nil, value = nil) ⇒ DBParamValue

Returns a new instance of DBParamValue.



1244
1245
1246
1247
# File 'lib/v20180411/models.rb', line 1244

def initialize(param=nil, value=nil)
  @Param = param
  @Value = value
end

Instance Attribute Details

#ParamObject

Parameters:

  • Param:

    参数名称

  • Value:

    参数值



1242
1243
1244
# File 'lib/v20180411/models.rb', line 1242

def Param
  @Param
end

#ValueObject

Parameters:

  • Param:

    参数名称

  • Value:

    参数值



1242
1243
1244
# File 'lib/v20180411/models.rb', line 1242

def Value
  @Value
end

Instance Method Details

#deserialize(params) ⇒ Object



1249
1250
1251
1252
# File 'lib/v20180411/models.rb', line 1249

def deserialize(params)
  @Param = params['Param']
  @Value = params['Value']
end