-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated opensearch-php to reflect the latest OpenSearch API spec (202…
…4-10-18) Signed-off-by: GitHub <[email protected]>
- Loading branch information
Showing
69 changed files
with
3,360 additions
and
451 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
namespace OpenSearch\Endpoints\AsynchronousSearch; | ||
|
||
use OpenSearch\Common\Exceptions\RuntimeException; | ||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class Delete extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
if (isset($this->id) !== true) { | ||
throw new RuntimeException( | ||
'id is required for delete' | ||
); | ||
} | ||
$id = $this->id; | ||
return "/_plugins/_asynchronous_search/$id"; | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'DELETE'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
namespace OpenSearch\Endpoints\AsynchronousSearch; | ||
|
||
use OpenSearch\Common\Exceptions\RuntimeException; | ||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class Get extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
if (isset($this->id) !== true) { | ||
throw new RuntimeException( | ||
'id is required for get' | ||
); | ||
} | ||
$id = $this->id; | ||
return "/_plugins/_asynchronous_search/$id"; | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'GET'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
namespace OpenSearch\Endpoints\AsynchronousSearch; | ||
|
||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class Search extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
return "/_plugins/_asynchronous_search"; | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'index', | ||
'keep_alive', | ||
'keep_on_completion', | ||
'wait_for_completion_timeout', | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'POST'; | ||
} | ||
|
||
public function setBody($body): Search | ||
{ | ||
if (isset($body) !== true) { | ||
return $this; | ||
} | ||
$this->body = $body; | ||
|
||
return $this; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
namespace OpenSearch\Endpoints\AsynchronousSearch; | ||
|
||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class Stats extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
return "/_plugins/_asynchronous_search/stats"; | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'GET'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
namespace OpenSearch\Endpoints; | ||
|
||
use OpenSearch\Common\Exceptions\InvalidArgumentException; | ||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
use OpenSearch\Serializers\SerializerInterface; | ||
use Traversable; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class BulkStream extends AbstractEndpoint | ||
{ | ||
public function __construct(SerializerInterface $serializer) | ||
{ | ||
$this->serializer = $serializer; | ||
} | ||
|
||
public function getURI(): string | ||
{ | ||
$index = $this->index ?? null; | ||
if (isset($index)) { | ||
return "/$index/_bulk/stream"; | ||
} | ||
return "/_bulk/stream"; | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'_source', | ||
'_source_excludes', | ||
'_source_includes', | ||
'batch_interval', | ||
'batch_size', | ||
'pipeline', | ||
'refresh', | ||
'require_alias', | ||
'routing', | ||
'timeout', | ||
'wait_for_active_shards', | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'PUT'; | ||
} | ||
|
||
public function setBody($body): BulkStream | ||
{ | ||
if (isset($body) !== true) { | ||
return $this; | ||
} | ||
if (is_array($body) === true || $body instanceof Traversable) { | ||
foreach ($body as $item) { | ||
$this->body .= $this->serializer->serialize($item) . "\n"; | ||
} | ||
} elseif (is_string($body)) { | ||
$this->body = $body; | ||
if (substr($body, -1) != "\n") { | ||
$this->body .= "\n"; | ||
} | ||
} else { | ||
throw new InvalidArgumentException("Body must be an array, traversable object or string"); | ||
} | ||
return $this; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.