Struct k8s_openapi::api::authorization::v1::SelfSubjectAccessReview [−][src]
pub struct SelfSubjectAccessReview {
pub metadata: ObjectMeta,
pub spec: SelfSubjectAccessReviewSpec,
pub status: Option<SubjectAccessReviewStatus>,
}Expand description
SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means “in all namespaces”. Self is a special case, because users should always be able to check whether they can perform an action
Fields
metadata: ObjectMetaspec: SelfSubjectAccessReviewSpecSpec holds information about the request being evaluated. user and groups must be empty
status: Option<SubjectAccessReviewStatus>Status is filled in by the server and indicates whether the request is allowed or not
Implementations
pub fn create_self_subject_access_review(
body: &SelfSubjectAccessReview,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateResponse<Self>>), RequestError>[src]
pub fn create_self_subject_access_review(
body: &SelfSubjectAccessReview,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateResponse<Self>>), RequestError>[src]create a SelfSubjectAccessReview
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 SelfSubjectAccessReviewimpl Send for SelfSubjectAccessReviewimpl Sync for SelfSubjectAccessReviewimpl Unpin for SelfSubjectAccessReviewimpl UnwindSafe for SelfSubjectAccessReviewBlanket Implementations
Mutably borrows from an owned value. Read more