<?php

declare(strict_types=1);

/**
 * SPDX-License-Identifier: Apache-2.0
 *
 * The OpenSearch Contributors require contributions made to
 * this file be licensed under the Apache-2.0 license or a
 * compatible open source license.
 *
 * Modifications Copyright OpenSearch Contributors. See
 * GitHub history for details.
 */

namespace OpenSearch\Endpoints\Geospatial;

use OpenSearch\Endpoints\AbstractEndpoint;

/**
 * NOTE: This file is autogenerated using util/GenerateEndpoints.php
 */
class GetIp2geoDatasource extends AbstractEndpoint
{
    protected $name;

    public function getURI(): string
    {
        $name = $this->name ? rawurlencode($this->name) : null;
        if (isset($name)) {
            return "/_plugins/geospatial/ip2geo/datasource/$name";
        }
        return "/_plugins/geospatial/ip2geo/datasource";
    }

    public function getParamWhitelist(): array
    {
        return [
            'pretty',
            'human',
            'error_trace',
            'source',
            'filter_path'
        ];
    }

    public function getMethod(): string
    {
        return 'GET';
    }

    public function setName($name): static
    {
        if (!isset($name)) {
            return $this;
        }
        if (is_array($name) === true) {
            $name = implode(",", $name);
        }
        $this->name = rawurlencode($name);

        return $this;
    }
}
