-
-
28 Jul 2022 11:44:05 UTC
- Distribution: Search-Elasticsearch-Client-6_0
- Module version: 7.717
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues
- Testers (110 / 0 / 0)
- Kwalitee
Bus factor: 1- % Coverage
- License: apache_2_0
- Activity
24 month- Tools
- Download (66.45KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors-
Enrico Zimuel
- Dependencies
- Devel::GlobalDestruction
- Moo
- Moo::Role
- Search::Elasticsearch
- Search::Elasticsearch::Role::API
- Search::Elasticsearch::Role::Client::Direct
- Search::Elasticsearch::Role::Is_Sync
- Search::Elasticsearch::Util
- Try::Tiny
- namespace::clean
- strict
- warnings
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Search::Elasticsearch::Client::6_0::Direct::Tasks - A client for accessing the Task Management API
VERSION
version 7.717
DESCRIPTION
This module provides methods to access the Task Management API, such as listing tasks and cancelling tasks.
It does Search::Elasticsearch::Role::Client::Direct.
METHODS
list()
$response = $e->tasks->list( task_id => $task_id # optional );
The
list()
method returns all running tasks or, if atask_id
is specified, info about that task.Query string parameters:
actions
,detailed
,error_trace
,group_by
,human
,nodes
,parent_task_id
,timeout
,wait_for_completion
See the task management docs for more information.
get()
$response = $e->tasks->get( task_id => $task_id # required );
The
get()
method returns the task with the specified ID.Query string parameters:
error_trace
,human
,wait_for_completion
See the task management docs for more information.
cancel()
$response = $e->tasks->cancel( task_id => $task_id # required );
The
cancel()
method attempts to cancel the specifiedtask_id
or multiple tasks.Query string parameters:
actions
,error_trace
,human
,nodes
,parent_task_id
,timeout
See the task management docs for more information.
AUTHOR
Enrico Zimuel <enrico.zimuel@elastic.co>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2022 by Elasticsearch BV.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
Module Install Instructions
To install Search::Elasticsearch::Client::6_0, copy and paste the appropriate command in to your terminal.
cpanm Search::Elasticsearch::Client::6_0
perl -MCPAN -e shell install Search::Elasticsearch::Client::6_0
For more information on module installation, please visit the detailed CPAN module installation guide.