io.envoyproxy.envoy.admin.v2alpha.TapRequestOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/admin/v2alpha/tap.proto
package io.envoyproxy.envoy.admin.v2alpha;
public interface TapRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.admin.v2alpha.TapRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The opaque configuration ID used to match the configuration to a loaded extension.
* A tap extension configures a similar opaque ID that is used to match.
*
*
* string config_id = 1 [(.validate.rules) = { ... }
* @return The configId.
*/
java.lang.String getConfigId();
/**
*
* The opaque configuration ID used to match the configuration to a loaded extension.
* A tap extension configures a similar opaque ID that is used to match.
*
*
* string config_id = 1 [(.validate.rules) = { ... }
* @return The bytes for configId.
*/
com.google.protobuf.ByteString
getConfigIdBytes();
/**
*
* The tap configuration to load.
*
*
* .envoy.service.tap.v2alpha.TapConfig tap_config = 2 [(.validate.rules) = { ... }
* @return Whether the tapConfig field is set.
*/
boolean hasTapConfig();
/**
*
* The tap configuration to load.
*
*
* .envoy.service.tap.v2alpha.TapConfig tap_config = 2 [(.validate.rules) = { ... }
* @return The tapConfig.
*/
io.envoyproxy.envoy.service.tap.v2alpha.TapConfig getTapConfig();
/**
*
* The tap configuration to load.
*
*
* .envoy.service.tap.v2alpha.TapConfig tap_config = 2 [(.validate.rules) = { ... }
*/
io.envoyproxy.envoy.service.tap.v2alpha.TapConfigOrBuilder getTapConfigOrBuilder();
}