Skip to content

Commit

Permalink
feat: add EventDefinition proto
Browse files Browse the repository at this point in the history
  • Loading branch information
josedonizetti committed Sep 6, 2023
1 parent be6812f commit baa0b2d
Show file tree
Hide file tree
Showing 2 changed files with 286 additions and 0 deletions.
267 changes: 267 additions & 0 deletions types/api/v1beta1/definition.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions types/api/v1beta1/definition.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
syntax = "proto3";

option go_package = "github.co/aquasecurity/tracee/api/v1beta1";

package tracee.v1beta1;

message EventDefinition {
int32 id = 1;
string name = 2;
string version= 3;
string description = 4 ;
repeated string tags = 5;
repeated Param params = 6;
}

message Param {
string name = 1;
string type = 2;
}

0 comments on commit baa0b2d

Please sign in to comment.