// Code generated from specification version 6.8.2: DO NOT EDIT package esapi import ( "context" "io" "net/http" "strconv" "strings" ) func newMtermvectorsFunc(t Transport) Mtermvectors { return func(o ...func(*MtermvectorsRequest)) (*Response, error) { var r = MtermvectorsRequest{} for _, f := range o { f(&r) } return r.Do(r.ctx, t) } } // ----- API Definition ------------------------------------------------------- // Mtermvectors returns multiple termvectors in one request. // // See full documentation at http://www.elastic.co/guide/en/elasticsearch/reference/master/docs-multi-termvectors.html. // type Mtermvectors func(o ...func(*MtermvectorsRequest)) (*Response, error) // MtermvectorsRequest configures the Mtermvectors API request. // type MtermvectorsRequest struct { Index string DocumentType string Body io.Reader Fields []string FieldStatistics *bool Ids []string Offsets *bool Parent string Payloads *bool Positions *bool Preference string Realtime *bool Routing string TermStatistics *bool Version *int VersionType string 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 MtermvectorsRequest) Do(ctx context.Context, transport Transport) (*Response, error) { var ( method string path strings.Builder params map[string]string ) method = "GET" path.Grow(1 + len(r.Index) + 1 + len(r.DocumentType) + 1 + len("_mtermvectors")) if r.Index != "" { path.WriteString("/") path.WriteString(r.Index) } if r.DocumentType != "" { path.WriteString("/") path.WriteString(r.DocumentType) } path.WriteString("/") path.WriteString("_mtermvectors") params = make(map[string]string) if len(r.Fields) > 0 { params["fields"] = strings.Join(r.Fields, ",") } if r.FieldStatistics != nil { params["field_statistics"] = strconv.FormatBool(*r.FieldStatistics) } if len(r.Ids) > 0 { params["ids"] = strings.Join(r.Ids, ",") } if r.Offsets != nil { params["offsets"] = strconv.FormatBool(*r.Offsets) } if r.Parent != "" { params["parent"] = r.Parent } if r.Payloads != nil { params["payloads"] = strconv.FormatBool(*r.Payloads) } if r.Positions != nil { params["positions"] = strconv.FormatBool(*r.Positions) } if r.Preference != "" { params["preference"] = r.Preference } if r.Realtime != nil { params["realtime"] = strconv.FormatBool(*r.Realtime) } if r.Routing != "" { params["routing"] = r.Routing } if r.TermStatistics != nil { params["term_statistics"] = strconv.FormatBool(*r.TermStatistics) } if r.Version != nil { params["version"] = strconv.FormatInt(int64(*r.Version), 10) } if r.VersionType != "" { params["version_type"] = r.VersionType } 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, _ := newRequest(method, path.String(), r.Body) if len(params) > 0 { q := req.URL.Query() for k, v := range params { q.Set(k, v) } req.URL.RawQuery = q.Encode() } if r.Body != nil { req.Header[headerContentType] = headerContentTypeJSON } 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 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 Mtermvectors) WithContext(v context.Context) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.ctx = v } } // WithBody - Define ids, documents, parameters or a list of parameters per document here. You must at least provide a list of document ids. See documentation.. // func (f Mtermvectors) WithBody(v io.Reader) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Body = v } } // WithIndex - the index in which the document resides.. // func (f Mtermvectors) WithIndex(v string) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Index = v } } // WithDocumentType - the type of the document.. // func (f Mtermvectors) WithDocumentType(v string) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.DocumentType = v } } // WithFields - a list of fields to return. applies to all returned documents unless otherwise specified in body "params" or "docs".. // func (f Mtermvectors) WithFields(v ...string) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Fields = v } } // WithFieldStatistics - specifies if document count, sum of document frequencies and sum of total term frequencies should be returned. applies to all returned documents unless otherwise specified in body "params" or "docs".. // func (f Mtermvectors) WithFieldStatistics(v bool) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.FieldStatistics = &v } } // WithIds - a list of documents ids. you must define ids as parameter or set "ids" or "docs" in the request body. // func (f Mtermvectors) WithIds(v ...string) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Ids = v } } // WithOffsets - specifies if term offsets should be returned. applies to all returned documents unless otherwise specified in body "params" or "docs".. // func (f Mtermvectors) WithOffsets(v bool) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Offsets = &v } } // WithParent - parent ID of documents. applies to all returned documents unless otherwise specified in body "params" or "docs".. // func (f Mtermvectors) WithParent(v string) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Parent = v } } // WithPayloads - specifies if term payloads should be returned. applies to all returned documents unless otherwise specified in body "params" or "docs".. // func (f Mtermvectors) WithPayloads(v bool) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Payloads = &v } } // WithPositions - specifies if term positions should be returned. applies to all returned documents unless otherwise specified in body "params" or "docs".. // func (f Mtermvectors) WithPositions(v bool) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Positions = &v } } // WithPreference - specify the node or shard the operation should be performed on (default: random) .applies to all returned documents unless otherwise specified in body "params" or "docs".. // func (f Mtermvectors) WithPreference(v string) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Preference = v } } // WithRealtime - specifies if requests are real-time as opposed to near-real-time (default: true).. // func (f Mtermvectors) WithRealtime(v bool) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Realtime = &v } } // WithRouting - specific routing value. applies to all returned documents unless otherwise specified in body "params" or "docs".. // func (f Mtermvectors) WithRouting(v string) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Routing = v } } // WithTermStatistics - specifies if total term frequency and document frequency should be returned. applies to all returned documents unless otherwise specified in body "params" or "docs".. // func (f Mtermvectors) WithTermStatistics(v bool) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.TermStatistics = &v } } // WithVersion - explicit version number for concurrency control. // func (f Mtermvectors) WithVersion(v int) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Version = &v } } // WithVersionType - specific version type. // func (f Mtermvectors) WithVersionType(v string) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.VersionType = v } } // WithPretty makes the response body pretty-printed. // func (f Mtermvectors) WithPretty() func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Pretty = true } } // WithHuman makes statistical values human-readable. // func (f Mtermvectors) WithHuman() func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.Human = true } } // WithErrorTrace includes the stack trace for errors in the response body. // func (f Mtermvectors) WithErrorTrace() func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.ErrorTrace = true } } // WithFilterPath filters the properties of the response body. // func (f Mtermvectors) WithFilterPath(v ...string) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { r.FilterPath = v } } // WithHeader adds the headers to the HTTP request. // func (f Mtermvectors) WithHeader(h map[string]string) func(*MtermvectorsRequest) { return func(r *MtermvectorsRequest) { if r.Header == nil { r.Header = make(http.Header) } for k, v := range h { r.Header.Add(k, v) } } }