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

1 month ago
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;
}