-
Notifications
You must be signed in to change notification settings - Fork 627
/
Copy pathapi.xpack.async_search.submit.go
711 lines (593 loc) · 20.8 KB
/
api.xpack.async_search.submit.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//
// Code generated from specification version 8.7.0: DO NOT EDIT
package esapi
import (
"context"
"fmt"
"io"
"net/http"
"strconv"
"strings"
"time"
)
func newAsyncSearchSubmitFunc(t Transport) AsyncSearchSubmit {
return func(o ...func(*AsyncSearchSubmitRequest)) (*Response, error) {
var r = AsyncSearchSubmitRequest{}
for _, f := range o {
f(&r)
}
return r.Do(r.ctx, t)
}
}
// ----- API Definition -------------------------------------------------------
// AsyncSearchSubmit - Executes a search request asynchronously.
//
// See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html.
type AsyncSearchSubmit func(o ...func(*AsyncSearchSubmitRequest)) (*Response, error)
// AsyncSearchSubmitRequest configures the Async Search Submit API request.
type AsyncSearchSubmitRequest struct {
Index []string
Body io.Reader
AllowNoIndices *bool
AllowPartialSearchResults *bool
Analyzer string
AnalyzeWildcard *bool
BatchedReduceSize *int
DefaultOperator string
Df string
DocvalueFields []string
ExpandWildcards string
Explain *bool
From *int
IgnoreThrottled *bool
IgnoreUnavailable *bool
KeepAlive time.Duration
KeepOnCompletion *bool
Lenient *bool
MaxConcurrentShardRequests *int
Preference string
Query string
RequestCache *bool
Routing []string
SearchType string
SeqNoPrimaryTerm *bool
Size *int
Sort []string
Source []string
SourceExcludes []string
SourceIncludes []string
Stats []string
StoredFields []string
SuggestField string
SuggestMode string
SuggestSize *int
SuggestText string
TerminateAfter *int
Timeout time.Duration
TrackScores *bool
TrackTotalHits interface{}
TypedKeys *bool
Version *bool
WaitForCompletionTimeout time.Duration
Pretty bool
Human bool
ErrorTrace bool
FilterPath []string
Header http.Header
ctx context.Context
}
// Do executes the request and returns response or error.
func (r AsyncSearchSubmitRequest) Do(ctx context.Context, transport Transport) (*Response, error) {
var (
method string
path strings.Builder
params map[string]string
)
method = "POST"
path.Grow(7 + 1 + len(strings.Join(r.Index, ",")) + 1 + len("_async_search"))
path.WriteString("http://")
if len(r.Index) > 0 {
path.WriteString("/")
path.WriteString(strings.Join(r.Index, ","))
}
path.WriteString("/")
path.WriteString("_async_search")
params = make(map[string]string)
if r.AllowNoIndices != nil {
params["allow_no_indices"] = strconv.FormatBool(*r.AllowNoIndices)
}
if r.AllowPartialSearchResults != nil {
params["allow_partial_search_results"] = strconv.FormatBool(*r.AllowPartialSearchResults)
}
if r.Analyzer != "" {
params["analyzer"] = r.Analyzer
}
if r.AnalyzeWildcard != nil {
params["analyze_wildcard"] = strconv.FormatBool(*r.AnalyzeWildcard)
}
if r.BatchedReduceSize != nil {
params["batched_reduce_size"] = strconv.FormatInt(int64(*r.BatchedReduceSize), 10)
}
if r.DefaultOperator != "" {
params["default_operator"] = r.DefaultOperator
}
if r.Df != "" {
params["df"] = r.Df
}
if len(r.DocvalueFields) > 0 {
params["docvalue_fields"] = strings.Join(r.DocvalueFields, ",")
}
if r.ExpandWildcards != "" {
params["expand_wildcards"] = r.ExpandWildcards
}
if r.Explain != nil {
params["explain"] = strconv.FormatBool(*r.Explain)
}
if r.From != nil {
params["from"] = strconv.FormatInt(int64(*r.From), 10)
}
if r.IgnoreThrottled != nil {
params["ignore_throttled"] = strconv.FormatBool(*r.IgnoreThrottled)
}
if r.IgnoreUnavailable != nil {
params["ignore_unavailable"] = strconv.FormatBool(*r.IgnoreUnavailable)
}
if r.KeepAlive != 0 {
params["keep_alive"] = formatDuration(r.KeepAlive)
}
if r.KeepOnCompletion != nil {
params["keep_on_completion"] = strconv.FormatBool(*r.KeepOnCompletion)
}
if r.Lenient != nil {
params["lenient"] = strconv.FormatBool(*r.Lenient)
}
if r.MaxConcurrentShardRequests != nil {
params["max_concurrent_shard_requests"] = strconv.FormatInt(int64(*r.MaxConcurrentShardRequests), 10)
}
if r.Preference != "" {
params["preference"] = r.Preference
}
if r.Query != "" {
params["q"] = r.Query
}
if r.RequestCache != nil {
params["request_cache"] = strconv.FormatBool(*r.RequestCache)
}
if len(r.Routing) > 0 {
params["routing"] = strings.Join(r.Routing, ",")
}
if r.SearchType != "" {
params["search_type"] = r.SearchType
}
if r.SeqNoPrimaryTerm != nil {
params["seq_no_primary_term"] = strconv.FormatBool(*r.SeqNoPrimaryTerm)
}
if r.Size != nil {
params["size"] = strconv.FormatInt(int64(*r.Size), 10)
}
if len(r.Sort) > 0 {
params["sort"] = strings.Join(r.Sort, ",")
}
if len(r.Source) > 0 {
params["_source"] = strings.Join(r.Source, ",")
}
if len(r.SourceExcludes) > 0 {
params["_source_excludes"] = strings.Join(r.SourceExcludes, ",")
}
if len(r.SourceIncludes) > 0 {
params["_source_includes"] = strings.Join(r.SourceIncludes, ",")
}
if len(r.Stats) > 0 {
params["stats"] = strings.Join(r.Stats, ",")
}
if len(r.StoredFields) > 0 {
params["stored_fields"] = strings.Join(r.StoredFields, ",")
}
if r.SuggestField != "" {
params["suggest_field"] = r.SuggestField
}
if r.SuggestMode != "" {
params["suggest_mode"] = r.SuggestMode
}
if r.SuggestSize != nil {
params["suggest_size"] = strconv.FormatInt(int64(*r.SuggestSize), 10)
}
if r.SuggestText != "" {
params["suggest_text"] = r.SuggestText
}
if r.TerminateAfter != nil {
params["terminate_after"] = strconv.FormatInt(int64(*r.TerminateAfter), 10)
}
if r.Timeout != 0 {
params["timeout"] = formatDuration(r.Timeout)
}
if r.TrackScores != nil {
params["track_scores"] = strconv.FormatBool(*r.TrackScores)
}
if r.TrackTotalHits != nil {
params["track_total_hits"] = fmt.Sprintf("%v", r.TrackTotalHits)
}
if r.TypedKeys != nil {
params["typed_keys"] = strconv.FormatBool(*r.TypedKeys)
}
if r.Version != nil {
params["version"] = strconv.FormatBool(*r.Version)
}
if r.WaitForCompletionTimeout != 0 {
params["wait_for_completion_timeout"] = formatDuration(r.WaitForCompletionTimeout)
}
if r.Pretty {
params["pretty"] = "true"
}
if r.Human {
params["human"] = "true"
}
if r.ErrorTrace {
params["error_trace"] = "true"
}
if len(r.FilterPath) > 0 {
params["filter_path"] = strings.Join(r.FilterPath, ",")
}
req, err := newRequest(method, path.String(), r.Body)
if err != nil {
return nil, err
}
if len(params) > 0 {
q := req.URL.Query()
for k, v := range params {
q.Set(k, v)
}
req.URL.RawQuery = q.Encode()
}
if len(r.Header) > 0 {
if len(req.Header) == 0 {
req.Header = r.Header
} else {
for k, vv := range r.Header {
for _, v := range vv {
req.Header.Add(k, v)
}
}
}
}
if r.Body != nil && req.Header.Get(headerContentType) == "" {
req.Header[headerContentType] = headerContentTypeJSON
}
if ctx != nil {
req = req.WithContext(ctx)
}
res, err := transport.Perform(req)
if err != nil {
return nil, err
}
response := Response{
StatusCode: res.StatusCode,
Body: res.Body,
Header: res.Header,
}
return &response, nil
}
// WithContext sets the request context.
func (f AsyncSearchSubmit) WithContext(v context.Context) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.ctx = v
}
}
// WithBody - The search definition using the Query DSL.
func (f AsyncSearchSubmit) WithBody(v io.Reader) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Body = v
}
}
// WithIndex - a list of index names to search; use _all to perform the operation on all indices.
func (f AsyncSearchSubmit) WithIndex(v ...string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Index = v
}
}
// WithAllowNoIndices - whether to ignore if a wildcard indices expression resolves into no concrete indices. (this includes `_all` string or when no indices have been specified).
func (f AsyncSearchSubmit) WithAllowNoIndices(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.AllowNoIndices = &v
}
}
// WithAllowPartialSearchResults - indicate if an error should be returned if there is a partial search failure or timeout.
func (f AsyncSearchSubmit) WithAllowPartialSearchResults(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.AllowPartialSearchResults = &v
}
}
// WithAnalyzer - the analyzer to use for the query string.
func (f AsyncSearchSubmit) WithAnalyzer(v string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Analyzer = v
}
}
// WithAnalyzeWildcard - specify whether wildcard and prefix queries should be analyzed (default: false).
func (f AsyncSearchSubmit) WithAnalyzeWildcard(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.AnalyzeWildcard = &v
}
}
// WithBatchedReduceSize - the number of shard results that should be reduced at once on the coordinating node. this value should be used as the granularity at which progress results will be made available..
func (f AsyncSearchSubmit) WithBatchedReduceSize(v int) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.BatchedReduceSize = &v
}
}
// WithDefaultOperator - the default operator for query string query (and or or).
func (f AsyncSearchSubmit) WithDefaultOperator(v string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.DefaultOperator = v
}
}
// WithDf - the field to use as default where no field prefix is given in the query string.
func (f AsyncSearchSubmit) WithDf(v string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Df = v
}
}
// WithDocvalueFields - a list of fields to return as the docvalue representation of a field for each hit.
func (f AsyncSearchSubmit) WithDocvalueFields(v ...string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.DocvalueFields = v
}
}
// WithExpandWildcards - whether to expand wildcard expression to concrete indices that are open, closed or both..
func (f AsyncSearchSubmit) WithExpandWildcards(v string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.ExpandWildcards = v
}
}
// WithExplain - specify whether to return detailed information about score computation as part of a hit.
func (f AsyncSearchSubmit) WithExplain(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Explain = &v
}
}
// WithFrom - starting offset (default: 0).
func (f AsyncSearchSubmit) WithFrom(v int) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.From = &v
}
}
// WithIgnoreThrottled - whether specified concrete, expanded or aliased indices should be ignored when throttled.
func (f AsyncSearchSubmit) WithIgnoreThrottled(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.IgnoreThrottled = &v
}
}
// WithIgnoreUnavailable - whether specified concrete indices should be ignored when unavailable (missing or closed).
func (f AsyncSearchSubmit) WithIgnoreUnavailable(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.IgnoreUnavailable = &v
}
}
// WithKeepAlive - update the time interval in which the results (partial or final) for this search will be available.
func (f AsyncSearchSubmit) WithKeepAlive(v time.Duration) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.KeepAlive = v
}
}
// WithKeepOnCompletion - control whether the response should be stored in the cluster if it completed within the provided [wait_for_completion] time (default: false).
func (f AsyncSearchSubmit) WithKeepOnCompletion(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.KeepOnCompletion = &v
}
}
// WithLenient - specify whether format-based query failures (such as providing text to a numeric field) should be ignored.
func (f AsyncSearchSubmit) WithLenient(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Lenient = &v
}
}
// WithMaxConcurrentShardRequests - 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.
func (f AsyncSearchSubmit) WithMaxConcurrentShardRequests(v int) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.MaxConcurrentShardRequests = &v
}
}
// WithPreference - specify the node or shard the operation should be performed on (default: random).
func (f AsyncSearchSubmit) WithPreference(v string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Preference = v
}
}
// WithQuery - query in the lucene query string syntax.
func (f AsyncSearchSubmit) WithQuery(v string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Query = v
}
}
// WithRequestCache - specify if request cache should be used for this request or not, defaults to true.
func (f AsyncSearchSubmit) WithRequestCache(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.RequestCache = &v
}
}
// WithRouting - a list of specific routing values.
func (f AsyncSearchSubmit) WithRouting(v ...string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Routing = v
}
}
// WithSearchType - search operation type.
func (f AsyncSearchSubmit) WithSearchType(v string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.SearchType = v
}
}
// WithSeqNoPrimaryTerm - specify whether to return sequence number and primary term of the last modification of each hit.
func (f AsyncSearchSubmit) WithSeqNoPrimaryTerm(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.SeqNoPrimaryTerm = &v
}
}
// WithSize - number of hits to return (default: 10).
func (f AsyncSearchSubmit) WithSize(v int) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Size = &v
}
}
// WithSort - a list of <field>:<direction> pairs.
func (f AsyncSearchSubmit) WithSort(v ...string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Sort = v
}
}
// WithSource - true or false to return the _source field or not, or a list of fields to return.
func (f AsyncSearchSubmit) WithSource(v ...string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Source = v
}
}
// WithSourceExcludes - a list of fields to exclude from the returned _source field.
func (f AsyncSearchSubmit) WithSourceExcludes(v ...string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.SourceExcludes = v
}
}
// WithSourceIncludes - a list of fields to extract and return from the _source field.
func (f AsyncSearchSubmit) WithSourceIncludes(v ...string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.SourceIncludes = v
}
}
// WithStats - specific 'tag' of the request for logging and statistical purposes.
func (f AsyncSearchSubmit) WithStats(v ...string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Stats = v
}
}
// WithStoredFields - a list of stored fields to return as part of a hit.
func (f AsyncSearchSubmit) WithStoredFields(v ...string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.StoredFields = v
}
}
// WithSuggestField - specify which field to use for suggestions.
func (f AsyncSearchSubmit) WithSuggestField(v string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.SuggestField = v
}
}
// WithSuggestMode - specify suggest mode.
func (f AsyncSearchSubmit) WithSuggestMode(v string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.SuggestMode = v
}
}
// WithSuggestSize - how many suggestions to return in response.
func (f AsyncSearchSubmit) WithSuggestSize(v int) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.SuggestSize = &v
}
}
// WithSuggestText - the source text for which the suggestions should be returned.
func (f AsyncSearchSubmit) WithSuggestText(v string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.SuggestText = v
}
}
// WithTerminateAfter - the maximum number of documents to collect for each shard, upon reaching which the query execution will terminate early..
func (f AsyncSearchSubmit) WithTerminateAfter(v int) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.TerminateAfter = &v
}
}
// WithTimeout - explicit operation timeout.
func (f AsyncSearchSubmit) WithTimeout(v time.Duration) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Timeout = v
}
}
// WithTrackScores - whether to calculate and return scores even if they are not used for sorting.
func (f AsyncSearchSubmit) WithTrackScores(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.TrackScores = &v
}
}
// WithTrackTotalHits - indicate if the number of documents that match the query should be tracked. a number can also be specified, to accurately track the total hit count up to the number..
func (f AsyncSearchSubmit) WithTrackTotalHits(v interface{}) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.TrackTotalHits = v
}
}
// WithTypedKeys - specify whether aggregation and suggester names should be prefixed by their respective types in the response.
func (f AsyncSearchSubmit) WithTypedKeys(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.TypedKeys = &v
}
}
// WithVersion - specify whether to return document version as part of a hit.
func (f AsyncSearchSubmit) WithVersion(v bool) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Version = &v
}
}
// WithWaitForCompletionTimeout - specify the time that the request should block waiting for the final response.
func (f AsyncSearchSubmit) WithWaitForCompletionTimeout(v time.Duration) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.WaitForCompletionTimeout = v
}
}
// WithPretty makes the response body pretty-printed.
func (f AsyncSearchSubmit) WithPretty() func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Pretty = true
}
}
// WithHuman makes statistical values human-readable.
func (f AsyncSearchSubmit) WithHuman() func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.Human = true
}
}
// WithErrorTrace includes the stack trace for errors in the response body.
func (f AsyncSearchSubmit) WithErrorTrace() func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.ErrorTrace = true
}
}
// WithFilterPath filters the properties of the response body.
func (f AsyncSearchSubmit) WithFilterPath(v ...string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
r.FilterPath = v
}
}
// WithHeader adds the headers to the HTTP request.
func (f AsyncSearchSubmit) WithHeader(h map[string]string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
if r.Header == nil {
r.Header = make(http.Header)
}
for k, v := range h {
r.Header.Add(k, v)
}
}
}
// WithOpaqueID adds the X-Opaque-Id header to the HTTP request.
func (f AsyncSearchSubmit) WithOpaqueID(s string) func(*AsyncSearchSubmitRequest) {
return func(r *AsyncSearchSubmitRequest) {
if r.Header == nil {
r.Header = make(http.Header)
}
r.Header.Set("X-Opaque-Id", s)
}
}