api.xpack.license.get.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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 newLicenseGetFunc(t Transport) LicenseGet {
  27. return func(o ...func(*LicenseGetRequest)) (*Response, error) {
  28. var r = LicenseGetRequest{}
  29. for _, f := range o {
  30. f(&r)
  31. }
  32. return r.Do(r.ctx, t)
  33. }
  34. }
  35. // ----- API Definition -------------------------------------------------------
  36. // LicenseGet - Retrieves licensing information for the cluster
  37. //
  38. // See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/master/get-license.html.
  39. type LicenseGet func(o ...func(*LicenseGetRequest)) (*Response, error)
  40. // LicenseGetRequest configures the License Get API request.
  41. type LicenseGetRequest struct {
  42. AcceptEnterprise *bool
  43. Local *bool
  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 LicenseGetRequest) 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(len("/_license"))
  60. path.WriteString("/_license")
  61. params = make(map[string]string)
  62. if r.AcceptEnterprise != nil {
  63. params["accept_enterprise"] = strconv.FormatBool(*r.AcceptEnterprise)
  64. }
  65. if r.Local != nil {
  66. params["local"] = strconv.FormatBool(*r.Local)
  67. }
  68. if r.Pretty {
  69. params["pretty"] = "true"
  70. }
  71. if r.Human {
  72. params["human"] = "true"
  73. }
  74. if r.ErrorTrace {
  75. params["error_trace"] = "true"
  76. }
  77. if len(r.FilterPath) > 0 {
  78. params["filter_path"] = strings.Join(r.FilterPath, ",")
  79. }
  80. req, err := newRequest(method, path.String(), nil)
  81. if err != nil {
  82. return nil, err
  83. }
  84. if len(params) > 0 {
  85. q := req.URL.Query()
  86. for k, v := range params {
  87. q.Set(k, v)
  88. }
  89. req.URL.RawQuery = q.Encode()
  90. }
  91. if len(r.Header) > 0 {
  92. if len(req.Header) == 0 {
  93. req.Header = r.Header
  94. } else {
  95. for k, vv := range r.Header {
  96. for _, v := range vv {
  97. req.Header.Add(k, v)
  98. }
  99. }
  100. }
  101. }
  102. if ctx != nil {
  103. req = req.WithContext(ctx)
  104. }
  105. res, err := transport.Perform(req)
  106. if err != nil {
  107. return nil, err
  108. }
  109. response := Response{
  110. StatusCode: res.StatusCode,
  111. Body: res.Body,
  112. Header: res.Header,
  113. }
  114. return &response, nil
  115. }
  116. // WithContext sets the request context.
  117. func (f LicenseGet) WithContext(v context.Context) func(*LicenseGetRequest) {
  118. return func(r *LicenseGetRequest) {
  119. r.ctx = v
  120. }
  121. }
  122. // WithAcceptEnterprise - if the active license is an enterprise license, return type as 'enterprise' (default: false).
  123. func (f LicenseGet) WithAcceptEnterprise(v bool) func(*LicenseGetRequest) {
  124. return func(r *LicenseGetRequest) {
  125. r.AcceptEnterprise = &v
  126. }
  127. }
  128. // WithLocal - return local information, do not retrieve the state from master node (default: false).
  129. func (f LicenseGet) WithLocal(v bool) func(*LicenseGetRequest) {
  130. return func(r *LicenseGetRequest) {
  131. r.Local = &v
  132. }
  133. }
  134. // WithPretty makes the response body pretty-printed.
  135. func (f LicenseGet) WithPretty() func(*LicenseGetRequest) {
  136. return func(r *LicenseGetRequest) {
  137. r.Pretty = true
  138. }
  139. }
  140. // WithHuman makes statistical values human-readable.
  141. func (f LicenseGet) WithHuman() func(*LicenseGetRequest) {
  142. return func(r *LicenseGetRequest) {
  143. r.Human = true
  144. }
  145. }
  146. // WithErrorTrace includes the stack trace for errors in the response body.
  147. func (f LicenseGet) WithErrorTrace() func(*LicenseGetRequest) {
  148. return func(r *LicenseGetRequest) {
  149. r.ErrorTrace = true
  150. }
  151. }
  152. // WithFilterPath filters the properties of the response body.
  153. func (f LicenseGet) WithFilterPath(v ...string) func(*LicenseGetRequest) {
  154. return func(r *LicenseGetRequest) {
  155. r.FilterPath = v
  156. }
  157. }
  158. // WithHeader adds the headers to the HTTP request.
  159. func (f LicenseGet) WithHeader(h map[string]string) func(*LicenseGetRequest) {
  160. return func(r *LicenseGetRequest) {
  161. if r.Header == nil {
  162. r.Header = make(http.Header)
  163. }
  164. for k, v := range h {
  165. r.Header.Add(k, v)
  166. }
  167. }
  168. }
  169. // WithOpaqueID adds the X-Opaque-Id header to the HTTP request.
  170. func (f LicenseGet) WithOpaqueID(s string) func(*LicenseGetRequest) {
  171. return func(r *LicenseGetRequest) {
  172. if r.Header == nil {
  173. r.Header = make(http.Header)
  174. }
  175. r.Header.Set("X-Opaque-Id", s)
  176. }
  177. }