io.envoyproxy.envoy.config.metrics.v3.StatsMatcherOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/metrics/v3/stats.proto
package io.envoyproxy.envoy.config.metrics.v3;
public interface StatsMatcherOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.metrics.v3.StatsMatcher)
com.google.protobuf.MessageOrBuilder {
/**
*
* If ``reject_all`` is true, then all stats are disabled. If ``reject_all`` is false, then all
* stats are enabled.
*
*
* bool reject_all = 1;
* @return Whether the rejectAll field is set.
*/
boolean hasRejectAll();
/**
*
* If ``reject_all`` is true, then all stats are disabled. If ``reject_all`` is false, then all
* stats are enabled.
*
*
* bool reject_all = 1;
* @return The rejectAll.
*/
boolean getRejectAll();
/**
*
* Exclusive match. All stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.v3.ListStringMatcher exclusion_list = 2;
* @return Whether the exclusionList field is set.
*/
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;
* @return The exclusionList.
*/
io.envoyproxy.envoy.type.matcher.v3.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;
*/
io.envoyproxy.envoy.type.matcher.v3.ListStringMatcherOrBuilder getExclusionListOrBuilder();
/**
*
* Inclusive match. No stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.v3.ListStringMatcher inclusion_list = 3;
* @return Whether the inclusionList field is set.
*/
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;
* @return The inclusionList.
*/
io.envoyproxy.envoy.type.matcher.v3.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;
*/
io.envoyproxy.envoy.type.matcher.v3.ListStringMatcherOrBuilder getInclusionListOrBuilder();
public io.envoyproxy.envoy.config.metrics.v3.StatsMatcher.StatsMatcherCase getStatsMatcherCase();
}