| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- namespace Elasticsearch\Endpoints\Cat;
- use Elasticsearch\Endpoints\AbstractEndpoint;
- /**
- * Class Templates
- *
- * @category Elasticsearch
- * @package Elasticsearch\Endpoints\Cat
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class Templates extends AbstractEndpoint
- {
- private $name;
- /**
- * @param string $name
- * @return Templates
- */
- public function setName($name)
- {
- $this->name = $name;
- return $this;
- }
- /**
- * @return string
- */
- public function getURI()
- {
- if (isset($this->name)) {
- return "/_cat/templates/{$this->name}";
- } else {
- return "/_cat/templates";
- }
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array(
- 'format',
- 'node_id',
- 'actions',
- 'detailed',
- 'parent_node',
- 'parent_task',
- 'h',
- 'help',
- 'v',
- 's',
- 'local',
- 'master_timeout',
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'GET';
- }
- }
|