api.xpack.rollup.stop_job.go 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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. "net/http"
  23. "strconv"
  24. "strings"
  25. "time"
  26. )
  27. func newRollupStopJobFunc(t Transport) RollupStopJob {
  28. return func(id string, o ...func(*RollupStopJobRequest)) (*Response, error) {
  29. var r = RollupStopJobRequest{JobID: id}
  30. for _, f := range o {
  31. f(&r)
  32. }
  33. return r.Do(r.ctx, t)
  34. }
  35. }
  36. // ----- API Definition -------------------------------------------------------
  37. // RollupStopJob - Stops an existing, started rollup job.
  38. //
  39. // This API is experimental.
  40. //
  41. // See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/master/rollup-stop-job.html.
  42. type RollupStopJob func(id string, o ...func(*RollupStopJobRequest)) (*Response, error)
  43. // RollupStopJobRequest configures the Rollup Stop Job API request.
  44. type RollupStopJobRequest struct {
  45. JobID string
  46. Timeout time.Duration
  47. WaitForCompletion *bool
  48. Pretty bool
  49. Human bool
  50. ErrorTrace bool
  51. FilterPath []string
  52. Header http.Header
  53. ctx context.Context
  54. }
  55. // Do executes the request and returns response or error.
  56. func (r RollupStopJobRequest) Do(ctx context.Context, transport Transport) (*Response, error) {
  57. var (
  58. method string
  59. path strings.Builder
  60. params map[string]string
  61. )
  62. method = "POST"
  63. path.Grow(1 + len("_rollup") + 1 + len("job") + 1 + len(r.JobID) + 1 + len("_stop"))
  64. path.WriteString("/")
  65. path.WriteString("_rollup")
  66. path.WriteString("/")
  67. path.WriteString("job")
  68. path.WriteString("/")
  69. path.WriteString(r.JobID)
  70. path.WriteString("/")
  71. path.WriteString("_stop")
  72. params = make(map[string]string)
  73. if r.Timeout != 0 {
  74. params["timeout"] = formatDuration(r.Timeout)
  75. }
  76. if r.WaitForCompletion != nil {
  77. params["wait_for_completion"] = strconv.FormatBool(*r.WaitForCompletion)
  78. }
  79. if r.Pretty {
  80. params["pretty"] = "true"
  81. }
  82. if r.Human {
  83. params["human"] = "true"
  84. }
  85. if r.ErrorTrace {
  86. params["error_trace"] = "true"
  87. }
  88. if len(r.FilterPath) > 0 {
  89. params["filter_path"] = strings.Join(r.FilterPath, ",")
  90. }
  91. req, err := newRequest(method, path.String(), nil)
  92. if err != nil {
  93. return nil, err
  94. }
  95. if len(params) > 0 {
  96. q := req.URL.Query()
  97. for k, v := range params {
  98. q.Set(k, v)
  99. }
  100. req.URL.RawQuery = q.Encode()
  101. }
  102. if len(r.Header) > 0 {
  103. if len(req.Header) == 0 {
  104. req.Header = r.Header
  105. } else {
  106. for k, vv := range r.Header {
  107. for _, v := range vv {
  108. req.Header.Add(k, v)
  109. }
  110. }
  111. }
  112. }
  113. if ctx != nil {
  114. req = req.WithContext(ctx)
  115. }
  116. res, err := transport.Perform(req)
  117. if err != nil {
  118. return nil, err
  119. }
  120. response := Response{
  121. StatusCode: res.StatusCode,
  122. Body: res.Body,
  123. Header: res.Header,
  124. }
  125. return &response, nil
  126. }
  127. // WithContext sets the request context.
  128. func (f RollupStopJob) WithContext(v context.Context) func(*RollupStopJobRequest) {
  129. return func(r *RollupStopJobRequest) {
  130. r.ctx = v
  131. }
  132. }
  133. // WithTimeout - block for (at maximum) the specified duration while waiting for the job to stop. defaults to 30s..
  134. func (f RollupStopJob) WithTimeout(v time.Duration) func(*RollupStopJobRequest) {
  135. return func(r *RollupStopJobRequest) {
  136. r.Timeout = v
  137. }
  138. }
  139. // WithWaitForCompletion - true if the api should block until the job has fully stopped, false if should be executed async. defaults to false..
  140. func (f RollupStopJob) WithWaitForCompletion(v bool) func(*RollupStopJobRequest) {
  141. return func(r *RollupStopJobRequest) {
  142. r.WaitForCompletion = &v
  143. }
  144. }
  145. // WithPretty makes the response body pretty-printed.
  146. func (f RollupStopJob) WithPretty() func(*RollupStopJobRequest) {
  147. return func(r *RollupStopJobRequest) {
  148. r.Pretty = true
  149. }
  150. }
  151. // WithHuman makes statistical values human-readable.
  152. func (f RollupStopJob) WithHuman() func(*RollupStopJobRequest) {
  153. return func(r *RollupStopJobRequest) {
  154. r.Human = true
  155. }
  156. }
  157. // WithErrorTrace includes the stack trace for errors in the response body.
  158. func (f RollupStopJob) WithErrorTrace() func(*RollupStopJobRequest) {
  159. return func(r *RollupStopJobRequest) {
  160. r.ErrorTrace = true
  161. }
  162. }
  163. // WithFilterPath filters the properties of the response body.
  164. func (f RollupStopJob) WithFilterPath(v ...string) func(*RollupStopJobRequest) {
  165. return func(r *RollupStopJobRequest) {
  166. r.FilterPath = v
  167. }
  168. }
  169. // WithHeader adds the headers to the HTTP request.
  170. func (f RollupStopJob) WithHeader(h map[string]string) func(*RollupStopJobRequest) {
  171. return func(r *RollupStopJobRequest) {
  172. if r.Header == nil {
  173. r.Header = make(http.Header)
  174. }
  175. for k, v := range h {
  176. r.Header.Add(k, v)
  177. }
  178. }
  179. }
  180. // WithOpaqueID adds the X-Opaque-Id header to the HTTP request.
  181. func (f RollupStopJob) WithOpaqueID(s string) func(*RollupStopJobRequest) {
  182. return func(r *RollupStopJobRequest) {
  183. if r.Header == nil {
  184. r.Header = make(http.Header)
  185. }
  186. r.Header.Set("X-Opaque-Id", s)
  187. }
  188. }