Struct k8s_openapi::api::authorization::v1::LocalSubjectAccessReview [−][src]
pub struct LocalSubjectAccessReview {
pub metadata: ObjectMeta,
pub spec: SubjectAccessReviewSpec,
pub status: Option<SubjectAccessReviewStatus>,
}Expand description
LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.
Fields
metadata: ObjectMetaspec: SubjectAccessReviewSpecSpec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted.
status: Option<SubjectAccessReviewStatus>Status is filled in by the server and indicates whether the request is allowed or not
Implementations
pub fn create_namespaced_local_subject_access_review(
namespace: &str,
body: &LocalSubjectAccessReview,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateResponse<Self>>), RequestError>[src]
pub fn create_namespaced_local_subject_access_review(
namespace: &str,
body: &LocalSubjectAccessReview,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateResponse<Self>>), RequestError>[src]create a LocalSubjectAccessReview
Use the returned crate::ResponseBody<crate::CreateResponse<Self>> constructor, or crate::CreateResponse<Self> directly, to parse the HTTP response.
Arguments
-
namespaceobject name and auth scope, such as for teams and projects
-
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 = NamespaceResourceScope
type Scope = NamespaceResourceScopeIndicates whether the resource is namespace-scoped or cluster-scoped or a subresource. Read more
Auto Trait Implementations
impl RefUnwindSafe for LocalSubjectAccessReviewimpl Send for LocalSubjectAccessReviewimpl Sync for LocalSubjectAccessReviewimpl Unpin for LocalSubjectAccessReviewimpl UnwindSafe for LocalSubjectAccessReviewBlanket Implementations
Mutably borrows from an owned value. Read more