Class: TencentCloud::Cls::V20201016::DeleteMachineGroupInfoRequest

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

Overview

DeleteMachineGroupInfo请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(groupid = nil, machinegrouptype = nil) ⇒ DeleteMachineGroupInfoRequest

Returns a new instance of DeleteMachineGroupInfoRequest.



6309
6310
6311
6312
# File 'lib/v20201016/models.rb', line 6309

def initialize(groupid=nil, machinegrouptype=nil)
  @GroupId = groupid
  @MachineGroupType = machinegrouptype
end

Instance Attribute Details

#GroupId ⇒ Object

Parameters:

  • GroupId: —

    机器组Id

  • MachineGroupType: —

    机器组类型



6307
6308
6309
# File 'lib/v20201016/models.rb', line 6307

def GroupId
  @GroupId
end

#MachineGroupType ⇒ Object

Parameters:

  • GroupId: —

    机器组Id

  • MachineGroupType: —

    机器组类型



6307
6308
6309
# File 'lib/v20201016/models.rb', line 6307

def MachineGroupType
  @MachineGroupType
end

Instance Method Details

#deserialize(params) ⇒ Object



6314
6315
6316
6317
6318
6319
6320
# File 'lib/v20201016/models.rb', line 6314

def deserialize(params)
  @GroupId = params['GroupId']
  unless params['MachineGroupType'].nil?
    @MachineGroupType = MachineGroupTypeInfo.new
    @MachineGroupType.deserialize(params['MachineGroupType'])
  end
end