api.xpack.ml.post_data.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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 newMLPostDataFunc(t Transport) MLPostData {
  27. return func(job_id string, body io.Reader, o ...func(*MLPostDataRequest)) (*Response, error) {
  28. var r = MLPostDataRequest{JobID: job_id, Body: body}
  29. for _, f := range o {
  30. f(&r)
  31. }
  32. return r.Do(r.ctx, t)
  33. }
  34. }
  35. // ----- API Definition -------------------------------------------------------
  36. // MLPostData - Sends data to an anomaly detection job for analysis.
  37. //
  38. // See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-post-data.html.
  39. type MLPostData func(job_id string, body io.Reader, o ...func(*MLPostDataRequest)) (*Response, error)
  40. // MLPostDataRequest configures the ML Post Data API request.
  41. type MLPostDataRequest struct {
  42. Body io.Reader
  43. JobID string
  44. ResetEnd string
  45. ResetStart string
  46. Pretty bool
  47. Human bool
  48. ErrorTrace bool
  49. FilterPath []string
  50. Header http.Header
  51. ctx context.Context
  52. }
  53. // Do executes the request and returns response or error.
  54. func (r MLPostDataRequest) Do(ctx context.Context, transport Transport) (*Response, error) {
  55. var (
  56. method string
  57. path strings.Builder
  58. params map[string]string
  59. )
  60. method = "POST"
  61. path.Grow(1 + len("_ml") + 1 + len("anomaly_detectors") + 1 + len(r.JobID) + 1 + len("_data"))
  62. path.WriteString("/")
  63. path.WriteString("_ml")
  64. path.WriteString("/")
  65. path.WriteString("anomaly_detectors")
  66. path.WriteString("/")
  67. path.WriteString(r.JobID)
  68. path.WriteString("/")
  69. path.WriteString("_data")
  70. params = make(map[string]string)
  71. if r.ResetEnd != "" {
  72. params["reset_end"] = r.ResetEnd
  73. }
  74. if r.ResetStart != "" {
  75. params["reset_start"] = r.ResetStart
  76. }
  77. if r.Pretty {
  78. params["pretty"] = "true"
  79. }
  80. if r.Human {
  81. params["human"] = "true"
  82. }
  83. if r.ErrorTrace {
  84. params["error_trace"] = "true"
  85. }
  86. if len(r.FilterPath) > 0 {
  87. params["filter_path"] = strings.Join(r.FilterPath, ",")
  88. }
  89. req, err := newRequest(method, path.String(), r.Body)
  90. if err != nil {
  91. return nil, err
  92. }
  93. if len(params) > 0 {
  94. q := req.URL.Query()
  95. for k, v := range params {
  96. q.Set(k, v)
  97. }
  98. req.URL.RawQuery = q.Encode()
  99. }
  100. if len(r.Header) > 0 {
  101. if len(req.Header) == 0 {
  102. req.Header = r.Header
  103. } else {
  104. for k, vv := range r.Header {
  105. for _, v := range vv {
  106. req.Header.Add(k, v)
  107. }
  108. }
  109. }
  110. }
  111. if r.Body != nil && req.Header.Get(headerContentType) == "" {
  112. req.Header[headerContentType] = headerContentTypeJSON
  113. }
  114. if ctx != nil {
  115. req = req.WithContext(ctx)
  116. }
  117. res, err := transport.Perform(req)
  118. if err != nil {
  119. return nil, err
  120. }
  121. response := Response{
  122. StatusCode: res.StatusCode,
  123. Body: res.Body,
  124. Header: res.Header,
  125. }
  126. return &response, nil
  127. }
  128. // WithContext sets the request context.
  129. func (f MLPostData) WithContext(v context.Context) func(*MLPostDataRequest) {
  130. return func(r *MLPostDataRequest) {
  131. r.ctx = v
  132. }
  133. }
  134. // WithResetEnd - optional parameter to specify the end of the bucket resetting range.
  135. func (f MLPostData) WithResetEnd(v string) func(*MLPostDataRequest) {
  136. return func(r *MLPostDataRequest) {
  137. r.ResetEnd = v
  138. }
  139. }
  140. // WithResetStart - optional parameter to specify the start of the bucket resetting range.
  141. func (f MLPostData) WithResetStart(v string) func(*MLPostDataRequest) {
  142. return func(r *MLPostDataRequest) {
  143. r.ResetStart = v
  144. }
  145. }
  146. // WithPretty makes the response body pretty-printed.
  147. func (f MLPostData) WithPretty() func(*MLPostDataRequest) {
  148. return func(r *MLPostDataRequest) {
  149. r.Pretty = true
  150. }
  151. }
  152. // WithHuman makes statistical values human-readable.
  153. func (f MLPostData) WithHuman() func(*MLPostDataRequest) {
  154. return func(r *MLPostDataRequest) {
  155. r.Human = true
  156. }
  157. }
  158. // WithErrorTrace includes the stack trace for errors in the response body.
  159. func (f MLPostData) WithErrorTrace() func(*MLPostDataRequest) {
  160. return func(r *MLPostDataRequest) {
  161. r.ErrorTrace = true
  162. }
  163. }
  164. // WithFilterPath filters the properties of the response body.
  165. func (f MLPostData) WithFilterPath(v ...string) func(*MLPostDataRequest) {
  166. return func(r *MLPostDataRequest) {
  167. r.FilterPath = v
  168. }
  169. }
  170. // WithHeader adds the headers to the HTTP request.
  171. func (f MLPostData) WithHeader(h map[string]string) func(*MLPostDataRequest) {
  172. return func(r *MLPostDataRequest) {
  173. if r.Header == nil {
  174. r.Header = make(http.Header)
  175. }
  176. for k, v := range h {
  177. r.Header.Add(k, v)
  178. }
  179. }
  180. }
  181. // WithOpaqueID adds the X-Opaque-Id header to the HTTP request.
  182. func (f MLPostData) WithOpaqueID(s string) func(*MLPostDataRequest) {
  183. return func(r *MLPostDataRequest) {
  184. if r.Header == nil {
  185. r.Header = make(http.Header)
  186. }
  187. r.Header.Set("X-Opaque-Id", s)
  188. }
  189. }