envoy-types 0.7.3

Collection of protobuf types and other assets to work with the Envoy Proxy through Rust gRPC services.
Documentation
// This file is @generated by prost-build.
/// \[\#next-free-field: 12\]
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct OutlierDetectionEvent {
    /// In case of eject represents type of ejection that took place.
    #[prost(enumeration = "OutlierEjectionType", tag = "1")]
    pub r#type: i32,
    /// Timestamp for event.
    #[prost(message, optional, tag = "2")]
    pub timestamp: ::core::option::Option<
        super::super::super::super::google::protobuf::Timestamp,
    >,
    /// The time in seconds since the last action (either an ejection or unejection) took place.
    #[prost(message, optional, tag = "3")]
    pub secs_since_last_action: ::core::option::Option<
        super::super::super::super::google::protobuf::UInt64Value,
    >,
    /// The :ref:`cluster <envoy_v3_api_msg_config.cluster.v3.Cluster>` that owns the ejected host.
    #[prost(string, tag = "4")]
    pub cluster_name: ::prost::alloc::string::String,
    /// The URL of the ejected host. E.g., `tcp://1.2.3.4:80`.
    #[prost(string, tag = "5")]
    pub upstream_url: ::prost::alloc::string::String,
    /// The action that took place.
    #[prost(enumeration = "Action", tag = "6")]
    pub action: i32,
    /// If `action` is `eject`, specifies the number of times the host has been ejected (local to
    /// that Envoy and gets reset if the host gets removed from the upstream cluster for any reason and
    /// then re-added).
    #[prost(uint32, tag = "7")]
    pub num_ejections: u32,
    /// If `action` is `eject`, specifies if the ejection was enforced. `true` means the host was
    /// ejected. `false` means the event was logged but the host was not actually ejected.
    #[prost(bool, tag = "8")]
    pub enforced: bool,
    #[prost(oneof = "outlier_detection_event::Event", tags = "9, 10, 11")]
    pub event: ::core::option::Option<outlier_detection_event::Event>,
}
/// Nested message and enum types in `OutlierDetectionEvent`.
pub mod outlier_detection_event {
    #[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Oneof)]
    pub enum Event {
        #[prost(message, tag = "9")]
        EjectSuccessRateEvent(super::OutlierEjectSuccessRate),
        #[prost(message, tag = "10")]
        EjectConsecutiveEvent(super::OutlierEjectConsecutive),
        #[prost(message, tag = "11")]
        EjectFailurePercentageEvent(super::OutlierEjectFailurePercentage),
    }
}
impl ::prost::Name for OutlierDetectionEvent {
    const NAME: &'static str = "OutlierDetectionEvent";
    const PACKAGE: &'static str = "envoy.data.cluster.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.data.cluster.v3.OutlierDetectionEvent".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.data.cluster.v3.OutlierDetectionEvent".into()
    }
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct OutlierEjectSuccessRate {
    /// Host’s success rate at the time of the ejection event on a 0-100 range.
    #[prost(uint32, tag = "1")]
    pub host_success_rate: u32,
    /// Average success rate of the hosts in the cluster at the time of the ejection event on a 0-100
    /// range.
    #[prost(uint32, tag = "2")]
    pub cluster_average_success_rate: u32,
    /// Success rate ejection threshold at the time of the ejection event.
    #[prost(uint32, tag = "3")]
    pub cluster_success_rate_ejection_threshold: u32,
}
impl ::prost::Name for OutlierEjectSuccessRate {
    const NAME: &'static str = "OutlierEjectSuccessRate";
    const PACKAGE: &'static str = "envoy.data.cluster.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.data.cluster.v3.OutlierEjectSuccessRate".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.data.cluster.v3.OutlierEjectSuccessRate".into()
    }
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct OutlierEjectConsecutive {}
impl ::prost::Name for OutlierEjectConsecutive {
    const NAME: &'static str = "OutlierEjectConsecutive";
    const PACKAGE: &'static str = "envoy.data.cluster.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.data.cluster.v3.OutlierEjectConsecutive".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.data.cluster.v3.OutlierEjectConsecutive".into()
    }
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct OutlierEjectFailurePercentage {
    /// Host's success rate at the time of the ejection event on a 0-100 range.
    #[prost(uint32, tag = "1")]
    pub host_success_rate: u32,
}
impl ::prost::Name for OutlierEjectFailurePercentage {
    const NAME: &'static str = "OutlierEjectFailurePercentage";
    const PACKAGE: &'static str = "envoy.data.cluster.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.data.cluster.v3.OutlierEjectFailurePercentage".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.data.cluster.v3.OutlierEjectFailurePercentage".into()
    }
}
/// Type of ejection that took place
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum OutlierEjectionType {
    ///
    /// In case upstream host returns certain number of consecutive 5xx.
    /// If
    /// : ref:`outlier_detection.split_external_local_origin_errors<envoy_v3_api_field_config.cluster.v3.OutlierDetection.split_external_local_origin_errors>`
    ///   is `false`, all type of errors are treated as HTTP 5xx errors.
    ///   See :ref:`Cluster outlier detection <arch_overview_outlier_detection>` documentation for
    ///   details.
    Consecutive5xx = 0,
    /// In case upstream host returns certain number of consecutive gateway errors
    ConsecutiveGatewayFailure = 1,
    ///
    /// Runs over aggregated success rate statistics from every host in cluster
    /// and selects hosts for which ratio of successful replies deviates from other hosts
    /// in the cluster.
    /// If
    /// : ref:`outlier_detection.split_external_local_origin_errors<envoy_v3_api_field_config.cluster.v3.OutlierDetection.split_external_local_origin_errors>`
    ///   is `false`, all errors (externally and locally generated) are used to calculate success rate
    ///   statistics. See :ref:`Cluster outlier detection <arch_overview_outlier_detection>`
    ///   documentation for details.
    SuccessRate = 2,
    ///
    /// Consecutive local origin failures: Connection failures, resets, timeouts, etc
    /// This type of ejection happens only when
    /// : ref:`outlier_detection.split_external_local_origin_errors<envoy_v3_api_field_config.cluster.v3.OutlierDetection.split_external_local_origin_errors>`
    ///   is set to `true`.
    ///   See :ref:`Cluster outlier detection <arch_overview_outlier_detection>` documentation for
    ConsecutiveLocalOriginFailure = 3,
    ///
    /// Runs over aggregated success rate statistics for local origin failures
    /// for all hosts in the cluster and selects hosts for which success rate deviates from other
    /// hosts in the cluster. This type of ejection happens only when
    /// : ref:`outlier_detection.split_external_local_origin_errors<envoy_v3_api_field_config.cluster.v3.OutlierDetection.split_external_local_origin_errors>`
    ///   is set to `true`.
    ///   See :ref:`Cluster outlier detection <arch_overview_outlier_detection>` documentation for
    SuccessRateLocalOrigin = 4,
    /// Runs over aggregated success rate statistics from every host in cluster and selects hosts for
    /// which ratio of failed replies is above configured value.
    FailurePercentage = 5,
    /// Runs over aggregated success rate statistics for local origin failures from every host in
    /// cluster and selects hosts for which ratio of failed replies is above configured value.
    FailurePercentageLocalOrigin = 6,
}
impl OutlierEjectionType {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::Consecutive5xx => "CONSECUTIVE_5XX",
            Self::ConsecutiveGatewayFailure => "CONSECUTIVE_GATEWAY_FAILURE",
            Self::SuccessRate => "SUCCESS_RATE",
            Self::ConsecutiveLocalOriginFailure => "CONSECUTIVE_LOCAL_ORIGIN_FAILURE",
            Self::SuccessRateLocalOrigin => "SUCCESS_RATE_LOCAL_ORIGIN",
            Self::FailurePercentage => "FAILURE_PERCENTAGE",
            Self::FailurePercentageLocalOrigin => "FAILURE_PERCENTAGE_LOCAL_ORIGIN",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "CONSECUTIVE_5XX" => Some(Self::Consecutive5xx),
            "CONSECUTIVE_GATEWAY_FAILURE" => Some(Self::ConsecutiveGatewayFailure),
            "SUCCESS_RATE" => Some(Self::SuccessRate),
            "CONSECUTIVE_LOCAL_ORIGIN_FAILURE" => {
                Some(Self::ConsecutiveLocalOriginFailure)
            }
            "SUCCESS_RATE_LOCAL_ORIGIN" => Some(Self::SuccessRateLocalOrigin),
            "FAILURE_PERCENTAGE" => Some(Self::FailurePercentage),
            "FAILURE_PERCENTAGE_LOCAL_ORIGIN" => Some(Self::FailurePercentageLocalOrigin),
            _ => None,
        }
    }
}
/// Represents possible action applied to upstream host
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Action {
    /// In case host was excluded from service
    Eject = 0,
    /// In case host was brought back into service
    Uneject = 1,
}
impl Action {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::Eject => "EJECT",
            Self::Uneject => "UNEJECT",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "EJECT" => Some(Self::Eject),
            "UNEJECT" => Some(Self::Uneject),
            _ => None,
        }
    }
}