Class IndicesOptions.Builder

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

public static class IndicesOptions.Builder
extends ObjectBuilderBase
implements ObjectBuilder<IndicesOptions>
Builder for IndicesOptions.
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • allowNoIndices

      public final IndicesOptions.Builder allowNoIndices​(@Nullable java.lang.Boolean value)
      If false, the request returns an error if any wildcard expression, index alias, or _all value targets only missing or closed indices. This behavior applies even if the request targets other open indices. For example, a request targeting foo*,bar* returns an error if an index starts with foo but no index starts with bar.

      API name: allow_no_indices

    • expandWildcards

      public final IndicesOptions.Builder expandWildcards​(java.util.List<ExpandWildcard> list)
      Type of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. Supports comma-separated values, such as open,hidden.

      API name: expand_wildcards

      Adds all elements of list to expandWildcards.

    • expandWildcards

      public final IndicesOptions.Builder expandWildcards​(ExpandWildcard value, ExpandWildcard... values)
      Type of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. Supports comma-separated values, such as open,hidden.

      API name: expand_wildcards

      Adds one or more values to expandWildcards.

    • ignoreUnavailable

      public final IndicesOptions.Builder ignoreUnavailable​(@Nullable java.lang.Boolean value)
      If true, missing or closed indices are not included in the response.

      API name: ignore_unavailable

    • ignoreThrottled

      public final IndicesOptions.Builder ignoreThrottled​(@Nullable java.lang.Boolean value)
      If true, concrete, expanded or aliased indices are ignored when frozen.

      API name: ignore_throttled

    • build

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