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.
39 lines
1.2 KiB
39 lines
1.2 KiB
5 years ago
|
syntax = "proto3";
|
||
|
|
||
4 years ago
|
package envoy.service.extension.v3;
|
||
5 years ago
|
|
||
|
import "envoy/service/discovery/v3/discovery.proto";
|
||
|
|
||
|
import "google/api/annotations.proto";
|
||
|
|
||
|
import "envoy/annotations/resource.proto";
|
||
|
import "udpa/annotations/status.proto";
|
||
|
import "udpa/annotations/versioning.proto";
|
||
|
|
||
4 years ago
|
option java_package = "io.envoyproxy.envoy.service.extension.v3";
|
||
|
option java_outer_classname = "ConfigDiscoveryProto";
|
||
5 years ago
|
option java_multiple_files = true;
|
||
|
option java_generic_services = true;
|
||
|
option (udpa.annotations.file_status).package_version_status = ACTIVE;
|
||
|
|
||
4 years ago
|
// [#protodoc-title: ExtensionConfigDS]
|
||
5 years ago
|
|
||
4 years ago
|
// Return extension configurations.
|
||
|
service ExtensionConfigDiscoveryService {
|
||
5 years ago
|
option (envoy.annotations.resource).type = "envoy.config.core.v3.TypedExtensionConfig";
|
||
|
|
||
4 years ago
|
rpc StreamExtensionConfigs(stream discovery.v3.DiscoveryRequest)
|
||
5 years ago
|
returns (stream discovery.v3.DiscoveryResponse) {
|
||
|
}
|
||
|
|
||
4 years ago
|
rpc DeltaExtensionConfigs(stream discovery.v3.DeltaDiscoveryRequest)
|
||
5 years ago
|
returns (stream discovery.v3.DeltaDiscoveryResponse) {
|
||
|
}
|
||
|
|
||
4 years ago
|
rpc FetchExtensionConfigs(discovery.v3.DiscoveryRequest)
|
||
|
returns (discovery.v3.DiscoveryResponse) {
|
||
|
option (google.api.http).post = "/v3/discovery:extension_configs";
|
||
5 years ago
|
option (google.api.http).body = "*";
|
||
|
}
|
||
|
}
|