Class FieldUsageStatsRequest.Builder

All Implemented Interfaces:
WithJson<FieldUsageStatsRequest.Builder>, ObjectBuilder<FieldUsageStatsRequest>
Enclosing class:
FieldUsageStatsRequest

public static class FieldUsageStatsRequest.Builder extends RequestBase.AbstractBuilder<FieldUsageStatsRequest.Builder> implements ObjectBuilder<FieldUsageStatsRequest>
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • allowNoIndices

      public final FieldUsageStatsRequest.Builder allowNoIndices(@Nullable Boolean value)
      A setting that does two separate checks on the index expression. If false, the request returns an error (1) if any wildcard expression (including _all and *) resolves to zero matching indices or (2) if the complete set of resolved indices, aliases or data streams is empty after all expressions are evaluated. If true, index expressions that resolve to no indices are allowed and the request returns an empty result.

      API name: allow_no_indices

    • expandWildcards

      public final FieldUsageStatsRequest.Builder expandWildcards(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 FieldUsageStatsRequest.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.

    • fields

      public final FieldUsageStatsRequest.Builder fields(List<String> list)
      Comma-separated list or wildcard expressions of fields to include in the statistics.

      API name: fields

      Adds all elements of list to fields.

    • fields

      public final FieldUsageStatsRequest.Builder fields(String value, String... values)
      Comma-separated list or wildcard expressions of fields to include in the statistics.

      API name: fields

      Adds one or more values to fields.

    • ignoreUnavailable

      public final FieldUsageStatsRequest.Builder ignoreUnavailable(@Nullable Boolean value)
      If false, the request returns an error if it targets a concrete (non-wildcarded) index, alias, or data stream that is missing, closed, or otherwise unavailable. If true, unavailable concrete targets are silently ignored.

      API name: ignore_unavailable

    • index

      public final FieldUsageStatsRequest.Builder index(List<String> list)
      Required - Comma-separated list or wildcard expression of index names used to limit the request.

      API name: index

      Adds all elements of list to index.

    • index

      public final FieldUsageStatsRequest.Builder index(String value, String... values)
      Required - Comma-separated list or wildcard expression of index names used to limit the request.

      API name: index

      Adds one or more values to index.

    • self

      Specified by:
      self in class RequestBase.AbstractBuilder<FieldUsageStatsRequest.Builder>
    • build

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