api.indices.recovery.go 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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. )
  26. func newIndicesRecoveryFunc(t Transport) IndicesRecovery {
  27. return func(o ...func(*IndicesRecoveryRequest)) (*Response, error) {
  28. var r = IndicesRecoveryRequest{}
  29. for _, f := range o {
  30. f(&r)
  31. }
  32. return r.Do(r.ctx, t)
  33. }
  34. }
  35. // ----- API Definition -------------------------------------------------------
  36. // IndicesRecovery returns information about ongoing index shard recoveries.
  37. //
  38. // See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-recovery.html.
  39. type IndicesRecovery func(o ...func(*IndicesRecoveryRequest)) (*Response, error)
  40. // IndicesRecoveryRequest configures the Indices Recovery API request.
  41. type IndicesRecoveryRequest struct {
  42. Index []string
  43. ActiveOnly *bool
  44. Detailed *bool
  45. Pretty bool
  46. Human bool
  47. ErrorTrace bool
  48. FilterPath []string
  49. Header http.Header
  50. ctx context.Context
  51. }
  52. // Do executes the request and returns response or error.
  53. func (r IndicesRecoveryRequest) Do(ctx context.Context, transport Transport) (*Response, error) {
  54. var (
  55. method string
  56. path strings.Builder
  57. params map[string]string
  58. )
  59. method = "GET"
  60. path.Grow(1 + len(strings.Join(r.Index, ",")) + 1 + len("_recovery"))
  61. if len(r.Index) > 0 {
  62. path.WriteString("/")
  63. path.WriteString(strings.Join(r.Index, ","))
  64. }
  65. path.WriteString("/")
  66. path.WriteString("_recovery")
  67. params = make(map[string]string)
  68. if r.ActiveOnly != nil {
  69. params["active_only"] = strconv.FormatBool(*r.ActiveOnly)
  70. }
  71. if r.Detailed != nil {
  72. params["detailed"] = strconv.FormatBool(*r.Detailed)
  73. }
  74. if r.Pretty {
  75. params["pretty"] = "true"
  76. }
  77. if r.Human {
  78. params["human"] = "true"
  79. }
  80. if r.ErrorTrace {
  81. params["error_trace"] = "true"
  82. }
  83. if len(r.FilterPath) > 0 {
  84. params["filter_path"] = strings.Join(r.FilterPath, ",")
  85. }
  86. req, err := newRequest(method, path.String(), nil)
  87. if err != nil {
  88. return nil, err
  89. }
  90. if len(params) > 0 {
  91. q := req.URL.Query()
  92. for k, v := range params {
  93. q.Set(k, v)
  94. }
  95. req.URL.RawQuery = q.Encode()
  96. }
  97. if len(r.Header) > 0 {
  98. if len(req.Header) == 0 {
  99. req.Header = r.Header
  100. } else {
  101. for k, vv := range r.Header {
  102. for _, v := range vv {
  103. req.Header.Add(k, v)
  104. }
  105. }
  106. }
  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 IndicesRecovery) WithContext(v context.Context) func(*IndicesRecoveryRequest) {
  124. return func(r *IndicesRecoveryRequest) {
  125. r.ctx = v
  126. }
  127. }
  128. // WithIndex - a list of index names; use _all to perform the operation on all indices.
  129. func (f IndicesRecovery) WithIndex(v ...string) func(*IndicesRecoveryRequest) {
  130. return func(r *IndicesRecoveryRequest) {
  131. r.Index = v
  132. }
  133. }
  134. // WithActiveOnly - display only those recoveries that are currently on-going.
  135. func (f IndicesRecovery) WithActiveOnly(v bool) func(*IndicesRecoveryRequest) {
  136. return func(r *IndicesRecoveryRequest) {
  137. r.ActiveOnly = &v
  138. }
  139. }
  140. // WithDetailed - whether to display detailed information about shard recovery.
  141. func (f IndicesRecovery) WithDetailed(v bool) func(*IndicesRecoveryRequest) {
  142. return func(r *IndicesRecoveryRequest) {
  143. r.Detailed = &v
  144. }
  145. }
  146. // WithPretty makes the response body pretty-printed.
  147. func (f IndicesRecovery) WithPretty() func(*IndicesRecoveryRequest) {
  148. return func(r *IndicesRecoveryRequest) {
  149. r.Pretty = true
  150. }
  151. }
  152. // WithHuman makes statistical values human-readable.
  153. func (f IndicesRecovery) WithHuman() func(*IndicesRecoveryRequest) {
  154. return func(r *IndicesRecoveryRequest) {
  155. r.Human = true
  156. }
  157. }
  158. // WithErrorTrace includes the stack trace for errors in the response body.
  159. func (f IndicesRecovery) WithErrorTrace() func(*IndicesRecoveryRequest) {
  160. return func(r *IndicesRecoveryRequest) {
  161. r.ErrorTrace = true
  162. }
  163. }
  164. // WithFilterPath filters the properties of the response body.
  165. func (f IndicesRecovery) WithFilterPath(v ...string) func(*IndicesRecoveryRequest) {
  166. return func(r *IndicesRecoveryRequest) {
  167. r.FilterPath = v
  168. }
  169. }
  170. // WithHeader adds the headers to the HTTP request.
  171. func (f IndicesRecovery) WithHeader(h map[string]string) func(*IndicesRecoveryRequest) {
  172. return func(r *IndicesRecoveryRequest) {
  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 IndicesRecovery) WithOpaqueID(s string) func(*IndicesRecoveryRequest) {
  183. return func(r *IndicesRecoveryRequest) {
  184. if r.Header == nil {
  185. r.Header = make(http.Header)
  186. }
  187. r.Header.Set("X-Opaque-Id", s)
  188. }
  189. }