[][src]Struct k8s_openapi::api::flowcontrol::v1alpha1::FlowSchemaSpec

pub struct FlowSchemaSpec {
    pub distinguisher_method: Option<FlowDistinguisherMethod>,
    pub matching_precedence: Option<i32>,
    pub priority_level_configuration: PriorityLevelConfigurationReference,
    pub rules: Option<Vec<PolicyRulesWithSubjects>>,
}

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]

impl Debug for FlowSchemaSpec[src]

impl Default for FlowSchemaSpec[src]

impl<'de> Deserialize<'de> for FlowSchemaSpec[src]

impl PartialEq<FlowSchemaSpec> for FlowSchemaSpec[src]

impl Serialize for FlowSchemaSpec[src]

impl StructuralPartialEq for FlowSchemaSpec[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.