io.envoyproxy.envoy.config.route.v3.ScopedRouteConfigurationOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/route/v3/scoped_route.proto
package io.envoyproxy.envoy.config.route.v3;
public interface ScopedRouteConfigurationOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.route.v3.ScopedRouteConfiguration)
com.google.protobuf.MessageOrBuilder {
/**
*
* Whether the RouteConfiguration should be loaded on demand.
*
*
* bool on_demand = 4;
* @return The onDemand.
*/
boolean getOnDemand();
/**
*
* The name assigned to the routing scope.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The name.
*/
java.lang.String getName();
/**
*
* The name assigned to the routing scope.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* The resource name to use for a :ref:`envoy_v3_api_msg_service.discovery.v3.DiscoveryRequest` to an
* RDS server to fetch the :ref:`envoy_v3_api_msg_config.route.v3.RouteConfiguration` associated
* with this scope.
*
*
* string route_configuration_name = 2 [(.udpa.annotations.field_migrate) = { ... }
* @return The routeConfigurationName.
*/
java.lang.String getRouteConfigurationName();
/**
*
* The resource name to use for a :ref:`envoy_v3_api_msg_service.discovery.v3.DiscoveryRequest` to an
* RDS server to fetch the :ref:`envoy_v3_api_msg_config.route.v3.RouteConfiguration` associated
* with this scope.
*
*
* string route_configuration_name = 2 [(.udpa.annotations.field_migrate) = { ... }
* @return The bytes for routeConfigurationName.
*/
com.google.protobuf.ByteString
getRouteConfigurationNameBytes();
/**
*
* The :ref:`envoy_v3_api_msg_config.route.v3.RouteConfiguration` associated with the scope.
*
*
* .envoy.config.route.v3.RouteConfiguration route_configuration = 5 [(.udpa.annotations.field_migrate) = { ... }
* @return Whether the routeConfiguration field is set.
*/
boolean hasRouteConfiguration();
/**
*
* The :ref:`envoy_v3_api_msg_config.route.v3.RouteConfiguration` associated with the scope.
*
*
* .envoy.config.route.v3.RouteConfiguration route_configuration = 5 [(.udpa.annotations.field_migrate) = { ... }
* @return The routeConfiguration.
*/
io.envoyproxy.envoy.config.route.v3.RouteConfiguration getRouteConfiguration();
/**
*
* The :ref:`envoy_v3_api_msg_config.route.v3.RouteConfiguration` associated with the scope.
*
*
* .envoy.config.route.v3.RouteConfiguration route_configuration = 5 [(.udpa.annotations.field_migrate) = { ... }
*/
io.envoyproxy.envoy.config.route.v3.RouteConfigurationOrBuilder getRouteConfigurationOrBuilder();
/**
*
* The key to match against.
*
*
* .envoy.config.route.v3.ScopedRouteConfiguration.Key key = 3 [(.validate.rules) = { ... }
* @return Whether the key field is set.
*/
boolean hasKey();
/**
*
* The key to match against.
*
*
* .envoy.config.route.v3.ScopedRouteConfiguration.Key key = 3 [(.validate.rules) = { ... }
* @return The key.
*/
io.envoyproxy.envoy.config.route.v3.ScopedRouteConfiguration.Key getKey();
/**
*
* The key to match against.
*
*
* .envoy.config.route.v3.ScopedRouteConfiguration.Key key = 3 [(.validate.rules) = { ... }
*/
io.envoyproxy.envoy.config.route.v3.ScopedRouteConfiguration.KeyOrBuilder getKeyOrBuilder();
}