Class IndicesPrivileges.Builder
java.lang.Object
co.elastic.clients.util.ObjectBuilderBase
co.elastic.clients.elasticsearch.security.IndicesPrivileges.Builder
- All Implemented Interfaces:
ObjectBuilder<IndicesPrivileges>
- Enclosing class:
- IndicesPrivileges
public static class IndicesPrivileges.Builder extends ObjectBuilderBase implements ObjectBuilder<IndicesPrivileges>
Builder for
IndicesPrivileges.-
Constructor Summary
Constructors Constructor Description Builder() -
Method Summary
Modifier and Type Method Description IndicesPrivileges.BuilderallowRestrictedIndices(java.lang.Boolean value)Set totrueif using wildcard or regular expressions for patterns that cover restricted indices.IndicesPrivilegesbuild()Builds aIndicesPrivileges.IndicesPrivileges.BuilderfieldSecurity(FieldSecurity value)The document fields that the owners of the role have read access to.IndicesPrivileges.BuilderfieldSecurity(java.util.function.Function<FieldSecurity.Builder,ObjectBuilder<FieldSecurity>> fn)The document fields that the owners of the role have read access to.IndicesPrivileges.Buildernames(java.lang.String value, java.lang.String... values)Required - A list of indices (or index name patterns) to which the permissions in this entry apply.IndicesPrivileges.Buildernames(java.util.List<java.lang.String> list)Required - A list of indices (or index name patterns) to which the permissions in this entry apply.IndicesPrivileges.Builderprivileges(IndexPrivilege value, IndexPrivilege... values)Required - The index level privileges that owners of the role have on the specified indices.IndicesPrivileges.Builderprivileges(java.util.List<IndexPrivilege> list)Required - The index level privileges that owners of the role have on the specified indices.IndicesPrivileges.Builderquery(java.lang.String value, java.lang.String... values)A search query that defines the documents the owners of the role have read access to.IndicesPrivileges.Builderquery(java.util.List<java.lang.String> list)A search query that defines the documents the owners of the role have read access to.Methods inherited from class co.elastic.clients.util.ObjectBuilderBase
_checkSingleUse, _listAdd, _listAddAll, _mapPut, _mapPutAllMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
fieldSecurity
The document fields that the owners of the role have read access to.API name:
field_security -
fieldSecurity
public final IndicesPrivileges.Builder fieldSecurity(java.util.function.Function<FieldSecurity.Builder,ObjectBuilder<FieldSecurity>> fn)The document fields that the owners of the role have read access to.API name:
field_security -
names
Required - A list of indices (or index name patterns) to which the permissions in this entry apply.API name:
namesAdds all elements of
listtonames. -
names
Required - A list of indices (or index name patterns) to which the permissions in this entry apply.API name:
namesAdds one or more values to
names. -
privileges
Required - The index level privileges that owners of the role have on the specified indices.API name:
privilegesAdds all elements of
listtoprivileges. -
privileges
Required - The index level privileges that owners of the role have on the specified indices.API name:
privilegesAdds one or more values to
privileges. -
query
A search query that defines the documents the owners of the role have read access to. A document within the specified indices must match this query for it to be accessible by the owners of the role.API name:
queryAdds all elements of
listtoquery. -
query
A search query that defines the documents the owners of the role have read access to. A document within the specified indices must match this query for it to be accessible by the owners of the role.API name:
queryAdds one or more values to
query. -
allowRestrictedIndices
Set totrueif using wildcard or regular expressions for patterns that cover restricted indices. Implicitly, restricted indices have limited privileges that can cause pattern tests to fail. If restricted indices are explicitly included in thenameslist, Elasticsearch checks privileges against these indices regardless of the value set forallow_restricted_indices.API name:
allow_restricted_indices -
build
Builds aIndicesPrivileges.- Specified by:
buildin interfaceObjectBuilder<IndicesPrivileges>- Throws:
java.lang.NullPointerException- if some of the required fields are null.
-