Class: TencentCloud::Tcaplusdb::V20190823::ModifyTableGroupNameRequest

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

Overview

ModifyTableGroupName请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(clusterid = nil, tablegroupid = nil, tablegroupname = nil) ⇒ ModifyTableGroupNameRequest

Returns a new instance of ModifyTableGroupNameRequest.



3125
3126
3127
3128
3129
# File 'lib/v20190823/models.rb', line 3125

def initialize(clusterid=nil, tablegroupid=nil, tablegroupname=nil)
  @ClusterId = clusterid
  @TableGroupId = tablegroupid
  @TableGroupName = tablegroupname
end

Instance Attribute Details

#ClusterIdObject

Parameters:

  • ClusterId:

    表格组所属的集群ID

  • TableGroupId:

    待修改名称的表格组ID

  • TableGroupName:

    新的表格组名称,可以使用中英文字符和符号



3123
3124
3125
# File 'lib/v20190823/models.rb', line 3123

def ClusterId
  @ClusterId
end

#TableGroupIdObject

Parameters:

  • ClusterId:

    表格组所属的集群ID

  • TableGroupId:

    待修改名称的表格组ID

  • TableGroupName:

    新的表格组名称,可以使用中英文字符和符号



3123
3124
3125
# File 'lib/v20190823/models.rb', line 3123

def TableGroupId
  @TableGroupId
end

#TableGroupNameObject

Parameters:

  • ClusterId:

    表格组所属的集群ID

  • TableGroupId:

    待修改名称的表格组ID

  • TableGroupName:

    新的表格组名称,可以使用中英文字符和符号



3123
3124
3125
# File 'lib/v20190823/models.rb', line 3123

def TableGroupName
  @TableGroupName
end

Instance Method Details

#deserialize(params) ⇒ Object



3131
3132
3133
3134
3135
# File 'lib/v20190823/models.rb', line 3131

def deserialize(params)
  @ClusterId = params['ClusterId']
  @TableGroupId = params['TableGroupId']
  @TableGroupName = params['TableGroupName']
end