blob: de043ef769d5b8c23f0b8329e8c7f52bd991e77e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// @generated
// This file is @generated by prost-build.
// \[#protodoc-title: Rate limit service\]
/// Rate limit :ref:`configuration overview <config_rate_limit_service>`.
#[allow(clippy::derive_partial_eq_without_eq)]
#[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,
}
// @@protoc_insertion_point(module)
|