serializer = $serializer; } public function getURI(): string { $type = $this->type ?? null; if (isset($type)) { @trigger_error('Specifying types in urls has been deprecated', E_USER_DEPRECATED); } if (isset($type)) { return "/_monitoring/$type/bulk"; } return "/_monitoring/bulk"; } public function getParamWhitelist(): array { return [ 'system_id', 'system_api_version', 'interval' ]; } public function getMethod(): string { return 'POST'; } public function setBody($body): Bulk { if (isset($body) !== true) { return $this; } if (is_array($body) === true || $body instanceof Traversable) { foreach ($body as $item) { $this->body .= $this->serializer->serialize($item) . "\n"; } } elseif (is_string($body)) { $this->body = $body; if (substr($body, -1) != "\n") { $this->body .= "\n"; } } else { throw new InvalidArgumentException("Body must be an array, traversable object or string"); } return $this; } }