blob: 549b3a25530f99554be45b6d4a44cdbc8c87377d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// @generated
// This file is @generated by prost-build.
// \[#protodoc-title: Lua\]
//
// Lua cluster specifier :ref:`configuration reference documentation <config_http_cluster_specifier_lua>`.
// \[#extension: envoy.router.cluster_specifier_plugin.lua\]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct LuaConfig {
/// The lua code that Envoy will execute to select cluster.
#[prost(message, optional, tag="1")]
pub source_code: ::core::option::Option<super::super::super::super::super::config::core::v3::DataSource>,
/// Default cluster. It will be used when the lua code execute failure.
#[prost(string, tag="2")]
pub default_cluster: ::prost::alloc::string::String,
}
// @@protoc_insertion_point(module)
|