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.
36 lines
612 B
PHP
36 lines
612 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_CreateConfigRequest extends Aliyun_Log_Models_Request {
|
|
|
|
private $config;
|
|
|
|
/**
|
|
* Aliyun_Log_Models_CreateConfigRequest Constructor
|
|
*
|
|
*/
|
|
public function __construct($config) {
|
|
$this->config = $config;
|
|
}
|
|
|
|
public function getConfig(){
|
|
return $this->config;
|
|
|
|
}
|
|
|
|
public function setConfig($config){
|
|
$this->config = $config;
|
|
}
|
|
|
|
}
|