| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- namespace Elasticsearch\Endpoints\Snapshot\Repository;
- use Elasticsearch\Endpoints\AbstractEndpoint;
- /**
- * Class Get
- *
- * @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 Get 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;
- }
- /**
- * @return string
- */
- public function getURI()
- {
- $repository = $this->repository;
- $uri = "/_snapshot";
- if (isset($repository) === true) {
- $uri = "/_snapshot/$repository";
- }
- return $uri;
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array(
- 'master_timeout',
- 'local',
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'GET';
- }
- }
|