Interface TapConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TapConfig,TapConfig.Builder
public interface TapConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MatchPredicategetMatchConfig()The match configuration.MatchPredicateOrBuildergetMatchConfigOrBuilder()The match configuration.OutputConfiggetOutputConfig()The tap output configuration.OutputConfigOrBuildergetOutputConfigOrBuilder()The tap output configuration.RuntimeFractionalPercentgetTapEnabled()[#not-implemented-hide:] Specify if Tap matching is enabled.RuntimeFractionalPercentOrBuildergetTapEnabledOrBuilder()[#not-implemented-hide:] Specify if Tap matching is enabled.booleanhasMatchConfig()The match configuration.booleanhasOutputConfig()The tap output configuration.booleanhasTapEnabled()[#not-implemented-hide:] Specify if Tap matching is enabled.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasMatchConfig
boolean hasMatchConfig()
The match configuration. If the configuration matches the data source being tapped, a tap will occur, with the result written to the configured output.
.envoy.service.tap.v2alpha.MatchPredicate match_config = 1 [(.validate.rules) = { ... }- Returns:
- Whether the matchConfig field is set.
-
getMatchConfig
MatchPredicate getMatchConfig()
The match configuration. If the configuration matches the data source being tapped, a tap will occur, with the result written to the configured output.
.envoy.service.tap.v2alpha.MatchPredicate match_config = 1 [(.validate.rules) = { ... }- Returns:
- The matchConfig.
-
getMatchConfigOrBuilder
MatchPredicateOrBuilder getMatchConfigOrBuilder()
The match configuration. If the configuration matches the data source being tapped, a tap will occur, with the result written to the configured output.
.envoy.service.tap.v2alpha.MatchPredicate match_config = 1 [(.validate.rules) = { ... }
-
hasOutputConfig
boolean hasOutputConfig()
The tap output configuration. If a match configuration matches a data source being tapped, a tap will occur and the data will be written to the configured output.
.envoy.service.tap.v2alpha.OutputConfig output_config = 2 [(.validate.rules) = { ... }- Returns:
- Whether the outputConfig field is set.
-
getOutputConfig
OutputConfig getOutputConfig()
The tap output configuration. If a match configuration matches a data source being tapped, a tap will occur and the data will be written to the configured output.
.envoy.service.tap.v2alpha.OutputConfig output_config = 2 [(.validate.rules) = { ... }- Returns:
- The outputConfig.
-
getOutputConfigOrBuilder
OutputConfigOrBuilder getOutputConfigOrBuilder()
The tap output configuration. If a match configuration matches a data source being tapped, a tap will occur and the data will be written to the configured output.
.envoy.service.tap.v2alpha.OutputConfig output_config = 2 [(.validate.rules) = { ... }
-
hasTapEnabled
boolean hasTapEnabled()
[#not-implemented-hide:] Specify if Tap matching is enabled. The % of requests\connections for which the tap matching is enabled. When not enabled, the request\connection will not be recorded. .. note:: This field defaults to 100/:ref:`HUNDRED <envoy_api_enum_type.FractionalPercent.DenominatorType>`.
.envoy.api.v2.core.RuntimeFractionalPercent tap_enabled = 3;- Returns:
- Whether the tapEnabled field is set.
-
getTapEnabled
RuntimeFractionalPercent getTapEnabled()
[#not-implemented-hide:] Specify if Tap matching is enabled. The % of requests\connections for which the tap matching is enabled. When not enabled, the request\connection will not be recorded. .. note:: This field defaults to 100/:ref:`HUNDRED <envoy_api_enum_type.FractionalPercent.DenominatorType>`.
.envoy.api.v2.core.RuntimeFractionalPercent tap_enabled = 3;- Returns:
- The tapEnabled.
-
getTapEnabledOrBuilder
RuntimeFractionalPercentOrBuilder getTapEnabledOrBuilder()
[#not-implemented-hide:] Specify if Tap matching is enabled. The % of requests\connections for which the tap matching is enabled. When not enabled, the request\connection will not be recorded. .. note:: This field defaults to 100/:ref:`HUNDRED <envoy_api_enum_type.FractionalPercent.DenominatorType>`.
.envoy.api.v2.core.RuntimeFractionalPercent tap_enabled = 3;
-
-