DeleteMachineGroupRequest.php 646 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * Copyright (C) Alibaba Cloud Computing
  4. * All rights reserved
  5. */
  6. require_once realpath(dirname(__FILE__) . '/Request.php');
  7. /**
  8. *
  9. *
  10. * @author log service dev
  11. */
  12. class Aliyun_Log_Models_DeleteMachineGroupRequest extends Aliyun_Log_Models_Request {
  13. private $groupName;
  14. /**
  15. * Aliyun_Log_Models_DeleteMachineGroupRequest Constructor
  16. *
  17. */
  18. public function __construct($groupName) {
  19. $this->groupName = $groupName;
  20. }
  21. public function getGroupName(){
  22. return $this->groupName;
  23. }
  24. public function setGroupName($groupName){
  25. $this->groupName = $groupName;
  26. }
  27. }