index ?? null; if (isset($index)) { return "/_cluster/health/$index"; } return "/_cluster/health"; } public function getParamWhitelist(): array { return [ 'expand_wildcards', 'level', 'local', 'master_timeout', 'timeout', 'wait_for_active_shards', 'wait_for_nodes', 'wait_for_events', 'wait_for_no_relocating_shards', 'wait_for_no_initializing_shards', 'wait_for_status', 'cluster_manager_timeout' ]; } public function getMethod(): string { return 'GET'; } protected function getParamDeprecation(): array { return ['master_timeout' => 'cluster_manager_timeout']; } }