Class OpenRequest.Builder

java.lang.Object
co.elastic.clients.elasticsearch.indices.OpenRequest.Builder
All Implemented Interfaces:
ObjectBuilder<OpenRequest>
Enclosing class:
OpenRequest

public static class OpenRequest.Builder
extends java.lang.Object
implements ObjectBuilder<OpenRequest>
Builder for OpenRequest.
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • index

      public OpenRequest.Builder index​(java.util.List<java.lang.String> value)
      Required - A comma separated list of indices to open

      API name: index

    • index

      public OpenRequest.Builder index​(java.lang.String... value)
      Required - A comma separated list of indices to open

      API name: index

    • addIndex

      public OpenRequest.Builder addIndex​(java.lang.String value)
      Add a value to index(List), creating the list if needed.
    • allowNoIndices

      public OpenRequest.Builder allowNoIndices​(@Nullable java.lang.Boolean value)
      Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes _all string or when no indices have been specified)

      API name: allow_no_indices

    • expandWildcards

      public OpenRequest.Builder expandWildcards​(@Nullable java.util.List<ExpandWildcardOptions> value)
      Whether to expand wildcard expression to concrete indices that are open, closed or both.

      API name: expand_wildcards

    • expandWildcards

      public OpenRequest.Builder expandWildcards​(ExpandWildcardOptions... value)
      Whether to expand wildcard expression to concrete indices that are open, closed or both.

      API name: expand_wildcards

    • addExpandWildcards

      public OpenRequest.Builder addExpandWildcards​(ExpandWildcardOptions value)
      Add a value to expandWildcards(List), creating the list if needed.
    • ignoreUnavailable

      public OpenRequest.Builder ignoreUnavailable​(@Nullable java.lang.Boolean value)
      Whether specified concrete indices should be ignored when unavailable (missing or closed)

      API name: ignore_unavailable

    • masterTimeout

      public OpenRequest.Builder masterTimeout​(@Nullable java.lang.String value)
      Specify timeout for connection to master

      API name: master_timeout

    • timeout

      public OpenRequest.Builder timeout​(@Nullable java.lang.String value)
      Explicit operation timeout

      API name: timeout

    • waitForActiveShards

      public OpenRequest.Builder waitForActiveShards​(@Nullable jakarta.json.JsonValue value)
      Sets the number of active shards to wait for before the operation returns.

      API name: wait_for_active_shards

    • build

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