[READ ONLY MIRROR] Envoy REST/proto API definitions and documentation.
(grpc依赖)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package envoy.config.cluster.aggregate.v2alpha;
|
|
|
|
|
|
|
|
option java_package = "io.envoyproxy.envoy.config.cluster.aggregate.v2alpha";
|
|
|
|
option java_outer_classname = "ClusterProto";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
|
|
|
|
import "validate/validate.proto";
|
|
|
|
|
|
|
|
// [#protodoc-title: Aggregate cluster configuration]
|
|
|
|
|
|
|
|
// Configuration for the aggregate cluster. See the :ref:`architecture overview
|
|
|
|
// <arch_overview_aggregate_cluster>` for more information.
|
|
|
|
// [#extension: envoy.clusters.aggregate]
|
|
|
|
message ClusterConfig {
|
|
|
|
// Load balancing clusters in aggregate cluster. Clusters are prioritized based on the order they
|
|
|
|
// appear in this list.
|
|
|
|
repeated string clusters = 1 [(validate.rules).repeated = {min_items: 1}];
|
|
|
|
}
|