Files
onepanel/api/proto/common.proto
2021-01-20 16:32:32 -08:00

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;
}