Interface StatsMatcherOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StatsMatcher,StatsMatcher.Builder
public interface StatsMatcherOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStringMatchergetExclusionList()Exclusive match.ListStringMatcherOrBuildergetExclusionListOrBuilder()Exclusive match.ListStringMatchergetInclusionList()Inclusive match.ListStringMatcherOrBuildergetInclusionListOrBuilder()Inclusive match.booleangetRejectAll()If `reject_all` is true, then all stats are disabled.StatsMatcher.StatsMatcherCasegetStatsMatcherCase()booleanhasExclusionList()Exclusive match.booleanhasInclusionList()Inclusive match.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRejectAll
boolean getRejectAll()
If `reject_all` is true, then all stats are disabled. If `reject_all` is false, then all stats are enabled.
bool reject_all = 1;
-
hasExclusionList
boolean hasExclusionList()
Exclusive match. All stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher exclusion_list = 2;
-
getExclusionList
ListStringMatcher getExclusionList()
Exclusive match. All stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher exclusion_list = 2;
-
getExclusionListOrBuilder
ListStringMatcherOrBuilder getExclusionListOrBuilder()
Exclusive match. All stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher exclusion_list = 2;
-
hasInclusionList
boolean hasInclusionList()
Inclusive match. No stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher inclusion_list = 3;
-
getInclusionList
ListStringMatcher getInclusionList()
Inclusive match. No stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher inclusion_list = 3;
-
getInclusionListOrBuilder
ListStringMatcherOrBuilder getInclusionListOrBuilder()
Inclusive match. No stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher inclusion_list = 3;
-
getStatsMatcherCase
StatsMatcher.StatsMatcherCase getStatsMatcherCase()
-
-