Class: TencentCloud::Cdb::V20170320::Parameter

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

Overview

数据库实例参数

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, currentvalue = nil) ⇒ Parameter

Returns a new instance of Parameter.



12307
12308
12309
12310
# File 'lib/v20170320/models.rb', line 12307

def initialize(name=nil, currentvalue=nil)
  @Name = name
  @CurrentValue = currentvalue
end

Instance Attribute Details

#CurrentValueObject

Parameters:

  • Name:

    参数名称

  • CurrentValue:

    参数值



12305
12306
12307
# File 'lib/v20170320/models.rb', line 12305

def CurrentValue
  @CurrentValue
end

#NameObject

Parameters:

  • Name:

    参数名称

  • CurrentValue:

    参数值



12305
12306
12307
# File 'lib/v20170320/models.rb', line 12305

def Name
  @Name
end

Instance Method Details

#deserialize(params) ⇒ Object



12312
12313
12314
12315
# File 'lib/v20170320/models.rb', line 12312

def deserialize(params)
  @Name = params['Name']
  @CurrentValue = params['CurrentValue']
end