Skip to content

Commit 24c2bf4

Browse files
committed
Updated endpoints to 7.14.0-SNAPSHOT
1 parent 143a616 commit 24c2bf4

File tree

412 files changed

+1180
-454
lines changed

Some content is hidden

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

412 files changed

+1180
-454
lines changed

src/Elasticsearch/Client.php

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
use Elasticsearch\Namespaces\EnrichNamespace;
3737
use Elasticsearch\Namespaces\EqlNamespace;
3838
use Elasticsearch\Namespaces\FeaturesNamespace;
39+
use Elasticsearch\Namespaces\FleetNamespace;
3940
use Elasticsearch\Namespaces\GraphNamespace;
4041
use Elasticsearch\Namespaces\IlmNamespace;
4142
use Elasticsearch\Namespaces\IndicesNamespace;
@@ -64,11 +65,11 @@
6465
* Class Client
6566
*
6667
* NOTE: this file is autogenerated using util/GenerateEndpoints.php
67-
* and Elasticsearch 7.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d)
68+
* and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f)
6869
*/
6970
class Client
7071
{
71-
const VERSION = '7.13.0-SNAPSHOT';
72+
const VERSION = '7.14.0-SNAPSHOT';
7273

7374
/**
7475
* @var Transport
@@ -140,6 +141,11 @@ class Client
140141
*/
141142
protected $features;
142143

144+
/**
145+
* @var FleetNamespace
146+
*/
147+
protected $fleet;
148+
143149
/**
144150
* @var GraphNamespace
145151
*/
@@ -277,6 +283,7 @@ public function __construct(Transport $transport, callable $endpoint, array $reg
277283
$this->enrich = new EnrichNamespace($transport, $endpoint);
278284
$this->eql = new EqlNamespace($transport, $endpoint);
279285
$this->features = new FeaturesNamespace($transport, $endpoint);
286+
$this->fleet = new FleetNamespace($transport, $endpoint);
280287
$this->graph = new GraphNamespace($transport, $endpoint);
281288
$this->ilm = new IlmNamespace($transport, $endpoint);
282289
$this->indices = new IndicesNamespace($transport, $endpoint);
@@ -924,7 +931,7 @@ public function mget(array $params = [])
924931
/**
925932
* $params['index'] = (list) A comma-separated list of index names to use as default
926933
* $params['type'] = DEPRECATED (list) A comma-separated list of document types to use as default
927-
* $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,query_and_fetch,dfs_query_then_fetch,dfs_query_and_fetch)
934+
* $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch)
928935
* $params['max_concurrent_searches'] = (number) Controls the maximum number of concurrent searches the multi search api will execute
929936
* $params['typed_keys'] = (boolean) Specify whether aggregation and suggester names should be prefixed by their respective types in the response
930937
* $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.
@@ -955,7 +962,7 @@ public function msearch(array $params = [])
955962
/**
956963
* $params['index'] = (list) A comma-separated list of index names to use as default
957964
* $params['type'] = DEPRECATED (list) A comma-separated list of document types to use as default
958-
* $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,query_and_fetch,dfs_query_then_fetch,dfs_query_and_fetch)
965+
* $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch)
959966
* $params['typed_keys'] = (boolean) Specify whether aggregation and suggester names should be prefixed by their respective types in the response
960967
* $params['max_concurrent_searches'] = (number) Controls the maximum number of concurrent searches the multi search api will execute
961968
* $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)
@@ -1323,7 +1330,7 @@ public function searchShards(array $params = [])
13231330
* $params['preference'] = (string) Specify the node or shard the operation should be performed on (default: random)
13241331
* $params['routing'] = (list) A comma-separated list of specific routing values
13251332
* $params['scroll'] = (time) Specify how long a consistent view of the index should be maintained for scrolled search
1326-
* $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,query_and_fetch,dfs_query_then_fetch,dfs_query_and_fetch)
1333+
* $params['search_type'] = (enum) Search operation type (Options = query_then_fetch,dfs_query_then_fetch)
13271334
* $params['explain'] = (boolean) Specify whether to return detailed information about score computation as part of a hit
13281335
* $params['profile'] = (boolean) Specify whether to profile the query execution
13291336
* $params['typed_keys'] = (boolean) Specify whether aggregation and suggester names should be prefixed by their respective types in the response
@@ -1545,6 +1552,10 @@ public function features(): FeaturesNamespace
15451552
{
15461553
return $this->features;
15471554
}
1555+
public function fleet(): FleetNamespace
1556+
{
1557+
return $this->fleet;
1558+
}
15481559
public function graph(): GraphNamespace
15491560
{
15501561
return $this->graph;

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.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d)
27+
* and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f)
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.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d)
27+
* and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f)
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.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d)
27+
* and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f)
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.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d)
26+
* and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f)
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.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d)
27+
* and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f)
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.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d)
26+
* and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f)
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.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d)
27+
* and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f)
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.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d)
27+
* and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f)
2828
*/
2929
class PutAutoscalingPolicy extends AbstractEndpoint
3030
{

src/Elasticsearch/Endpoints/Bulk.php

Lines changed: 1 addition & 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.13.0-SNAPSHOT (ebb67a590736f79b58d59f9d8ccbcc4b5068c88d)
29+
* and Elasticsearch 7.14.0-SNAPSHOT (83c4295551bb0cdaba7439a12c751e16741f595f)
3030
*/
3131
class Bulk extends AbstractEndpoint
3232
{

0 commit comments

Comments
 (0)