api.xpack.watcher.ack_watch.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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. "strings"
  24. )
  25. func newWatcherAckWatchFunc(t Transport) WatcherAckWatch {
  26. return func(watch_id string, o ...func(*WatcherAckWatchRequest)) (*Response, error) {
  27. var r = WatcherAckWatchRequest{WatchID: watch_id}
  28. for _, f := range o {
  29. f(&r)
  30. }
  31. return r.Do(r.ctx, t)
  32. }
  33. }
  34. // ----- API Definition -------------------------------------------------------
  35. // WatcherAckWatch - Acknowledges a watch, manually throttling the execution of the watch's actions.
  36. //
  37. // See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/current/watcher-api-ack-watch.html.
  38. type WatcherAckWatch func(watch_id string, o ...func(*WatcherAckWatchRequest)) (*Response, error)
  39. // WatcherAckWatchRequest configures the Watcher Ack Watch API request.
  40. type WatcherAckWatchRequest struct {
  41. ActionID []string
  42. WatchID string
  43. Pretty bool
  44. Human bool
  45. ErrorTrace bool
  46. FilterPath []string
  47. Header http.Header
  48. ctx context.Context
  49. }
  50. // Do executes the request and returns response or error.
  51. func (r WatcherAckWatchRequest) Do(ctx context.Context, transport Transport) (*Response, error) {
  52. var (
  53. method string
  54. path strings.Builder
  55. params map[string]string
  56. )
  57. method = "PUT"
  58. path.Grow(1 + len("_watcher") + 1 + len("watch") + 1 + len(r.WatchID) + 1 + len("_ack") + 1 + len(strings.Join(r.ActionID, ",")))
  59. path.WriteString("/")
  60. path.WriteString("_watcher")
  61. path.WriteString("/")
  62. path.WriteString("watch")
  63. path.WriteString("/")
  64. path.WriteString(r.WatchID)
  65. path.WriteString("/")
  66. path.WriteString("_ack")
  67. if len(r.ActionID) > 0 {
  68. path.WriteString("/")
  69. path.WriteString(strings.Join(r.ActionID, ","))
  70. }
  71. params = make(map[string]string)
  72. if r.Pretty {
  73. params["pretty"] = "true"
  74. }
  75. if r.Human {
  76. params["human"] = "true"
  77. }
  78. if r.ErrorTrace {
  79. params["error_trace"] = "true"
  80. }
  81. if len(r.FilterPath) > 0 {
  82. params["filter_path"] = strings.Join(r.FilterPath, ",")
  83. }
  84. req, err := newRequest(method, path.String(), nil)
  85. if err != nil {
  86. return nil, err
  87. }
  88. if len(params) > 0 {
  89. q := req.URL.Query()
  90. for k, v := range params {
  91. q.Set(k, v)
  92. }
  93. req.URL.RawQuery = q.Encode()
  94. }
  95. if len(r.Header) > 0 {
  96. if len(req.Header) == 0 {
  97. req.Header = r.Header
  98. } else {
  99. for k, vv := range r.Header {
  100. for _, v := range vv {
  101. req.Header.Add(k, v)
  102. }
  103. }
  104. }
  105. }
  106. if ctx != nil {
  107. req = req.WithContext(ctx)
  108. }
  109. res, err := transport.Perform(req)
  110. if err != nil {
  111. return nil, err
  112. }
  113. response := Response{
  114. StatusCode: res.StatusCode,
  115. Body: res.Body,
  116. Header: res.Header,
  117. }
  118. return &response, nil
  119. }
  120. // WithContext sets the request context.
  121. func (f WatcherAckWatch) WithContext(v context.Context) func(*WatcherAckWatchRequest) {
  122. return func(r *WatcherAckWatchRequest) {
  123. r.ctx = v
  124. }
  125. }
  126. // WithActionID - a list of the action ids to be acked.
  127. func (f WatcherAckWatch) WithActionID(v ...string) func(*WatcherAckWatchRequest) {
  128. return func(r *WatcherAckWatchRequest) {
  129. r.ActionID = v
  130. }
  131. }
  132. // WithPretty makes the response body pretty-printed.
  133. func (f WatcherAckWatch) WithPretty() func(*WatcherAckWatchRequest) {
  134. return func(r *WatcherAckWatchRequest) {
  135. r.Pretty = true
  136. }
  137. }
  138. // WithHuman makes statistical values human-readable.
  139. func (f WatcherAckWatch) WithHuman() func(*WatcherAckWatchRequest) {
  140. return func(r *WatcherAckWatchRequest) {
  141. r.Human = true
  142. }
  143. }
  144. // WithErrorTrace includes the stack trace for errors in the response body.
  145. func (f WatcherAckWatch) WithErrorTrace() func(*WatcherAckWatchRequest) {
  146. return func(r *WatcherAckWatchRequest) {
  147. r.ErrorTrace = true
  148. }
  149. }
  150. // WithFilterPath filters the properties of the response body.
  151. func (f WatcherAckWatch) WithFilterPath(v ...string) func(*WatcherAckWatchRequest) {
  152. return func(r *WatcherAckWatchRequest) {
  153. r.FilterPath = v
  154. }
  155. }
  156. // WithHeader adds the headers to the HTTP request.
  157. func (f WatcherAckWatch) WithHeader(h map[string]string) func(*WatcherAckWatchRequest) {
  158. return func(r *WatcherAckWatchRequest) {
  159. if r.Header == nil {
  160. r.Header = make(http.Header)
  161. }
  162. for k, v := range h {
  163. r.Header.Add(k, v)
  164. }
  165. }
  166. }
  167. // WithOpaqueID adds the X-Opaque-Id header to the HTTP request.
  168. func (f WatcherAckWatch) WithOpaqueID(s string) func(*WatcherAckWatchRequest) {
  169. return func(r *WatcherAckWatchRequest) {
  170. if r.Header == nil {
  171. r.Header = make(http.Header)
  172. }
  173. r.Header.Set("X-Opaque-Id", s)
  174. }
  175. }