Class AddBlockRequest.Builder

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

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

    • Builder

      public Builder()
  • Method Details

    • allowNoIndices

      public final AddBlockRequest.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

    • block

      public final AddBlockRequest.Builder block​(IndicesBlockOptions value)
      Required - The block to add (one of read, write, read_only or metadata)

      API name: block

    • expandWildcards

      public final AddBlockRequest.Builder expandWildcards​(java.util.List<ExpandWildcard> list)
      Whether to expand wildcard expression to concrete indices that are open, closed or both.

      API name: expand_wildcards

      Adds all elements of list to expandWildcards.

    • expandWildcards

      public final AddBlockRequest.Builder expandWildcards​(ExpandWildcard value, ExpandWildcard... values)
      Whether to expand wildcard expression to concrete indices that are open, closed or both.

      API name: expand_wildcards

      Adds one or more values to expandWildcards.

    • ignoreUnavailable

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

      API name: ignore_unavailable

    • index

      public final AddBlockRequest.Builder index​(java.lang.String value)
      Required - A comma separated list of indices to add a block to

      API name: index

    • masterTimeout

      public final AddBlockRequest.Builder masterTimeout​(@Nullable Time value)
      Specify timeout for connection to master

      API name: master_timeout

    • masterTimeout

      public final AddBlockRequest.Builder masterTimeout​(java.util.function.Function<Time.Builder,​ObjectBuilder<Time>> fn)
      Specify timeout for connection to master

      API name: master_timeout

    • timeout

      public final AddBlockRequest.Builder timeout​(@Nullable Time value)
      Explicit operation timeout

      API name: timeout

    • timeout

      public final AddBlockRequest.Builder timeout​(java.util.function.Function<Time.Builder,​ObjectBuilder<Time>> fn)
      Explicit operation timeout

      API name: timeout

    • build

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