| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Copyright (C) Alibaba Cloud Computing
- * All rights reserved
- */
- require_once realpath(dirname(__FILE__) . '/Request.php');
- /**
- *
- *
- * @author log service dev
- */
- class Aliyun_Log_Models_DeleteShardRequest extends Aliyun_Log_Models_Request {
- private $logstore;
- /**
- * Aliyun_Log_Models_DeleteShardRequest Constructor
- *
- */
- public function __construct($project,$logstore,$shardId) {
- parent::__construct ( $project );
- $this->logstore = $logstore;
- $this->shardId = $shardId;
- }
- public function getLogstore(){
- return $this->logstore;
- }
- public function setLogstore($logstore){
- $this->logstore = $logstore;
- }
- public function getShardId(){
- return $this->shardId;
- }
- }
|