DeleteShardRequest.php 779 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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_DeleteShardRequest extends Aliyun_Log_Models_Request {
  13. private $logstore;
  14. /**
  15. * Aliyun_Log_Models_DeleteShardRequest Constructor
  16. *
  17. */
  18. public function __construct($project,$logstore,$shardId) {
  19. parent::__construct ( $project );
  20. $this->logstore = $logstore;
  21. $this->shardId = $shardId;
  22. }
  23. public function getLogstore(){
  24. return $this->logstore;
  25. }
  26. public function setLogstore($logstore){
  27. $this->logstore = $logstore;
  28. }
  29. public function getShardId(){
  30. return $this->shardId;
  31. }
  32. }