[−][src]Struct openshift_openapi::api::authorization::v1::PolicyRule
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.
Fields
api_groups: Vec<String>
APIGroups is the name of the APIGroup that contains the resources. If this field is empty, then both kubernetes and origin API groups are assumed. That means that if an action is requested against one of the enumerated resources in either the kubernetes or the origin API group, the request will be allowed
attribute_restrictions: Option<RawExtension>
AttributeRestrictions will vary depending on what the Authorizer/AuthorizationAttributeBuilder pair supports. If the Authorizer does not recognize how to handle the AttributeRestrictions, the Authorizer should report an error.
non_resource_urls: Option<Vec<String>>
NonResourceURLsSlice is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path This name is intentionally different than the internal type so that the DefaultConvert works nicely and because the ordering may be different.
resource_names: Option<Vec<String>>
ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.
resources: Vec<String>
Resources is a list of resources this rule applies to. ResourceAll represents all resources.
verbs: Vec<String>
Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.
Trait Implementations
impl Clone for PolicyRule
[src]
fn clone(&self) -> PolicyRule
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for PolicyRule
[src]
impl Default for PolicyRule
[src]
fn default() -> PolicyRule
[src]
impl<'de> Deserialize<'de> for PolicyRule
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl PartialEq<PolicyRule> for PolicyRule
[src]
fn eq(&self, other: &PolicyRule) -> bool
[src]
fn ne(&self, other: &PolicyRule) -> bool
[src]
impl Serialize for PolicyRule
[src]
impl StructuralPartialEq for PolicyRule
[src]
Auto Trait Implementations
impl RefUnwindSafe for PolicyRule
impl Send for PolicyRule
impl Sync for PolicyRule
impl Unpin for PolicyRule
impl UnwindSafe for PolicyRule
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,