Struct k8s_openapi::api::flowcontrol::v1beta1::ResourcePolicyRule
source · [−]pub struct ResourcePolicyRule {
pub api_groups: Vec<String>,
pub cluster_scope: Option<bool>,
pub namespaces: Option<Vec<String>>,
pub resources: Vec<String>,
pub verbs: Vec<String>,
}
Expand description
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) either (d1) the request does not specify a namespace (i.e., Namespace==""
) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request’s namespace.
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
sourceimpl Clone for ResourcePolicyRule
impl Clone for ResourcePolicyRule
sourcefn clone(&self) -> ResourcePolicyRule
fn clone(&self) -> ResourcePolicyRule
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ResourcePolicyRule
impl Debug for ResourcePolicyRule
sourceimpl DeepMerge for ResourcePolicyRule
impl DeepMerge for ResourcePolicyRule
sourcefn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge other
into self
.
sourceimpl Default for ResourcePolicyRule
impl Default for ResourcePolicyRule
sourcefn default() -> ResourcePolicyRule
fn default() -> ResourcePolicyRule
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ResourcePolicyRule
impl<'de> Deserialize<'de> for ResourcePolicyRule
sourcefn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<ResourcePolicyRule> for ResourcePolicyRule
impl PartialEq<ResourcePolicyRule> for ResourcePolicyRule
sourcefn eq(&self, other: &ResourcePolicyRule) -> bool
fn eq(&self, other: &ResourcePolicyRule) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for ResourcePolicyRule
impl Serialize for ResourcePolicyRule
impl StructuralPartialEq for ResourcePolicyRule
Auto Trait Implementations
impl RefUnwindSafe for ResourcePolicyRule
impl Send for ResourcePolicyRule
impl Sync for ResourcePolicyRule
impl Unpin for ResourcePolicyRule
impl UnwindSafe for ResourcePolicyRule
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more