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.
35 lines
588 B
PHP
35 lines
588 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_GetMachineRequest extends Aliyun_Log_Models_Request {
|
|
|
|
private $uuid;
|
|
|
|
/**
|
|
* Aliyun_Log_Models_GetMachineRequest Constructor
|
|
*
|
|
*/
|
|
public function __construct($uuid=null) {
|
|
$this->uuid = $uuid;
|
|
}
|
|
|
|
public function getUuid(){
|
|
return $this->uuid;
|
|
}
|
|
|
|
public function setUuid($uuid){
|
|
$this->uuid = $uuid;
|
|
}
|
|
|
|
}
|