1<?php 2 3declare(strict_types = 1); 4 5namespace Elasticsearch\Endpoints\Cat; 6 7use Elasticsearch\Endpoints\AbstractEndpoint; 8 9/** 10 * Class Health 11 * 12 * @category Elasticsearch 13 * @package Elasticsearch\Endpoints\Cat 14 * @author Zachary Tong <zach@elastic.co> 15 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 16 * @link http://elastic.co 17 */ 18class Health extends AbstractEndpoint 19{ 20 public function getURI(): string 21 { 22 return "/_cat/health"; 23 } 24 25 public function getParamWhitelist(): array 26 { 27 return [ 28 'format', 29 'local', 30 'master_timeout', 31 'h', 32 'help', 33 's', 34 'ts', 35 'v' 36 ]; 37 } 38 39 public function getMethod(): string 40 { 41 return 'GET'; 42 } 43} 44