You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
424 B
26 lines
424 B
syntax = "proto3";
|
|
package Aliyun.Api.LOG;
|
|
|
|
message Log
|
|
{
|
|
uint32 Time = 1;// UNIX Time Format
|
|
message Content
|
|
{
|
|
string Key = 1;
|
|
string Value = 2;
|
|
}
|
|
repeated Content Contents= 2;
|
|
|
|
}
|
|
message LogGroup
|
|
{
|
|
repeated Log Logs= 1;
|
|
string Reserved =2; // 内部字段,不需要填写
|
|
string Topic = 3;
|
|
string Source = 4;
|
|
}
|
|
|
|
message LogGroupList
|
|
{
|
|
repeated LogGroup logGroupList = 1;
|
|
}
|