Class CancelRequest

java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.tasks.CancelRequest
All Implemented Interfaces:
ElasticsearchCommonRequest

public final class CancelRequest
extends RequestBase
  • Nested Class Summary

    Nested Classes
    Modifier and Type Class Description
    static class  CancelRequest.Builder
    Builder for CancelRequest.

    Nested classes/interfaces inherited from class co.elastic.clients.elasticsearch._types.RequestBase

    RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>>
  • Field Summary

    Fields
    Modifier and Type Field Description
    static Endpoint<CancelRequest,​CancelResponse,​ElasticsearchError> ENDPOINT
    Endpoint "tasks.cancel".
  • Constructor Summary

    Constructors
    Constructor Description
    CancelRequest​(CancelRequest.Builder builder)  
    CancelRequest​(java.util.function.Function<CancelRequest.Builder,​CancelRequest.Builder> fn)  
  • Method Summary

    Modifier and Type Method Description
    java.util.List<java.lang.String> actions()
    A comma-separated list of actions that should be cancelled.
    java.util.List<java.lang.String> nodes()
    A comma-separated 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
    java.lang.String parentTaskId()
    Cancel tasks with specified parent task id (node_id:task_number).
    java.lang.String taskId()
    Cancel the task with specified task id (node_id:task_number)
    java.lang.Boolean waitForCompletion()
    Should the request block until the cancellation of the task and its descendant tasks is completed.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

  • Method Details

    • taskId

      @Nullable public java.lang.String taskId()
      Cancel the task with specified task id (node_id:task_number)

      API name: task_id

    • actions

      @Nullable public java.util.List<java.lang.String> actions()
      A comma-separated list of actions that should be cancelled. Leave empty to cancel all.

      API name: actions

    • nodes

      @Nullable public java.util.List<java.lang.String> nodes()
      A comma-separated 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

      API name: nodes

    • parentTaskId

      @Nullable public java.lang.String parentTaskId()
      Cancel tasks with specified parent task id (node_id:task_number). Set to -1 to cancel all.

      API name: parent_task_id

    • waitForCompletion

      @Nullable public java.lang.Boolean waitForCompletion()
      Should the request block until the cancellation of the task and its descendant tasks is completed. Defaults to false

      API name: wait_for_completion