1: | <?php |
2: | |
3: | declare(strict_types=1); |
4: | |
5: | |
6: | |
7: | |
8: | |
9: | |
10: | |
11: | |
12: | |
13: | |
14: | |
15: | |
16: | |
17: | |
18: | |
19: | |
20: | |
21: | |
22: | namespace OpenSearch\Endpoints\Indices; |
23: | |
24: | use OpenSearch\Common\Exceptions\RuntimeException; |
25: | use OpenSearch\Endpoints\AbstractEndpoint; |
26: | |
27: | |
28: | |
29: | |
30: | class Close extends AbstractEndpoint |
31: | { |
32: | public function getURI(): string |
33: | { |
34: | $index = $this->index ?? null; |
35: | if (isset($index)) { |
36: | return "/$index/_close"; |
37: | } |
38: | throw new RuntimeException('Missing parameter for the endpoint indices.close'); |
39: | } |
40: | |
41: | public function getParamWhitelist(): array |
42: | { |
43: | return [ |
44: | 'allow_no_indices', |
45: | 'cluster_manager_timeout', |
46: | 'expand_wildcards', |
47: | 'ignore_unavailable', |
48: | 'master_timeout', |
49: | 'timeout', |
50: | 'wait_for_active_shards', |
51: | 'pretty', |
52: | 'human', |
53: | 'error_trace', |
54: | 'source', |
55: | 'filter_path' |
56: | ]; |
57: | } |
58: | |
59: | public function getMethod(): string |
60: | { |
61: | return 'POST'; |
62: | } |
63: | |
64: | protected function getParamDeprecation(): array |
65: | { |
66: | return ['master_timeout' => 'cluster_manager_timeout']; |
67: | } |
68: | } |
69: | |