io.envoyproxy.envoy.data.dns.v3.DnsTableOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/data/dns/v3/dns_table.proto
package io.envoyproxy.envoy.data.dns.v3;
public interface DnsTableOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.data.dns.v3.DnsTable)
com.google.protobuf.MessageOrBuilder {
/**
*
* Control how many times Envoy makes an attempt to forward a query to an external DNS server
*
*
* uint32 external_retry_count = 1 [(.validate.rules) = { ... }
* @return The externalRetryCount.
*/
int getExternalRetryCount();
/**
*
* Fully qualified domain names for which Envoy will respond to DNS queries. By leaving this
* list empty, Envoy will forward all queries to external resolvers
*
*
* repeated .envoy.data.dns.v3.DnsTable.DnsVirtualDomain virtual_domains = 2;
*/
java.util.List
getVirtualDomainsList();
/**
*
* Fully qualified domain names for which Envoy will respond to DNS queries. By leaving this
* list empty, Envoy will forward all queries to external resolvers
*
*
* repeated .envoy.data.dns.v3.DnsTable.DnsVirtualDomain virtual_domains = 2;
*/
io.envoyproxy.envoy.data.dns.v3.DnsTable.DnsVirtualDomain getVirtualDomains(int index);
/**
*
* Fully qualified domain names for which Envoy will respond to DNS queries. By leaving this
* list empty, Envoy will forward all queries to external resolvers
*
*
* repeated .envoy.data.dns.v3.DnsTable.DnsVirtualDomain virtual_domains = 2;
*/
int getVirtualDomainsCount();
/**
*
* Fully qualified domain names for which Envoy will respond to DNS queries. By leaving this
* list empty, Envoy will forward all queries to external resolvers
*
*
* repeated .envoy.data.dns.v3.DnsTable.DnsVirtualDomain virtual_domains = 2;
*/
java.util.List extends io.envoyproxy.envoy.data.dns.v3.DnsTable.DnsVirtualDomainOrBuilder>
getVirtualDomainsOrBuilderList();
/**
*
* Fully qualified domain names for which Envoy will respond to DNS queries. By leaving this
* list empty, Envoy will forward all queries to external resolvers
*
*
* repeated .envoy.data.dns.v3.DnsTable.DnsVirtualDomain virtual_domains = 2;
*/
io.envoyproxy.envoy.data.dns.v3.DnsTable.DnsVirtualDomainOrBuilder getVirtualDomainsOrBuilder(
int index);
/**
*
* This field is deprecated and no longer used in Envoy. The filter's behavior has changed
* internally to use a different data structure allowing the filter to determine whether a
* query is for known domain without the use of this field.
* 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.v3.StringMatcher known_suffixes = 3 [deprecated = true, (.envoy.annotations.deprecated_at_minor_version) = "3.0"];
*/
@java.lang.Deprecated java.util.List
getKnownSuffixesList();
/**
*
* This field is deprecated and no longer used in Envoy. The filter's behavior has changed
* internally to use a different data structure allowing the filter to determine whether a
* query is for known domain without the use of this field.
* 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.v3.StringMatcher known_suffixes = 3 [deprecated = true, (.envoy.annotations.deprecated_at_minor_version) = "3.0"];
*/
@java.lang.Deprecated io.envoyproxy.envoy.type.matcher.v3.StringMatcher getKnownSuffixes(int index);
/**
*
* This field is deprecated and no longer used in Envoy. The filter's behavior has changed
* internally to use a different data structure allowing the filter to determine whether a
* query is for known domain without the use of this field.
* 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.v3.StringMatcher known_suffixes = 3 [deprecated = true, (.envoy.annotations.deprecated_at_minor_version) = "3.0"];
*/
@java.lang.Deprecated int getKnownSuffixesCount();
/**
*
* This field is deprecated and no longer used in Envoy. The filter's behavior has changed
* internally to use a different data structure allowing the filter to determine whether a
* query is for known domain without the use of this field.
* 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.v3.StringMatcher known_suffixes = 3 [deprecated = true, (.envoy.annotations.deprecated_at_minor_version) = "3.0"];
*/
@java.lang.Deprecated java.util.List extends io.envoyproxy.envoy.type.matcher.v3.StringMatcherOrBuilder>
getKnownSuffixesOrBuilderList();
/**
*
* This field is deprecated and no longer used in Envoy. The filter's behavior has changed
* internally to use a different data structure allowing the filter to determine whether a
* query is for known domain without the use of this field.
* 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.v3.StringMatcher known_suffixes = 3 [deprecated = true, (.envoy.annotations.deprecated_at_minor_version) = "3.0"];
*/
@java.lang.Deprecated io.envoyproxy.envoy.type.matcher.v3.StringMatcherOrBuilder getKnownSuffixesOrBuilder(
int index);
}