Class GetJobsRequest.Builder

java.lang.Object
co.elastic.clients.util.ObjectBuilderBase
co.elastic.clients.elasticsearch.ml.GetJobsRequest.Builder
All Implemented Interfaces:
ObjectBuilder<GetJobsRequest>
Enclosing class:
GetJobsRequest

public static class GetJobsRequest.Builder
extends ObjectBuilderBase
implements ObjectBuilder<GetJobsRequest>
Builder for GetJobsRequest.
  • Constructor Summary

    Constructors
    Constructor Description
    Builder()  
  • Method Summary

    Modifier and Type Method Description
    GetJobsRequest.Builder allowNoMatch​(java.lang.Boolean value)
    Specifies what to do when the request: Contains wildcard expressions and there are no jobs that match. Contains the _all string or no identifiers and there are no matches. Contains wildcard expressions and there are only partial matches.
    GetJobsRequest build()
    Builds a GetJobsRequest.
    GetJobsRequest.Builder excludeGenerated​(java.lang.Boolean value)
    Indicates if certain fields should be removed from the configuration on retrieval.
    GetJobsRequest.Builder jobId​(java.lang.String value, java.lang.String... values)
    Identifier for the anomaly detection job.
    GetJobsRequest.Builder jobId​(java.util.List<java.lang.String> list)
    Identifier for the anomaly detection job.

    Methods inherited from class co.elastic.clients.util.ObjectBuilderBase

    _checkSingleUse, _listAdd, _listAddAll, _mapPut, _mapPutAll

    Methods inherited from class java.lang.Object

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

    • Builder

      public Builder()
  • Method Details

    • allowNoMatch

      public final GetJobsRequest.Builder allowNoMatch​(@Nullable java.lang.Boolean value)
      Specifies what to do when the request:
      1. Contains wildcard expressions and there are no jobs that match.
      2. Contains the _all string or no identifiers and there are no matches.
      3. Contains wildcard expressions and there are only partial matches.

      The default value is true, which returns an empty jobs array when there are no matches and the subset of results when there are partial matches. If this parameter is false, the request returns a 404 status code when there are no matches or only partial matches.

      API name: allow_no_match

    • excludeGenerated

      public final GetJobsRequest.Builder excludeGenerated​(@Nullable java.lang.Boolean value)
      Indicates if certain fields should be removed from the configuration on retrieval. This allows the configuration to be in an acceptable format to be retrieved and then added to another cluster.

      API name: exclude_generated

    • jobId

      public final GetJobsRequest.Builder jobId​(java.util.List<java.lang.String> list)
      Identifier for the anomaly detection job. It can be a job identifier, a group name, or a wildcard expression. If you do not specify one of these options, the API returns information for all anomaly detection jobs.

      API name: job_id

      Adds all elements of list to jobId.

    • jobId

      public final GetJobsRequest.Builder jobId​(java.lang.String value, java.lang.String... values)
      Identifier for the anomaly detection job. It can be a job identifier, a group name, or a wildcard expression. If you do not specify one of these options, the API returns information for all anomaly detection jobs.

      API name: job_id

      Adds one or more values to jobId.

    • build

      public GetJobsRequest build()
      Builds a GetJobsRequest.
      Specified by:
      build in interface ObjectBuilder<GetJobsRequest>
      Throws:
      java.lang.NullPointerException - if some of the required fields are null.