forked from envoyproxy/java-control-plane
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
api: update envoyproxy/envoy@f6cf957 [v1.12] (envoyproxy#119)
Signed-off-by: Nandu Vinodan <nandu.vinodan@freshworks.com>
- Loading branch information
1 parent
4842e82
commit e296c8d
Showing
236 changed files
with
6,175 additions
and
5,105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
syntax = "proto3"; | ||
|
||
import "envoy/service/tap/v2alpha/common.proto"; | ||
import "validate/validate.proto"; | ||
|
||
package envoy.admin.v2alpha; | ||
|
||
option java_outer_classname = "TapProto"; | ||
option java_multiple_files = true; | ||
option java_package = "io.envoyproxy.envoy.admin.v2alpha"; | ||
|
||
import "envoy/service/tap/v2alpha/common.proto"; | ||
|
||
import "validate/validate.proto"; | ||
|
||
// The /tap admin request body that is used to configure an active tap session. | ||
message TapRequest { | ||
// 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).string.min_bytes = 1]; | ||
string config_id = 1 [(validate.rules).string = {min_bytes: 1}]; | ||
|
||
// The tap configuration to load. | ||
service.tap.v2alpha.TapConfig tap_config = 2 [(validate.rules).message.required = true]; | ||
service.tap.v2alpha.TapConfig tap_config = 2 [(validate.rules).message = {required: true}]; | ||
} |
Oops, something went wrong.