io.envoyproxy.envoy.config.metrics.v3alpha.StatsMatcherOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/metrics/v3alpha/stats.proto
package io.envoyproxy.envoy.config.metrics.v3alpha;
public interface StatsMatcherOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.metrics.v3alpha.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;
*/
boolean getRejectAll();
/**
*
* Exclusive match. All stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher exclusion_list = 2;
*/
boolean hasExclusionList();
/**
*
* Exclusive match. All stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher exclusion_list = 2;
*/
io.envoyproxy.envoy.type.matcher.ListStringMatcher getExclusionList();
/**
*
* Exclusive match. All stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher exclusion_list = 2;
*/
io.envoyproxy.envoy.type.matcher.ListStringMatcherOrBuilder getExclusionListOrBuilder();
/**
*
* Inclusive match. No stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher inclusion_list = 3;
*/
boolean hasInclusionList();
/**
*
* Inclusive match. No stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher inclusion_list = 3;
*/
io.envoyproxy.envoy.type.matcher.ListStringMatcher getInclusionList();
/**
*
* Inclusive match. No stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher inclusion_list = 3;
*/
io.envoyproxy.envoy.type.matcher.ListStringMatcherOrBuilder getInclusionListOrBuilder();
public io.envoyproxy.envoy.config.metrics.v3alpha.StatsMatcher.StatsMatcherCase getStatsMatcherCase();
}