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; |
23: | |
24: | use OpenSearch\Common\Exceptions\RuntimeException; |
25: | use OpenSearch\Endpoints\AbstractEndpoint; |
26: | |
27: | |
28: | |
29: | |
30: | class DeleteByQuery extends AbstractEndpoint |
31: | { |
32: | public function getURI(): string |
33: | { |
34: | if (isset($this->index) !== true) { |
35: | throw new RuntimeException( |
36: | 'index is required for delete_by_query' |
37: | ); |
38: | } |
39: | $index = $this->index; |
40: | return "/$index/_delete_by_query"; |
41: | } |
42: | |
43: | public function getParamWhitelist(): array |
44: | { |
45: | return [ |
46: | '_source', |
47: | '_source_excludes', |
48: | '_source_includes', |
49: | 'allow_no_indices', |
50: | 'analyze_wildcard', |
51: | 'analyzer', |
52: | 'conflicts', |
53: | 'default_operator', |
54: | 'df', |
55: | 'expand_wildcards', |
56: | 'from', |
57: | 'ignore_unavailable', |
58: | 'lenient', |
59: | 'max_docs', |
60: | 'preference', |
61: | 'q', |
62: | 'refresh', |
63: | 'request_cache', |
64: | 'requests_per_second', |
65: | 'routing', |
66: | 'scroll', |
67: | 'scroll_size', |
68: | 'search_timeout', |
69: | 'search_type', |
70: | 'size', |
71: | 'slices', |
72: | 'sort', |
73: | 'stats', |
74: | 'terminate_after', |
75: | 'timeout', |
76: | 'version', |
77: | 'wait_for_active_shards', |
78: | 'wait_for_completion', |
79: | 'pretty', |
80: | 'human', |
81: | 'error_trace', |
82: | 'source', |
83: | 'filter_path' |
84: | ]; |
85: | } |
86: | |
87: | public function getMethod(): string |
88: | { |
89: | return 'POST'; |
90: | } |
91: | |
92: | public function setBody($body): static |
93: | { |
94: | if (isset($body) !== true) { |
95: | return $this; |
96: | } |
97: | $this->body = $body; |
98: | |
99: | return $this; |
100: | } |
101: | } |
102: | |