1<?php 2 3declare(strict_types = 1); 4 5namespace Elasticsearch\Endpoints\Cat; 6 7use Elasticsearch\Endpoints\AbstractEndpoint; 8 9/** 10 * Class Count 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 Count extends AbstractEndpoint 19{ 20 public function getURI(): string 21 { 22 $index = $this->index ?? null; 23 24 if (isset($index)) { 25 return "/_cat/count/$index"; 26 } 27 return "/_cat/count"; 28 } 29 30 public function getParamWhitelist(): array 31 { 32 return [ 33 'format', 34 'local', 35 'master_timeout', 36 'h', 37 'help', 38 's', 39 'v' 40 ]; 41 } 42 43 public function getMethod(): string 44 { 45 return 'GET'; 46 } 47} 48