[−][src]Struct k8s_openapi::api::flowcontrol::v1beta1::NonResourcePolicyRule
NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.
Fields
non_resource_urls: Vec<String>
nonResourceURLs
is a set of url prefixes that a user should have access to and may not be empty. For example:
- "/healthz" is legal
- "/hea*" is illegal
- "/hea" is legal but matches nothing
- "/hea/*" also matches nothing
- "/healthz/" matches all per-component health checks. "" matches all non-resource urls. if it is present, it must be the only entry. Required.
verbs: Vec<String>
verbs
is a list of matching verbs and may not be empty. "*" matches all verbs. If it is present, it must be the only entry. Required.
Trait Implementations
impl Clone for NonResourcePolicyRule
[src]
pub fn clone(&self) -> NonResourcePolicyRule
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for NonResourcePolicyRule
[src]
impl Default for NonResourcePolicyRule
[src]
pub fn default() -> NonResourcePolicyRule
[src]
impl<'de> Deserialize<'de> for NonResourcePolicyRule
[src]
pub fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl PartialEq<NonResourcePolicyRule> for NonResourcePolicyRule
[src]
pub fn eq(&self, other: &NonResourcePolicyRule) -> bool
[src]
pub fn ne(&self, other: &NonResourcePolicyRule) -> bool
[src]
impl Serialize for NonResourcePolicyRule
[src]
impl StructuralPartialEq for NonResourcePolicyRule
[src]
Auto Trait Implementations
impl RefUnwindSafe for NonResourcePolicyRule
[src]
impl Send for NonResourcePolicyRule
[src]
impl Sync for NonResourcePolicyRule
[src]
impl Unpin for NonResourcePolicyRule
[src]
impl UnwindSafe for NonResourcePolicyRule
[src]
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,
pub 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.
pub fn to_owned(&self) -> T
[src]
pub 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.
pub 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>,