io.envoyproxy.envoy.service.ext_proc.v3.BodyMutationOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/service/ext_proc/v3/external_processor.proto
package io.envoyproxy.envoy.service.ext_proc.v3;
public interface BodyMutationOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.service.ext_proc.v3.BodyMutation)
com.google.protobuf.MessageOrBuilder {
/**
*
* The entire body to replace
*
*
* bytes body = 1;
* @return Whether the body field is set.
*/
boolean hasBody();
/**
*
* The entire body to replace
*
*
* bytes body = 1;
* @return The body.
*/
com.google.protobuf.ByteString getBody();
/**
*
* Clear the corresponding body chunk
*
*
* bool clear_body = 2;
* @return Whether the clearBody field is set.
*/
boolean hasClearBody();
/**
*
* Clear the corresponding body chunk
*
*
* bool clear_body = 2;
* @return The clearBody.
*/
boolean getClearBody();
public io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation.MutationCase getMutationCase();
}