Files
kubesphere/vendor/github.com/elastic/go-elasticsearch/v5/esapi/api.cat.tasks.go
huanggze bfed3a6baa update dependencies
Signed-off-by: huanggze <loganhuang@yunify.com>
2019-09-04 15:14:11 +08:00

298 lines
6.1 KiB
Go

// Code generated from specification version 5.6.15: DO NOT EDIT
package esapi
import (
"context"
"net/http"
"strconv"
"strings"
)
func newCatTasksFunc(t Transport) CatTasks {
return func(o ...func(*CatTasksRequest)) (*Response, error) {
var r = CatTasksRequest{}
for _, f := range o {
f(&r)
}
return r.Do(r.ctx, t)
}
}
// ----- API Definition -------------------------------------------------------
// CatTasks returns information about the tasks currently executing on one or more nodes in the cluster.
//
// See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/5.x/tasks.html.
//
type CatTasks func(o ...func(*CatTasksRequest)) (*Response, error)
// CatTasksRequest configures the Cat Tasks API request.
//
type CatTasksRequest struct {
Actions []string
Detailed *bool
Format string
H []string
Help *bool
NodeID []string
ParentNode string
ParentTask *int
S []string
V *bool
Pretty bool
Human bool
ErrorTrace bool
FilterPath []string
Header http.Header
ctx context.Context
}
// Do executes the request and returns response or error.
//
func (r CatTasksRequest) Do(ctx context.Context, transport Transport) (*Response, error) {
var (
method string
path strings.Builder
params map[string]string
)
method = "GET"
path.Grow(len("/_cat/tasks"))
path.WriteString("/_cat/tasks")
params = make(map[string]string)
if len(r.Actions) > 0 {
params["actions"] = strings.Join(r.Actions, ",")
}
if r.Detailed != nil {
params["detailed"] = strconv.FormatBool(*r.Detailed)
}
if r.Format != "" {
params["format"] = r.Format
}
if len(r.H) > 0 {
params["h"] = strings.Join(r.H, ",")
}
if r.Help != nil {
params["help"] = strconv.FormatBool(*r.Help)
}
if len(r.NodeID) > 0 {
params["node_id"] = strings.Join(r.NodeID, ",")
}
if r.ParentNode != "" {
params["parent_node"] = r.ParentNode
}
if r.ParentTask != nil {
params["parent_task"] = strconv.FormatInt(int64(*r.ParentTask), 10)
}
if len(r.S) > 0 {
params["s"] = strings.Join(r.S, ",")
}
if r.V != nil {
params["v"] = strconv.FormatBool(*r.V)
}
if r.Pretty {
params["pretty"] = "true"
}
if r.Human {
params["human"] = "true"
}
if r.ErrorTrace {
params["error_trace"] = "true"
}
if len(r.FilterPath) > 0 {
params["filter_path"] = strings.Join(r.FilterPath, ",")
}
req, _ := newRequest(method, path.String(), nil)
if len(params) > 0 {
q := req.URL.Query()
for k, v := range params {
q.Set(k, v)
}
req.URL.RawQuery = q.Encode()
}
if len(r.Header) > 0 {
if len(req.Header) == 0 {
req.Header = r.Header
} else {
for k, vv := range r.Header {
for _, v := range vv {
req.Header.Add(k, v)
}
}
}
}
if ctx != nil {
req = req.WithContext(ctx)
}
res, err := transport.Perform(req)
if err != nil {
return nil, err
}
response := Response{
StatusCode: res.StatusCode,
Body: res.Body,
Header: res.Header,
}
return &response, nil
}
// WithContext sets the request context.
//
func (f CatTasks) WithContext(v context.Context) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.ctx = v
}
}
// WithActions - a list of actions that should be returned. leave empty to return all..
//
func (f CatTasks) WithActions(v ...string) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.Actions = v
}
}
// WithDetailed - return detailed task information (default: false).
//
func (f CatTasks) WithDetailed(v bool) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.Detailed = &v
}
}
// WithFormat - a short version of the accept header, e.g. json, yaml.
//
func (f CatTasks) WithFormat(v string) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.Format = v
}
}
// WithH - comma-separated list of column names to display.
//
func (f CatTasks) WithH(v ...string) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.H = v
}
}
// WithHelp - return help information.
//
func (f CatTasks) WithHelp(v bool) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.Help = &v
}
}
// WithNodeID - a list of node ids or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes.
//
func (f CatTasks) WithNodeID(v ...string) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.NodeID = v
}
}
// WithParentNode - return tasks with specified parent node..
//
func (f CatTasks) WithParentNode(v string) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.ParentNode = v
}
}
// WithParentTask - return tasks with specified parent task ID. set to -1 to return all..
//
func (f CatTasks) WithParentTask(v int) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.ParentTask = &v
}
}
// WithS - comma-separated list of column names or column aliases to sort by.
//
func (f CatTasks) WithS(v ...string) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.S = v
}
}
// WithV - verbose mode. display column headers.
//
func (f CatTasks) WithV(v bool) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.V = &v
}
}
// WithPretty makes the response body pretty-printed.
//
func (f CatTasks) WithPretty() func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.Pretty = true
}
}
// WithHuman makes statistical values human-readable.
//
func (f CatTasks) WithHuman() func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.Human = true
}
}
// WithErrorTrace includes the stack trace for errors in the response body.
//
func (f CatTasks) WithErrorTrace() func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.ErrorTrace = true
}
}
// WithFilterPath filters the properties of the response body.
//
func (f CatTasks) WithFilterPath(v ...string) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
r.FilterPath = v
}
}
// WithHeader adds the headers to the HTTP request.
//
func (f CatTasks) WithHeader(h map[string]string) func(*CatTasksRequest) {
return func(r *CatTasksRequest) {
if r.Header == nil {
r.Header = make(http.Header)
}
for k, v := range h {
r.Header.Add(k, v)
}
}
}