1<?php
2/**
3 * Elasticsearch PHP client
4 *
5 * @link      https://github.com/elastic/elasticsearch-php/
6 * @copyright Copyright (c) Elasticsearch B.V (https://www.elastic.co)
7 * @license   http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
8 * @license   https://www.gnu.org/licenses/lgpl-2.1.html GNU Lesser General Public License, Version 2.1
9 *
10 * Licensed to Elasticsearch B.V under one or more agreements.
11 * Elasticsearch B.V licenses this file to you under the Apache 2.0 License or
12 * the GNU Lesser General Public License, Version 2.1, at your option.
13 * See the LICENSE file in the project root for more information.
14 */
15declare(strict_types = 1);
16
17namespace Elasticsearch\Endpoints\Monitoring;
18
19use Elasticsearch\Common\Exceptions\InvalidArgumentException;
20use Elasticsearch\Endpoints\AbstractEndpoint;
21use Elasticsearch\Serializers\SerializerInterface;
22use Traversable;
23
24/**
25 * Class Bulk
26 * Elasticsearch API name monitoring.bulk
27 *
28 * NOTE: this file is autogenerated using util/GenerateEndpoints.php
29 * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee)
30 */
31class Bulk extends AbstractEndpoint
32{
33
34    public function __construct(SerializerInterface $serializer)
35    {
36        $this->serializer = $serializer;
37    }
38
39    public function getURI(): string
40    {
41        $type = $this->type ?? null;
42        if (isset($type)) {
43            @trigger_error('Specifying types in urls has been deprecated', E_USER_DEPRECATED);
44        }
45
46        if (isset($type)) {
47            return "/_monitoring/$type/bulk";
48        }
49        return "/_monitoring/bulk";
50    }
51
52    public function getParamWhitelist(): array
53    {
54        return [
55            'system_id',
56            'system_api_version',
57            'interval'
58        ];
59    }
60
61    public function getMethod(): string
62    {
63        return 'POST';
64    }
65
66    public function setBody($body): Bulk
67    {
68        if (isset($body) !== true) {
69            return $this;
70        }
71        if (is_array($body) === true || $body instanceof Traversable) {
72            foreach ($body as $item) {
73                $this->body .= $this->serializer->serialize($item) . "\n";
74            }
75        } elseif (is_string($body)) {
76            $this->body = $body;
77            if (substr($body, -1) != "\n") {
78                $this->body .= "\n";
79            }
80        } else {
81            throw new InvalidArgumentException("Body must be an array, traversable object or string");
82        }
83        return $this;
84    }
85}
86