-
Notifications
You must be signed in to change notification settings - Fork 59
/
ReloadSearchAnalyzers.php
52 lines (44 loc) · 1.46 KB
/
ReloadSearchAnalyzers.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
declare(strict_types=1);
/**
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*
* Elasticsearch PHP client
*
* @link https://github.com/elastic/elasticsearch-php/
* @copyright Copyright (c) Elasticsearch B.V (https://www.elastic.co)
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license https://www.gnu.org/licenses/lgpl-2.1.html GNU Lesser General Public License, Version 2.1
*
* Licensed to Elasticsearch B.V under one or more agreements.
* Elasticsearch B.V licenses this file to you under the Apache 2.0 License or
* the GNU Lesser General Public License, Version 2.1, at your option.
* See the LICENSE file in the project root for more information.
*/
namespace OpenSearch\Endpoints\Indices;
use OpenSearch\Common\Exceptions\RuntimeException;
use OpenSearch\Endpoints\AbstractEndpoint;
class ReloadSearchAnalyzers extends AbstractEndpoint
{
public function getURI(): string
{
$index = $this->index ?? null;
if (isset($index)) {
return "/$index/_reload_search_analyzers";
}
throw new RuntimeException('Missing parameter for the endpoint indices.reload_search_analyzers');
}
public function getParamWhitelist(): array
{
return [
'ignore_unavailable',
'allow_no_indices',
'expand_wildcards'
];
}
public function getMethod(): string
{
return 'GET';
}
}