Skip to content

Commit d9e045f

Browse files
Updated opensearch-php to reflect the latest OpenSearch API spec (2025-03-20) (#325)
Signed-off-by: GitHub <[email protected]> Co-authored-by: dblock <[email protected]>
1 parent e97fc63 commit d9e045f

9 files changed

+259
-103
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1010
### Fixed
1111
### Security
1212
### Updated APIs
13+
- Updated opensearch-php APIs to reflect [opensearch-api-specification@fc5e888](https://github.com/opensearch-project/opensearch-api-specification/commit/fc5e888f8b7c1a09ca0c718c1dcb8bbca48c0a37)
1314

1415
## [2.4.3]
1516
### Added

src/OpenSearch/Client.php

+14
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
use OpenSearch\Namespaces\IsmNamespace;
3838
use OpenSearch\Namespaces\KnnNamespace;
3939
use OpenSearch\Namespaces\ListNamespace;
40+
use OpenSearch\Namespaces\LtrNamespace;
4041
use OpenSearch\Namespaces\MlNamespace;
4142
use OpenSearch\Namespaces\MonitoringNamespace;
4243
use OpenSearch\Namespaces\NodesNamespace;
@@ -207,6 +208,11 @@ class Client
207208
*/
208209
protected $list;
209210

211+
/**
212+
* @var LtrNamespace
213+
*/
214+
protected $ltr;
215+
210216
/**
211217
* @var MlNamespace
212218
*/
@@ -370,6 +376,7 @@ public function __construct(
370376
$this->ism = new IsmNamespace($transport, $this->endpointFactory);
371377
$this->knn = new KnnNamespace($transport, $this->endpointFactory);
372378
$this->list = new ListNamespace($transport, $this->endpointFactory);
379+
$this->ltr = new LtrNamespace($transport, $this->endpointFactory);
373380
$this->ml = new MlNamespace($transport, $this->endpointFactory);
374381
// @phpstan-ignore new.deprecated, property.deprecated
375382
$this->monitoring = new MonitoringNamespace($transport, $this->endpointFactory);
@@ -1962,6 +1969,13 @@ public function list(): ListNamespace
19621969
{
19631970
return $this->list;
19641971
}
1972+
/**
1973+
* Returns the ltr namespace
1974+
*/
1975+
public function ltr(): LtrNamespace
1976+
{
1977+
return $this->ltr;
1978+
}
19651979
/**
19661980
* Returns the ml namespace
19671981
*/
+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/**
6+
* SPDX-License-Identifier: Apache-2.0
7+
*
8+
* The OpenSearch Contributors require contributions made to
9+
* this file be licensed under the Apache-2.0 license or a
10+
* compatible open source license.
11+
*
12+
* Modifications Copyright OpenSearch Contributors. See
13+
* GitHub history for details.
14+
*/
15+
16+
namespace OpenSearch\Endpoints\Ltr;
17+
18+
use OpenSearch\Endpoints\AbstractEndpoint;
19+
20+
/**
21+
* NOTE: This file is autogenerated using util/GenerateEndpoints.php
22+
*/
23+
class Stats extends AbstractEndpoint
24+
{
25+
protected $node_id;
26+
protected $stat;
27+
28+
public function getURI(): string
29+
{
30+
$node_id = $this->node_id ?? null;
31+
$stat = $this->stat ?? null;
32+
if (isset($node_id) && isset($stat)) {
33+
return "/_plugins/_ltr/$node_id/stats/$stat";
34+
}
35+
if (isset($node_id)) {
36+
return "/_plugins/_ltr/$node_id/stats";
37+
}
38+
if (isset($stat)) {
39+
return "/_plugins/_ltr/stats/$stat";
40+
}
41+
return "/_plugins/_ltr/stats";
42+
}
43+
44+
public function getParamWhitelist(): array
45+
{
46+
return [
47+
'timeout',
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 setNodeId($node_id): static
62+
{
63+
if (isset($node_id) !== true) {
64+
return $this;
65+
}
66+
if (is_array($node_id) === true) {
67+
$node_id = implode(",", $node_id);
68+
}
69+
$this->node_id = $node_id;
70+
71+
return $this;
72+
}
73+
74+
public function setStat($stat): static
75+
{
76+
if (isset($stat) !== true) {
77+
return $this;
78+
}
79+
if (is_array($stat) === true) {
80+
$stat = implode(",", $stat);
81+
}
82+
$this->stat = $stat;
83+
84+
return $this;
85+
}
86+
}

src/OpenSearch/Namespaces/ClusterNamespace.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ public function getDecommissionAwareness(array $params = [])
254254
* Returns cluster settings.
255255
*
256256
* $params['cluster_manager_timeout'] = (string) The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
257-
* $params['flat_settings'] = (boolean) When `true`, returns cluster settings in a flat format. (Default = false)
257+
* $params['flat_settings'] = (boolean) Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings.For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`. (Default = false)
258258
* $params['include_defaults'] = (boolean) When `true`, returns default cluster settings from the local node. (Default = false)
259259
* $params['master_timeout'] = (string)
260260
* $params['timeout'] = (string)
@@ -362,8 +362,8 @@ public function pendingTasks(array $params = [])
362362
/**
363363
* Updates the cluster voting configuration by excluding certain node IDs or names.
364364
*
365-
* $params['node_ids'] = (any) A comma-separated list of node IDs to excludefrom the voting configuration. When using this setting, you cannot also specify `node_names`.
366-
* $params['node_names'] = (any) A comma-separated list of node names to exclude from thevoting configuration. When using this setting, you cannot also specify `node_ids`.
365+
* $params['node_ids'] = (any) A comma-separated list of node IDs to excludefrom the voting configuration. When using this setting, you cannot also specify `node_names`. Either `node_ids` or `node_names` are required to receive a valid response.
366+
* $params['node_names'] = (any) A comma-separated list of node names to exclude from thevoting configuration. When using this setting, you cannot also specify `node_ids`. Either `node_ids` or `node_names` are required to receive a valid response.
367367
* $params['timeout'] = (string) When adding a voting configuration exclusion, the API waits for thespecified nodes to be excluded from the voting configuration beforereturning a response. If the timeout expires before the appropriate conditionis satisfied, the request fails and returns an error.
368368
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
369369
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
@@ -385,7 +385,7 @@ public function postVotingConfigExclusions(array $params = [])
385385
/**
386386
* Creates or updates a component template.
387387
*
388-
* $params['name'] = (string) The name of the component template to create. OpenSearch includes the following built-in component templates: `logs-mappings`; `logs-settings`; `metrics-mappings`; `metrics-settings`; `synthetics-mapping`; `synthetics-settings`. OpenSearch uses these templates to configure backing indexes for its data streams. If you want to overwrite one of these templates, set the replacement template `version` to a higher value than the current version. If you want to disable all built-in component and index templates, set `stack.templates.enabled` to `false` using the Cluster Update Settings API.
388+
* $params['name'] = (string) The name of the component template to create. OpenSearch includes the following built-in component templates: `logs-mappings`, `logs-settings`, `metrics-mappings`, `metrics-settings`, `synthetics-mapping`, and `synthetics-settings`. OpenSearch uses these templates to configure backing indexes for its data streams. If you want to overwrite one of these templates, set the replacement template `version` to a higher value than the current version. If you want to disable all built-in component and index templates, set `stack.templates.enabled` to `false` using the [Cluster Update Settings API](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-settings/).
389389
* $params['cluster_manager_timeout'] = (string) The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
390390
* $params['create'] = (boolean) When `true`, this request cannot replace or update existing component templates. (Default = false)
391391
* $params['master_timeout'] = (string)
@@ -444,7 +444,7 @@ public function putDecommissionAwareness(array $params = [])
444444
* Updates the cluster settings.
445445
*
446446
* $params['cluster_manager_timeout'] = (string) The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
447-
* $params['flat_settings'] = (boolean) Returns settings in a flat format. (Default = false)
447+
* $params['flat_settings'] = (boolean) Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings.For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`. (Default = false)
448448
* $params['master_timeout'] = (string)
449449
* $params['timeout'] = (string)
450450
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
@@ -548,12 +548,12 @@ public function reroute(array $params = [])
548548
/**
549549
* Returns comprehensive information about the state of the cluster.
550550
*
551-
* $params['metric'] = (array) Limits the information returned to only the specified metrics.
551+
* $params['metric'] = (array) Limits the information returned to only the [specified metric groups](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-stats/#metric-groups).
552552
* $params['index'] = (array)
553553
* $params['allow_no_indices'] = (boolean) Whether to ignore a wildcard index expression that resolves into no concrete indexes. This includes the `_all` string or when no indexes have been specified.
554-
* $params['cluster_manager_timeout'] = (string) The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters]({https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
554+
* $params['cluster_manager_timeout'] = (string) The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
555555
* $params['expand_wildcards'] = (any)
556-
* $params['flat_settings'] = (boolean) Returns settings in a flat format. (Default = false)
556+
* $params['flat_settings'] = (boolean) Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings.For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`. (Default = false)
557557
* $params['ignore_unavailable'] = (boolean) Whether the specified concrete indexes should be ignored when unavailable (missing or closed).
558558
* $params['local'] = (boolean) Whether to return information from the local node only instead of from the cluster manager node. (Default = false)
559559
* $params['master_timeout'] = (string)
@@ -584,10 +584,10 @@ public function state(array $params = [])
584584
/**
585585
* Returns a high-level overview of cluster statistics.
586586
*
587-
* $params['index_metric'] = (array) A comma-separated list of index metric groups, for example, `docs,store`.
587+
* $params['index_metric'] = (array) A comma-separated list of [index metric groups](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-stats/#index-metric-groups), for example, `docs,store`.
588588
* $params['metric'] = (array) Limit the information returned to the specified metrics.
589589
* $params['node_id'] = (array)
590-
* $params['flat_settings'] = (boolean) When `true`, returns settings in a flat format. (Default = false)
590+
* $params['flat_settings'] = (boolean) Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings.For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`. (Default = false)
591591
* $params['timeout'] = (string) The amount of time to wait for each node to respond.If a node does not respond before its timeout expires, the response does not include its stats.However, timed out nodes are included in the response's `_nodes.failed` property. Defaults to no timeout.
592592
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
593593
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)

src/OpenSearch/Namespaces/IngestNamespace.php

+17-17
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
class IngestNamespace extends AbstractNamespace
3636
{
3737
/**
38-
* Deletes a pipeline.
38+
* Deletes an ingest pipeline.
3939
*
40-
* $params['id'] = (string) Pipeline ID or wildcard expression of pipeline IDs used to limit the request. To delete all ingest pipelines in a cluster, use a value of `*`.
41-
* $params['cluster_manager_timeout'] = (string) Operation timeout for connection to cluster-manager node.
40+
* $params['id'] = (string) The pipeline ID or wildcard expression of pipeline IDs used to limit the request. To delete all ingest pipelines in a cluster, use a value of `*`.
41+
* $params['cluster_manager_timeout'] = (string) The amount of time allowed to establish a connection to the cluster manager node.
4242
* $params['master_timeout'] = (string) Period to wait for a connection to the cluster-manager node.If no response is received before the timeout expires, the request fails and returns an error.
43-
* $params['timeout'] = (string) Period to wait for a response.If no response is received before the timeout expires, the request fails and returns an error.
43+
* $params['timeout'] = (string) The amount of time to wait for a response.
4444
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
4545
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
4646
* $params['error_trace'] = (boolean) Whether to include the stack trace of returned errors. (Default = false)
@@ -62,10 +62,10 @@ public function deletePipeline(array $params = [])
6262
}
6363

6464
/**
65-
* Returns a pipeline.
65+
* Returns an ingest pipeline.
6666
*
67-
* $params['id'] = (string) Comma-separated list of pipeline IDs to retrieve. Wildcard (`*`) expressions are supported. To get all ingest pipelines, omit this parameter or use `*`.
68-
* $params['cluster_manager_timeout'] = (string) Operation timeout for connection to cluster-manager node.
67+
* $params['id'] = (string) A comma-separated list of pipeline IDs to retrieve. Wildcard (`*`) expressions are supported. To get all ingest pipelines, omit this parameter or use `*`.
68+
* $params['cluster_manager_timeout'] = (string) The amount of time allowed to establish a connection to the cluster manager node.
6969
* $params['master_timeout'] = (string) Period to wait for a connection to the cluster-manager node.If no response is received before the timeout expires, the request fails and returns an error.
7070
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
7171
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
@@ -88,9 +88,9 @@ public function getPipeline(array $params = [])
8888
}
8989

9090
/**
91-
* Returns a list of the built-in patterns.
91+
* Returns a list of built-in grok patterns.
9292
*
93-
* $params['s'] = (boolean) Sort returned patterns by key name. (Default = false)
93+
* $params['s'] = (boolean) Determines how to sort returned grok patterns by key name. (Default = false)
9494
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
9595
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
9696
* $params['error_trace'] = (boolean) Whether to include the stack trace of returned errors. (Default = false)
@@ -109,18 +109,18 @@ public function processorGrok(array $params = [])
109109
}
110110

111111
/**
112-
* Creates or updates a pipeline.
112+
* Creates or updates an ingest pipeline.
113113
*
114-
* $params['id'] = (string) ID of the ingest pipeline to create or update.
115-
* $params['cluster_manager_timeout'] = (string) Operation timeout for connection to cluster-manager node.
114+
* $params['id'] = (string) The ID of the ingest pipeline.
115+
* $params['cluster_manager_timeout'] = (string) The amount of time allowed to establish a connection to the cluster manager node.
116116
* $params['master_timeout'] = (string) Period to wait for a connection to the cluster-manager node. If no response is received before the timeout expires, the request fails and returns an error.
117-
* $params['timeout'] = (string) Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
117+
* $params['timeout'] = (string) The amount of time to wait for a response.
118118
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
119119
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
120120
* $params['error_trace'] = (boolean) Whether to include the stack trace of returned errors. (Default = false)
121121
* $params['source'] = (string) The URL-encoded request definition. Useful for libraries that do not accept a request body for non-POST requests.
122122
* $params['filter_path'] = (any) Used to reduce the response. This parameter takes a comma-separated list of filters. It supports using wildcards to match any field or part of a field’s name. You can also exclude fields with "-".
123-
* $params['body'] = (array) The ingest definition (Required)
123+
* $params['body'] = (array) The ingest definition. (Required)
124124
*
125125
* @param array $params Associative array of parameters
126126
* @return array
@@ -139,10 +139,10 @@ public function putPipeline(array $params = [])
139139
}
140140

141141
/**
142-
* Allows to simulate a pipeline with example documents.
142+
* Simulates an ingest pipeline with example documents.
143143
*
144-
* $params['id'] = (string) Pipeline to test. If you don't specify a `pipeline` in the request body, this parameter is required.
145-
* $params['verbose'] = (boolean) If `true`, the response includes output data for each processor in the executed pipeline. (Default = false)
144+
* $params['id'] = (string) The pipeline to test. If you don't specify a `pipeline` in the request body, this parameter is required.
145+
* $params['verbose'] = (boolean) When `true`, the response includes output data for each processor in the pipeline (Default = false)
146146
* $params['pretty'] = (boolean) Whether to pretty format the returned JSON response. (Default = false)
147147
* $params['human'] = (boolean) Whether to return human readable values for statistics. (Default = true)
148148
* $params['error_trace'] = (boolean) Whether to include the stack trace of returned errors. (Default = false)

0 commit comments

Comments
 (0)