io.envoyproxy.envoy.config.common.mutation_rules.v3.HeaderMutationOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/common/mutation_rules/v3/mutation_rules.proto
package io.envoyproxy.envoy.config.common.mutation_rules.v3;
public interface HeaderMutationOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.common.mutation_rules.v3.HeaderMutation)
com.google.protobuf.MessageOrBuilder {
/**
*
* Remove the specified header if it exists.
*
*
* string remove = 1 [(.validate.rules) = { ... }
* @return Whether the remove field is set.
*/
boolean hasRemove();
/**
*
* Remove the specified header if it exists.
*
*
* string remove = 1 [(.validate.rules) = { ... }
* @return The remove.
*/
java.lang.String getRemove();
/**
*
* Remove the specified header if it exists.
*
*
* string remove = 1 [(.validate.rules) = { ... }
* @return The bytes for remove.
*/
com.google.protobuf.ByteString
getRemoveBytes();
/**
*
* Append new header by the specified HeaderValueOption.
*
*
* .envoy.config.core.v3.HeaderValueOption append = 2;
* @return Whether the append field is set.
*/
boolean hasAppend();
/**
*
* Append new header by the specified HeaderValueOption.
*
*
* .envoy.config.core.v3.HeaderValueOption append = 2;
* @return The append.
*/
io.envoyproxy.envoy.config.core.v3.HeaderValueOption getAppend();
/**
*
* Append new header by the specified HeaderValueOption.
*
*
* .envoy.config.core.v3.HeaderValueOption append = 2;
*/
io.envoyproxy.envoy.config.core.v3.HeaderValueOptionOrBuilder getAppendOrBuilder();
public io.envoyproxy.envoy.config.common.mutation_rules.v3.HeaderMutation.ActionCase getActionCase();
}