c
com.coralogix.zio.k8s.model.authorization.v1
NonResourceAttributes
Companion object NonResourceAttributes
case class NonResourceAttributes(path: Optional[String] = Optional.Absent, verb: Optional[String] = Optional.Absent) extends Product with Serializable
NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface
- path
Path is the URL path of the request
- verb
Verb is the standard HTTP verb
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- NonResourceAttributes
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
NonResourceAttributes(path: Optional[String] = Optional.Absent, verb: Optional[String] = Optional.Absent)
- path
Path is the URL path of the request
- verb
Verb is the standard HTTP verb
Value Members
-
def
getPath: IO[K8sFailure, String]
Path is the URL path of the request
Path is the URL path of the request
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getVerb: IO[K8sFailure, String]
Verb is the standard HTTP verb
Verb is the standard HTTP verb
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val path: Optional[String]
- val verb: Optional[String]