Documentation ¶
Overview ¶
Starts Watcher if it is not already running.
Index ¶
- Variables
- type NewStart
- type Response
- type Start
- func (r Start) Do(ctx context.Context) (*Response, error)
- func (r *Start) Header(key, value string) *Start
- func (r *Start) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r Start) IsSuccess(ctx context.Context) (bool, error)
- func (r Start) Perform(ctx context.Context) (*http.Response, error)
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrBuildPath = errors.New("cannot build path, check for missing path parameters")
ErrBuildPath is returned in case of missing parameters within the build of the request.
Functions ¶
This section is empty.
Types ¶
type NewStart ¶
type NewStart func() *Start
NewStart type alias for index.
func NewStartFunc ¶
func NewStartFunc(tp elastictransport.Interface) NewStart
NewStartFunc returns a new instance of Start with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.
type Response ¶
type Response struct { // Acknowledged For a successful response, this value is always true. On failure, an // exception is returned instead. Acknowledged bool `json:"acknowledged"` }
type Start ¶
type Start struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *Start
Starts Watcher if it is not already running.
https://www.elastic.co/guide/en/elasticsearch/reference/current/watcher-api-start.html
func (Start) Do ¶
Do runs the request through the transport, handle the response and returns a start.Response
func (*Start) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
Click to show internal directories.
Click to hide internal directories.