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\Ml;
18
19use Elasticsearch\Common\Exceptions\InvalidArgumentException;
20use Elasticsearch\Endpoints\AbstractEndpoint;
21use Elasticsearch\Serializers\SerializerInterface;
22use Traversable;
23
24/**
25 * Class FindFileStructure
26 * Elasticsearch API name ml.find_file_structure
27 *
28 * NOTE: this file is autogenerated using util/GenerateEndpoints.php
29 * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee)
30 */
31class FindFileStructure extends AbstractEndpoint
32{
33
34    public function __construct(SerializerInterface $serializer)
35    {
36        $this->serializer = $serializer;
37    }
38
39    public function getURI(): string
40    {
41
42        return "/_ml/find_file_structure";
43    }
44
45    public function getParamWhitelist(): array
46    {
47        return [
48            'lines_to_sample',
49            'line_merge_size_limit',
50            'timeout',
51            'charset',
52            'format',
53            'has_header_row',
54            'column_names',
55            'delimiter',
56            'quote',
57            'should_trim_fields',
58            'grok_pattern',
59            'timestamp_field',
60            'timestamp_format',
61            'explain'
62        ];
63    }
64
65    public function getMethod(): string
66    {
67        return 'POST';
68    }
69
70    public function setBody($body): FindFileStructure
71    {
72        if (isset($body) !== true) {
73            return $this;
74        }
75        if (is_array($body) === true || $body instanceof Traversable) {
76            foreach ($body as $item) {
77                $this->body .= $this->serializer->serialize($item) . "\n";
78            }
79        } elseif (is_string($body)) {
80            $this->body = $body;
81            if (substr($body, -1) != "\n") {
82                $this->body .= "\n";
83            }
84        } else {
85            throw new InvalidArgumentException("Body must be an array, traversable object or string");
86        }
87        return $this;
88    }
89}
90