io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayerOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/bootstrap/v2/bootstrap.proto
package io.envoyproxy.envoy.config.bootstrap.v2;
public interface RuntimeLayerOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.bootstrap.v2.RuntimeLayer)
com.google.protobuf.MessageOrBuilder {
/**
*
* Descriptive name for the runtime layer. This is only used for the runtime
* :http:get:`/runtime` output.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The name.
*/
java.lang.String getName();
/**
*
* Descriptive name for the runtime layer. This is only used for the runtime
* :http:get:`/runtime` output.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* :ref:`Static runtime <config_runtime_bootstrap>` layer.
* This follows the :ref:`runtime protobuf JSON representation encoding
* <config_runtime_proto_json>`. Unlike static xDS resources, this static
* layer is overridable by later layers in the runtime virtual filesystem.
*
*
* .google.protobuf.Struct static_layer = 2;
* @return Whether the staticLayer field is set.
*/
boolean hasStaticLayer();
/**
*
* :ref:`Static runtime <config_runtime_bootstrap>` layer.
* This follows the :ref:`runtime protobuf JSON representation encoding
* <config_runtime_proto_json>`. Unlike static xDS resources, this static
* layer is overridable by later layers in the runtime virtual filesystem.
*
*
* .google.protobuf.Struct static_layer = 2;
* @return The staticLayer.
*/
com.google.protobuf.Struct getStaticLayer();
/**
*
* :ref:`Static runtime <config_runtime_bootstrap>` layer.
* This follows the :ref:`runtime protobuf JSON representation encoding
* <config_runtime_proto_json>`. Unlike static xDS resources, this static
* layer is overridable by later layers in the runtime virtual filesystem.
*
*
* .google.protobuf.Struct static_layer = 2;
*/
com.google.protobuf.StructOrBuilder getStaticLayerOrBuilder();
/**
* .envoy.config.bootstrap.v2.RuntimeLayer.DiskLayer disk_layer = 3;
* @return Whether the diskLayer field is set.
*/
boolean hasDiskLayer();
/**
* .envoy.config.bootstrap.v2.RuntimeLayer.DiskLayer disk_layer = 3;
* @return The diskLayer.
*/
io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.DiskLayer getDiskLayer();
/**
* .envoy.config.bootstrap.v2.RuntimeLayer.DiskLayer disk_layer = 3;
*/
io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.DiskLayerOrBuilder getDiskLayerOrBuilder();
/**
* .envoy.config.bootstrap.v2.RuntimeLayer.AdminLayer admin_layer = 4;
* @return Whether the adminLayer field is set.
*/
boolean hasAdminLayer();
/**
* .envoy.config.bootstrap.v2.RuntimeLayer.AdminLayer admin_layer = 4;
* @return The adminLayer.
*/
io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.AdminLayer getAdminLayer();
/**
* .envoy.config.bootstrap.v2.RuntimeLayer.AdminLayer admin_layer = 4;
*/
io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.AdminLayerOrBuilder getAdminLayerOrBuilder();
/**
* .envoy.config.bootstrap.v2.RuntimeLayer.RtdsLayer rtds_layer = 5;
* @return Whether the rtdsLayer field is set.
*/
boolean hasRtdsLayer();
/**
* .envoy.config.bootstrap.v2.RuntimeLayer.RtdsLayer rtds_layer = 5;
* @return The rtdsLayer.
*/
io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.RtdsLayer getRtdsLayer();
/**
* .envoy.config.bootstrap.v2.RuntimeLayer.RtdsLayer rtds_layer = 5;
*/
io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.RtdsLayerOrBuilder getRtdsLayerOrBuilder();
public io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.LayerSpecifierCase getLayerSpecifierCase();
}