api.xpack.rollup.get_jobs.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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 newRollupGetJobsFunc(t Transport) RollupGetJobs {
  26. return func(o ...func(*RollupGetJobsRequest)) (*Response, error) {
  27. var r = RollupGetJobsRequest{}
  28. for _, f := range o {
  29. f(&r)
  30. }
  31. return r.Do(r.ctx, t)
  32. }
  33. }
  34. // ----- API Definition -------------------------------------------------------
  35. // RollupGetJobs - Retrieves the configuration, stats, and status of rollup jobs.
  36. //
  37. // This API is experimental.
  38. //
  39. // See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/master/rollup-get-job.html.
  40. type RollupGetJobs func(o ...func(*RollupGetJobsRequest)) (*Response, error)
  41. // RollupGetJobsRequest configures the Rollup Get Jobs API request.
  42. type RollupGetJobsRequest struct {
  43. JobID 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 RollupGetJobsRequest) 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 = "GET"
  59. path.Grow(1 + len("_rollup") + 1 + len("job") + 1 + len(r.JobID))
  60. path.WriteString("/")
  61. path.WriteString("_rollup")
  62. path.WriteString("/")
  63. path.WriteString("job")
  64. if r.JobID != "" {
  65. path.WriteString("/")
  66. path.WriteString(r.JobID)
  67. }
  68. params = make(map[string]string)
  69. if r.Pretty {
  70. params["pretty"] = "true"
  71. }
  72. if r.Human {
  73. params["human"] = "true"
  74. }
  75. if r.ErrorTrace {
  76. params["error_trace"] = "true"
  77. }
  78. if len(r.FilterPath) > 0 {
  79. params["filter_path"] = strings.Join(r.FilterPath, ",")
  80. }
  81. req, err := newRequest(method, path.String(), nil)
  82. if err != nil {
  83. return nil, err
  84. }
  85. if len(params) > 0 {
  86. q := req.URL.Query()
  87. for k, v := range params {
  88. q.Set(k, v)
  89. }
  90. req.URL.RawQuery = q.Encode()
  91. }
  92. if len(r.Header) > 0 {
  93. if len(req.Header) == 0 {
  94. req.Header = r.Header
  95. } else {
  96. for k, vv := range r.Header {
  97. for _, v := range vv {
  98. req.Header.Add(k, v)
  99. }
  100. }
  101. }
  102. }
  103. if ctx != nil {
  104. req = req.WithContext(ctx)
  105. }
  106. res, err := transport.Perform(req)
  107. if err != nil {
  108. return nil, err
  109. }
  110. response := Response{
  111. StatusCode: res.StatusCode,
  112. Body: res.Body,
  113. Header: res.Header,
  114. }
  115. return &response, nil
  116. }
  117. // WithContext sets the request context.
  118. func (f RollupGetJobs) WithContext(v context.Context) func(*RollupGetJobsRequest) {
  119. return func(r *RollupGetJobsRequest) {
  120. r.ctx = v
  121. }
  122. }
  123. // WithJobID - the ID of the job(s) to fetch. accepts glob patterns, or left blank for all jobs.
  124. func (f RollupGetJobs) WithJobID(v string) func(*RollupGetJobsRequest) {
  125. return func(r *RollupGetJobsRequest) {
  126. r.JobID = v
  127. }
  128. }
  129. // WithPretty makes the response body pretty-printed.
  130. func (f RollupGetJobs) WithPretty() func(*RollupGetJobsRequest) {
  131. return func(r *RollupGetJobsRequest) {
  132. r.Pretty = true
  133. }
  134. }
  135. // WithHuman makes statistical values human-readable.
  136. func (f RollupGetJobs) WithHuman() func(*RollupGetJobsRequest) {
  137. return func(r *RollupGetJobsRequest) {
  138. r.Human = true
  139. }
  140. }
  141. // WithErrorTrace includes the stack trace for errors in the response body.
  142. func (f RollupGetJobs) WithErrorTrace() func(*RollupGetJobsRequest) {
  143. return func(r *RollupGetJobsRequest) {
  144. r.ErrorTrace = true
  145. }
  146. }
  147. // WithFilterPath filters the properties of the response body.
  148. func (f RollupGetJobs) WithFilterPath(v ...string) func(*RollupGetJobsRequest) {
  149. return func(r *RollupGetJobsRequest) {
  150. r.FilterPath = v
  151. }
  152. }
  153. // WithHeader adds the headers to the HTTP request.
  154. func (f RollupGetJobs) WithHeader(h map[string]string) func(*RollupGetJobsRequest) {
  155. return func(r *RollupGetJobsRequest) {
  156. if r.Header == nil {
  157. r.Header = make(http.Header)
  158. }
  159. for k, v := range h {
  160. r.Header.Add(k, v)
  161. }
  162. }
  163. }
  164. // WithOpaqueID adds the X-Opaque-Id header to the HTTP request.
  165. func (f RollupGetJobs) WithOpaqueID(s string) func(*RollupGetJobsRequest) {
  166. return func(r *RollupGetJobsRequest) {
  167. if r.Header == nil {
  168. r.Header = make(http.Header)
  169. }
  170. r.Header.Set("X-Opaque-Id", s)
  171. }
  172. }