api.xpack.ml.preview_datafeed.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. // Licensed to Elasticsearch B.V. under one or more contributor
  2. // license agreements. See the NOTICE file distributed with
  3. // this work for additional information regarding copyright
  4. // ownership. Elasticsearch B.V. licenses this file to you under
  5. // the Apache License, Version 2.0 (the "License"); you may
  6. // not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing,
  12. // software distributed under the License is distributed on an
  13. // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. // KIND, either express or implied. See the License for the
  15. // specific language governing permissions and limitations
  16. // under the License.
  17. //
  18. // Code generated from specification version 7.17.10: DO NOT EDIT
  19. package esapi
  20. import (
  21. "context"
  22. "io"
  23. "net/http"
  24. "strings"
  25. )
  26. func newMLPreviewDatafeedFunc(t Transport) MLPreviewDatafeed {
  27. return func(o ...func(*MLPreviewDatafeedRequest)) (*Response, error) {
  28. var r = MLPreviewDatafeedRequest{}
  29. for _, f := range o {
  30. f(&r)
  31. }
  32. return r.Do(r.ctx, t)
  33. }
  34. }
  35. // ----- API Definition -------------------------------------------------------
  36. // MLPreviewDatafeed - Previews a datafeed.
  37. //
  38. // See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-preview-datafeed.html.
  39. type MLPreviewDatafeed func(o ...func(*MLPreviewDatafeedRequest)) (*Response, error)
  40. // MLPreviewDatafeedRequest configures the ML Preview Datafeed API request.
  41. type MLPreviewDatafeedRequest struct {
  42. Body io.Reader
  43. DatafeedID string
  44. Pretty bool
  45. Human bool
  46. ErrorTrace bool
  47. FilterPath []string
  48. Header http.Header
  49. ctx context.Context
  50. }
  51. // Do executes the request and returns response or error.
  52. func (r MLPreviewDatafeedRequest) Do(ctx context.Context, transport Transport) (*Response, error) {
  53. var (
  54. method string
  55. path strings.Builder
  56. params map[string]string
  57. )
  58. method = "POST"
  59. path.Grow(1 + len("_ml") + 1 + len("datafeeds") + 1 + len(r.DatafeedID) + 1 + len("_preview"))
  60. path.WriteString("/")
  61. path.WriteString("_ml")
  62. path.WriteString("/")
  63. path.WriteString("datafeeds")
  64. if r.DatafeedID != "" {
  65. path.WriteString("/")
  66. path.WriteString(r.DatafeedID)
  67. }
  68. path.WriteString("/")
  69. path.WriteString("_preview")
  70. params = make(map[string]string)
  71. if r.Pretty {
  72. params["pretty"] = "true"
  73. }
  74. if r.Human {
  75. params["human"] = "true"
  76. }
  77. if r.ErrorTrace {
  78. params["error_trace"] = "true"
  79. }
  80. if len(r.FilterPath) > 0 {
  81. params["filter_path"] = strings.Join(r.FilterPath, ",")
  82. }
  83. req, err := newRequest(method, path.String(), r.Body)
  84. if err != nil {
  85. return nil, err
  86. }
  87. if len(params) > 0 {
  88. q := req.URL.Query()
  89. for k, v := range params {
  90. q.Set(k, v)
  91. }
  92. req.URL.RawQuery = q.Encode()
  93. }
  94. if len(r.Header) > 0 {
  95. if len(req.Header) == 0 {
  96. req.Header = r.Header
  97. } else {
  98. for k, vv := range r.Header {
  99. for _, v := range vv {
  100. req.Header.Add(k, v)
  101. }
  102. }
  103. }
  104. }
  105. if r.Body != nil && req.Header.Get(headerContentType) == "" {
  106. req.Header[headerContentType] = headerContentTypeJSON
  107. }
  108. if ctx != nil {
  109. req = req.WithContext(ctx)
  110. }
  111. res, err := transport.Perform(req)
  112. if err != nil {
  113. return nil, err
  114. }
  115. response := Response{
  116. StatusCode: res.StatusCode,
  117. Body: res.Body,
  118. Header: res.Header,
  119. }
  120. return &response, nil
  121. }
  122. // WithContext sets the request context.
  123. func (f MLPreviewDatafeed) WithContext(v context.Context) func(*MLPreviewDatafeedRequest) {
  124. return func(r *MLPreviewDatafeedRequest) {
  125. r.ctx = v
  126. }
  127. }
  128. // WithBody - The datafeed config and job config with which to execute the preview.
  129. func (f MLPreviewDatafeed) WithBody(v io.Reader) func(*MLPreviewDatafeedRequest) {
  130. return func(r *MLPreviewDatafeedRequest) {
  131. r.Body = v
  132. }
  133. }
  134. // WithDatafeedID - the ID of the datafeed to preview.
  135. func (f MLPreviewDatafeed) WithDatafeedID(v string) func(*MLPreviewDatafeedRequest) {
  136. return func(r *MLPreviewDatafeedRequest) {
  137. r.DatafeedID = v
  138. }
  139. }
  140. // WithPretty makes the response body pretty-printed.
  141. func (f MLPreviewDatafeed) WithPretty() func(*MLPreviewDatafeedRequest) {
  142. return func(r *MLPreviewDatafeedRequest) {
  143. r.Pretty = true
  144. }
  145. }
  146. // WithHuman makes statistical values human-readable.
  147. func (f MLPreviewDatafeed) WithHuman() func(*MLPreviewDatafeedRequest) {
  148. return func(r *MLPreviewDatafeedRequest) {
  149. r.Human = true
  150. }
  151. }
  152. // WithErrorTrace includes the stack trace for errors in the response body.
  153. func (f MLPreviewDatafeed) WithErrorTrace() func(*MLPreviewDatafeedRequest) {
  154. return func(r *MLPreviewDatafeedRequest) {
  155. r.ErrorTrace = true
  156. }
  157. }
  158. // WithFilterPath filters the properties of the response body.
  159. func (f MLPreviewDatafeed) WithFilterPath(v ...string) func(*MLPreviewDatafeedRequest) {
  160. return func(r *MLPreviewDatafeedRequest) {
  161. r.FilterPath = v
  162. }
  163. }
  164. // WithHeader adds the headers to the HTTP request.
  165. func (f MLPreviewDatafeed) WithHeader(h map[string]string) func(*MLPreviewDatafeedRequest) {
  166. return func(r *MLPreviewDatafeedRequest) {
  167. if r.Header == nil {
  168. r.Header = make(http.Header)
  169. }
  170. for k, v := range h {
  171. r.Header.Add(k, v)
  172. }
  173. }
  174. }
  175. // WithOpaqueID adds the X-Opaque-Id header to the HTTP request.
  176. func (f MLPreviewDatafeed) WithOpaqueID(s string) func(*MLPreviewDatafeedRequest) {
  177. return func(r *MLPreviewDatafeedRequest) {
  178. if r.Header == nil {
  179. r.Header = make(http.Header)
  180. }
  181. r.Header.Set("X-Opaque-Id", s)
  182. }
  183. }