case class TokenReview(metadata: Optional[ObjectMeta] = Optional.Absent, spec: TokenReviewSpec, status: Optional[TokenReviewStatus] = Optional.Absent) extends Product with Serializable
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.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TokenReview
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new TokenReview(metadata: Optional[ObjectMeta] = Optional.Absent, spec: TokenReviewSpec, status: Optional[TokenReviewStatus] = Optional.Absent)
Value Members
-
def
getMetadata: IO[K8sFailure, ObjectMeta]
Gets metadata.
Gets metadata.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getSpec: IO[K8sFailure, TokenReviewSpec]
Gets spec.
Gets spec.
This effect always succeeds, it is safe to use the field spec directly.
-
def
getStatus: IO[K8sFailure, TokenReviewStatus]
Gets status.
Gets status.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val metadata: Optional[ObjectMeta]
- val spec: TokenReviewSpec
- val status: Optional[TokenReviewStatus]