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.
43 lines
1.3 KiB
43 lines
1.3 KiB
5 years ago
|
syntax = "proto3";
|
||
|
|
||
5 years ago
|
package envoy.service.cluster.v3;
|
||
5 years ago
|
|
||
5 years ago
|
import "envoy/service/discovery/v3/discovery.proto";
|
||
5 years ago
|
|
||
|
import "google/api/annotations.proto";
|
||
|
|
||
5 years ago
|
import "udpa/annotations/versioning.proto";
|
||
5 years ago
|
|
||
5 years ago
|
import "envoy/annotations/resource.proto";
|
||
|
|
||
5 years ago
|
option java_package = "io.envoyproxy.envoy.service.cluster.v3";
|
||
5 years ago
|
option java_outer_classname = "CdsProto";
|
||
|
option java_multiple_files = true;
|
||
|
option java_generic_services = true;
|
||
|
|
||
5 years ago
|
// [#protodoc-title: CDS]
|
||
5 years ago
|
|
||
5 years ago
|
// Return list of all clusters this proxy will load balance to.
|
||
|
service ClusterDiscoveryService {
|
||
5 years ago
|
option (envoy.annotations.resource).type = "envoy.config.cluster.v3.Cluster";
|
||
5 years ago
|
|
||
5 years ago
|
rpc StreamClusters(stream discovery.v3.DiscoveryRequest)
|
||
|
returns (stream discovery.v3.DiscoveryResponse) {
|
||
5 years ago
|
}
|
||
|
|
||
5 years ago
|
rpc DeltaClusters(stream discovery.v3.DeltaDiscoveryRequest)
|
||
|
returns (stream discovery.v3.DeltaDiscoveryResponse) {
|
||
5 years ago
|
}
|
||
|
|
||
5 years ago
|
rpc FetchClusters(discovery.v3.DiscoveryRequest) returns (discovery.v3.DiscoveryResponse) {
|
||
|
option (google.api.http).post = "/v3/discovery:clusters";
|
||
5 years ago
|
option (google.api.http).body = "*";
|
||
5 years ago
|
}
|
||
|
}
|
||
|
|
||
5 years ago
|
// [#not-implemented-hide:] Not configuration. Workaround c++ protobuf issue with importing
|
||
|
// services: https://github.com/google/protobuf/issues/4221 and protoxform to upgrade the file.
|
||
|
message CdsDummy {
|
||
|
option (udpa.annotations.versioning).previous_message_type = "envoy.api.v2.CdsDummy";
|
||
5 years ago
|
}
|