Packages

object roles extends RolesCRUD[F, Role]

Source
Consul.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. roles
  2. RolesCRUD
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(name: String): F[Role]

    Gets the role with the given name.

    Gets the role with the given name.

    name

    the name of the role.

    Definition Classes
    RolesCRUD
  2. def create(name: String, role: Role): F[Unit]

    Creates or updates a role definition.

    Creates or updates a role definition.

    Definition Classes
    RolesCRUD
    Note

    This endpoint distinguishes between create and update ACL capabilities.

  3. def delete(name: String): F[Unit]

    Deletes the role with the given name.

    Deletes the role with the given name.

    name

    the role to delete.

    Definition Classes
    RolesCRUD
  4. def get(name: String): F[Option[Role]]

    Gets the role with the given name.

    Gets the role with the given name.

    name

    the name of the role.

    returns

    if a role named name exists a Some will be returned. None otherwise.

    Definition Classes
    RolesCRUD
  5. def list: F[List[String]]

    List the available roles by name.

    List the available roles by name.

    Definition Classes
    RolesCRUD
  6. val path: String
    Definition Classes
    RolesCRUD
  7. val uri: Uri
    Definition Classes
    RolesCRUD