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.
25 lines
607 B
25 lines
607 B
7 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package envoy.service.discovery.v2;
|
||
|
|
||
|
import "envoy/service/discovery/v2/common.proto";
|
||
|
|
||
|
import "google/api/annotations.proto";
|
||
|
|
||
|
// [#not-implemented-hide:] Not configuration. Workaround c++ protobuf issue with importing
|
||
|
// services: https://github.com/google/protobuf/issues/4221
|
||
|
message SdsDummy {
|
||
|
}
|
||
|
|
||
|
service SecretDiscoveryService {
|
||
|
rpc StreamSecrets(stream DiscoveryRequest) returns (stream DiscoveryResponse) {
|
||
|
}
|
||
|
|
||
|
rpc FetchSecrets(DiscoveryRequest) returns (DiscoveryResponse) {
|
||
|
option (google.api.http) = {
|
||
|
post: "/v2/discovery:secrets"
|
||
|
body: "*"
|
||
|
};
|
||
|
}
|
||
|
}
|