12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- syntax = "proto3";
- package envoy.api.v2;
- import "envoy/api/v2/discovery.proto";
- import "google/api/annotations.proto";
- import "envoy/annotations/resource.proto";
- import "udpa/annotations/migrate.proto";
- import "udpa/annotations/status.proto";
- import public "envoy/api/v2/endpoint.proto";
- option java_package = "io.envoyproxy.envoy.api.v2";
- option java_outer_classname = "EdsProto";
- option java_multiple_files = true;
- option go_package = "github.com/envoyproxy/go-control-plane/envoy/api/v2;apiv2";
- option java_generic_services = true;
- option (udpa.annotations.file_migrate).move_to_package = "envoy.service.endpoint.v3";
- option (udpa.annotations.file_status).package_version_status = FROZEN;
- // [#protodoc-title: EDS]
- // Endpoint discovery :ref:`architecture overview <arch_overview_service_discovery_types_eds>`
- service EndpointDiscoveryService {
- option (envoy.annotations.resource).type = "envoy.api.v2.ClusterLoadAssignment";
- // The resource_names field in DiscoveryRequest specifies a list of clusters
- // to subscribe to updates for.
- rpc StreamEndpoints(stream DiscoveryRequest) returns (stream DiscoveryResponse) {
- }
- rpc DeltaEndpoints(stream DeltaDiscoveryRequest) returns (stream DeltaDiscoveryResponse) {
- }
- rpc FetchEndpoints(DiscoveryRequest) returns (DiscoveryResponse) {
- option (google.api.http).post = "/v2/discovery:endpoints";
- option (google.api.http).body = "*";
- }
- }
- // [#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 EdsDummy {
- }
|