com.coralogix.zio.k8s.model.authorization.v1
SelfSubjectRulesReview
Companion object SelfSubjectRulesReview
case class SelfSubjectRulesReview(metadata: Optional[ObjectMeta] = Optional.Absent, spec: SelfSubjectRulesReviewSpec, status: Optional[SubjectRulesReviewStatus] = Optional.Absent) extends Product with Serializable
SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.
- Alphabetic
- By Inheritance
- SelfSubjectRulesReview
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new SelfSubjectRulesReview(metadata: Optional[ObjectMeta] = Optional.Absent, spec: SelfSubjectRulesReviewSpec, status: Optional[SubjectRulesReviewStatus] = 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, SelfSubjectRulesReviewSpec]
Gets spec.
Gets spec.
This effect always succeeds, it is safe to use the field spec directly.
-
def
getStatus: IO[K8sFailure, SubjectRulesReviewStatus]
Gets status.
Gets status.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val metadata: Optional[ObjectMeta]
- val spec: SelfSubjectRulesReviewSpec
- val status: Optional[SubjectRulesReviewStatus]