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 FileBasedMetadataConfig {
    /// Location or inline data of secret to use for authentication of the Google gRPC connection
    /// this secret will be attached to a header of the gRPC connection
    #[prost(message, optional, tag = "1")]
    pub secret_data: ::core::option::Option<super::super::core::v3::DataSource>,
    /// Metadata header key to use for sending the secret data
    /// if no header key is set, "authorization" header will be used
    #[prost(string, tag = "2")]
    pub header_key: ::prost::alloc::string::String,
    /// Prefix to prepend to the secret in the metadata header
    /// if no prefix is set, the default is to use no prefix
    #[prost(string, tag = "3")]
    pub header_prefix: ::prost::alloc::string::String,
}
impl ::prost::Name for FileBasedMetadataConfig {
    const NAME: &'static str = "FileBasedMetadataConfig";
    const PACKAGE: &'static str = "envoy.config.grpc_credential.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.config.grpc_credential.v3.FileBasedMetadataConfig".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.config.grpc_credential.v3.FileBasedMetadataConfig"
            .into()
    }
}