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.
36 lines
1.1 KiB
36 lines
1.1 KiB
syntax = "proto3"; |
|
|
|
package envoy.service.discovery.v3alpha; |
|
|
|
option java_package = "io.envoyproxy.envoy.service.discovery.v3alpha"; |
|
option java_outer_classname = "SdsProto"; |
|
option java_multiple_files = true; |
|
option java_generic_services = true; |
|
|
|
import "envoy/api/v3alpha/discovery.proto"; |
|
|
|
import "google/api/annotations.proto"; |
|
|
|
import "udpa/annotations/versioning.proto"; |
|
|
|
service SecretDiscoveryService { |
|
rpc DeltaSecrets(stream api.v3alpha.DeltaDiscoveryRequest) |
|
returns (stream api.v3alpha.DeltaDiscoveryResponse) { |
|
} |
|
|
|
rpc StreamSecrets(stream api.v3alpha.DiscoveryRequest) |
|
returns (stream api.v3alpha.DiscoveryResponse) { |
|
} |
|
|
|
rpc FetchSecrets(api.v3alpha.DiscoveryRequest) returns (api.v3alpha.DiscoveryResponse) { |
|
option (google.api.http).post = "/v3alpha/discovery:secrets"; |
|
option (google.api.http).body = "*"; |
|
} |
|
} |
|
|
|
// [#not-implemented-hide:] Not configuration. Workaround c++ protobuf issue with importing |
|
// services: https://github.com/google/protobuf/issues/4221 |
|
message SdsDummy { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.service.discovery.v2.SdsDummy"; |
|
}
|
|
|