Skip to content

Commit e635b46

Browse files
committed
Updated endpoints to 7.12.0-SNAPSHOT
1 parent 7baed60 commit e635b46

File tree

395 files changed

+927
-440
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

395 files changed

+927
-440
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ composer.phar
66

77
#editor related
88
.idea
9+
.vscode/
910

1011
# OS generated files
1112
.DS_Store

src/Elasticsearch/Client.php

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
use Elasticsearch\Namespaces\CatNamespace;
3030
use Elasticsearch\Namespaces\ClusterNamespace;
3131
use Elasticsearch\Namespaces\DanglingIndicesNamespace;
32+
use Elasticsearch\Namespaces\FeaturesNamespace;
3233
use Elasticsearch\Namespaces\IndicesNamespace;
3334
use Elasticsearch\Namespaces\IngestNamespace;
3435
use Elasticsearch\Namespaces\NodesNamespace;
@@ -43,6 +44,7 @@
4344
use Elasticsearch\Namespaces\GraphNamespace;
4445
use Elasticsearch\Namespaces\IlmNamespace;
4546
use Elasticsearch\Namespaces\LicenseNamespace;
47+
use Elasticsearch\Namespaces\LogstashNamespace;
4648
use Elasticsearch\Namespaces\MigrationNamespace;
4749
use Elasticsearch\Namespaces\MlNamespace;
4850
use Elasticsearch\Namespaces\MonitoringNamespace;
@@ -52,6 +54,7 @@
5254
use Elasticsearch\Namespaces\SlmNamespace;
5355
use Elasticsearch\Namespaces\SqlNamespace;
5456
use Elasticsearch\Namespaces\SslNamespace;
57+
use Elasticsearch\Namespaces\TextStructureNamespace;
5558
use Elasticsearch\Namespaces\TransformNamespace;
5659
use Elasticsearch\Namespaces\WatcherNamespace;
5760
use Elasticsearch\Namespaces\XpackNamespace;
@@ -60,7 +63,7 @@
6063
* Class Client
6164
*
6265
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
63-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
66+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
6467
*/
6568
class Client
6669
{
@@ -101,6 +104,11 @@ class Client
101104
*/
102105
protected $danglingIndices;
103106

107+
/**
108+
* @var FeaturesNamespace
109+
*/
110+
protected $features;
111+
104112
/**
105113
* @var IndicesNamespace
106114
*/
@@ -171,6 +179,11 @@ class Client
171179
*/
172180
protected $license;
173181

182+
/**
183+
* @var LogstashNamespace
184+
*/
185+
protected $logstash;
186+
174187
/**
175188
* @var MigrationNamespace
176189
*/
@@ -216,6 +229,11 @@ class Client
216229
*/
217230
protected $ssl;
218231

232+
/**
233+
* @var TextStructureNamespace
234+
*/
235+
protected $textStructure;
236+
219237
/**
220238
* @var TransformNamespace
221239
*/
@@ -246,6 +264,7 @@ public function __construct(Transport $transport, callable $endpoint, array $reg
246264
$this->cat = new CatNamespace($transport, $endpoint);
247265
$this->cluster = new ClusterNamespace($transport, $endpoint);
248266
$this->danglingIndices = new DanglingIndicesNamespace($transport, $endpoint);
267+
$this->features = new FeaturesNamespace($transport, $endpoint);
249268
$this->indices = new IndicesNamespace($transport, $endpoint);
250269
$this->ingest = new IngestNamespace($transport, $endpoint);
251270
$this->nodes = new NodesNamespace($transport, $endpoint);
@@ -260,6 +279,7 @@ public function __construct(Transport $transport, callable $endpoint, array $reg
260279
$this->graph = new GraphNamespace($transport, $endpoint);
261280
$this->ilm = new IlmNamespace($transport, $endpoint);
262281
$this->license = new LicenseNamespace($transport, $endpoint);
282+
$this->logstash = new LogstashNamespace($transport, $endpoint);
263283
$this->migration = new MigrationNamespace($transport, $endpoint);
264284
$this->ml = new MlNamespace($transport, $endpoint);
265285
$this->monitoring = new MonitoringNamespace($transport, $endpoint);
@@ -269,6 +289,7 @@ public function __construct(Transport $transport, callable $endpoint, array $reg
269289
$this->slm = new SlmNamespace($transport, $endpoint);
270290
$this->sql = new SqlNamespace($transport, $endpoint);
271291
$this->ssl = new SslNamespace($transport, $endpoint);
292+
$this->textStructure = new TextStructureNamespace($transport, $endpoint);
272293
$this->transform = new TransformNamespace($transport, $endpoint);
273294
$this->watcher = new WatcherNamespace($transport, $endpoint);
274295
$this->xpack = new XpackNamespace($transport, $endpoint);
@@ -1198,6 +1219,7 @@ public function scroll(array $params = [])
11981219
* $params['max_concurrent_shard_requests'] = (number) The number of concurrent shard requests per node this search executes concurrently. This value should be used to limit the impact of the search on the cluster in order to limit the number of concurrent shard requests (Default = 5)
11991220
* $params['pre_filter_shard_size'] = (number) A threshold that enforces a pre-filter roundtrip to prefilter search shards based on query rewriting if the number of shards the search request expands to exceeds the threshold. This filter roundtrip can limit the number of shards significantly if for instance a shard can not match any documents based on its rewrite method ie. if date filters are mandatory to match but the shard bounds and the query are disjoint.
12001221
* $params['rest_total_hits_as_int'] = (boolean) Indicates whether hits.total should be rendered as an integer or an object in the rest search response (Default = false)
1222+
* $params['min_compatible_shard_node'] = (string) The minimum compatible version that all shards involved in search should have for this request to be successful
12011223
* $params['body'] = (array) The search definition using the Query DSL
12021224
*
12031225
* @param array $params Associative array of parameters
@@ -1488,6 +1510,10 @@ public function danglingIndices(): DanglingIndicesNamespace
14881510
{
14891511
return $this->danglingIndices;
14901512
}
1513+
public function features(): FeaturesNamespace
1514+
{
1515+
return $this->features;
1516+
}
14911517
public function indices(): IndicesNamespace
14921518
{
14931519
return $this->indices;
@@ -1544,6 +1570,10 @@ public function license(): LicenseNamespace
15441570
{
15451571
return $this->license;
15461572
}
1573+
public function logstash(): LogstashNamespace
1574+
{
1575+
return $this->logstash;
1576+
}
15471577
public function migration(): MigrationNamespace
15481578
{
15491579
return $this->migration;
@@ -1580,6 +1610,10 @@ public function ssl(): SslNamespace
15801610
{
15811611
return $this->ssl;
15821612
}
1613+
public function textStructure(): TextStructureNamespace
1614+
{
1615+
return $this->textStructure;
1616+
}
15831617
public function transform(): TransformNamespace
15841618
{
15851619
return $this->transform;

src/Elasticsearch/Endpoints/AsyncSearch/Delete.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Elasticsearch API name async_search.delete
2525
*
2626
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
27-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
27+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2828
*/
2929
class Delete extends AbstractEndpoint
3030
{

src/Elasticsearch/Endpoints/AsyncSearch/Get.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Elasticsearch API name async_search.get
2525
*
2626
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
27-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
27+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2828
*/
2929
class Get extends AbstractEndpoint
3030
{

src/Elasticsearch/Endpoints/AsyncSearch/Status.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Elasticsearch API name async_search.status
2525
*
2626
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
27-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
27+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2828
*/
2929
class Status extends AbstractEndpoint
3030
{

src/Elasticsearch/Endpoints/AsyncSearch/Submit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name async_search.submit
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Submit extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Autoscaling/DeleteAutoscalingPolicy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Elasticsearch API name autoscaling.delete_autoscaling_policy
2525
*
2626
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
27-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
27+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2828
*/
2929
class DeleteAutoscalingPolicy extends AbstractEndpoint
3030
{

src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingCapacity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name autoscaling.get_autoscaling_capacity
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class GetAutoscalingCapacity extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Autoscaling/GetAutoscalingPolicy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Elasticsearch API name autoscaling.get_autoscaling_policy
2525
*
2626
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
27-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
27+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2828
*/
2929
class GetAutoscalingPolicy extends AbstractEndpoint
3030
{

src/Elasticsearch/Endpoints/Autoscaling/PutAutoscalingPolicy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Elasticsearch API name autoscaling.put_autoscaling_policy
2525
*
2626
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
27-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
27+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2828
*/
2929
class PutAutoscalingPolicy extends AbstractEndpoint
3030
{

src/Elasticsearch/Endpoints/Bulk.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Elasticsearch API name bulk
2727
*
2828
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
29-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
29+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
3030
*/
3131
class Bulk extends AbstractEndpoint
3232
{
@@ -93,4 +93,5 @@ public function setBody($body): Bulk
9393
}
9494
return $this;
9595
}
96+
9697
}

src/Elasticsearch/Endpoints/Cat/Aliases.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.aliases
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Aliases extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Allocation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.allocation
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Allocation extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Count.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.count
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Count extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Fielddata.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.fielddata
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Fielddata extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Health.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.health
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Health extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Help.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.help
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Help extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Indices.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.indices
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Indices extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Master.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.master
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Master extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/MlDataFrameAnalytics.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.ml_data_frame_analytics
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class MlDataFrameAnalytics extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/MlDatafeeds.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.ml_datafeeds
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class MlDatafeeds extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/MlJobs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.ml_jobs
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class MlJobs extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/MlTrainedModels.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.ml_trained_models
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class MlTrainedModels extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/NodeAttrs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.nodeattrs
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class NodeAttrs extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Nodes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.nodes
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Nodes extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/PendingTasks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.pending_tasks
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class PendingTasks extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Plugins.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.plugins
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Plugins extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Recovery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.recovery
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Recovery extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Repositories.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.repositories
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Repositories extends AbstractEndpoint
2929
{

src/Elasticsearch/Endpoints/Cat/Segments.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Elasticsearch API name cat.segments
2424
*
2525
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
26-
* and Elasticsearch 7.12.0-SNAPSHOT (8532092b1b040934004e863c98b261c8cc71817b)
26+
* and Elasticsearch 7.12.0-SNAPSHOT (78722783c38caa25a70982b5b042074cde5d3b3a)
2727
*/
2828
class Segments extends AbstractEndpoint
2929
{

0 commit comments

Comments
 (0)