You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Endpoints/Snapshot.php
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -272,6 +272,13 @@ public function deleteRepository(array $params = [])
272
272
* index_names: boolean, // Whether to include the name of each index in the snapshot. Defaults to true.
273
273
* index_details: boolean, // Whether to include details of each index in the snapshot, if those details are available. Defaults to false.
274
274
* include_repository: boolean, // Whether to include the repository name in the snapshot info. Defaults to true.
275
+
* sort: enum, // Allows setting a sort order for the result. Defaults to start_time
276
+
* size: integer, // Maximum number of snapshots to return. Defaults to 0 which means return all that match without limit.
277
+
* order: enum, // Sort order
278
+
* from_sort_value: string, // Value of the current sort column at which to start retrieval.
279
+
* after: string, // Offset identifier to start pagination from as returned by the 'next' field in the response body.
280
+
* offset: integer, // Numeric offset to start pagination based on the snapshots matching the request. Defaults to 0
281
+
* slm_policy_filter: string, // Filter snapshots by a comma-separated list of SLM policy names that snapshots belong to. Accepts wildcards. Use the special pattern '_none' to match snapshots without an SLM policy
275
282
* verbose: boolean, // Whether to show verbose snapshot info or only show the basic info found in the repository index blob
276
283
* pretty: boolean, // Pretty format the returned JSON response. (DEFAULT: false)
277
284
* human: boolean, // Return human readable values for statistics. (DEFAULT: true)
@@ -293,7 +300,7 @@ public function get(array $params = [])
Copy file name to clipboardExpand all lines: src/Traits/ClientEndpointsTrait.php
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -629,6 +629,7 @@ public function fieldCaps(array $params = [])
629
629
* @param array{
630
630
* id: string, // (REQUIRED) The document ID
631
631
* index: string, // (REQUIRED) The name of the index
632
+
* force_synthetic_source: boolean, // Should this request force synthetic _source? Use this to test if the mapping supports synthetic _source and to get a sense of the worst case performance. Fetches with this enabled will be slower the enabling synthetic source natively in the index.
632
633
* stored_fields: list, // A comma-separated list of stored fields to return in the response
633
634
* preference: string, // Specify the node or shard the operation should be performed on (default: random)
634
635
* realtime: boolean, // Specify whether to perform the operation in realtime or search mode
@@ -659,7 +660,7 @@ public function get(array $params = [])
@@ -943,6 +944,7 @@ public function knnSearch(array $params = [])
943
944
*
944
945
* @param array{
945
946
* index: string, // The name of the index
947
+
* force_synthetic_source: boolean, // Should this request force synthetic _source? Use this to test if the mapping supports synthetic _source and to get a sense of the worst case performance. Fetches with this enabled will be slower the enabling synthetic source natively in the index.
946
948
* stored_fields: list, // A comma-separated list of stored fields to return in the response
947
949
* preference: string, // Specify the node or shard the operation should be performed on (default: random)
948
950
* realtime: boolean, // Specify whether to perform the operation in realtime or search mode
@@ -975,7 +977,7 @@ public function mget(array $params = [])
@@ -1499,6 +1501,7 @@ public function scroll(array $params = [])
1499
1501
* stored_fields: list, // A comma-separated list of stored fields to return as part of a hit
1500
1502
* docvalue_fields: list, // A comma-separated list of fields to return as the docvalue representation of a field for each hit
1501
1503
* from: number, // Starting offset (default: 0)
1504
+
* force_synthetic_source: boolean, // Should this request force synthetic _source? Use this to test if the mapping supports synthetic _source and to get a sense of the worst case performance. Fetches with this enabled will be slower the enabling synthetic source natively in the index.
1502
1505
* ignore_unavailable: boolean, // Whether specified concrete indices should be ignored when unavailable (missing or closed)
1503
1506
* ignore_throttled: boolean, // Whether specified concrete, expanded or aliased indices should be ignored when throttled
1504
1507
* allow_no_indices: boolean, // Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
@@ -1556,7 +1559,7 @@ public function search(array $params = [])
0 commit comments