| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- namespace Elasticsearch\Endpoints\Snapshot\Repository;
- use Elasticsearch\Endpoints\AbstractEndpoint;
- use Elasticsearch\Common\Exceptions;
- /**
- * Class Verify
- *
- * @category Elasticsearch
- * @package Elasticsearch\Endpoints\Snapshot\Repository
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class Verify 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()
- {
- $repository = $this->repository;
- if (isset($this->repository) !== true) {
- throw new Exceptions\RuntimeException(
- 'repository is required for Verify'
- );
- }
- $uri = "/_snapshot/$repository/_verify";
- return $uri;
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array(
- 'master_timeout',
- 'local',
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'POST';
- }
- }
|