Packages

package v1

Type Members

  1. final case class BoundObjectReference(name: Option[String] = None, uid: Option[String] = None) extends Product with Serializable

    BoundObjectReference is a reference to an object that a token is bound to.

  2. final case class TokenRequest(status: Option[TokenRequestStatus] = None, spec: TokenRequestSpec, metadata: Option[ObjectMeta] = None) extends KObject with Product with Serializable

    TokenRequest requests a token for a given service account.

  3. final case class TokenRequestSpec(audiences: Seq[String], boundObjectRef: Option[BoundObjectReference] = None, expirationSeconds: Option[Int] = None) extends Product with Serializable

    TokenRequestSpec contains client provided parameters of a token request.

  4. final case class TokenRequestStatus(expirationTimestamp: Time, token: String) extends Product with Serializable

    TokenRequestStatus is the result of a token request.

  5. final case class TokenReview(status: Option[TokenReviewStatus] = None, spec: TokenReviewSpec, metadata: Option[ObjectMeta] = None) extends KObject with Product with Serializable

    TokenReview attempts to authenticate a token to a known user.

    TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.

  6. final case class TokenReviewSpec(audiences: Option[Seq[String]] = None, token: Option[String] = None) extends Product with Serializable

    TokenReviewSpec is a description of the token authentication request.

  7. final case class TokenReviewStatus(audiences: Option[Seq[String]] = None, authenticated: Option[Boolean] = None, error: Option[String] = None, user: Option[UserInfo] = None) extends Product with Serializable

    TokenReviewStatus is the result of the token authentication request.

  8. final case class UserInfo(extra: Option[Map[String, Seq[String]]] = None, groups: Option[Seq[String]] = None, uid: Option[String] = None, username: Option[String] = None) extends Product with Serializable

    UserInfo holds the information about the user needed to implement the user.Info interface.

Ungrouped