Struct k8s_openapi::api::authentication::v1::TokenReview [−][src]
pub struct TokenReview {
pub metadata: ObjectMeta,
pub spec: TokenReviewSpec,
pub status: Option<TokenReviewStatus>,
}Expand description
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.
Fields
metadata: ObjectMetaspec: TokenReviewSpecSpec holds information about the request being evaluated
status: Option<TokenReviewStatus>Status is filled in by the server and indicates whether the request can be authenticated.
Implementations
pub fn create_token_review(
body: &TokenReview,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateResponse<Self>>), RequestError>[src]
pub fn create_token_review(
body: &TokenReview,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateResponse<Self>>), RequestError>[src]create a TokenReview
Use the returned crate::ResponseBody<crate::CreateResponse<Self>> constructor, or crate::CreateResponse<Self> directly, to parse the HTTP response.
Arguments
-
body -
optionalOptional parameters. Use
Default::default()to not pass any.
Trait Implementations
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
type Ty = ObjectMeta
type Ty = ObjectMetaThe type of the metadata object.
Gets a reference to the metadata of this resource value.
Gets a mutable reference to the metadata of this resource value.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
The API version of the resource. This is a composite of Resource::GROUP and Resource::VERSION (eg "apiextensions.k8s.io/v1beta1")
or just the version for resources without a group (eg "v1"). Read more
The group of the resource, or the empty string if the resource doesn’t have a group.
The URL path segment used to construct URLs related to this resource. Read more
type Scope = ClusterResourceScope
type Scope = ClusterResourceScopeIndicates whether the resource is namespace-scoped or cluster-scoped or a subresource. Read more
Auto Trait Implementations
impl RefUnwindSafe for TokenReviewimpl Send for TokenReviewimpl Sync for TokenReviewimpl Unpin for TokenReviewimpl UnwindSafe for TokenReviewBlanket Implementations
Mutably borrows from an owned value. Read more