-
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-11-19) Signed-off-by: GitHub <noreply@github.com>
- Loading branch information
Showing
25 changed files
with
1,084 additions
and
187 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
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\Replication; | ||
|
||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class AutofollowStats extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
return "/_plugins/_replication/autofollow_stats"; | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'GET'; | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
src/OpenSearch/Endpoints/Replication/CreateReplicationRule.php
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\Replication; | ||
|
||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class CreateReplicationRule extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
return "/_plugins/_replication/_autofollow"; | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'POST'; | ||
} | ||
|
||
public function setBody($body): static | ||
{ | ||
if (isset($body) !== true) { | ||
return $this; | ||
} | ||
$this->body = $body; | ||
|
||
return $this; | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
src/OpenSearch/Endpoints/Replication/DeleteReplicationRule.php
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\Replication; | ||
|
||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class DeleteReplicationRule extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
return "/_plugins/_replication/_autofollow"; | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'DELETE'; | ||
} | ||
|
||
public function setBody($body): static | ||
{ | ||
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\Replication; | ||
|
||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class FollowerStats extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
return "/_plugins/_replication/follower_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,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\Replication; | ||
|
||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class LeaderStats extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
return "/_plugins/_replication/leader_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,60 @@ | ||
<?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\Replication; | ||
|
||
use OpenSearch\Common\Exceptions\RuntimeException; | ||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class Pause extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
$index = $this->index ?? null; | ||
if (isset($index)) { | ||
return "/_plugins/_replication/$index/_pause"; | ||
} | ||
throw new RuntimeException('Missing parameter for the endpoint replication.pause'); | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'POST'; | ||
} | ||
|
||
public function setBody($body): static | ||
{ | ||
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,60 @@ | ||
<?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\Replication; | ||
|
||
use OpenSearch\Common\Exceptions\RuntimeException; | ||
use OpenSearch\Endpoints\AbstractEndpoint; | ||
|
||
/** | ||
* NOTE: This file is autogenerated using util/GenerateEndpoints.php | ||
*/ | ||
class Resume extends AbstractEndpoint | ||
{ | ||
public function getURI(): string | ||
{ | ||
$index = $this->index ?? null; | ||
if (isset($index)) { | ||
return "/_plugins/_replication/$index/_resume"; | ||
} | ||
throw new RuntimeException('Missing parameter for the endpoint replication.resume'); | ||
} | ||
|
||
public function getParamWhitelist(): array | ||
{ | ||
return [ | ||
'pretty', | ||
'human', | ||
'error_trace', | ||
'source', | ||
'filter_path' | ||
]; | ||
} | ||
|
||
public function getMethod(): string | ||
{ | ||
return 'POST'; | ||
} | ||
|
||
public function setBody($body): static | ||
{ | ||
if (isset($body) !== true) { | ||
return $this; | ||
} | ||
$this->body = $body; | ||
|
||
return $this; | ||
} | ||
} |
Oops, something went wrong.