api.cluster.reroute.go 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  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. "strconv"
  25. "strings"
  26. "time"
  27. )
  28. func newClusterRerouteFunc(t Transport) ClusterReroute {
  29. return func(o ...func(*ClusterRerouteRequest)) (*Response, error) {
  30. var r = ClusterRerouteRequest{}
  31. for _, f := range o {
  32. f(&r)
  33. }
  34. return r.Do(r.ctx, t)
  35. }
  36. }
  37. // ----- API Definition -------------------------------------------------------
  38. // ClusterReroute allows to manually change the allocation of individual shards in the cluster.
  39. //
  40. // See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-reroute.html.
  41. type ClusterReroute func(o ...func(*ClusterRerouteRequest)) (*Response, error)
  42. // ClusterRerouteRequest configures the Cluster Reroute API request.
  43. type ClusterRerouteRequest struct {
  44. Body io.Reader
  45. DryRun *bool
  46. Explain *bool
  47. MasterTimeout time.Duration
  48. Metric []string
  49. RetryFailed *bool
  50. Timeout time.Duration
  51. Pretty bool
  52. Human bool
  53. ErrorTrace bool
  54. FilterPath []string
  55. Header http.Header
  56. ctx context.Context
  57. }
  58. // Do executes the request and returns response or error.
  59. func (r ClusterRerouteRequest) Do(ctx context.Context, transport Transport) (*Response, error) {
  60. var (
  61. method string
  62. path strings.Builder
  63. params map[string]string
  64. )
  65. method = "POST"
  66. path.Grow(len("/_cluster/reroute"))
  67. path.WriteString("/_cluster/reroute")
  68. params = make(map[string]string)
  69. if r.DryRun != nil {
  70. params["dry_run"] = strconv.FormatBool(*r.DryRun)
  71. }
  72. if r.Explain != nil {
  73. params["explain"] = strconv.FormatBool(*r.Explain)
  74. }
  75. if r.MasterTimeout != 0 {
  76. params["master_timeout"] = formatDuration(r.MasterTimeout)
  77. }
  78. if len(r.Metric) > 0 {
  79. params["metric"] = strings.Join(r.Metric, ",")
  80. }
  81. if r.RetryFailed != nil {
  82. params["retry_failed"] = strconv.FormatBool(*r.RetryFailed)
  83. }
  84. if r.Timeout != 0 {
  85. params["timeout"] = formatDuration(r.Timeout)
  86. }
  87. if r.Pretty {
  88. params["pretty"] = "true"
  89. }
  90. if r.Human {
  91. params["human"] = "true"
  92. }
  93. if r.ErrorTrace {
  94. params["error_trace"] = "true"
  95. }
  96. if len(r.FilterPath) > 0 {
  97. params["filter_path"] = strings.Join(r.FilterPath, ",")
  98. }
  99. req, err := newRequest(method, path.String(), r.Body)
  100. if err != nil {
  101. return nil, err
  102. }
  103. if len(params) > 0 {
  104. q := req.URL.Query()
  105. for k, v := range params {
  106. q.Set(k, v)
  107. }
  108. req.URL.RawQuery = q.Encode()
  109. }
  110. if len(r.Header) > 0 {
  111. if len(req.Header) == 0 {
  112. req.Header = r.Header
  113. } else {
  114. for k, vv := range r.Header {
  115. for _, v := range vv {
  116. req.Header.Add(k, v)
  117. }
  118. }
  119. }
  120. }
  121. if r.Body != nil && req.Header.Get(headerContentType) == "" {
  122. req.Header[headerContentType] = headerContentTypeJSON
  123. }
  124. if ctx != nil {
  125. req = req.WithContext(ctx)
  126. }
  127. res, err := transport.Perform(req)
  128. if err != nil {
  129. return nil, err
  130. }
  131. response := Response{
  132. StatusCode: res.StatusCode,
  133. Body: res.Body,
  134. Header: res.Header,
  135. }
  136. return &response, nil
  137. }
  138. // WithContext sets the request context.
  139. func (f ClusterReroute) WithContext(v context.Context) func(*ClusterRerouteRequest) {
  140. return func(r *ClusterRerouteRequest) {
  141. r.ctx = v
  142. }
  143. }
  144. // WithBody - The definition of `commands` to perform (`move`, `cancel`, `allocate`).
  145. func (f ClusterReroute) WithBody(v io.Reader) func(*ClusterRerouteRequest) {
  146. return func(r *ClusterRerouteRequest) {
  147. r.Body = v
  148. }
  149. }
  150. // WithDryRun - simulate the operation only and return the resulting state.
  151. func (f ClusterReroute) WithDryRun(v bool) func(*ClusterRerouteRequest) {
  152. return func(r *ClusterRerouteRequest) {
  153. r.DryRun = &v
  154. }
  155. }
  156. // WithExplain - return an explanation of why the commands can or cannot be executed.
  157. func (f ClusterReroute) WithExplain(v bool) func(*ClusterRerouteRequest) {
  158. return func(r *ClusterRerouteRequest) {
  159. r.Explain = &v
  160. }
  161. }
  162. // WithMasterTimeout - explicit operation timeout for connection to master node.
  163. func (f ClusterReroute) WithMasterTimeout(v time.Duration) func(*ClusterRerouteRequest) {
  164. return func(r *ClusterRerouteRequest) {
  165. r.MasterTimeout = v
  166. }
  167. }
  168. // WithMetric - limit the information returned to the specified metrics. defaults to all but metadata.
  169. func (f ClusterReroute) WithMetric(v ...string) func(*ClusterRerouteRequest) {
  170. return func(r *ClusterRerouteRequest) {
  171. r.Metric = v
  172. }
  173. }
  174. // WithRetryFailed - retries allocation of shards that are blocked due to too many subsequent allocation failures.
  175. func (f ClusterReroute) WithRetryFailed(v bool) func(*ClusterRerouteRequest) {
  176. return func(r *ClusterRerouteRequest) {
  177. r.RetryFailed = &v
  178. }
  179. }
  180. // WithTimeout - explicit operation timeout.
  181. func (f ClusterReroute) WithTimeout(v time.Duration) func(*ClusterRerouteRequest) {
  182. return func(r *ClusterRerouteRequest) {
  183. r.Timeout = v
  184. }
  185. }
  186. // WithPretty makes the response body pretty-printed.
  187. func (f ClusterReroute) WithPretty() func(*ClusterRerouteRequest) {
  188. return func(r *ClusterRerouteRequest) {
  189. r.Pretty = true
  190. }
  191. }
  192. // WithHuman makes statistical values human-readable.
  193. func (f ClusterReroute) WithHuman() func(*ClusterRerouteRequest) {
  194. return func(r *ClusterRerouteRequest) {
  195. r.Human = true
  196. }
  197. }
  198. // WithErrorTrace includes the stack trace for errors in the response body.
  199. func (f ClusterReroute) WithErrorTrace() func(*ClusterRerouteRequest) {
  200. return func(r *ClusterRerouteRequest) {
  201. r.ErrorTrace = true
  202. }
  203. }
  204. // WithFilterPath filters the properties of the response body.
  205. func (f ClusterReroute) WithFilterPath(v ...string) func(*ClusterRerouteRequest) {
  206. return func(r *ClusterRerouteRequest) {
  207. r.FilterPath = v
  208. }
  209. }
  210. // WithHeader adds the headers to the HTTP request.
  211. func (f ClusterReroute) WithHeader(h map[string]string) func(*ClusterRerouteRequest) {
  212. return func(r *ClusterRerouteRequest) {
  213. if r.Header == nil {
  214. r.Header = make(http.Header)
  215. }
  216. for k, v := range h {
  217. r.Header.Add(k, v)
  218. }
  219. }
  220. }
  221. // WithOpaqueID adds the X-Opaque-Id header to the HTTP request.
  222. func (f ClusterReroute) WithOpaqueID(s string) func(*ClusterRerouteRequest) {
  223. return func(r *ClusterRerouteRequest) {
  224. if r.Header == nil {
  225. r.Header = make(http.Header)
  226. }
  227. r.Header.Set("X-Opaque-Id", s)
  228. }
  229. }