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