event_query.pb.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  4. // protoc v3.12.4
  5. // source: v1/request/event_query.proto
  6. package request
  7. import (
  8. _ "github.com/mwitkow/go-proto-validators"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type EventQueryByKeysRequest struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  25. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  26. Select []byte `protobuf:"bytes,3,opt,name=Select,proto3" json:"Select,omitempty"`
  27. KeyValues []string `protobuf:"bytes,4,rep,name=KeyValues,proto3" json:"KeyValues,omitempty"`
  28. PageNo int32 `protobuf:"varint,5,opt,name=PageNo,proto3" json:"PageNo,omitempty"`
  29. PageSize int32 `protobuf:"varint,6,opt,name=PageSize,proto3" json:"PageSize,omitempty"`
  30. }
  31. func (x *EventQueryByKeysRequest) Reset() {
  32. *x = EventQueryByKeysRequest{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_v1_request_event_query_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *EventQueryByKeysRequest) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*EventQueryByKeysRequest) ProtoMessage() {}
  43. func (x *EventQueryByKeysRequest) ProtoReflect() protoreflect.Message {
  44. mi := &file_v1_request_event_query_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use EventQueryByKeysRequest.ProtoReflect.Descriptor instead.
  55. func (*EventQueryByKeysRequest) Descriptor() ([]byte, []int) {
  56. return file_v1_request_event_query_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *EventQueryByKeysRequest) GetDatabaseID() string {
  59. if x != nil {
  60. return x.DatabaseID
  61. }
  62. return ""
  63. }
  64. func (x *EventQueryByKeysRequest) GetTablePrefixWithSchema() string {
  65. if x != nil {
  66. return x.TablePrefixWithSchema
  67. }
  68. return ""
  69. }
  70. func (x *EventQueryByKeysRequest) GetSelect() []byte {
  71. if x != nil {
  72. return x.Select
  73. }
  74. return nil
  75. }
  76. func (x *EventQueryByKeysRequest) GetKeyValues() []string {
  77. if x != nil {
  78. return x.KeyValues
  79. }
  80. return nil
  81. }
  82. func (x *EventQueryByKeysRequest) GetPageNo() int32 {
  83. if x != nil {
  84. return x.PageNo
  85. }
  86. return 0
  87. }
  88. func (x *EventQueryByKeysRequest) GetPageSize() int32 {
  89. if x != nil {
  90. return x.PageSize
  91. }
  92. return 0
  93. }
  94. type CommonEventQueryRequest struct {
  95. state protoimpl.MessageState
  96. sizeCache protoimpl.SizeCache
  97. unknownFields protoimpl.UnknownFields
  98. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  99. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  100. Select []byte `protobuf:"bytes,3,opt,name=Select,proto3" json:"Select,omitempty"`
  101. KeyValues []string `protobuf:"bytes,4,rep,name=KeyValues,proto3" json:"KeyValues,omitempty"`
  102. Version string `protobuf:"bytes,5,opt,name=Version,proto3" json:"Version,omitempty"`
  103. Operation string `protobuf:"bytes,6,opt,name=Operation,proto3" json:"Operation,omitempty"`
  104. CreatorID string `protobuf:"bytes,7,opt,name=CreatorID,proto3" json:"CreatorID,omitempty"`
  105. StartCreatedTime string `protobuf:"bytes,8,opt,name=StartCreatedTime,proto3" json:"StartCreatedTime,omitempty"`
  106. EndCreatedTime string `protobuf:"bytes,9,opt,name=EndCreatedTime,proto3" json:"EndCreatedTime,omitempty"`
  107. PageNo int32 `protobuf:"varint,10,opt,name=PageNo,proto3" json:"PageNo,omitempty"`
  108. PageSize int32 `protobuf:"varint,11,opt,name=PageSize,proto3" json:"PageSize,omitempty"`
  109. }
  110. func (x *CommonEventQueryRequest) Reset() {
  111. *x = CommonEventQueryRequest{}
  112. if protoimpl.UnsafeEnabled {
  113. mi := &file_v1_request_event_query_proto_msgTypes[1]
  114. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  115. ms.StoreMessageInfo(mi)
  116. }
  117. }
  118. func (x *CommonEventQueryRequest) String() string {
  119. return protoimpl.X.MessageStringOf(x)
  120. }
  121. func (*CommonEventQueryRequest) ProtoMessage() {}
  122. func (x *CommonEventQueryRequest) ProtoReflect() protoreflect.Message {
  123. mi := &file_v1_request_event_query_proto_msgTypes[1]
  124. if protoimpl.UnsafeEnabled && x != nil {
  125. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  126. if ms.LoadMessageInfo() == nil {
  127. ms.StoreMessageInfo(mi)
  128. }
  129. return ms
  130. }
  131. return mi.MessageOf(x)
  132. }
  133. // Deprecated: Use CommonEventQueryRequest.ProtoReflect.Descriptor instead.
  134. func (*CommonEventQueryRequest) Descriptor() ([]byte, []int) {
  135. return file_v1_request_event_query_proto_rawDescGZIP(), []int{1}
  136. }
  137. func (x *CommonEventQueryRequest) GetDatabaseID() string {
  138. if x != nil {
  139. return x.DatabaseID
  140. }
  141. return ""
  142. }
  143. func (x *CommonEventQueryRequest) GetTablePrefixWithSchema() string {
  144. if x != nil {
  145. return x.TablePrefixWithSchema
  146. }
  147. return ""
  148. }
  149. func (x *CommonEventQueryRequest) GetSelect() []byte {
  150. if x != nil {
  151. return x.Select
  152. }
  153. return nil
  154. }
  155. func (x *CommonEventQueryRequest) GetKeyValues() []string {
  156. if x != nil {
  157. return x.KeyValues
  158. }
  159. return nil
  160. }
  161. func (x *CommonEventQueryRequest) GetVersion() string {
  162. if x != nil {
  163. return x.Version
  164. }
  165. return ""
  166. }
  167. func (x *CommonEventQueryRequest) GetOperation() string {
  168. if x != nil {
  169. return x.Operation
  170. }
  171. return ""
  172. }
  173. func (x *CommonEventQueryRequest) GetCreatorID() string {
  174. if x != nil {
  175. return x.CreatorID
  176. }
  177. return ""
  178. }
  179. func (x *CommonEventQueryRequest) GetStartCreatedTime() string {
  180. if x != nil {
  181. return x.StartCreatedTime
  182. }
  183. return ""
  184. }
  185. func (x *CommonEventQueryRequest) GetEndCreatedTime() string {
  186. if x != nil {
  187. return x.EndCreatedTime
  188. }
  189. return ""
  190. }
  191. func (x *CommonEventQueryRequest) GetPageNo() int32 {
  192. if x != nil {
  193. return x.PageNo
  194. }
  195. return 0
  196. }
  197. func (x *CommonEventQueryRequest) GetPageSize() int32 {
  198. if x != nil {
  199. return x.PageSize
  200. }
  201. return 0
  202. }
  203. type CountEventByKeysRequest struct {
  204. state protoimpl.MessageState
  205. sizeCache protoimpl.SizeCache
  206. unknownFields protoimpl.UnknownFields
  207. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  208. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  209. KeyValues []string `protobuf:"bytes,3,rep,name=KeyValues,proto3" json:"KeyValues,omitempty"`
  210. }
  211. func (x *CountEventByKeysRequest) Reset() {
  212. *x = CountEventByKeysRequest{}
  213. if protoimpl.UnsafeEnabled {
  214. mi := &file_v1_request_event_query_proto_msgTypes[2]
  215. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  216. ms.StoreMessageInfo(mi)
  217. }
  218. }
  219. func (x *CountEventByKeysRequest) String() string {
  220. return protoimpl.X.MessageStringOf(x)
  221. }
  222. func (*CountEventByKeysRequest) ProtoMessage() {}
  223. func (x *CountEventByKeysRequest) ProtoReflect() protoreflect.Message {
  224. mi := &file_v1_request_event_query_proto_msgTypes[2]
  225. if protoimpl.UnsafeEnabled && x != nil {
  226. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  227. if ms.LoadMessageInfo() == nil {
  228. ms.StoreMessageInfo(mi)
  229. }
  230. return ms
  231. }
  232. return mi.MessageOf(x)
  233. }
  234. // Deprecated: Use CountEventByKeysRequest.ProtoReflect.Descriptor instead.
  235. func (*CountEventByKeysRequest) Descriptor() ([]byte, []int) {
  236. return file_v1_request_event_query_proto_rawDescGZIP(), []int{2}
  237. }
  238. func (x *CountEventByKeysRequest) GetDatabaseID() string {
  239. if x != nil {
  240. return x.DatabaseID
  241. }
  242. return ""
  243. }
  244. func (x *CountEventByKeysRequest) GetTablePrefixWithSchema() string {
  245. if x != nil {
  246. return x.TablePrefixWithSchema
  247. }
  248. return ""
  249. }
  250. func (x *CountEventByKeysRequest) GetKeyValues() []string {
  251. if x != nil {
  252. return x.KeyValues
  253. }
  254. return nil
  255. }
  256. type CommonCountEventRequest struct {
  257. state protoimpl.MessageState
  258. sizeCache protoimpl.SizeCache
  259. unknownFields protoimpl.UnknownFields
  260. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  261. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  262. KeyValues []string `protobuf:"bytes,3,rep,name=KeyValues,proto3" json:"KeyValues,omitempty"`
  263. Version string `protobuf:"bytes,4,opt,name=Version,proto3" json:"Version,omitempty"`
  264. Operation string `protobuf:"bytes,5,opt,name=Operation,proto3" json:"Operation,omitempty"`
  265. CreatorID string `protobuf:"bytes,6,opt,name=CreatorID,proto3" json:"CreatorID,omitempty"`
  266. StartCreatedTime string `protobuf:"bytes,7,opt,name=StartCreatedTime,proto3" json:"StartCreatedTime,omitempty"`
  267. EndCreatedTime string `protobuf:"bytes,8,opt,name=EndCreatedTime,proto3" json:"EndCreatedTime,omitempty"`
  268. }
  269. func (x *CommonCountEventRequest) Reset() {
  270. *x = CommonCountEventRequest{}
  271. if protoimpl.UnsafeEnabled {
  272. mi := &file_v1_request_event_query_proto_msgTypes[3]
  273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  274. ms.StoreMessageInfo(mi)
  275. }
  276. }
  277. func (x *CommonCountEventRequest) String() string {
  278. return protoimpl.X.MessageStringOf(x)
  279. }
  280. func (*CommonCountEventRequest) ProtoMessage() {}
  281. func (x *CommonCountEventRequest) ProtoReflect() protoreflect.Message {
  282. mi := &file_v1_request_event_query_proto_msgTypes[3]
  283. if protoimpl.UnsafeEnabled && x != nil {
  284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  285. if ms.LoadMessageInfo() == nil {
  286. ms.StoreMessageInfo(mi)
  287. }
  288. return ms
  289. }
  290. return mi.MessageOf(x)
  291. }
  292. // Deprecated: Use CommonCountEventRequest.ProtoReflect.Descriptor instead.
  293. func (*CommonCountEventRequest) Descriptor() ([]byte, []int) {
  294. return file_v1_request_event_query_proto_rawDescGZIP(), []int{3}
  295. }
  296. func (x *CommonCountEventRequest) GetDatabaseID() string {
  297. if x != nil {
  298. return x.DatabaseID
  299. }
  300. return ""
  301. }
  302. func (x *CommonCountEventRequest) GetTablePrefixWithSchema() string {
  303. if x != nil {
  304. return x.TablePrefixWithSchema
  305. }
  306. return ""
  307. }
  308. func (x *CommonCountEventRequest) GetKeyValues() []string {
  309. if x != nil {
  310. return x.KeyValues
  311. }
  312. return nil
  313. }
  314. func (x *CommonCountEventRequest) GetVersion() string {
  315. if x != nil {
  316. return x.Version
  317. }
  318. return ""
  319. }
  320. func (x *CommonCountEventRequest) GetOperation() string {
  321. if x != nil {
  322. return x.Operation
  323. }
  324. return ""
  325. }
  326. func (x *CommonCountEventRequest) GetCreatorID() string {
  327. if x != nil {
  328. return x.CreatorID
  329. }
  330. return ""
  331. }
  332. func (x *CommonCountEventRequest) GetStartCreatedTime() string {
  333. if x != nil {
  334. return x.StartCreatedTime
  335. }
  336. return ""
  337. }
  338. func (x *CommonCountEventRequest) GetEndCreatedTime() string {
  339. if x != nil {
  340. return x.EndCreatedTime
  341. }
  342. return ""
  343. }
  344. var File_v1_request_event_query_proto protoreflect.FileDescriptor
  345. var file_v1_request_event_query_proto_rawDesc = []byte{
  346. 0x0a, 0x1c, 0x76, 0x31, 0x2f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2f, 0x65, 0x76, 0x65,
  347. 0x6e, 0x74, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07,
  348. 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e,
  349. 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x77, 0x69, 0x74, 0x6b, 0x6f, 0x77, 0x2f, 0x67, 0x6f, 0x2d, 0x70,
  350. 0x72, 0x6f, 0x74, 0x6f, 0x2d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x2f,
  351. 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
  352. 0xf1, 0x01, 0x0a, 0x17, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x79,
  353. 0x4b, 0x65, 0x79, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44,
  354. 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42,
  355. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,
  356. 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66,
  357. 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01,
  358. 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c,
  359. 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d,
  360. 0x61, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  361. 0x0c, 0x52, 0x06, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x24, 0x0a, 0x09, 0x4b, 0x65, 0x79,
  362. 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf,
  363. 0x1f, 0x02, 0x60, 0x01, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12,
  364. 0x16, 0x0a, 0x06, 0x50, 0x61, 0x67, 0x65, 0x4e, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52,
  365. 0x06, 0x50, 0x61, 0x67, 0x65, 0x4e, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x50, 0x61, 0x67, 0x65, 0x53,
  366. 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x50, 0x61, 0x67, 0x65, 0x53,
  367. 0x69, 0x7a, 0x65, 0x22, 0x93, 0x03, 0x0a, 0x17, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x45, 0x76,
  368. 0x65, 0x6e, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  369. 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20,
  370. 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74,
  371. 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65,
  372. 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
  373. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15,
  374. 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53,
  375. 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x18,
  376. 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x1c, 0x0a,
  377. 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09,
  378. 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x56,
  379. 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x56, 0x65,
  380. 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  381. 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74,
  382. 0x69, 0x6f, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44,
  383. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49,
  384. 0x44, 0x12, 0x2a, 0x0a, 0x10, 0x53, 0x74, 0x61, 0x72, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  385. 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x53, 0x74, 0x61,
  386. 0x72, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a,
  387. 0x0e, 0x45, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18,
  388. 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x45, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  389. 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x50, 0x61, 0x67, 0x65, 0x4e, 0x6f, 0x18,
  390. 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x50, 0x61, 0x67, 0x65, 0x4e, 0x6f, 0x12, 0x1a, 0x0a,
  391. 0x08, 0x50, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52,
  392. 0x08, 0x50, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0xa5, 0x01, 0x0a, 0x17, 0x43, 0x6f,
  393. 0x75, 0x6e, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x4b, 0x65, 0x79, 0x73, 0x52, 0x65,
  394. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,
  395. 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58,
  396. 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a,
  397. 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68,
  398. 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf,
  399. 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69,
  400. 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x24, 0x0a, 0x09, 0x4b,
  401. 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06,
  402. 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65,
  403. 0x73, 0x22, 0xc7, 0x02, 0x0a, 0x17, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x43, 0x6f, 0x75, 0x6e,
  404. 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a,
  405. 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28,
  406. 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62,
  407. 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72,
  408. 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02,
  409. 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61,
  410. 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68,
  411. 0x65, 0x6d, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73,
  412. 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65,
  413. 0x73, 0x12, 0x18, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
  414. 0x28, 0x09, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x4f,
  415. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  416. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x72, 0x65,
  417. 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x43, 0x72,
  418. 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x2a, 0x0a, 0x10, 0x53, 0x74, 0x61, 0x72, 0x74,
  419. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  420. 0x09, 0x52, 0x10, 0x53, 0x74, 0x61, 0x72, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x54,
  421. 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x45, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  422. 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x45, 0x6e, 0x64,
  423. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x42, 0x20, 0x5a, 0x1e, 0x64,
  424. 0x70, 0x73, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x61, 0x70, 0x69, 0x2f,
  425. 0x70, 0x62, 0x2f, 0x76, 0x31, 0x2f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x62, 0x06, 0x70,
  426. 0x72, 0x6f, 0x74, 0x6f, 0x33,
  427. }
  428. var (
  429. file_v1_request_event_query_proto_rawDescOnce sync.Once
  430. file_v1_request_event_query_proto_rawDescData = file_v1_request_event_query_proto_rawDesc
  431. )
  432. func file_v1_request_event_query_proto_rawDescGZIP() []byte {
  433. file_v1_request_event_query_proto_rawDescOnce.Do(func() {
  434. file_v1_request_event_query_proto_rawDescData = protoimpl.X.CompressGZIP(file_v1_request_event_query_proto_rawDescData)
  435. })
  436. return file_v1_request_event_query_proto_rawDescData
  437. }
  438. var file_v1_request_event_query_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
  439. var file_v1_request_event_query_proto_goTypes = []interface{}{
  440. (*EventQueryByKeysRequest)(nil), // 0: request.EventQueryByKeysRequest
  441. (*CommonEventQueryRequest)(nil), // 1: request.CommonEventQueryRequest
  442. (*CountEventByKeysRequest)(nil), // 2: request.CountEventByKeysRequest
  443. (*CommonCountEventRequest)(nil), // 3: request.CommonCountEventRequest
  444. }
  445. var file_v1_request_event_query_proto_depIdxs = []int32{
  446. 0, // [0:0] is the sub-list for method output_type
  447. 0, // [0:0] is the sub-list for method input_type
  448. 0, // [0:0] is the sub-list for extension type_name
  449. 0, // [0:0] is the sub-list for extension extendee
  450. 0, // [0:0] is the sub-list for field type_name
  451. }
  452. func init() { file_v1_request_event_query_proto_init() }
  453. func file_v1_request_event_query_proto_init() {
  454. if File_v1_request_event_query_proto != nil {
  455. return
  456. }
  457. if !protoimpl.UnsafeEnabled {
  458. file_v1_request_event_query_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  459. switch v := v.(*EventQueryByKeysRequest); i {
  460. case 0:
  461. return &v.state
  462. case 1:
  463. return &v.sizeCache
  464. case 2:
  465. return &v.unknownFields
  466. default:
  467. return nil
  468. }
  469. }
  470. file_v1_request_event_query_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  471. switch v := v.(*CommonEventQueryRequest); i {
  472. case 0:
  473. return &v.state
  474. case 1:
  475. return &v.sizeCache
  476. case 2:
  477. return &v.unknownFields
  478. default:
  479. return nil
  480. }
  481. }
  482. file_v1_request_event_query_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  483. switch v := v.(*CountEventByKeysRequest); i {
  484. case 0:
  485. return &v.state
  486. case 1:
  487. return &v.sizeCache
  488. case 2:
  489. return &v.unknownFields
  490. default:
  491. return nil
  492. }
  493. }
  494. file_v1_request_event_query_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  495. switch v := v.(*CommonCountEventRequest); i {
  496. case 0:
  497. return &v.state
  498. case 1:
  499. return &v.sizeCache
  500. case 2:
  501. return &v.unknownFields
  502. default:
  503. return nil
  504. }
  505. }
  506. }
  507. type x struct{}
  508. out := protoimpl.TypeBuilder{
  509. File: protoimpl.DescBuilder{
  510. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  511. RawDescriptor: file_v1_request_event_query_proto_rawDesc,
  512. NumEnums: 0,
  513. NumMessages: 4,
  514. NumExtensions: 0,
  515. NumServices: 0,
  516. },
  517. GoTypes: file_v1_request_event_query_proto_goTypes,
  518. DependencyIndexes: file_v1_request_event_query_proto_depIdxs,
  519. MessageInfos: file_v1_request_event_query_proto_msgTypes,
  520. }.Build()
  521. File_v1_request_event_query_proto = out.File
  522. file_v1_request_event_query_proto_rawDesc = nil
  523. file_v1_request_event_query_proto_goTypes = nil
  524. file_v1_request_event_query_proto_depIdxs = nil
  525. }