* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class ForceMerge extends AbstractEndpoint { /** * @return string */ public function getURI() { $index = $this->index; $uri = "/_forcemerge"; if (isset($index) === true) { $uri = "/$index/_forcemerge"; } return $uri; } /** * @return string[] */ public function getParamWhitelist() { return array( 'flush', 'ignore_unavailable', 'allow_no_indices', 'expand_wildcards', 'max_num_segments', 'only_expunge_deletes', 'operation_threading', 'wait_for_merge', ); } /** * @return string */ public function getMethod() { return 'POST'; } }