[−][src]Struct k8s_openapi::api::flowcontrol::v1beta1::ResourcePolicyRule
ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.
Fields
api_groups: Vec<String>
apiGroups
is a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required.
cluster_scope: Option<bool>
clusterScope
indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the namespaces
field must contain a non-empty list.
namespaces: Option<Vec<String>>
namespaces
is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains "". Note that "" matches any specified namespace but does not match a request that does not specify a namespace (see the clusterScope
field for that). This list may be empty, but only if clusterScope
is true.
resources: Vec<String>
resources
is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ "services", "nodes/status" ]. This list may not be empty. "*" matches all resources and, if present, must be the only entry. Required.
verbs: Vec<String>
verbs
is a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required.
Trait Implementations
impl Clone for ResourcePolicyRule
[src]
pub fn clone(&self) -> ResourcePolicyRule
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ResourcePolicyRule
[src]
impl Default for ResourcePolicyRule
[src]
pub fn default() -> ResourcePolicyRule
[src]
impl<'de> Deserialize<'de> for ResourcePolicyRule
[src]
pub fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl PartialEq<ResourcePolicyRule> for ResourcePolicyRule
[src]
pub fn eq(&self, other: &ResourcePolicyRule) -> bool
[src]
pub fn ne(&self, other: &ResourcePolicyRule) -> bool
[src]
impl Serialize for ResourcePolicyRule
[src]
impl StructuralPartialEq for ResourcePolicyRule
[src]
Auto Trait Implementations
impl RefUnwindSafe for ResourcePolicyRule
[src]
impl Send for ResourcePolicyRule
[src]
impl Sync for ResourcePolicyRule
[src]
impl Unpin for ResourcePolicyRule
[src]
impl UnwindSafe for ResourcePolicyRule
[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>,