Struct k8s_openapi::v1_11::api::authorization::v1::SubjectAccessReviewSpec[][src]

pub struct SubjectAccessReviewSpec {
    pub extra: Option<BTreeMap<String, Vec<String>>>,
    pub groups: Option<Vec<String>>,
    pub non_resource_attributes: Option<NonResourceAttributes>,
    pub resource_attributes: Option<ResourceAttributes>,
    pub uid: Option<String>,
    pub user: Option<String>,
}

SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set

Fields

Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.

Groups is the groups you're testing for.

NonResourceAttributes describes information for a non-resource access request

ResourceAuthorizationAttributes describes information for a resource access request

UID information about the requesting user.

User is the user you're testing for. If you specify "User" but not "Groups", then is it interpreted as "What if User were not a member of any groups

Trait Implementations

impl Clone for SubjectAccessReviewSpec
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SubjectAccessReviewSpec
[src]

Formats the value using the given formatter. Read more

impl Default for SubjectAccessReviewSpec
[src]

Returns the "default value" for a type. Read more

impl PartialEq for SubjectAccessReviewSpec
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'de> Deserialize<'de> for SubjectAccessReviewSpec
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for SubjectAccessReviewSpec
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations