mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-10-05 21:56:50 +08:00
30 lines
532 B
Protocol Buffer
30 lines
532 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package api;
|
|
option go_package = "github.com/onepanelio/core/api/gen";
|
|
|
|
message Parameter {
|
|
string name = 1;
|
|
string value = 2;
|
|
string type = 3;
|
|
string displayName = 4;
|
|
string hint = 5;
|
|
bool required = 6;
|
|
string visibility = 7;
|
|
|
|
repeated ParameterOption options = 8;
|
|
}
|
|
|
|
message ParameterOption {
|
|
string name = 1;
|
|
string value = 2;
|
|
}
|
|
|
|
message LogStreamResponse {
|
|
repeated LogEntry logEntries = 1;
|
|
}
|
|
|
|
message LogEntry {
|
|
string timestamp = 1;
|
|
string content = 2;
|
|
} |