| 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 PutIndexTemplate 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/' . rawurlencode($name); |
| 39: | } |
| 40: | throw new RuntimeException('Missing parameter for the endpoint indices.put_index_template'); |
| 41: | } |
| 42: | |
| 43: | public function getParamWhitelist(): array |
| 44: | { |
| 45: | return [ |
| 46: | 'cause', |
| 47: | 'cluster_manager_timeout', |
| 48: | 'create', |
| 49: | 'master_timeout', |
| 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 (is_null($body)) { |
| 66: | return $this; |
| 67: | } |
| 68: | $this->body = $body; |
| 69: | |
| 70: | return $this; |
| 71: | } |
| 72: | |
| 73: | public function setName($name): static |
| 74: | { |
| 75: | if (is_null($name)) { |
| 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: | |