| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- namespace Elasticsearch\Endpoints\Tasks;
- use Elasticsearch\Common\Exceptions;
- use Elasticsearch\Endpoints\AbstractEndpoint;
- /**
- * Class Cancel
- *
- * @category Elasticsearch
- * @package Elasticsearch\Endpoints\Tasks
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class Cancel extends AbstractEndpoint
- {
- private $taskId;
- /**
- * @param string $taskId
- *
- * @throws \Elasticsearch\Common\Exceptions\InvalidArgumentException
- * @return $this
- */
- public function setTaskId($taskId)
- {
- if (isset($taskId) !== true) {
- return $this;
- }
- $this->taskId = $taskId;
- return $this;
- }
- /**
- * @throws \Elasticsearch\Common\Exceptions\RuntimeException
- * @return string
- */
- public function getURI()
- {
- if (isset($this->id) === true) {
- return "/_tasks/{$this->taskId}/_cancel";
- }
- return "/_tasks/_cancel";
- }
- /**
- * @return string[]
- */
- public function getParamWhitelist()
- {
- return array(
- 'node_id',
- 'actions',
- 'parent_node',
- 'parent_task',
- );
- }
- /**
- * @return string
- */
- public function getMethod()
- {
- return 'POST';
- }
- }
|