io.envoyproxy.envoy.data.dns.v2alpha.DnsTableOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/data/dns/v2alpha/dns_table.proto
package io.envoyproxy.envoy.data.dns.v2alpha;
public interface DnsTableOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.data.dns.v2alpha.DnsTable)
com.google.protobuf.MessageOrBuilder {
/**
*
* Control how many times envoy makes an attempt to forward a query to
* an external server
*
*
* uint32 external_retry_count = 1;
* @return The externalRetryCount.
*/
int getExternalRetryCount();
/**
*
* Fully qualified domain names for which Envoy will respond to queries
*
*
* repeated .envoy.data.dns.v2alpha.DnsTable.DnsVirtualDomain virtual_domains = 2 [(.validate.rules) = { ... }
*/
java.util.List
getVirtualDomainsList();
/**
*
* Fully qualified domain names for which Envoy will respond to queries
*
*
* repeated .envoy.data.dns.v2alpha.DnsTable.DnsVirtualDomain virtual_domains = 2 [(.validate.rules) = { ... }
*/
io.envoyproxy.envoy.data.dns.v2alpha.DnsTable.DnsVirtualDomain getVirtualDomains(int index);
/**
*
* Fully qualified domain names for which Envoy will respond to queries
*
*
* repeated .envoy.data.dns.v2alpha.DnsTable.DnsVirtualDomain virtual_domains = 2 [(.validate.rules) = { ... }
*/
int getVirtualDomainsCount();
/**
*
* Fully qualified domain names for which Envoy will respond to queries
*
*
* repeated .envoy.data.dns.v2alpha.DnsTable.DnsVirtualDomain virtual_domains = 2 [(.validate.rules) = { ... }
*/
java.util.List extends io.envoyproxy.envoy.data.dns.v2alpha.DnsTable.DnsVirtualDomainOrBuilder>
getVirtualDomainsOrBuilderList();
/**
*
* Fully qualified domain names for which Envoy will respond to queries
*
*
* repeated .envoy.data.dns.v2alpha.DnsTable.DnsVirtualDomain virtual_domains = 2 [(.validate.rules) = { ... }
*/
io.envoyproxy.envoy.data.dns.v2alpha.DnsTable.DnsVirtualDomainOrBuilder getVirtualDomainsOrBuilder(
int index);
/**
*
* This field serves to help Envoy determine whether it can authoritatively
* answer a query for a name matching a suffix in this list. If the query
* name does not match a suffix in this list, Envoy will forward
* the query to an upstream DNS server
*
*
* repeated .envoy.type.matcher.StringMatcher known_suffixes = 3;
*/
java.util.List
getKnownSuffixesList();
/**
*
* This field serves to help Envoy determine whether it can authoritatively
* answer a query for a name matching a suffix in this list. If the query
* name does not match a suffix in this list, Envoy will forward
* the query to an upstream DNS server
*
*
* repeated .envoy.type.matcher.StringMatcher known_suffixes = 3;
*/
io.envoyproxy.envoy.type.matcher.StringMatcher getKnownSuffixes(int index);
/**
*
* This field serves to help Envoy determine whether it can authoritatively
* answer a query for a name matching a suffix in this list. If the query
* name does not match a suffix in this list, Envoy will forward
* the query to an upstream DNS server
*
*
* repeated .envoy.type.matcher.StringMatcher known_suffixes = 3;
*/
int getKnownSuffixesCount();
/**
*
* This field serves to help Envoy determine whether it can authoritatively
* answer a query for a name matching a suffix in this list. If the query
* name does not match a suffix in this list, Envoy will forward
* the query to an upstream DNS server
*
*
* repeated .envoy.type.matcher.StringMatcher known_suffixes = 3;
*/
java.util.List extends io.envoyproxy.envoy.type.matcher.StringMatcherOrBuilder>
getKnownSuffixesOrBuilderList();
/**
*
* This field serves to help Envoy determine whether it can authoritatively
* answer a query for a name matching a suffix in this list. If the query
* name does not match a suffix in this list, Envoy will forward
* the query to an upstream DNS server
*
*
* repeated .envoy.type.matcher.StringMatcher known_suffixes = 3;
*/
io.envoyproxy.envoy.type.matcher.StringMatcherOrBuilder getKnownSuffixesOrBuilder(
int index);
}