| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- namespace Elasticsearch\Endpoints\Indices\Template;
- use Elasticsearch\Endpoints\AbstractEndpoint;
- use Elasticsearch\Common\Exceptions;
- /**
- * Class Get
- *
- * @category Elasticsearch
- * @package Elasticsearch\Endpoints\Indices\Template
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class Get extends AbstractEndpoint
- {
- // The name of the template
- private $name;
- /**
- * @param $name
- *
- * @return $this
- */
- public function setName($name)
- {
- if (isset($name) !== true) {
- return $this;
- }
- $this->name = $name;
- return $this;
- }
- /**
- * @throws \Elasticsearch\Common\Exceptions\RuntimeException
- * @return string
- */
- public function getURI()
- {
- $name = $this->name;
- $uri = "/_template";
- if (isset($name) === true) {
- $uri = "/_template/$name";
- }
- return $uri;
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array(
- 'flat_settings',
- 'local',
- 'master_timeout'
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'GET';
- }
- }
|