* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class Exists extends AbstractEndpoint { /** * @throws \Elasticsearch\Common\Exceptions\RuntimeException * @return string */ public function getURI() { if (isset($this->index) !== true) { throw new Exceptions\RuntimeException( 'index is required for Exists' ); } $index = $this->index; $uri = "/$index"; if (isset($index) === true) { $uri = "/$index"; } return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array( 'ignore_unavailable', 'allow_no_indices', 'expand_wildcards', 'local', ); } /** * @return string */ public function getMethod() { return 'HEAD'; } }