* @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'; } }