* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class Delete extends AbstractEndpoint { // A comma-separated list of repository names private $repository; /** * @param $repository * * @return $this */ public function setRepository($repository) { if (isset($repository) !== true) { return $this; } $this->repository = $repository; return $this; } /** * @throws \Elasticsearch\Common\Exceptions\RuntimeException * @return string */ public function getURI() { if (isset($this->repository) !== true) { throw new Exceptions\RuntimeException( 'repository is required for Delete' ); } $repository = $this->repository; $uri = "/_snapshot/$repository"; if (isset($repository) === true) { $uri = "/_snapshot/$repository"; } return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array( 'master_timeout', 'timeout', ); } /** * @return string */ public function getMethod() { return 'DELETE'; } }