You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
675 B
PHP
32 lines
675 B
PHP
<?php
|
|
/**
|
|
* Copyright (C) Alibaba Cloud Computing
|
|
* All rights reserved
|
|
*/
|
|
|
|
require_once realpath(dirname(__FILE__) . '/Request.php');
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @author log service dev
|
|
*/
|
|
class Aliyun_Log_Models_CreateMachineGroupRequest extends Aliyun_Log_Models_Request {
|
|
|
|
private $machineGroup;
|
|
/**
|
|
* Aliyun_Log_Models_CreateMachineGroupRequest Constructor
|
|
*
|
|
*/
|
|
public function __construct($machineGroup=null) {
|
|
$this->machineGroup = $machineGroup;
|
|
}
|
|
public function getMachineGroup(){
|
|
return $this->machineGroup;
|
|
}
|
|
public function setMachineGroup($machineGroup){
|
|
$this->machineGroup = $machineGroup;
|
|
}
|
|
|
|
}
|