Interface DynamicModuleListenerFilterOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
DynamicModuleListenerFilter, DynamicModuleListenerFilter.Builder

public interface DynamicModuleListenerFilterOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Specifies the shared-object level configuration.
    Specifies the shared-object level configuration.
    com.google.protobuf.Any
    The configuration for the filter chosen by ``filter_name``.
    com.google.protobuf.AnyOrBuilder
    The configuration for the filter chosen by ``filter_name``.
    The name for this filter configuration.
    com.google.protobuf.ByteString
    The name for this filter configuration.
    boolean
    Specifies the shared-object level configuration.
    boolean
    The configuration for the filter chosen by ``filter_name``.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • hasDynamicModuleConfig

      boolean hasDynamicModuleConfig()
       Specifies the shared-object level configuration.
       
      .envoy.extensions.dynamic_modules.v3.DynamicModuleConfig dynamic_module_config = 1;
      Returns:
      Whether the dynamicModuleConfig field is set.
    • getDynamicModuleConfig

      DynamicModuleConfig getDynamicModuleConfig()
       Specifies the shared-object level configuration.
       
      .envoy.extensions.dynamic_modules.v3.DynamicModuleConfig dynamic_module_config = 1;
      Returns:
      The dynamicModuleConfig.
    • getDynamicModuleConfigOrBuilder

      DynamicModuleConfigOrBuilder getDynamicModuleConfigOrBuilder()
       Specifies the shared-object level configuration.
       
      .envoy.extensions.dynamic_modules.v3.DynamicModuleConfig dynamic_module_config = 1;
    • getFilterName

      String getFilterName()
       The name for this filter configuration. This can be used to distinguish between different
       filter implementations inside a dynamic module. For example, a module can have completely
       different filter implementations (TLS inspector, rate limiter, proxy protocol parser).
       When Envoy receives this configuration, it passes the ``filter_name`` to the dynamic module's
       listener filter config init function together with the ``filter_config``. That way a module
       can decide which in-module filter implementation to use based on the name at load time.
       
      string filter_name = 2;
      Returns:
      The filterName.
    • getFilterNameBytes

      com.google.protobuf.ByteString getFilterNameBytes()
       The name for this filter configuration. This can be used to distinguish between different
       filter implementations inside a dynamic module. For example, a module can have completely
       different filter implementations (TLS inspector, rate limiter, proxy protocol parser).
       When Envoy receives this configuration, it passes the ``filter_name`` to the dynamic module's
       listener filter config init function together with the ``filter_config``. That way a module
       can decide which in-module filter implementation to use based on the name at load time.
       
      string filter_name = 2;
      Returns:
      The bytes for filterName.
    • hasFilterConfig

      boolean hasFilterConfig()
       The configuration for the filter chosen by ``filter_name``. This is passed to the module's
       listener filter initialization function. Together with the ``filter_name``, the module can
       decide which in-module filter implementation to use and fine-tune the behavior of the filter.
      
       For example, if a module has two filter implementations, one for TLS inspection and one for
       rate limiting, ``filter_name`` is used to choose either TLS or rate limiting. The ``filter_config``
       can be used to configure the TLS inspection options or the rate limiting parameters.
      
       ``google.protobuf.Struct`` is serialized as JSON before passing it to the module.
       ``google.protobuf.BytesValue`` and ``google.protobuf.StringValue`` are passed directly
       without the wrapper.
      
       .. code-block:: yaml
      
        # Passing a string value
        filter_config:
          "@type": "type.googleapis.com/google.protobuf.StringValue"
          value: hello
      
        # Passing raw bytes
        filter_config:
          "@type": "type.googleapis.com/google.protobuf.BytesValue"
          value: aGVsbG8=  # echo -n "hello" | base64
       
      .google.protobuf.Any filter_config = 3;
      Returns:
      Whether the filterConfig field is set.
    • getFilterConfig

      com.google.protobuf.Any getFilterConfig()
       The configuration for the filter chosen by ``filter_name``. This is passed to the module's
       listener filter initialization function. Together with the ``filter_name``, the module can
       decide which in-module filter implementation to use and fine-tune the behavior of the filter.
      
       For example, if a module has two filter implementations, one for TLS inspection and one for
       rate limiting, ``filter_name`` is used to choose either TLS or rate limiting. The ``filter_config``
       can be used to configure the TLS inspection options or the rate limiting parameters.
      
       ``google.protobuf.Struct`` is serialized as JSON before passing it to the module.
       ``google.protobuf.BytesValue`` and ``google.protobuf.StringValue`` are passed directly
       without the wrapper.
      
       .. code-block:: yaml
      
        # Passing a string value
        filter_config:
          "@type": "type.googleapis.com/google.protobuf.StringValue"
          value: hello
      
        # Passing raw bytes
        filter_config:
          "@type": "type.googleapis.com/google.protobuf.BytesValue"
          value: aGVsbG8=  # echo -n "hello" | base64
       
      .google.protobuf.Any filter_config = 3;
      Returns:
      The filterConfig.
    • getFilterConfigOrBuilder

      com.google.protobuf.AnyOrBuilder getFilterConfigOrBuilder()
       The configuration for the filter chosen by ``filter_name``. This is passed to the module's
       listener filter initialization function. Together with the ``filter_name``, the module can
       decide which in-module filter implementation to use and fine-tune the behavior of the filter.
      
       For example, if a module has two filter implementations, one for TLS inspection and one for
       rate limiting, ``filter_name`` is used to choose either TLS or rate limiting. The ``filter_config``
       can be used to configure the TLS inspection options or the rate limiting parameters.
      
       ``google.protobuf.Struct`` is serialized as JSON before passing it to the module.
       ``google.protobuf.BytesValue`` and ``google.protobuf.StringValue`` are passed directly
       without the wrapper.
      
       .. code-block:: yaml
      
        # Passing a string value
        filter_config:
          "@type": "type.googleapis.com/google.protobuf.StringValue"
          value: hello
      
        # Passing raw bytes
        filter_config:
          "@type": "type.googleapis.com/google.protobuf.BytesValue"
          value: aGVsbG8=  # echo -n "hello" | base64
       
      .google.protobuf.Any filter_config = 3;