Class: TencentCloud::Sqlserver::V20180328::Parameter

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180328/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.



9886
9887
9888
9889
# File 'lib/v20180328/models.rb', line 9886

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

Instance Attribute Details

#CurrentValueObject

Parameters:

  • Name:

    参数名称

  • CurrentValue:

    参数值



9884
9885
9886
# File 'lib/v20180328/models.rb', line 9884

def CurrentValue
  @CurrentValue
end

#NameObject

Parameters:

  • Name:

    参数名称

  • CurrentValue:

    参数值



9884
9885
9886
# File 'lib/v20180328/models.rb', line 9884

def Name
  @Name
end

Instance Method Details

#deserialize(params) ⇒ Object



9891
9892
9893
9894
# File 'lib/v20180328/models.rb', line 9891

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