Packages

final class KeyValueV1[F[_]] extends AnyRef

Source
KeyValueV1.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. KeyValueV1
  2. AnyRef
  3. Any
Implicitly
  1. by StringFormat
  2. by Ensuring
  3. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new KeyValueV1(path: String, uri: Uri)(implicit arg0: Concurrent[F], arg1: Client[F], token: Raw)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ->[B](y: B): (KeyValueV1[F], B)
    Implicit
    This member is added by an implicit conversion from KeyValueV1[F] toArrowAssoc[KeyValueV1[F]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def apply[A](path: String)(implicit arg0: Decoder[A]): F[A]

    Retrieves the secret at the specified path assuming it exists.

    Retrieves the secret at the specified path assuming it exists.

    path

    the path from which to retrieve the secret.

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def delete(path: String): F[Unit]

    Deletes the secret at the specified path.

    Deletes the secret at the specified path.

    path

    the path where the secret to be deleted resides.

  9. def ensuring(cond: (KeyValueV1[F]) => Boolean, msg: => Any): KeyValueV1[F]
    Implicit
    This member is added by an implicit conversion from KeyValueV1[F] toEnsuring[KeyValueV1[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (KeyValueV1[F]) => Boolean): KeyValueV1[F]
    Implicit
    This member is added by an implicit conversion from KeyValueV1[F] toEnsuring[KeyValueV1[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: => Any): KeyValueV1[F]
    Implicit
    This member is added by an implicit conversion from KeyValueV1[F] toEnsuring[KeyValueV1[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): KeyValueV1[F]
    Implicit
    This member is added by an implicit conversion from KeyValueV1[F] toEnsuring[KeyValueV1[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from KeyValueV1[F] toStringFormat[KeyValueV1[F]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def list(path: String): F[List[String]]

    Returns a list of key names at the specified location.

    Returns a list of key names at the specified location. Folders are suffixed with /. The input must be a folder; list on a file will not return a value. Note that no policy-based filtering is performed on keys; do not encode sensitive information in key names. The values themselves are not accessible via this command.

    path

    the path to list the secrets keys.

  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. val path: String
  25. def read[A](path: String)(implicit arg0: Decoder[A]): F[Option[A]]

    Retrieves the secret at the specified path.

    Retrieves the secret at the specified path.

    path

    the path from which to retrieve the secret.

  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. val uri: Uri
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. def write[A](path: String, secret: A)(implicit arg0: AsObject[A]): F[Unit]

    Stores a secret of type A at the specified location.

    Stores a secret of type A at the specified location. Given that A can be encoded as a Json Object. If the value does not yet exist, the calling token must have an ACL policy granting the create capability. If the value already exists, the calling token must have an ACL policy granting the update capability.

    A

    the type of the secret to be created

    path

    the path at which to create the secret.

    secret

    the secret.

Deprecated Value Members

  1. def [B](y: B): (KeyValueV1[F], B)
    Implicit
    This member is added by an implicit conversion from KeyValueV1[F] toArrowAssoc[KeyValueV1[F]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion StringFormat fromKeyValueV1[F] to StringFormat[KeyValueV1[F]]

Inherited by implicit conversion Ensuring fromKeyValueV1[F] to Ensuring[KeyValueV1[F]]

Inherited by implicit conversion ArrowAssoc fromKeyValueV1[F] to ArrowAssoc[KeyValueV1[F]]

Ungrouped