[−][src]Struct k8s_openapi::api::flowcontrol::v1alpha1::FlowSchemaSpec
FlowSchemaSpec describes how the FlowSchema's specification looks like.
Fields
distinguisher_method: Option<FlowDistinguisherMethod>
distinguisherMethod
defines how to compute the flow distinguisher for requests that match this schema. nil
specifies that the distinguisher is disabled and thus will always be the empty string.
matching_precedence: Option<i32>
matchingPrecedence
is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.
priority_level_configuration: PriorityLevelConfigurationReference
priorityLevelConfiguration
should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required.
rules: Option<Vec<PolicyRulesWithSubjects>>
rules
describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.
Trait Implementations
impl Clone for FlowSchemaSpec
[src]
pub fn clone(&self) -> FlowSchemaSpec
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for FlowSchemaSpec
[src]
impl Default for FlowSchemaSpec
[src]
pub fn default() -> FlowSchemaSpec
[src]
impl<'de> Deserialize<'de> for FlowSchemaSpec
[src]
pub fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl PartialEq<FlowSchemaSpec> for FlowSchemaSpec
[src]
pub fn eq(&self, other: &FlowSchemaSpec) -> bool
[src]
pub fn ne(&self, other: &FlowSchemaSpec) -> bool
[src]
impl Serialize for FlowSchemaSpec
[src]
impl StructuralPartialEq for FlowSchemaSpec
[src]
Auto Trait Implementations
impl RefUnwindSafe for FlowSchemaSpec
[src]
impl Send for FlowSchemaSpec
[src]
impl Sync for FlowSchemaSpec
[src]
impl Unpin for FlowSchemaSpec
[src]
impl UnwindSafe for FlowSchemaSpec
[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>,