forked from envoyproxy/data-plane-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsds.proto
More file actions
29 lines (22 loc) · 798 Bytes
/
sds.proto
File metadata and controls
29 lines (22 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
syntax = "proto3";
package envoy.service.discovery.v2;
option java_outer_classname = "SdsProto";
option java_multiple_files = true;
option java_package = "io.envoyproxy.envoy.service.discovery.v2";
import "envoy/api/v2/discovery.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 envoy.api.v2.DiscoveryRequest)
returns (stream envoy.api.v2.DiscoveryResponse) {
}
rpc FetchSecrets(envoy.api.v2.DiscoveryRequest) returns (envoy.api.v2.DiscoveryResponse) {
option (google.api.http) = {
post: "/v2/discovery:secrets"
body: "*"
};
}
}