* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class Seal extends AbstractEndpoint { /** * @throws \Elasticsearch\Common\Exceptions\RuntimeException * @return string */ public function getURI() { $index = $this->index; $uri = "/_seal"; if (isset($index) === true) { $uri = "/$index/_seal"; } return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array(); } /** * @return string */ public function getMethod() { return 'POST'; } }