object roles extends RolesCRUD[F, Role]
- Source
- Consul.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- roles
- RolesCRUD
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def apply(name: String): F[Role]
Gets the role with the given name.
- 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.
- def delete(name: String): F[Unit]
Deletes the role with the given name.
- 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 aSome
will be returned.None
otherwise.
- Definition Classes
- RolesCRUD
- def list: F[List[String]]
List the available roles by name.
List the available roles by name.
- Definition Classes
- RolesCRUD
- val path: String
- Definition Classes
- RolesCRUD
- val uri: Uri
- Definition Classes
- RolesCRUD