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