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\Exception\RuntimeException; |
25: | use OpenSearch\Endpoints\AbstractEndpoint; |
26: | |
27: | |
28: | |
29: | |
30: | class SimulateIndexTemplate extends AbstractEndpoint |
31: | { |
32: | protected $name; |
33: | |
34: | public function getURI(): string |
35: | { |
36: | $name = $this->name ?? null; |
37: | if (isset($name)) { |
38: | return "/_index_template/_simulate_index/$name"; |
39: | } |
40: | throw new RuntimeException('Missing parameter for the endpoint indices.simulate_index_template'); |
41: | } |
42: | |
43: | public function getParamWhitelist(): array |
44: | { |
45: | return [ |
46: | 'cluster_manager_timeout', |
47: | 'master_timeout', |
48: | 'pretty', |
49: | 'human', |
50: | 'error_trace', |
51: | 'source', |
52: | 'filter_path' |
53: | ]; |
54: | } |
55: | |
56: | public function getMethod(): string |
57: | { |
58: | return 'POST'; |
59: | } |
60: | |
61: | public function setBody($body): static |
62: | { |
63: | if (is_null($body)) { |
64: | return $this; |
65: | } |
66: | $this->body = $body; |
67: | |
68: | return $this; |
69: | } |
70: | |
71: | public function setName($name): static |
72: | { |
73: | if (is_null($name)) { |
74: | return $this; |
75: | } |
76: | $this->name = $name; |
77: | |
78: | return $this; |
79: | } |
80: | |
81: | protected function getParamDeprecation(): array |
82: | { |
83: | return ['master_timeout' => 'cluster_manager_timeout']; |
84: | } |
85: | } |
86: | |