* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class Recovery extends AbstractEndpoint { public function getURI(): string { $index = $this->index ?? null; if (isset($index)) { return "/$index/_recovery"; } return "/_recovery"; } public function getParamWhitelist(): array { return [ 'detailed', 'active_only' ]; } public function getMethod(): string { return 'GET'; } }