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.
20 lines
662 B
20 lines
662 B
syntax = "proto3"; |
|
|
|
package envoy.extensions.access_loggers.wasm.v3; |
|
|
|
import "envoy/extensions/wasm/v3/wasm.proto"; |
|
|
|
import "udpa/annotations/status.proto"; |
|
import "udpa/annotations/versioning.proto"; |
|
|
|
option java_package = "io.envoyproxy.envoy.extensions.access_loggers.wasm.v3"; |
|
option java_outer_classname = "WasmProto"; |
|
option java_multiple_files = true; |
|
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
|
|
|
// [[#not-implemented-hide:] |
|
// Custom configuration for an :ref:`AccessLog <envoy_api_msg_config.accesslog.v3.AccessLog>` |
|
// that calls into a WASM VM. |
|
message WasmAccessLog { |
|
envoy.extensions.wasm.v3.PluginConfig config = 1; |
|
}
|
|
|