Struct k8s_openapi::api::authorization::v1beta1::SubjectAccessReview [−][src]
pub struct SubjectAccessReview {
pub metadata: ObjectMeta,
pub spec: SubjectAccessReviewSpec,
pub status: Option<SubjectAccessReviewStatus>,
}Expand description
SubjectAccessReview checks whether or not a user or group can perform an action.
Fields
metadata: ObjectMetaspec: SubjectAccessReviewSpecSpec holds information about the request being evaluated
status: Option<SubjectAccessReviewStatus>Status is filled in by the server and indicates whether the request is allowed or not
Implementations
pub fn create_subject_access_review(
body: &SubjectAccessReview,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateResponse<Self>>), RequestError>[src]
pub fn create_subject_access_review(
body: &SubjectAccessReview,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateResponse<Self>>), RequestError>[src]create a SubjectAccessReview
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 SubjectAccessReviewimpl Send for SubjectAccessReviewimpl Sync for SubjectAccessReviewimpl Unpin for SubjectAccessReviewimpl UnwindSafe for SubjectAccessReviewBlanket Implementations
Mutably borrows from an owned value. Read more