node_id ?? null; if (isset($node_id)) { return "/_cat/allocation/$node_id"; } return "/_cat/allocation"; } public function getParamWhitelist(): array { return [ 'format', 'bytes', 'local', 'master_timeout', 'h', 'help', 's', 'v' ]; } public function getMethod(): string { return 'GET'; } public function setNodeId($node_id): Allocation { if (isset($node_id) !== true) { return $this; } if (is_array($node_id) === true) { $node_id = implode(",", $node_id); } $this->node_id = $node_id; return $this; } }