-
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-31) Signed-off-by: GitHub <[email protected]>
- Loading branch information
Showing
7 changed files
with
389 additions
and
0 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?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\Wlm; | ||
|
||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class CreateQueryGroup extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
return "/_wlm/query_group"; | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'PUT'; | ||
} | ||
|
||
public function setBody($body): CreateQueryGroup | ||
{ | ||
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,62 @@ | ||
<?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\Wlm; | ||
|
||
use OpenSearch\Common\Exceptions\RuntimeException; | ||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class DeleteQueryGroup extends AbstractEndpoint | ||
{ | ||
protected $name; | ||
|
||
public function getURI(): string | ||
{ | ||
$name = $this->name ?? null; | ||
if (isset($name)) { | ||
return "/_wlm/query_group/$name"; | ||
} | ||
throw new RuntimeException('Missing parameter for the endpoint wlm.delete_query_group'); | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'DELETE'; | ||
} | ||
|
||
public function setName($name): DeleteQueryGroup | ||
{ | ||
if (isset($name) !== true) { | ||
return $this; | ||
} | ||
$this->name = $name; | ||
|
||
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,61 @@ | ||
<?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\Wlm; | ||
|
||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class GetQueryGroup extends AbstractEndpoint | ||
{ | ||
protected $name; | ||
|
||
public function getURI(): string | ||
{ | ||
$name = $this->name ?? null; | ||
if (isset($name)) { | ||
return "/_wlm/query_group/$name"; | ||
} | ||
return "/_wlm/query_group"; | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'GET'; | ||
} | ||
|
||
public function setName($name): GetQueryGroup | ||
{ | ||
if (isset($name) !== true) { | ||
return $this; | ||
} | ||
$this->name = $name; | ||
|
||
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,72 @@ | ||
<?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\Wlm; | ||
|
||
use OpenSearch\Common\Exceptions\RuntimeException; | ||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class UpdateQueryGroup extends AbstractEndpoint | ||
{ | ||
protected $name; | ||
|
||
public function getURI(): string | ||
{ | ||
$name = $this->name ?? null; | ||
if (isset($name)) { | ||
return "/_wlm/query_group/$name"; | ||
} | ||
throw new RuntimeException('Missing parameter for the endpoint wlm.update_query_group'); | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'PUT'; | ||
} | ||
|
||
public function setBody($body): UpdateQueryGroup | ||
{ | ||
if (isset($body) !== true) { | ||
return $this; | ||
} | ||
$this->body = $body; | ||
|
||
return $this; | ||
} | ||
|
||
public function setName($name): UpdateQueryGroup | ||
{ | ||
if (isset($name) !== true) { | ||
return $this; | ||
} | ||
$this->name = $name; | ||
|
||
return $this; | ||
} | ||
} |
Oops, something went wrong.