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, ::prost::Message)]
pub struct Redis {
    /// If set, optionally perform `EXISTS <key>` instead of `PING`. A return value
    /// from Redis of 0 (does not exist) is considered a passing healthcheck. A return value other
    /// than 0 is considered a failure. This allows the user to mark a Redis instance for maintenance
    /// by setting the specified key to any value and waiting for traffic to drain.
    #[prost(string, tag = "1")]
    pub key: ::prost::alloc::string::String,
    /// Use AWS IAM for health checker authentication
    #[prost(message, optional, tag = "2")]
    pub aws_iam: ::core::option::Option<
        super::super::super::filters::network::redis_proxy::v3::AwsIam,
    >,
}
impl ::prost::Name for Redis {
    const NAME: &'static str = "Redis";
    const PACKAGE: &'static str = "envoy.extensions.health_checkers.redis.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.extensions.health_checkers.redis.v3.Redis".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.extensions.health_checkers.redis.v3.Redis".into()
    }
}