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\Tasks; |
23: | |
24: | use OpenSearch\Exception\RuntimeException; |
25: | use OpenSearch\Endpoints\AbstractEndpoint; |
26: | |
27: | |
28: | |
29: | |
30: | class Get extends AbstractEndpoint |
31: | { |
32: | protected $task_id; |
33: | |
34: | public function getURI(): string |
35: | { |
36: | $task_id = $this->task_id ?? null; |
37: | if (isset($task_id)) { |
38: | return "/_tasks/$task_id"; |
39: | } |
40: | throw new RuntimeException('Missing parameter for the endpoint tasks.get'); |
41: | } |
42: | |
43: | public function getParamWhitelist(): array |
44: | { |
45: | return [ |
46: | 'timeout', |
47: | 'wait_for_completion', |
48: | 'pretty', |
49: | 'human', |
50: | 'error_trace', |
51: | 'source', |
52: | 'filter_path' |
53: | ]; |
54: | } |
55: | |
56: | public function getMethod(): string |
57: | { |
58: | return 'GET'; |
59: | } |
60: | |
61: | public function setTaskId($task_id): static |
62: | { |
63: | if (is_null($task_id)) { |
64: | return $this; |
65: | } |
66: | $this->task_id = $task_id; |
67: | |
68: | return $this; |
69: | } |
70: | } |
71: | |