xds-api 0.2.0

Protocol buffer types for working with Envoy's xDS APIs.
Documentation
// This file is @generated by prost-build.
/// Configuration for the aggregate cluster. See the :ref:`architecture overview
/// <arch_overview_aggregate_cluster>` for more information.
/// \[#extension: envoy.clusters.aggregate\]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ClusterConfig {
    /// Load balancing clusters in aggregate cluster. Clusters are prioritized based on the order they
    /// appear in this list.
    #[prost(string, repeated, tag = "1")]
    pub clusters: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
impl ::prost::Name for ClusterConfig {
    const NAME: &'static str = "ClusterConfig";
    const PACKAGE: &'static str = "envoy.extensions.clusters.aggregate.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.extensions.clusters.aggregate.v3.ClusterConfig".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.extensions.clusters.aggregate.v3.ClusterConfig".into()
    }
}