Class PutRoleRequest.Builder

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

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

    • Builder

      public Builder()
  • Method Details

    • applications

      public final PutRoleRequest.Builder applications​(java.util.List<ApplicationPrivileges> list)
      A list of application privilege entries.

      API name: applications

      Adds all elements of list to applications.

    • applications

      public final PutRoleRequest.Builder applications​(ApplicationPrivileges value, ApplicationPrivileges... values)
      A list of application privilege entries.

      API name: applications

      Adds one or more values to applications.

    • applications

      public final PutRoleRequest.Builder applications​(java.util.function.Function<ApplicationPrivileges.Builder,​ObjectBuilder<ApplicationPrivileges>> fn)
      A list of application privilege entries.

      API name: applications

      Adds a value to applications using a builder lambda.

    • cluster

      public final PutRoleRequest.Builder cluster​(java.util.List<ClusterPrivilege> list)
      A list of cluster privileges. These privileges define the cluster-level actions for users with this role.

      API name: cluster

      Adds all elements of list to cluster.

    • cluster

      public final PutRoleRequest.Builder cluster​(ClusterPrivilege value, ClusterPrivilege... values)
      A list of cluster privileges. These privileges define the cluster-level actions for users with this role.

      API name: cluster

      Adds one or more values to cluster.

    • global

      public final PutRoleRequest.Builder global​(java.util.Map<java.lang.String,​JsonData> map)
      An object defining global privileges. A global privilege is a form of cluster privilege that is request-aware. Support for global privileges is currently limited to the management of application privileges.

      API name: global

      Adds all entries of map to global.

    • global

      public final PutRoleRequest.Builder global​(java.lang.String key, JsonData value)
      An object defining global privileges. A global privilege is a form of cluster privilege that is request-aware. Support for global privileges is currently limited to the management of application privileges.

      API name: global

      Adds an entry to global.

    • indices

      public final PutRoleRequest.Builder indices​(java.util.List<IndicesPrivileges> list)
      A list of indices permissions entries.

      API name: indices

      Adds all elements of list to indices.

    • indices

      public final PutRoleRequest.Builder indices​(IndicesPrivileges value, IndicesPrivileges... values)
      A list of indices permissions entries.

      API name: indices

      Adds one or more values to indices.

    • indices

      public final PutRoleRequest.Builder indices​(java.util.function.Function<IndicesPrivileges.Builder,​ObjectBuilder<IndicesPrivileges>> fn)
      A list of indices permissions entries.

      API name: indices

      Adds a value to indices using a builder lambda.

    • metadata

      public final PutRoleRequest.Builder metadata​(java.util.Map<java.lang.String,​JsonData> map)
      Optional metadata. Within the metadata object, keys that begin with an underscore (_) are reserved for system use.

      API name: metadata

      Adds all entries of map to metadata.

    • metadata

      public final PutRoleRequest.Builder metadata​(java.lang.String key, JsonData value)
      Optional metadata. Within the metadata object, keys that begin with an underscore (_) are reserved for system use.

      API name: metadata

      Adds an entry to metadata.

    • name

      public final PutRoleRequest.Builder name​(java.lang.String value)
      Required - The name of the role.

      API name: name

    • refresh

      public final PutRoleRequest.Builder refresh​(@Nullable Refresh value)
      If true (the default) then refresh the affected shards to make this operation visible to search, if wait_for then wait for a refresh to make this operation visible to search, if false then do nothing with refreshes.

      API name: refresh

    • runAs

      public final PutRoleRequest.Builder runAs​(java.util.List<java.lang.String> list)
      A list of users that the owners of this role can impersonate.

      API name: run_as

      Adds all elements of list to runAs.

    • runAs

      public final PutRoleRequest.Builder runAs​(java.lang.String value, java.lang.String... values)
      A list of users that the owners of this role can impersonate.

      API name: run_as

      Adds one or more values to runAs.

    • transientMetadata

      public final PutRoleRequest.Builder transientMetadata​(@Nullable TransientMetadataConfig value)
      Indicates roles that might be incompatible with the current cluster license, specifically roles with document and field level security. When the cluster license doesn’t allow certain features for a given role, this parameter is updated dynamically to list the incompatible features. If enabled is false, the role is ignored, but is still listed in the response from the authenticate API.

      API name: transient_metadata

    • transientMetadata

      public final PutRoleRequest.Builder transientMetadata​(java.util.function.Function<TransientMetadataConfig.Builder,​ObjectBuilder<TransientMetadataConfig>> fn)
      Indicates roles that might be incompatible with the current cluster license, specifically roles with document and field level security. When the cluster license doesn’t allow certain features for a given role, this parameter is updated dynamically to list the incompatible features. If enabled is false, the role is ignored, but is still listed in the response from the authenticate API.

      API name: transient_metadata

    • self

      protected PutRoleRequest.Builder self()
      Specified by:
      self in class RequestBase.AbstractBuilder<PutRoleRequest.Builder>
    • build

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