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.
40 lines
917 B
PHP
40 lines
917 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_ApplyConfigToMachineGroupRequest extends Aliyun_Log_Models_Request {
|
|
private $groupName;
|
|
private $configName;
|
|
/**
|
|
* Aliyun_Log_Models_ApplyConfigToMachineGroupRequest Constructor
|
|
*
|
|
*/
|
|
public function __construct($groupName=null,$configName=null) {
|
|
$this->groupName = $groupName;
|
|
$this->configName = $configName;
|
|
}
|
|
public function getGroupName(){
|
|
return $this->groupName;
|
|
}
|
|
public function setGroupName($groupName){
|
|
$this->groupName = $groupName;
|
|
}
|
|
|
|
public function getConfigName(){
|
|
return $this->configName;
|
|
}
|
|
public function setConfigName($configName){
|
|
$this->configName = $configName;
|
|
}
|
|
|
|
}
|