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.
#[derive(Clone, PartialEq, Eq, Hash, ::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,
}
impl ::prost::Name for LuaConfig {
    const NAME: &'static str = "LuaConfig";
    const PACKAGE: &'static str = "envoy.extensions.router.cluster_specifiers.lua.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.extensions.router.cluster_specifiers.lua.v3.LuaConfig".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.extensions.router.cluster_specifiers.lua.v3.LuaConfig"
            .into()
    }
}