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.
26 lines
720 B
26 lines
720 B
syntax = "proto3"; |
|
|
|
package envoy.service.discovery.v2; |
|
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: "*" |
|
}; |
|
} |
|
}
|
|
|