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