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