summaryrefslogtreecommitdiff
path: root/src/rpc/envoy.extensions.common.tap.v3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rpc/envoy.extensions.common.tap.v3.rs')
-rw-r--r--src/rpc/envoy.extensions.common.tap.v3.rs36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/rpc/envoy.extensions.common.tap.v3.rs b/src/rpc/envoy.extensions.common.tap.v3.rs
deleted file mode 100644
index 8e434ab7..00000000
--- a/src/rpc/envoy.extensions.common.tap.v3.rs
+++ /dev/null
@@ -1,36 +0,0 @@
-// @generated
-// This file is @generated by prost-build.
-// \[#protodoc-title: Common tap extension configuration\]
-
-/// Common configuration for all tap extensions.
-#[allow(clippy::derive_partial_eq_without_eq)]
-#[derive(Clone, PartialEq, ::prost::Message)]
-pub struct CommonExtensionConfig {
- #[prost(oneof="common_extension_config::ConfigType", tags="1, 2")]
- pub config_type: ::core::option::Option<common_extension_config::ConfigType>,
-}
-/// Nested message and enum types in `CommonExtensionConfig`.
-pub mod common_extension_config {
- #[allow(clippy::derive_partial_eq_without_eq)]
-#[derive(Clone, PartialEq, ::prost::Oneof)]
- pub enum ConfigType {
- /// If specified, the tap filter will be configured via an admin handler.
- #[prost(message, tag="1")]
- AdminConfig(super::AdminConfig),
- /// If specified, the tap filter will be configured via a static configuration that cannot be
- /// changed.
- #[prost(message, tag="2")]
- StaticConfig(super::super::super::super::super::config::tap::v3::TapConfig),
- }
-}
-/// Configuration for the admin handler. See :ref:`here <config_http_filters_tap_admin_handler>` for
-/// more information.
-#[allow(clippy::derive_partial_eq_without_eq)]
-#[derive(Clone, PartialEq, ::prost::Message)]
-pub struct AdminConfig {
- /// Opaque configuration ID. When requests are made to the admin handler, the passed opaque ID is
- /// matched to the configured filter opaque ID to determine which filter to configure.
- #[prost(string, tag="1")]
- pub config_id: ::prost::alloc::string::String,
-}
-// @@protoc_insertion_point(module)