Documentation ¶
Overview ¶
Stops an existing, started rollup job.
Index ¶
- Variables
- type NewStopJob
- type StopJob
- func (r StopJob) Do(ctx context.Context) (*http.Response, error)
- func (r *StopJob) Header(key, value string) *StopJob
- func (r *StopJob) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *StopJob) Id(v string) *StopJob
- func (r StopJob) IsSuccess(ctx context.Context) (bool, error)
- func (r *StopJob) Timeout(value string) *StopJob
- func (r *StopJob) WaitForCompletion(b bool) *StopJob
Constants ¶
This section is empty.
Variables ¶
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 NewStopJob ¶
NewStopJob type alias for index.
func NewStopJobFunc ¶
func NewStopJobFunc(tp elastictransport.Interface) NewStopJob
NewStopJobFunc returns a new instance of StopJob with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.
type StopJob ¶
type StopJob struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *StopJob
Stops an existing, started rollup job.
https://www.elastic.co/guide/en/elasticsearch/reference/master/rollup-stop-job.html
func (*StopJob) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (StopJob) IsSuccess ¶
IsSuccess allows to run a query with a context and retrieve the result as a boolean. This only exists for endpoints without a request payload and allows for quick control flow.
func (*StopJob) Timeout ¶
Timeout Block for (at maximum) the specified duration while waiting for the job to stop. Defaults to 30s. API name: timeout
func (*StopJob) WaitForCompletion ¶
WaitForCompletion True if the API should block until the job has fully stopped, false if should be executed async. Defaults to false. API name: wait_for_completion