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.
/// Rate limit :ref:`configuration overview <config_rate_limit_service>`.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RateLimitServiceConfig {
    /// Specifies the gRPC service that hosts the rate limit service. The client
    /// will connect to this cluster when it needs to make rate limit service
    /// requests.
    #[prost(message, optional, tag = "2")]
    pub grpc_service: ::core::option::Option<super::super::core::v3::GrpcService>,
    /// API version for rate limit transport protocol. This describes the rate limit gRPC endpoint and
    /// version of messages used on the wire.
    #[prost(enumeration = "super::super::core::v3::ApiVersion", tag = "4")]
    pub transport_api_version: i32,
}
impl ::prost::Name for RateLimitServiceConfig {
    const NAME: &'static str = "RateLimitServiceConfig";
    const PACKAGE: &'static str = "envoy.config.ratelimit.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.config.ratelimit.v3.RateLimitServiceConfig".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.config.ratelimit.v3.RateLimitServiceConfig".into()
    }
}