io.envoyproxy.envoy.config.overload.v2alpha.OverloadActionOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/overload/v2alpha/overload.proto
package io.envoyproxy.envoy.config.overload.v2alpha;
public interface OverloadActionOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.overload.v2alpha.OverloadAction)
com.google.protobuf.MessageOrBuilder {
/**
*
* The name of the overload action. This is just a well-known string that listeners can
* use for registering callbacks. Custom overload actions should be named using reverse
* DNS to ensure uniqueness.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The name.
*/
java.lang.String getName();
/**
*
* The name of the overload action. This is just a well-known string that listeners can
* use for registering callbacks. Custom overload actions should be named using reverse
* DNS to ensure uniqueness.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* A set of triggers for this action. If any of these triggers fire the overload action
* is activated. Listeners are notified when the overload action transitions from
* inactivated to activated, or vice versa.
*
*
* repeated .envoy.config.overload.v2alpha.Trigger triggers = 2 [(.validate.rules) = { ... }
*/
java.util.List
getTriggersList();
/**
*
* A set of triggers for this action. If any of these triggers fire the overload action
* is activated. Listeners are notified when the overload action transitions from
* inactivated to activated, or vice versa.
*
*
* repeated .envoy.config.overload.v2alpha.Trigger triggers = 2 [(.validate.rules) = { ... }
*/
io.envoyproxy.envoy.config.overload.v2alpha.Trigger getTriggers(int index);
/**
*
* A set of triggers for this action. If any of these triggers fire the overload action
* is activated. Listeners are notified when the overload action transitions from
* inactivated to activated, or vice versa.
*
*
* repeated .envoy.config.overload.v2alpha.Trigger triggers = 2 [(.validate.rules) = { ... }
*/
int getTriggersCount();
/**
*
* A set of triggers for this action. If any of these triggers fire the overload action
* is activated. Listeners are notified when the overload action transitions from
* inactivated to activated, or vice versa.
*
*
* repeated .envoy.config.overload.v2alpha.Trigger triggers = 2 [(.validate.rules) = { ... }
*/
java.util.List extends io.envoyproxy.envoy.config.overload.v2alpha.TriggerOrBuilder>
getTriggersOrBuilderList();
/**
*
* A set of triggers for this action. If any of these triggers fire the overload action
* is activated. Listeners are notified when the overload action transitions from
* inactivated to activated, or vice versa.
*
*
* repeated .envoy.config.overload.v2alpha.Trigger triggers = 2 [(.validate.rules) = { ... }
*/
io.envoyproxy.envoy.config.overload.v2alpha.TriggerOrBuilder getTriggersOrBuilder(
int index);
}