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.
23 lines
911 B
23 lines
911 B
7 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package envoy.service.discovery.v2;
|
||
|
|
||
|
import "envoy/service/discovery/v2/common.proto";
|
||
|
|
||
|
// [#not-implemented-hide:] Not configuration. Workaround c++ protobuf issue with importing
|
||
|
// services: https://github.com/google/protobuf/issues/4221
|
||
|
message AdsDummy {
|
||
|
}
|
||
|
|
||
|
// See https://github.com/lyft/envoy-api#apis for a description of the role of
|
||
|
// ADS and how it is intended to be used by a management server. ADS requests
|
||
|
// have the same structure as their singleton xDS counterparts, but can
|
||
|
// multiplex many resource types on a single stream. The type_url in the
|
||
|
// DiscoveryRequest/DiscoveryResponse provides sufficient information to recover
|
||
|
// the multiplexed singleton APIs at the Envoy instance and management server.
|
||
|
service AggregatedDiscoveryService {
|
||
|
// This is a gRPC-only API.
|
||
|
rpc StreamAggregatedResources(stream DiscoveryRequest) returns (stream DiscoveryResponse) {
|
||
|
}
|
||
|
}
|