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.
/// Configuration for the profile watchdog action.
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct ProfileActionConfig {
    /// How long the profile should last. If not set defaults to 5 seconds.
    #[prost(message, optional, tag = "1")]
    pub profile_duration: ::core::option::Option<
        super::super::super::super::super::google::protobuf::Duration,
    >,
    /// File path to the directory to output profiles.
    #[prost(string, tag = "2")]
    pub profile_path: ::prost::alloc::string::String,
    /// Limits the max number of profiles that can be generated by this action
    /// over its lifetime to avoid filling the disk.
    /// If not set (i.e. it's 0), a default of 10 will be used.
    #[prost(uint64, tag = "3")]
    pub max_profiles: u64,
}
impl ::prost::Name for ProfileActionConfig {
    const NAME: &'static str = "ProfileActionConfig";
    const PACKAGE: &'static str = "envoy.extensions.watchdog.profile_action.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.extensions.watchdog.profile_action.v3.ProfileActionConfig".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.extensions.watchdog.profile_action.v3.ProfileActionConfig"
            .into()
    }
}