Skip to content

Commit

Permalink
Update PROTO files from AliECS (#2612)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <github-actions@github.com>
  • Loading branch information
github-actions[bot] and github-actions authored Oct 9, 2024
1 parent 30ced8d commit b96080a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Control/protobuf/protos/events.proto
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ message Ev_EnvironmentEvent {
OpStatus transitionStatus = 8;
map<string, string> vars = 9; // consolidated environment variables at the root role of the environment
common.User lastRequestUser = 10;
common.WorkflowTemplateInfo workflowTemplateInfo = 11;
}

message Traits {
Expand Down Expand Up @@ -128,7 +129,8 @@ message Ev_RunEvent {

message Event {
int64 timestamp = 1;
reserved 2 to 10;
int64 timestampNano = 2;
reserved 3 to 10;
reserved 17 to 100;

oneof Payload {
Expand Down
7 changes: 7 additions & 0 deletions Control/protobuf/protos/protos/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,10 @@ message User {
// Name of the user.
string name = 3;
}

message WorkflowTemplateInfo {
string name = 1;
string description = 2;
string path = 3;
bool public = 4; // whether the environment is public or not
}

0 comments on commit b96080a

Please sign in to comment.