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.
/// Authentication attributes for a downstream mTLS connection. All modes require that a peer certificate
/// was presented and validated using the ValidationContext in the DownstreamTlsContext configuration.
///
/// If neither field is set, a configuration loading error will be generated. This is so that
/// not validating SANs requires an affirmative configuration to disable, to prevent accidentally
/// not configuring SAN validation.
///
/// If `any_validated_client_certificate` is set in addition to `san_matcher` or a future field
/// which specifies additional validation, the other field always takes precedence over
/// `any_validated_client_certificate` and all specified validation is performed.
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct Config {
    /// Specifies a SAN that must be present in the validated peer certificate.
    #[prost(message, optional, tag = "1")]
    pub san_matcher: ::core::option::Option<
        super::super::super::super::transport_sockets::tls::v3::SubjectAltNameMatcher,
    >,
    /// Only require that the peer certificate is present and valid.
    #[prost(bool, tag = "2")]
    pub any_validated_client_certificate: bool,
}
impl ::prost::Name for Config {
    const NAME: &'static str = "Config";
    const PACKAGE: &'static str = "envoy.extensions.rbac.principals.mtls_authenticated.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.extensions.rbac.principals.mtls_authenticated.v3.Config".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.extensions.rbac.principals.mtls_authenticated.v3.Config"
            .into()
    }
}