Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Endpoints/AsyncSearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public function status(?array $params = null)
* explain?: bool, // Specify whether to return detailed information about score computation as part of a hit
* stored_fields?: string|array<string>, // A comma-separated list of stored fields to return as part of a hit
* docvalue_fields?: string|array<string>, // A comma-separated list of fields to return as the docvalue representation of a field for each hit
* from?: int, // Starting offset (default: 0)
* from?: int, // Starting offset
* ignore_unavailable?: bool, // Whether specified concrete indices should be ignored when unavailable (missing or closed)
* ignore_throttled?: bool, // Whether specified concrete, expanded or aliased indices should be ignored when throttled
* allow_no_indices?: bool, // Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
Expand All @@ -181,7 +181,7 @@ public function status(?array $params = null)
* q?: string, // Query in the Lucene query string syntax
* routing?: string|array<string>, // A comma-separated list of specific routing values
* search_type?: string, // Search operation type
* size?: int, // Number of hits to return (default: 10)
* size?: int, // Number of hits to return
* sort?: string|array<string>, // A comma-separated list of <field>:<direction> pairs
* _source?: string|array<string>, // True or false to return the _source field or not, or a list of fields to return
* _source_excludes?: string|array<string>, // A list of fields to exclude from the returned _source field
Expand Down
2 changes: 1 addition & 1 deletion src/Endpoints/Cluster.php
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ public function putComponentTemplate(?array $params = null)
* @link https://www.elastic.co/guide/en/elasticsearch/reference/8.19/cluster-update-settings.html
*
* @param array{
* flat_settings?: bool, // Return settings in flat format (default: false)
* flat_settings?: bool, // Return settings in flat format
* master_timeout?: int|string, // Explicit operation timeout for connection to master node
* timeout?: int|string, // Explicit operation timeout
* pretty?: bool, // Pretty format the returned JSON response. (DEFAULT: false)
Expand Down