command.pb.go 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277
  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/command.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 AutoMigrateRequest 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. Items []*AutoMigrateItem `protobuf:"bytes,2,rep,name=Items,proto3" json:"Items,omitempty"`
  26. }
  27. func (x *AutoMigrateRequest) Reset() {
  28. *x = AutoMigrateRequest{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_v1_request_command_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *AutoMigrateRequest) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*AutoMigrateRequest) ProtoMessage() {}
  39. func (x *AutoMigrateRequest) ProtoReflect() protoreflect.Message {
  40. mi := &file_v1_request_command_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use AutoMigrateRequest.ProtoReflect.Descriptor instead.
  51. func (*AutoMigrateRequest) Descriptor() ([]byte, []int) {
  52. return file_v1_request_command_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *AutoMigrateRequest) GetDatabaseID() string {
  55. if x != nil {
  56. return x.DatabaseID
  57. }
  58. return ""
  59. }
  60. func (x *AutoMigrateRequest) GetItems() []*AutoMigrateItem {
  61. if x != nil {
  62. return x.Items
  63. }
  64. return nil
  65. }
  66. type AutoMigrateItem struct {
  67. state protoimpl.MessageState
  68. sizeCache protoimpl.SizeCache
  69. unknownFields protoimpl.UnknownFields
  70. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  71. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  72. TableModelDescribe []byte `protobuf:"bytes,3,opt,name=TableModelDescribe,proto3" json:"TableModelDescribe,omitempty"`
  73. }
  74. func (x *AutoMigrateItem) Reset() {
  75. *x = AutoMigrateItem{}
  76. if protoimpl.UnsafeEnabled {
  77. mi := &file_v1_request_command_proto_msgTypes[1]
  78. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  79. ms.StoreMessageInfo(mi)
  80. }
  81. }
  82. func (x *AutoMigrateItem) String() string {
  83. return protoimpl.X.MessageStringOf(x)
  84. }
  85. func (*AutoMigrateItem) ProtoMessage() {}
  86. func (x *AutoMigrateItem) ProtoReflect() protoreflect.Message {
  87. mi := &file_v1_request_command_proto_msgTypes[1]
  88. if protoimpl.UnsafeEnabled && x != nil {
  89. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  90. if ms.LoadMessageInfo() == nil {
  91. ms.StoreMessageInfo(mi)
  92. }
  93. return ms
  94. }
  95. return mi.MessageOf(x)
  96. }
  97. // Deprecated: Use AutoMigrateItem.ProtoReflect.Descriptor instead.
  98. func (*AutoMigrateItem) Descriptor() ([]byte, []int) {
  99. return file_v1_request_command_proto_rawDescGZIP(), []int{1}
  100. }
  101. func (x *AutoMigrateItem) GetTablePrefixWithSchema() string {
  102. if x != nil {
  103. return x.TablePrefixWithSchema
  104. }
  105. return ""
  106. }
  107. func (x *AutoMigrateItem) GetVersion() string {
  108. if x != nil {
  109. return x.Version
  110. }
  111. return ""
  112. }
  113. func (x *AutoMigrateItem) GetTableModelDescribe() []byte {
  114. if x != nil {
  115. return x.TableModelDescribe
  116. }
  117. return nil
  118. }
  119. type TransactionBeginRequest struct {
  120. state protoimpl.MessageState
  121. sizeCache protoimpl.SizeCache
  122. unknownFields protoimpl.UnknownFields
  123. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  124. }
  125. func (x *TransactionBeginRequest) Reset() {
  126. *x = TransactionBeginRequest{}
  127. if protoimpl.UnsafeEnabled {
  128. mi := &file_v1_request_command_proto_msgTypes[2]
  129. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  130. ms.StoreMessageInfo(mi)
  131. }
  132. }
  133. func (x *TransactionBeginRequest) String() string {
  134. return protoimpl.X.MessageStringOf(x)
  135. }
  136. func (*TransactionBeginRequest) ProtoMessage() {}
  137. func (x *TransactionBeginRequest) ProtoReflect() protoreflect.Message {
  138. mi := &file_v1_request_command_proto_msgTypes[2]
  139. if protoimpl.UnsafeEnabled && x != nil {
  140. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  141. if ms.LoadMessageInfo() == nil {
  142. ms.StoreMessageInfo(mi)
  143. }
  144. return ms
  145. }
  146. return mi.MessageOf(x)
  147. }
  148. // Deprecated: Use TransactionBeginRequest.ProtoReflect.Descriptor instead.
  149. func (*TransactionBeginRequest) Descriptor() ([]byte, []int) {
  150. return file_v1_request_command_proto_rawDescGZIP(), []int{2}
  151. }
  152. func (x *TransactionBeginRequest) GetDatabaseID() string {
  153. if x != nil {
  154. return x.DatabaseID
  155. }
  156. return ""
  157. }
  158. type InsertTxRequest struct {
  159. state protoimpl.MessageState
  160. sizeCache protoimpl.SizeCache
  161. unknownFields protoimpl.UnknownFields
  162. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  163. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  164. KeyColumns []string `protobuf:"bytes,3,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  165. TableRow *TableRow `protobuf:"bytes,4,opt,name=TableRow,proto3" json:"TableRow,omitempty"`
  166. UserID string `protobuf:"bytes,5,opt,name=UserID,proto3" json:"UserID,omitempty"`
  167. }
  168. func (x *InsertTxRequest) Reset() {
  169. *x = InsertTxRequest{}
  170. if protoimpl.UnsafeEnabled {
  171. mi := &file_v1_request_command_proto_msgTypes[3]
  172. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  173. ms.StoreMessageInfo(mi)
  174. }
  175. }
  176. func (x *InsertTxRequest) String() string {
  177. return protoimpl.X.MessageStringOf(x)
  178. }
  179. func (*InsertTxRequest) ProtoMessage() {}
  180. func (x *InsertTxRequest) ProtoReflect() protoreflect.Message {
  181. mi := &file_v1_request_command_proto_msgTypes[3]
  182. if protoimpl.UnsafeEnabled && x != nil {
  183. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  184. if ms.LoadMessageInfo() == nil {
  185. ms.StoreMessageInfo(mi)
  186. }
  187. return ms
  188. }
  189. return mi.MessageOf(x)
  190. }
  191. // Deprecated: Use InsertTxRequest.ProtoReflect.Descriptor instead.
  192. func (*InsertTxRequest) Descriptor() ([]byte, []int) {
  193. return file_v1_request_command_proto_rawDescGZIP(), []int{3}
  194. }
  195. func (x *InsertTxRequest) GetTablePrefixWithSchema() string {
  196. if x != nil {
  197. return x.TablePrefixWithSchema
  198. }
  199. return ""
  200. }
  201. func (x *InsertTxRequest) GetVersion() string {
  202. if x != nil {
  203. return x.Version
  204. }
  205. return ""
  206. }
  207. func (x *InsertTxRequest) GetKeyColumns() []string {
  208. if x != nil {
  209. return x.KeyColumns
  210. }
  211. return nil
  212. }
  213. func (x *InsertTxRequest) GetTableRow() *TableRow {
  214. if x != nil {
  215. return x.TableRow
  216. }
  217. return nil
  218. }
  219. func (x *InsertTxRequest) GetUserID() string {
  220. if x != nil {
  221. return x.UserID
  222. }
  223. return ""
  224. }
  225. type InsertBatchTxRequest struct {
  226. state protoimpl.MessageState
  227. sizeCache protoimpl.SizeCache
  228. unknownFields protoimpl.UnknownFields
  229. Items []*InsertTableRowItem `protobuf:"bytes,1,rep,name=Items,proto3" json:"Items,omitempty"`
  230. UserID string `protobuf:"bytes,2,opt,name=UserID,proto3" json:"UserID,omitempty"`
  231. }
  232. func (x *InsertBatchTxRequest) Reset() {
  233. *x = InsertBatchTxRequest{}
  234. if protoimpl.UnsafeEnabled {
  235. mi := &file_v1_request_command_proto_msgTypes[4]
  236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  237. ms.StoreMessageInfo(mi)
  238. }
  239. }
  240. func (x *InsertBatchTxRequest) String() string {
  241. return protoimpl.X.MessageStringOf(x)
  242. }
  243. func (*InsertBatchTxRequest) ProtoMessage() {}
  244. func (x *InsertBatchTxRequest) ProtoReflect() protoreflect.Message {
  245. mi := &file_v1_request_command_proto_msgTypes[4]
  246. if protoimpl.UnsafeEnabled && x != nil {
  247. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  248. if ms.LoadMessageInfo() == nil {
  249. ms.StoreMessageInfo(mi)
  250. }
  251. return ms
  252. }
  253. return mi.MessageOf(x)
  254. }
  255. // Deprecated: Use InsertBatchTxRequest.ProtoReflect.Descriptor instead.
  256. func (*InsertBatchTxRequest) Descriptor() ([]byte, []int) {
  257. return file_v1_request_command_proto_rawDescGZIP(), []int{4}
  258. }
  259. func (x *InsertBatchTxRequest) GetItems() []*InsertTableRowItem {
  260. if x != nil {
  261. return x.Items
  262. }
  263. return nil
  264. }
  265. func (x *InsertBatchTxRequest) GetUserID() string {
  266. if x != nil {
  267. return x.UserID
  268. }
  269. return ""
  270. }
  271. type DeleteTxRequest struct {
  272. state protoimpl.MessageState
  273. sizeCache protoimpl.SizeCache
  274. unknownFields protoimpl.UnknownFields
  275. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  276. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  277. KeyValues map[string]string `protobuf:"bytes,3,rep,name=KeyValues,proto3" json:"KeyValues,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  278. UserID string `protobuf:"bytes,4,opt,name=UserID,proto3" json:"UserID,omitempty"`
  279. }
  280. func (x *DeleteTxRequest) Reset() {
  281. *x = DeleteTxRequest{}
  282. if protoimpl.UnsafeEnabled {
  283. mi := &file_v1_request_command_proto_msgTypes[5]
  284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  285. ms.StoreMessageInfo(mi)
  286. }
  287. }
  288. func (x *DeleteTxRequest) String() string {
  289. return protoimpl.X.MessageStringOf(x)
  290. }
  291. func (*DeleteTxRequest) ProtoMessage() {}
  292. func (x *DeleteTxRequest) ProtoReflect() protoreflect.Message {
  293. mi := &file_v1_request_command_proto_msgTypes[5]
  294. if protoimpl.UnsafeEnabled && x != nil {
  295. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  296. if ms.LoadMessageInfo() == nil {
  297. ms.StoreMessageInfo(mi)
  298. }
  299. return ms
  300. }
  301. return mi.MessageOf(x)
  302. }
  303. // Deprecated: Use DeleteTxRequest.ProtoReflect.Descriptor instead.
  304. func (*DeleteTxRequest) Descriptor() ([]byte, []int) {
  305. return file_v1_request_command_proto_rawDescGZIP(), []int{5}
  306. }
  307. func (x *DeleteTxRequest) GetTablePrefixWithSchema() string {
  308. if x != nil {
  309. return x.TablePrefixWithSchema
  310. }
  311. return ""
  312. }
  313. func (x *DeleteTxRequest) GetVersion() string {
  314. if x != nil {
  315. return x.Version
  316. }
  317. return ""
  318. }
  319. func (x *DeleteTxRequest) GetKeyValues() map[string]string {
  320. if x != nil {
  321. return x.KeyValues
  322. }
  323. return nil
  324. }
  325. func (x *DeleteTxRequest) GetUserID() string {
  326. if x != nil {
  327. return x.UserID
  328. }
  329. return ""
  330. }
  331. type DeleteBatchTxRequest struct {
  332. state protoimpl.MessageState
  333. sizeCache protoimpl.SizeCache
  334. unknownFields protoimpl.UnknownFields
  335. Items []*DeleteTableRowItem `protobuf:"bytes,1,rep,name=Items,proto3" json:"Items,omitempty"`
  336. UserID string `protobuf:"bytes,2,opt,name=UserID,proto3" json:"UserID,omitempty"`
  337. }
  338. func (x *DeleteBatchTxRequest) Reset() {
  339. *x = DeleteBatchTxRequest{}
  340. if protoimpl.UnsafeEnabled {
  341. mi := &file_v1_request_command_proto_msgTypes[6]
  342. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  343. ms.StoreMessageInfo(mi)
  344. }
  345. }
  346. func (x *DeleteBatchTxRequest) String() string {
  347. return protoimpl.X.MessageStringOf(x)
  348. }
  349. func (*DeleteBatchTxRequest) ProtoMessage() {}
  350. func (x *DeleteBatchTxRequest) ProtoReflect() protoreflect.Message {
  351. mi := &file_v1_request_command_proto_msgTypes[6]
  352. if protoimpl.UnsafeEnabled && x != nil {
  353. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  354. if ms.LoadMessageInfo() == nil {
  355. ms.StoreMessageInfo(mi)
  356. }
  357. return ms
  358. }
  359. return mi.MessageOf(x)
  360. }
  361. // Deprecated: Use DeleteBatchTxRequest.ProtoReflect.Descriptor instead.
  362. func (*DeleteBatchTxRequest) Descriptor() ([]byte, []int) {
  363. return file_v1_request_command_proto_rawDescGZIP(), []int{6}
  364. }
  365. func (x *DeleteBatchTxRequest) GetItems() []*DeleteTableRowItem {
  366. if x != nil {
  367. return x.Items
  368. }
  369. return nil
  370. }
  371. func (x *DeleteBatchTxRequest) GetUserID() string {
  372. if x != nil {
  373. return x.UserID
  374. }
  375. return ""
  376. }
  377. type UpdateTxRequest struct {
  378. state protoimpl.MessageState
  379. sizeCache protoimpl.SizeCache
  380. unknownFields protoimpl.UnknownFields
  381. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  382. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  383. KeyValues map[string]string `protobuf:"bytes,3,rep,name=KeyValues,proto3" json:"KeyValues,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  384. NewTableRow *TableRow `protobuf:"bytes,4,opt,name=NewTableRow,proto3" json:"NewTableRow,omitempty"`
  385. UserID string `protobuf:"bytes,5,opt,name=UserID,proto3" json:"UserID,omitempty"`
  386. }
  387. func (x *UpdateTxRequest) Reset() {
  388. *x = UpdateTxRequest{}
  389. if protoimpl.UnsafeEnabled {
  390. mi := &file_v1_request_command_proto_msgTypes[7]
  391. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  392. ms.StoreMessageInfo(mi)
  393. }
  394. }
  395. func (x *UpdateTxRequest) String() string {
  396. return protoimpl.X.MessageStringOf(x)
  397. }
  398. func (*UpdateTxRequest) ProtoMessage() {}
  399. func (x *UpdateTxRequest) ProtoReflect() protoreflect.Message {
  400. mi := &file_v1_request_command_proto_msgTypes[7]
  401. if protoimpl.UnsafeEnabled && x != nil {
  402. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  403. if ms.LoadMessageInfo() == nil {
  404. ms.StoreMessageInfo(mi)
  405. }
  406. return ms
  407. }
  408. return mi.MessageOf(x)
  409. }
  410. // Deprecated: Use UpdateTxRequest.ProtoReflect.Descriptor instead.
  411. func (*UpdateTxRequest) Descriptor() ([]byte, []int) {
  412. return file_v1_request_command_proto_rawDescGZIP(), []int{7}
  413. }
  414. func (x *UpdateTxRequest) GetTablePrefixWithSchema() string {
  415. if x != nil {
  416. return x.TablePrefixWithSchema
  417. }
  418. return ""
  419. }
  420. func (x *UpdateTxRequest) GetVersion() string {
  421. if x != nil {
  422. return x.Version
  423. }
  424. return ""
  425. }
  426. func (x *UpdateTxRequest) GetKeyValues() map[string]string {
  427. if x != nil {
  428. return x.KeyValues
  429. }
  430. return nil
  431. }
  432. func (x *UpdateTxRequest) GetNewTableRow() *TableRow {
  433. if x != nil {
  434. return x.NewTableRow
  435. }
  436. return nil
  437. }
  438. func (x *UpdateTxRequest) GetUserID() string {
  439. if x != nil {
  440. return x.UserID
  441. }
  442. return ""
  443. }
  444. type TransactionEndRequest struct {
  445. state protoimpl.MessageState
  446. sizeCache protoimpl.SizeCache
  447. unknownFields protoimpl.UnknownFields
  448. }
  449. func (x *TransactionEndRequest) Reset() {
  450. *x = TransactionEndRequest{}
  451. if protoimpl.UnsafeEnabled {
  452. mi := &file_v1_request_command_proto_msgTypes[8]
  453. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  454. ms.StoreMessageInfo(mi)
  455. }
  456. }
  457. func (x *TransactionEndRequest) String() string {
  458. return protoimpl.X.MessageStringOf(x)
  459. }
  460. func (*TransactionEndRequest) ProtoMessage() {}
  461. func (x *TransactionEndRequest) ProtoReflect() protoreflect.Message {
  462. mi := &file_v1_request_command_proto_msgTypes[8]
  463. if protoimpl.UnsafeEnabled && x != nil {
  464. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  465. if ms.LoadMessageInfo() == nil {
  466. ms.StoreMessageInfo(mi)
  467. }
  468. return ms
  469. }
  470. return mi.MessageOf(x)
  471. }
  472. // Deprecated: Use TransactionEndRequest.ProtoReflect.Descriptor instead.
  473. func (*TransactionEndRequest) Descriptor() ([]byte, []int) {
  474. return file_v1_request_command_proto_rawDescGZIP(), []int{8}
  475. }
  476. type TransactionOperation struct {
  477. state protoimpl.MessageState
  478. sizeCache protoimpl.SizeCache
  479. unknownFields protoimpl.UnknownFields
  480. // Types that are assignable to Request:
  481. //
  482. // *TransactionOperation_TransactionBeginRequest
  483. // *TransactionOperation_InsertTxRequest
  484. // *TransactionOperation_InsertBatchTxRequest
  485. // *TransactionOperation_DeleteTxRequest
  486. // *TransactionOperation_DeleteBatchTxRequest
  487. // *TransactionOperation_UpdateTxRequest
  488. // *TransactionOperation_TransactionEndRequest
  489. Request isTransactionOperation_Request `protobuf_oneof:"Request"`
  490. }
  491. func (x *TransactionOperation) Reset() {
  492. *x = TransactionOperation{}
  493. if protoimpl.UnsafeEnabled {
  494. mi := &file_v1_request_command_proto_msgTypes[9]
  495. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  496. ms.StoreMessageInfo(mi)
  497. }
  498. }
  499. func (x *TransactionOperation) String() string {
  500. return protoimpl.X.MessageStringOf(x)
  501. }
  502. func (*TransactionOperation) ProtoMessage() {}
  503. func (x *TransactionOperation) ProtoReflect() protoreflect.Message {
  504. mi := &file_v1_request_command_proto_msgTypes[9]
  505. if protoimpl.UnsafeEnabled && x != nil {
  506. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  507. if ms.LoadMessageInfo() == nil {
  508. ms.StoreMessageInfo(mi)
  509. }
  510. return ms
  511. }
  512. return mi.MessageOf(x)
  513. }
  514. // Deprecated: Use TransactionOperation.ProtoReflect.Descriptor instead.
  515. func (*TransactionOperation) Descriptor() ([]byte, []int) {
  516. return file_v1_request_command_proto_rawDescGZIP(), []int{9}
  517. }
  518. func (m *TransactionOperation) GetRequest() isTransactionOperation_Request {
  519. if m != nil {
  520. return m.Request
  521. }
  522. return nil
  523. }
  524. func (x *TransactionOperation) GetTransactionBeginRequest() *TransactionBeginRequest {
  525. if x, ok := x.GetRequest().(*TransactionOperation_TransactionBeginRequest); ok {
  526. return x.TransactionBeginRequest
  527. }
  528. return nil
  529. }
  530. func (x *TransactionOperation) GetInsertTxRequest() *InsertTxRequest {
  531. if x, ok := x.GetRequest().(*TransactionOperation_InsertTxRequest); ok {
  532. return x.InsertTxRequest
  533. }
  534. return nil
  535. }
  536. func (x *TransactionOperation) GetInsertBatchTxRequest() *InsertBatchTxRequest {
  537. if x, ok := x.GetRequest().(*TransactionOperation_InsertBatchTxRequest); ok {
  538. return x.InsertBatchTxRequest
  539. }
  540. return nil
  541. }
  542. func (x *TransactionOperation) GetDeleteTxRequest() *DeleteTxRequest {
  543. if x, ok := x.GetRequest().(*TransactionOperation_DeleteTxRequest); ok {
  544. return x.DeleteTxRequest
  545. }
  546. return nil
  547. }
  548. func (x *TransactionOperation) GetDeleteBatchTxRequest() *DeleteBatchTxRequest {
  549. if x, ok := x.GetRequest().(*TransactionOperation_DeleteBatchTxRequest); ok {
  550. return x.DeleteBatchTxRequest
  551. }
  552. return nil
  553. }
  554. func (x *TransactionOperation) GetUpdateTxRequest() *UpdateTxRequest {
  555. if x, ok := x.GetRequest().(*TransactionOperation_UpdateTxRequest); ok {
  556. return x.UpdateTxRequest
  557. }
  558. return nil
  559. }
  560. func (x *TransactionOperation) GetTransactionEndRequest() *TransactionEndRequest {
  561. if x, ok := x.GetRequest().(*TransactionOperation_TransactionEndRequest); ok {
  562. return x.TransactionEndRequest
  563. }
  564. return nil
  565. }
  566. type isTransactionOperation_Request interface {
  567. isTransactionOperation_Request()
  568. }
  569. type TransactionOperation_TransactionBeginRequest struct {
  570. TransactionBeginRequest *TransactionBeginRequest `protobuf:"bytes,1,opt,name=TransactionBeginRequest,proto3,oneof"`
  571. }
  572. type TransactionOperation_InsertTxRequest struct {
  573. InsertTxRequest *InsertTxRequest `protobuf:"bytes,2,opt,name=InsertTxRequest,proto3,oneof"`
  574. }
  575. type TransactionOperation_InsertBatchTxRequest struct {
  576. InsertBatchTxRequest *InsertBatchTxRequest `protobuf:"bytes,3,opt,name=InsertBatchTxRequest,proto3,oneof"`
  577. }
  578. type TransactionOperation_DeleteTxRequest struct {
  579. DeleteTxRequest *DeleteTxRequest `protobuf:"bytes,4,opt,name=DeleteTxRequest,proto3,oneof"`
  580. }
  581. type TransactionOperation_DeleteBatchTxRequest struct {
  582. DeleteBatchTxRequest *DeleteBatchTxRequest `protobuf:"bytes,5,opt,name=DeleteBatchTxRequest,proto3,oneof"`
  583. }
  584. type TransactionOperation_UpdateTxRequest struct {
  585. UpdateTxRequest *UpdateTxRequest `protobuf:"bytes,6,opt,name=UpdateTxRequest,proto3,oneof"`
  586. }
  587. type TransactionOperation_TransactionEndRequest struct {
  588. TransactionEndRequest *TransactionEndRequest `protobuf:"bytes,7,opt,name=TransactionEndRequest,proto3,oneof"`
  589. }
  590. func (*TransactionOperation_TransactionBeginRequest) isTransactionOperation_Request() {}
  591. func (*TransactionOperation_InsertTxRequest) isTransactionOperation_Request() {}
  592. func (*TransactionOperation_InsertBatchTxRequest) isTransactionOperation_Request() {}
  593. func (*TransactionOperation_DeleteTxRequest) isTransactionOperation_Request() {}
  594. func (*TransactionOperation_DeleteBatchTxRequest) isTransactionOperation_Request() {}
  595. func (*TransactionOperation_UpdateTxRequest) isTransactionOperation_Request() {}
  596. func (*TransactionOperation_TransactionEndRequest) isTransactionOperation_Request() {}
  597. type InsertRequest struct {
  598. state protoimpl.MessageState
  599. sizeCache protoimpl.SizeCache
  600. unknownFields protoimpl.UnknownFields
  601. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  602. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  603. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  604. KeyColumns []string `protobuf:"bytes,4,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  605. TableRow *TableRow `protobuf:"bytes,5,opt,name=TableRow,proto3" json:"TableRow,omitempty"`
  606. UserID string `protobuf:"bytes,6,opt,name=UserID,proto3" json:"UserID,omitempty"`
  607. }
  608. func (x *InsertRequest) Reset() {
  609. *x = InsertRequest{}
  610. if protoimpl.UnsafeEnabled {
  611. mi := &file_v1_request_command_proto_msgTypes[10]
  612. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  613. ms.StoreMessageInfo(mi)
  614. }
  615. }
  616. func (x *InsertRequest) String() string {
  617. return protoimpl.X.MessageStringOf(x)
  618. }
  619. func (*InsertRequest) ProtoMessage() {}
  620. func (x *InsertRequest) ProtoReflect() protoreflect.Message {
  621. mi := &file_v1_request_command_proto_msgTypes[10]
  622. if protoimpl.UnsafeEnabled && x != nil {
  623. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  624. if ms.LoadMessageInfo() == nil {
  625. ms.StoreMessageInfo(mi)
  626. }
  627. return ms
  628. }
  629. return mi.MessageOf(x)
  630. }
  631. // Deprecated: Use InsertRequest.ProtoReflect.Descriptor instead.
  632. func (*InsertRequest) Descriptor() ([]byte, []int) {
  633. return file_v1_request_command_proto_rawDescGZIP(), []int{10}
  634. }
  635. func (x *InsertRequest) GetDatabaseID() string {
  636. if x != nil {
  637. return x.DatabaseID
  638. }
  639. return ""
  640. }
  641. func (x *InsertRequest) GetTablePrefixWithSchema() string {
  642. if x != nil {
  643. return x.TablePrefixWithSchema
  644. }
  645. return ""
  646. }
  647. func (x *InsertRequest) GetVersion() string {
  648. if x != nil {
  649. return x.Version
  650. }
  651. return ""
  652. }
  653. func (x *InsertRequest) GetKeyColumns() []string {
  654. if x != nil {
  655. return x.KeyColumns
  656. }
  657. return nil
  658. }
  659. func (x *InsertRequest) GetTableRow() *TableRow {
  660. if x != nil {
  661. return x.TableRow
  662. }
  663. return nil
  664. }
  665. func (x *InsertRequest) GetUserID() string {
  666. if x != nil {
  667. return x.UserID
  668. }
  669. return ""
  670. }
  671. type InsertBatchRequest struct {
  672. state protoimpl.MessageState
  673. sizeCache protoimpl.SizeCache
  674. unknownFields protoimpl.UnknownFields
  675. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  676. Items []*InsertTableRowItem `protobuf:"bytes,2,rep,name=Items,proto3" json:"Items,omitempty"`
  677. UserID string `protobuf:"bytes,3,opt,name=UserID,proto3" json:"UserID,omitempty"`
  678. }
  679. func (x *InsertBatchRequest) Reset() {
  680. *x = InsertBatchRequest{}
  681. if protoimpl.UnsafeEnabled {
  682. mi := &file_v1_request_command_proto_msgTypes[11]
  683. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  684. ms.StoreMessageInfo(mi)
  685. }
  686. }
  687. func (x *InsertBatchRequest) String() string {
  688. return protoimpl.X.MessageStringOf(x)
  689. }
  690. func (*InsertBatchRequest) ProtoMessage() {}
  691. func (x *InsertBatchRequest) ProtoReflect() protoreflect.Message {
  692. mi := &file_v1_request_command_proto_msgTypes[11]
  693. if protoimpl.UnsafeEnabled && x != nil {
  694. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  695. if ms.LoadMessageInfo() == nil {
  696. ms.StoreMessageInfo(mi)
  697. }
  698. return ms
  699. }
  700. return mi.MessageOf(x)
  701. }
  702. // Deprecated: Use InsertBatchRequest.ProtoReflect.Descriptor instead.
  703. func (*InsertBatchRequest) Descriptor() ([]byte, []int) {
  704. return file_v1_request_command_proto_rawDescGZIP(), []int{11}
  705. }
  706. func (x *InsertBatchRequest) GetDatabaseID() string {
  707. if x != nil {
  708. return x.DatabaseID
  709. }
  710. return ""
  711. }
  712. func (x *InsertBatchRequest) GetItems() []*InsertTableRowItem {
  713. if x != nil {
  714. return x.Items
  715. }
  716. return nil
  717. }
  718. func (x *InsertBatchRequest) GetUserID() string {
  719. if x != nil {
  720. return x.UserID
  721. }
  722. return ""
  723. }
  724. type InsertTableRowItem struct {
  725. state protoimpl.MessageState
  726. sizeCache protoimpl.SizeCache
  727. unknownFields protoimpl.UnknownFields
  728. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  729. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  730. KeyColumns []string `protobuf:"bytes,3,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  731. TableRows []*TableRow `protobuf:"bytes,4,rep,name=TableRows,proto3" json:"TableRows,omitempty"`
  732. }
  733. func (x *InsertTableRowItem) Reset() {
  734. *x = InsertTableRowItem{}
  735. if protoimpl.UnsafeEnabled {
  736. mi := &file_v1_request_command_proto_msgTypes[12]
  737. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  738. ms.StoreMessageInfo(mi)
  739. }
  740. }
  741. func (x *InsertTableRowItem) String() string {
  742. return protoimpl.X.MessageStringOf(x)
  743. }
  744. func (*InsertTableRowItem) ProtoMessage() {}
  745. func (x *InsertTableRowItem) ProtoReflect() protoreflect.Message {
  746. mi := &file_v1_request_command_proto_msgTypes[12]
  747. if protoimpl.UnsafeEnabled && x != nil {
  748. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  749. if ms.LoadMessageInfo() == nil {
  750. ms.StoreMessageInfo(mi)
  751. }
  752. return ms
  753. }
  754. return mi.MessageOf(x)
  755. }
  756. // Deprecated: Use InsertTableRowItem.ProtoReflect.Descriptor instead.
  757. func (*InsertTableRowItem) Descriptor() ([]byte, []int) {
  758. return file_v1_request_command_proto_rawDescGZIP(), []int{12}
  759. }
  760. func (x *InsertTableRowItem) GetTablePrefixWithSchema() string {
  761. if x != nil {
  762. return x.TablePrefixWithSchema
  763. }
  764. return ""
  765. }
  766. func (x *InsertTableRowItem) GetVersion() string {
  767. if x != nil {
  768. return x.Version
  769. }
  770. return ""
  771. }
  772. func (x *InsertTableRowItem) GetKeyColumns() []string {
  773. if x != nil {
  774. return x.KeyColumns
  775. }
  776. return nil
  777. }
  778. func (x *InsertTableRowItem) GetTableRows() []*TableRow {
  779. if x != nil {
  780. return x.TableRows
  781. }
  782. return nil
  783. }
  784. type DeleteRequest struct {
  785. state protoimpl.MessageState
  786. sizeCache protoimpl.SizeCache
  787. unknownFields protoimpl.UnknownFields
  788. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  789. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  790. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  791. KeyValues map[string]string `protobuf:"bytes,4,rep,name=KeyValues,proto3" json:"KeyValues,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  792. UserID string `protobuf:"bytes,5,opt,name=UserID,proto3" json:"UserID,omitempty"`
  793. }
  794. func (x *DeleteRequest) Reset() {
  795. *x = DeleteRequest{}
  796. if protoimpl.UnsafeEnabled {
  797. mi := &file_v1_request_command_proto_msgTypes[13]
  798. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  799. ms.StoreMessageInfo(mi)
  800. }
  801. }
  802. func (x *DeleteRequest) String() string {
  803. return protoimpl.X.MessageStringOf(x)
  804. }
  805. func (*DeleteRequest) ProtoMessage() {}
  806. func (x *DeleteRequest) ProtoReflect() protoreflect.Message {
  807. mi := &file_v1_request_command_proto_msgTypes[13]
  808. if protoimpl.UnsafeEnabled && x != nil {
  809. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  810. if ms.LoadMessageInfo() == nil {
  811. ms.StoreMessageInfo(mi)
  812. }
  813. return ms
  814. }
  815. return mi.MessageOf(x)
  816. }
  817. // Deprecated: Use DeleteRequest.ProtoReflect.Descriptor instead.
  818. func (*DeleteRequest) Descriptor() ([]byte, []int) {
  819. return file_v1_request_command_proto_rawDescGZIP(), []int{13}
  820. }
  821. func (x *DeleteRequest) GetDatabaseID() string {
  822. if x != nil {
  823. return x.DatabaseID
  824. }
  825. return ""
  826. }
  827. func (x *DeleteRequest) GetTablePrefixWithSchema() string {
  828. if x != nil {
  829. return x.TablePrefixWithSchema
  830. }
  831. return ""
  832. }
  833. func (x *DeleteRequest) GetVersion() string {
  834. if x != nil {
  835. return x.Version
  836. }
  837. return ""
  838. }
  839. func (x *DeleteRequest) GetKeyValues() map[string]string {
  840. if x != nil {
  841. return x.KeyValues
  842. }
  843. return nil
  844. }
  845. func (x *DeleteRequest) GetUserID() string {
  846. if x != nil {
  847. return x.UserID
  848. }
  849. return ""
  850. }
  851. type DeleteBatchRequest struct {
  852. state protoimpl.MessageState
  853. sizeCache protoimpl.SizeCache
  854. unknownFields protoimpl.UnknownFields
  855. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  856. Items []*DeleteTableRowItem `protobuf:"bytes,2,rep,name=Items,proto3" json:"Items,omitempty"`
  857. UserID string `protobuf:"bytes,3,opt,name=UserID,proto3" json:"UserID,omitempty"`
  858. }
  859. func (x *DeleteBatchRequest) Reset() {
  860. *x = DeleteBatchRequest{}
  861. if protoimpl.UnsafeEnabled {
  862. mi := &file_v1_request_command_proto_msgTypes[14]
  863. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  864. ms.StoreMessageInfo(mi)
  865. }
  866. }
  867. func (x *DeleteBatchRequest) String() string {
  868. return protoimpl.X.MessageStringOf(x)
  869. }
  870. func (*DeleteBatchRequest) ProtoMessage() {}
  871. func (x *DeleteBatchRequest) ProtoReflect() protoreflect.Message {
  872. mi := &file_v1_request_command_proto_msgTypes[14]
  873. if protoimpl.UnsafeEnabled && x != nil {
  874. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  875. if ms.LoadMessageInfo() == nil {
  876. ms.StoreMessageInfo(mi)
  877. }
  878. return ms
  879. }
  880. return mi.MessageOf(x)
  881. }
  882. // Deprecated: Use DeleteBatchRequest.ProtoReflect.Descriptor instead.
  883. func (*DeleteBatchRequest) Descriptor() ([]byte, []int) {
  884. return file_v1_request_command_proto_rawDescGZIP(), []int{14}
  885. }
  886. func (x *DeleteBatchRequest) GetDatabaseID() string {
  887. if x != nil {
  888. return x.DatabaseID
  889. }
  890. return ""
  891. }
  892. func (x *DeleteBatchRequest) GetItems() []*DeleteTableRowItem {
  893. if x != nil {
  894. return x.Items
  895. }
  896. return nil
  897. }
  898. func (x *DeleteBatchRequest) GetUserID() string {
  899. if x != nil {
  900. return x.UserID
  901. }
  902. return ""
  903. }
  904. type DeleteTableRowItem struct {
  905. state protoimpl.MessageState
  906. sizeCache protoimpl.SizeCache
  907. unknownFields protoimpl.UnknownFields
  908. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  909. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  910. Items []*DeleteItem `protobuf:"bytes,3,rep,name=Items,proto3" json:"Items,omitempty"`
  911. }
  912. func (x *DeleteTableRowItem) Reset() {
  913. *x = DeleteTableRowItem{}
  914. if protoimpl.UnsafeEnabled {
  915. mi := &file_v1_request_command_proto_msgTypes[15]
  916. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  917. ms.StoreMessageInfo(mi)
  918. }
  919. }
  920. func (x *DeleteTableRowItem) String() string {
  921. return protoimpl.X.MessageStringOf(x)
  922. }
  923. func (*DeleteTableRowItem) ProtoMessage() {}
  924. func (x *DeleteTableRowItem) ProtoReflect() protoreflect.Message {
  925. mi := &file_v1_request_command_proto_msgTypes[15]
  926. if protoimpl.UnsafeEnabled && x != nil {
  927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  928. if ms.LoadMessageInfo() == nil {
  929. ms.StoreMessageInfo(mi)
  930. }
  931. return ms
  932. }
  933. return mi.MessageOf(x)
  934. }
  935. // Deprecated: Use DeleteTableRowItem.ProtoReflect.Descriptor instead.
  936. func (*DeleteTableRowItem) Descriptor() ([]byte, []int) {
  937. return file_v1_request_command_proto_rawDescGZIP(), []int{15}
  938. }
  939. func (x *DeleteTableRowItem) GetTablePrefixWithSchema() string {
  940. if x != nil {
  941. return x.TablePrefixWithSchema
  942. }
  943. return ""
  944. }
  945. func (x *DeleteTableRowItem) GetVersion() string {
  946. if x != nil {
  947. return x.Version
  948. }
  949. return ""
  950. }
  951. func (x *DeleteTableRowItem) GetItems() []*DeleteItem {
  952. if x != nil {
  953. return x.Items
  954. }
  955. return nil
  956. }
  957. type DeleteItem struct {
  958. state protoimpl.MessageState
  959. sizeCache protoimpl.SizeCache
  960. unknownFields protoimpl.UnknownFields
  961. KeyValues map[string]string `protobuf:"bytes,1,rep,name=KeyValues,proto3" json:"KeyValues,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  962. }
  963. func (x *DeleteItem) Reset() {
  964. *x = DeleteItem{}
  965. if protoimpl.UnsafeEnabled {
  966. mi := &file_v1_request_command_proto_msgTypes[16]
  967. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  968. ms.StoreMessageInfo(mi)
  969. }
  970. }
  971. func (x *DeleteItem) String() string {
  972. return protoimpl.X.MessageStringOf(x)
  973. }
  974. func (*DeleteItem) ProtoMessage() {}
  975. func (x *DeleteItem) ProtoReflect() protoreflect.Message {
  976. mi := &file_v1_request_command_proto_msgTypes[16]
  977. if protoimpl.UnsafeEnabled && x != nil {
  978. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  979. if ms.LoadMessageInfo() == nil {
  980. ms.StoreMessageInfo(mi)
  981. }
  982. return ms
  983. }
  984. return mi.MessageOf(x)
  985. }
  986. // Deprecated: Use DeleteItem.ProtoReflect.Descriptor instead.
  987. func (*DeleteItem) Descriptor() ([]byte, []int) {
  988. return file_v1_request_command_proto_rawDescGZIP(), []int{16}
  989. }
  990. func (x *DeleteItem) GetKeyValues() map[string]string {
  991. if x != nil {
  992. return x.KeyValues
  993. }
  994. return nil
  995. }
  996. type UpdateRequest struct {
  997. state protoimpl.MessageState
  998. sizeCache protoimpl.SizeCache
  999. unknownFields protoimpl.UnknownFields
  1000. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  1001. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  1002. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  1003. KeyValues map[string]string `protobuf:"bytes,4,rep,name=KeyValues,proto3" json:"KeyValues,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1004. NewTableRow *TableRow `protobuf:"bytes,5,opt,name=NewTableRow,proto3" json:"NewTableRow,omitempty"`
  1005. UserID string `protobuf:"bytes,6,opt,name=UserID,proto3" json:"UserID,omitempty"`
  1006. }
  1007. func (x *UpdateRequest) Reset() {
  1008. *x = UpdateRequest{}
  1009. if protoimpl.UnsafeEnabled {
  1010. mi := &file_v1_request_command_proto_msgTypes[17]
  1011. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1012. ms.StoreMessageInfo(mi)
  1013. }
  1014. }
  1015. func (x *UpdateRequest) String() string {
  1016. return protoimpl.X.MessageStringOf(x)
  1017. }
  1018. func (*UpdateRequest) ProtoMessage() {}
  1019. func (x *UpdateRequest) ProtoReflect() protoreflect.Message {
  1020. mi := &file_v1_request_command_proto_msgTypes[17]
  1021. if protoimpl.UnsafeEnabled && x != nil {
  1022. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1023. if ms.LoadMessageInfo() == nil {
  1024. ms.StoreMessageInfo(mi)
  1025. }
  1026. return ms
  1027. }
  1028. return mi.MessageOf(x)
  1029. }
  1030. // Deprecated: Use UpdateRequest.ProtoReflect.Descriptor instead.
  1031. func (*UpdateRequest) Descriptor() ([]byte, []int) {
  1032. return file_v1_request_command_proto_rawDescGZIP(), []int{17}
  1033. }
  1034. func (x *UpdateRequest) GetDatabaseID() string {
  1035. if x != nil {
  1036. return x.DatabaseID
  1037. }
  1038. return ""
  1039. }
  1040. func (x *UpdateRequest) GetTablePrefixWithSchema() string {
  1041. if x != nil {
  1042. return x.TablePrefixWithSchema
  1043. }
  1044. return ""
  1045. }
  1046. func (x *UpdateRequest) GetVersion() string {
  1047. if x != nil {
  1048. return x.Version
  1049. }
  1050. return ""
  1051. }
  1052. func (x *UpdateRequest) GetKeyValues() map[string]string {
  1053. if x != nil {
  1054. return x.KeyValues
  1055. }
  1056. return nil
  1057. }
  1058. func (x *UpdateRequest) GetNewTableRow() *TableRow {
  1059. if x != nil {
  1060. return x.NewTableRow
  1061. }
  1062. return nil
  1063. }
  1064. func (x *UpdateRequest) GetUserID() string {
  1065. if x != nil {
  1066. return x.UserID
  1067. }
  1068. return ""
  1069. }
  1070. type ReplayRequest struct {
  1071. state protoimpl.MessageState
  1072. sizeCache protoimpl.SizeCache
  1073. unknownFields protoimpl.UnknownFields
  1074. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  1075. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  1076. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  1077. KeyValues map[string]string `protobuf:"bytes,4,rep,name=KeyValues,proto3" json:"KeyValues,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1078. UserID string `protobuf:"bytes,5,opt,name=UserID,proto3" json:"UserID,omitempty"`
  1079. }
  1080. func (x *ReplayRequest) Reset() {
  1081. *x = ReplayRequest{}
  1082. if protoimpl.UnsafeEnabled {
  1083. mi := &file_v1_request_command_proto_msgTypes[18]
  1084. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1085. ms.StoreMessageInfo(mi)
  1086. }
  1087. }
  1088. func (x *ReplayRequest) String() string {
  1089. return protoimpl.X.MessageStringOf(x)
  1090. }
  1091. func (*ReplayRequest) ProtoMessage() {}
  1092. func (x *ReplayRequest) ProtoReflect() protoreflect.Message {
  1093. mi := &file_v1_request_command_proto_msgTypes[18]
  1094. if protoimpl.UnsafeEnabled && x != nil {
  1095. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1096. if ms.LoadMessageInfo() == nil {
  1097. ms.StoreMessageInfo(mi)
  1098. }
  1099. return ms
  1100. }
  1101. return mi.MessageOf(x)
  1102. }
  1103. // Deprecated: Use ReplayRequest.ProtoReflect.Descriptor instead.
  1104. func (*ReplayRequest) Descriptor() ([]byte, []int) {
  1105. return file_v1_request_command_proto_rawDescGZIP(), []int{18}
  1106. }
  1107. func (x *ReplayRequest) GetDatabaseID() string {
  1108. if x != nil {
  1109. return x.DatabaseID
  1110. }
  1111. return ""
  1112. }
  1113. func (x *ReplayRequest) GetTablePrefixWithSchema() string {
  1114. if x != nil {
  1115. return x.TablePrefixWithSchema
  1116. }
  1117. return ""
  1118. }
  1119. func (x *ReplayRequest) GetVersion() string {
  1120. if x != nil {
  1121. return x.Version
  1122. }
  1123. return ""
  1124. }
  1125. func (x *ReplayRequest) GetKeyValues() map[string]string {
  1126. if x != nil {
  1127. return x.KeyValues
  1128. }
  1129. return nil
  1130. }
  1131. func (x *ReplayRequest) GetUserID() string {
  1132. if x != nil {
  1133. return x.UserID
  1134. }
  1135. return ""
  1136. }
  1137. type TableRow struct {
  1138. state protoimpl.MessageState
  1139. sizeCache protoimpl.SizeCache
  1140. unknownFields protoimpl.UnknownFields
  1141. Columns []*Column `protobuf:"bytes,1,rep,name=Columns,proto3" json:"Columns,omitempty"`
  1142. }
  1143. func (x *TableRow) Reset() {
  1144. *x = TableRow{}
  1145. if protoimpl.UnsafeEnabled {
  1146. mi := &file_v1_request_command_proto_msgTypes[19]
  1147. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1148. ms.StoreMessageInfo(mi)
  1149. }
  1150. }
  1151. func (x *TableRow) String() string {
  1152. return protoimpl.X.MessageStringOf(x)
  1153. }
  1154. func (*TableRow) ProtoMessage() {}
  1155. func (x *TableRow) ProtoReflect() protoreflect.Message {
  1156. mi := &file_v1_request_command_proto_msgTypes[19]
  1157. if protoimpl.UnsafeEnabled && x != nil {
  1158. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1159. if ms.LoadMessageInfo() == nil {
  1160. ms.StoreMessageInfo(mi)
  1161. }
  1162. return ms
  1163. }
  1164. return mi.MessageOf(x)
  1165. }
  1166. // Deprecated: Use TableRow.ProtoReflect.Descriptor instead.
  1167. func (*TableRow) Descriptor() ([]byte, []int) {
  1168. return file_v1_request_command_proto_rawDescGZIP(), []int{19}
  1169. }
  1170. func (x *TableRow) GetColumns() []*Column {
  1171. if x != nil {
  1172. return x.Columns
  1173. }
  1174. return nil
  1175. }
  1176. type Column struct {
  1177. state protoimpl.MessageState
  1178. sizeCache protoimpl.SizeCache
  1179. unknownFields protoimpl.UnknownFields
  1180. Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
  1181. Value *ColumnValue `protobuf:"bytes,2,opt,name=Value,proto3" json:"Value,omitempty"`
  1182. }
  1183. func (x *Column) Reset() {
  1184. *x = Column{}
  1185. if protoimpl.UnsafeEnabled {
  1186. mi := &file_v1_request_command_proto_msgTypes[20]
  1187. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1188. ms.StoreMessageInfo(mi)
  1189. }
  1190. }
  1191. func (x *Column) String() string {
  1192. return protoimpl.X.MessageStringOf(x)
  1193. }
  1194. func (*Column) ProtoMessage() {}
  1195. func (x *Column) ProtoReflect() protoreflect.Message {
  1196. mi := &file_v1_request_command_proto_msgTypes[20]
  1197. if protoimpl.UnsafeEnabled && x != nil {
  1198. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1199. if ms.LoadMessageInfo() == nil {
  1200. ms.StoreMessageInfo(mi)
  1201. }
  1202. return ms
  1203. }
  1204. return mi.MessageOf(x)
  1205. }
  1206. // Deprecated: Use Column.ProtoReflect.Descriptor instead.
  1207. func (*Column) Descriptor() ([]byte, []int) {
  1208. return file_v1_request_command_proto_rawDescGZIP(), []int{20}
  1209. }
  1210. func (x *Column) GetName() string {
  1211. if x != nil {
  1212. return x.Name
  1213. }
  1214. return ""
  1215. }
  1216. func (x *Column) GetValue() *ColumnValue {
  1217. if x != nil {
  1218. return x.Value
  1219. }
  1220. return nil
  1221. }
  1222. type ColumnValue struct {
  1223. state protoimpl.MessageState
  1224. sizeCache protoimpl.SizeCache
  1225. unknownFields protoimpl.UnknownFields
  1226. Kind int32 `protobuf:"varint,1,opt,name=Kind,proto3" json:"Kind,omitempty"`
  1227. Type string `protobuf:"bytes,2,opt,name=Type,proto3" json:"Type,omitempty"`
  1228. // Types that are assignable to TypedValue:
  1229. //
  1230. // *ColumnValue_StringValue
  1231. // *ColumnValue_Uint32Value
  1232. // *ColumnValue_Uint64Value
  1233. // *ColumnValue_Float64Value
  1234. // *ColumnValue_BoolValue
  1235. TypedValue isColumnValue_TypedValue `protobuf_oneof:"TypedValue"`
  1236. }
  1237. func (x *ColumnValue) Reset() {
  1238. *x = ColumnValue{}
  1239. if protoimpl.UnsafeEnabled {
  1240. mi := &file_v1_request_command_proto_msgTypes[21]
  1241. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1242. ms.StoreMessageInfo(mi)
  1243. }
  1244. }
  1245. func (x *ColumnValue) String() string {
  1246. return protoimpl.X.MessageStringOf(x)
  1247. }
  1248. func (*ColumnValue) ProtoMessage() {}
  1249. func (x *ColumnValue) ProtoReflect() protoreflect.Message {
  1250. mi := &file_v1_request_command_proto_msgTypes[21]
  1251. if protoimpl.UnsafeEnabled && x != nil {
  1252. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1253. if ms.LoadMessageInfo() == nil {
  1254. ms.StoreMessageInfo(mi)
  1255. }
  1256. return ms
  1257. }
  1258. return mi.MessageOf(x)
  1259. }
  1260. // Deprecated: Use ColumnValue.ProtoReflect.Descriptor instead.
  1261. func (*ColumnValue) Descriptor() ([]byte, []int) {
  1262. return file_v1_request_command_proto_rawDescGZIP(), []int{21}
  1263. }
  1264. func (x *ColumnValue) GetKind() int32 {
  1265. if x != nil {
  1266. return x.Kind
  1267. }
  1268. return 0
  1269. }
  1270. func (x *ColumnValue) GetType() string {
  1271. if x != nil {
  1272. return x.Type
  1273. }
  1274. return ""
  1275. }
  1276. func (m *ColumnValue) GetTypedValue() isColumnValue_TypedValue {
  1277. if m != nil {
  1278. return m.TypedValue
  1279. }
  1280. return nil
  1281. }
  1282. func (x *ColumnValue) GetStringValue() string {
  1283. if x, ok := x.GetTypedValue().(*ColumnValue_StringValue); ok {
  1284. return x.StringValue
  1285. }
  1286. return ""
  1287. }
  1288. func (x *ColumnValue) GetUint32Value() uint32 {
  1289. if x, ok := x.GetTypedValue().(*ColumnValue_Uint32Value); ok {
  1290. return x.Uint32Value
  1291. }
  1292. return 0
  1293. }
  1294. func (x *ColumnValue) GetUint64Value() uint64 {
  1295. if x, ok := x.GetTypedValue().(*ColumnValue_Uint64Value); ok {
  1296. return x.Uint64Value
  1297. }
  1298. return 0
  1299. }
  1300. func (x *ColumnValue) GetFloat64Value() float64 {
  1301. if x, ok := x.GetTypedValue().(*ColumnValue_Float64Value); ok {
  1302. return x.Float64Value
  1303. }
  1304. return 0
  1305. }
  1306. func (x *ColumnValue) GetBoolValue() bool {
  1307. if x, ok := x.GetTypedValue().(*ColumnValue_BoolValue); ok {
  1308. return x.BoolValue
  1309. }
  1310. return false
  1311. }
  1312. type isColumnValue_TypedValue interface {
  1313. isColumnValue_TypedValue()
  1314. }
  1315. type ColumnValue_StringValue struct {
  1316. StringValue string `protobuf:"bytes,3,opt,name=StringValue,proto3,oneof"`
  1317. }
  1318. type ColumnValue_Uint32Value struct {
  1319. Uint32Value uint32 `protobuf:"varint,4,opt,name=Uint32Value,proto3,oneof"`
  1320. }
  1321. type ColumnValue_Uint64Value struct {
  1322. Uint64Value uint64 `protobuf:"varint,5,opt,name=Uint64Value,proto3,oneof"`
  1323. }
  1324. type ColumnValue_Float64Value struct {
  1325. Float64Value float64 `protobuf:"fixed64,6,opt,name=Float64Value,proto3,oneof"`
  1326. }
  1327. type ColumnValue_BoolValue struct {
  1328. BoolValue bool `protobuf:"varint,7,opt,name=BoolValue,proto3,oneof"`
  1329. }
  1330. func (*ColumnValue_StringValue) isColumnValue_TypedValue() {}
  1331. func (*ColumnValue_Uint32Value) isColumnValue_TypedValue() {}
  1332. func (*ColumnValue_Uint64Value) isColumnValue_TypedValue() {}
  1333. func (*ColumnValue_Float64Value) isColumnValue_TypedValue() {}
  1334. func (*ColumnValue_BoolValue) isColumnValue_TypedValue() {}
  1335. var File_v1_request_command_proto protoreflect.FileDescriptor
  1336. var file_v1_request_command_proto_rawDesc = []byte{
  1337. 0x0a, 0x18, 0x76, 0x31, 0x2f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2f, 0x63, 0x6f, 0x6d,
  1338. 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x72, 0x65, 0x71, 0x75,
  1339. 0x65, 0x73, 0x74, 0x1a, 0x36, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
  1340. 0x6d, 0x77, 0x69, 0x74, 0x6b, 0x6f, 0x77, 0x2f, 0x67, 0x6f, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1341. 0x2d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x61, 0x6c, 0x69,
  1342. 0x64, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x74, 0x0a, 0x12, 0x41,
  1343. 0x75, 0x74, 0x6f, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1344. 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18,
  1345. 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44,
  1346. 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x36, 0x0a, 0x05, 0x49, 0x74, 0x65,
  1347. 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65,
  1348. 0x73, 0x74, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x49, 0x74,
  1349. 0x65, 0x6d, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65, 0x6d,
  1350. 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x0f, 0x41, 0x75, 0x74, 0x6f, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74,
  1351. 0x65, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72,
  1352. 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01,
  1353. 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61,
  1354. 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68,
  1355. 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  1356. 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65,
  1357. 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x36, 0x0a, 0x12, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x6f,
  1358. 0x64, 0x65, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  1359. 0x0c, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x12, 0x54, 0x61, 0x62, 0x6c, 0x65,
  1360. 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x22, 0x41, 0x0a,
  1361. 0x17, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x65, 0x67, 0x69,
  1362. 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61,
  1363. 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf,
  1364. 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44,
  1365. 0x22, 0xe8, 0x01, 0x0a, 0x0f, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54, 0x78, 0x52, 0x65, 0x71,
  1366. 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65,
  1367. 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20,
  1368. 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62,
  1369. 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65,
  1370. 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  1371. 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72,
  1372. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d,
  1373. 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00,
  1374. 0x52, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x35, 0x0a, 0x08,
  1375. 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11,
  1376. 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f,
  1377. 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x08, 0x54, 0x61, 0x62, 0x6c, 0x65,
  1378. 0x52, 0x6f, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20,
  1379. 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0x69, 0x0a, 0x14, 0x49,
  1380. 0x6e, 0x73, 0x65, 0x72, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75,
  1381. 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03,
  1382. 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x73,
  1383. 0x65, 0x72, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x49, 0x74, 0x65, 0x6d, 0x42,
  1384. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x16,
  1385. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1386. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0x96, 0x02, 0x0a, 0x0f, 0x44, 0x65, 0x6c, 0x65, 0x74,
  1387. 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61,
  1388. 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68,
  1389. 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58,
  1390. 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69,
  1391. 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73,
  1392. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58,
  1393. 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x4d, 0x0a, 0x09, 0x4b, 0x65,
  1394. 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e,
  1395. 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x78,
  1396. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1397. 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x20, 0x00, 0x52, 0x09,
  1398. 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65,
  1399. 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  1400. 0x44, 0x1a, 0x3c, 0x0a, 0x0e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e,
  1401. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1402. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
  1403. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
  1404. 0x69, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x78,
  1405. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73,
  1406. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1407. 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x49,
  1408. 0x74, 0x65, 0x6d, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65,
  1409. 0x6d, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01,
  1410. 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0xd3, 0x02, 0x0a, 0x0f, 0x55,
  1411. 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c,
  1412. 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74,
  1413. 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2,
  1414. 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66,
  1415. 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07,
  1416. 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2,
  1417. 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x4d,
  1418. 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  1419. 0x0b, 0x32, 0x27, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x55, 0x70, 0x64, 0x61,
  1420. 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4b, 0x65, 0x79, 0x56,
  1421. 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02,
  1422. 0x20, 0x00, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x3b, 0x0a,
  1423. 0x0b, 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x18, 0x04, 0x20, 0x01,
  1424. 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x61, 0x62,
  1425. 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0b, 0x4e,
  1426. 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73,
  1427. 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72,
  1428. 0x49, 0x44, 0x1a, 0x3c, 0x0a, 0x0e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45,
  1429. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  1430. 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  1431. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  1432. 0x22, 0x17, 0x0a, 0x15, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45,
  1433. 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xd3, 0x04, 0x0a, 0x14, 0x54, 0x72,
  1434. 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  1435. 0x6f, 0x6e, 0x12, 0x5c, 0x0a, 0x17, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f,
  1436. 0x6e, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x01, 0x20,
  1437. 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x72,
  1438. 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x52, 0x65,
  1439. 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x17, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63,
  1440. 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1441. 0x12, 0x44, 0x0a, 0x0f, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75,
  1442. 0x65, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x72, 0x65, 0x71, 0x75,
  1443. 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75,
  1444. 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0f, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54, 0x78, 0x52,
  1445. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x53, 0x0a, 0x14, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74,
  1446. 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x03,
  1447. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49,
  1448. 0x6e, 0x73, 0x65, 0x72, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75,
  1449. 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x14, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x42, 0x61, 0x74,
  1450. 0x63, 0x68, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x44, 0x0a, 0x0f, 0x44,
  1451. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x04,
  1452. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44,
  1453. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00,
  1454. 0x52, 0x0f, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1455. 0x74, 0x12, 0x53, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68,
  1456. 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1457. 0x1d, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  1458. 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00,
  1459. 0x52, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x78, 0x52,
  1460. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x44, 0x0a, 0x0f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  1461. 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1462. 0x18, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  1463. 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0f, 0x55, 0x70, 0x64,
  1464. 0x61, 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x56, 0x0a, 0x15,
  1465. 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x64, 0x52, 0x65,
  1466. 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x72, 0x65,
  1467. 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f,
  1468. 0x6e, 0x45, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x15, 0x54,
  1469. 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x64, 0x52, 0x65, 0x71,
  1470. 0x75, 0x65, 0x73, 0x74, 0x42, 0x09, 0x0a, 0x07, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22,
  1471. 0x8e, 0x02, 0x0a, 0x0d, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1472. 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18,
  1473. 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44,
  1474. 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62,
  1475. 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65,
  1476. 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01,
  1477. 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74,
  1478. 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69,
  1479. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01,
  1480. 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79,
  1481. 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2,
  1482. 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
  1483. 0x73, 0x12, 0x35, 0x0a, 0x08, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x18, 0x05, 0x20,
  1484. 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x61,
  1485. 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x08,
  1486. 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72,
  1487. 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  1488. 0x22, 0x8f, 0x01, 0x0a, 0x12, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68,
  1489. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62,
  1490. 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f,
  1491. 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12,
  1492. 0x39, 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b,
  1493. 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54,
  1494. 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x49, 0x74, 0x65, 0x6d, 0x42, 0x06, 0xe2, 0xdf, 0x1f,
  1495. 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73,
  1496. 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72,
  1497. 0x49, 0x44, 0x22, 0xd5, 0x01, 0x0a, 0x12, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54, 0x61, 0x62,
  1498. 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62,
  1499. 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65,
  1500. 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01,
  1501. 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74,
  1502. 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69,
  1503. 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01,
  1504. 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79,
  1505. 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2,
  1506. 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
  1507. 0x73, 0x12, 0x37, 0x0a, 0x09, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x73, 0x18, 0x04,
  1508. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54,
  1509. 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52,
  1510. 0x09, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x73, 0x22, 0xba, 0x02, 0x0a, 0x0d, 0x44,
  1511. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a,
  1512. 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1513. 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61,
  1514. 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65,
  1515. 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20,
  1516. 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62,
  1517. 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65,
  1518. 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20,
  1519. 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72,
  1520. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1521. 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73,
  1522. 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  1523. 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x06,
  1524. 0xe2, 0xdf, 0x1f, 0x02, 0x20, 0x00, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1525. 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28,
  1526. 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x3c, 0x0a, 0x0e, 0x4b, 0x65, 0x79,
  1527. 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
  1528. 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,
  1529. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61,
  1530. 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x8f, 0x01, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65,
  1531. 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26,
  1532. 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01,
  1533. 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61,
  1534. 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x39, 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x18,
  1535. 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  1536. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x49, 0x74,
  1537. 0x65, 0x6d, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65, 0x6d,
  1538. 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28,
  1539. 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0xa7, 0x01, 0x0a, 0x12, 0x44, 0x65,
  1540. 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x49, 0x74, 0x65, 0x6d,
  1541. 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57,
  1542. 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42,
  1543. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72,
  1544. 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20,
  1545. 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42,
  1546. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
  1547. 0x12, 0x31, 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1548. 0x13, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  1549. 0x49, 0x74, 0x65, 0x6d, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74,
  1550. 0x65, 0x6d, 0x73, 0x22, 0x94, 0x01, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x74,
  1551. 0x65, 0x6d, 0x12, 0x48, 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18,
  1552. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  1553. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x56, 0x61,
  1554. 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x20,
  1555. 0x00, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x1a, 0x3c, 0x0a, 0x0e,
  1556. 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  1557. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
  1558. 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1559. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xf7, 0x02, 0x0a, 0x0d, 0x55,
  1560. 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a,
  1561. 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1562. 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61,
  1563. 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65,
  1564. 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20,
  1565. 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62,
  1566. 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65,
  1567. 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20,
  1568. 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72,
  1569. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1570. 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73,
  1571. 0x74, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  1572. 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x06,
  1573. 0xe2, 0xdf, 0x1f, 0x02, 0x20, 0x00, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1574. 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77,
  1575. 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1576. 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70,
  1577. 0x00, 0x52, 0x0b, 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x12, 0x16,
  1578. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1579. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x3c, 0x0a, 0x0e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c,
  1580. 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
  1581. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
  1582. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  1583. 0x3a, 0x02, 0x38, 0x01, 0x22, 0xba, 0x02, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x79, 0x52,
  1584. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61,
  1585. 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02,
  1586. 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c,
  1587. 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74,
  1588. 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2,
  1589. 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66,
  1590. 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07,
  1591. 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2,
  1592. 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x4b,
  1593. 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28,
  1594. 0x0b, 0x32, 0x25, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x52, 0x65, 0x70, 0x6c,
  1595. 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c,
  1596. 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x20, 0x00,
  1597. 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55,
  1598. 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65,
  1599. 0x72, 0x49, 0x44, 0x1a, 0x3c, 0x0a, 0x0e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73,
  1600. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  1601. 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  1602. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  1603. 0x01, 0x22, 0x35, 0x0a, 0x08, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x12, 0x29, 0x0a,
  1604. 0x07, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f,
  1605. 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52,
  1606. 0x07, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x22, 0x48, 0x0a, 0x06, 0x43, 0x6f, 0x6c, 0x75,
  1607. 0x6d, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1608. 0x52, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x05, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18,
  1609. 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  1610. 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x56, 0x61, 0x6c,
  1611. 0x75, 0x65, 0x22, 0xf5, 0x01, 0x0a, 0x0b, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x56, 0x61, 0x6c,
  1612. 0x75, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  1613. 0x52, 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02,
  1614. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0b, 0x53, 0x74,
  1615. 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48,
  1616. 0x00, 0x52, 0x0b, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x22,
  1617. 0x0a, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20,
  1618. 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c,
  1619. 0x75, 0x65, 0x12, 0x22, 0x0a, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75,
  1620. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x48, 0x00, 0x52, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x36,
  1621. 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x24, 0x0a, 0x0c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x36,
  1622. 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x0c,
  1623. 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1e, 0x0a, 0x09,
  1624. 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x48,
  1625. 0x00, 0x52, 0x09, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x0c, 0x0a, 0x0a,
  1626. 0x54, 0x79, 0x70, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x20, 0x5a, 0x1e, 0x64, 0x70,
  1627. 0x73, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  1628. 0x62, 0x2f, 0x76, 0x31, 0x2f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x62, 0x06, 0x70, 0x72,
  1629. 0x6f, 0x74, 0x6f, 0x33,
  1630. }
  1631. var (
  1632. file_v1_request_command_proto_rawDescOnce sync.Once
  1633. file_v1_request_command_proto_rawDescData = file_v1_request_command_proto_rawDesc
  1634. )
  1635. func file_v1_request_command_proto_rawDescGZIP() []byte {
  1636. file_v1_request_command_proto_rawDescOnce.Do(func() {
  1637. file_v1_request_command_proto_rawDescData = protoimpl.X.CompressGZIP(file_v1_request_command_proto_rawDescData)
  1638. })
  1639. return file_v1_request_command_proto_rawDescData
  1640. }
  1641. var file_v1_request_command_proto_msgTypes = make([]protoimpl.MessageInfo, 28)
  1642. var file_v1_request_command_proto_goTypes = []interface{}{
  1643. (*AutoMigrateRequest)(nil), // 0: request.AutoMigrateRequest
  1644. (*AutoMigrateItem)(nil), // 1: request.AutoMigrateItem
  1645. (*TransactionBeginRequest)(nil), // 2: request.TransactionBeginRequest
  1646. (*InsertTxRequest)(nil), // 3: request.InsertTxRequest
  1647. (*InsertBatchTxRequest)(nil), // 4: request.InsertBatchTxRequest
  1648. (*DeleteTxRequest)(nil), // 5: request.DeleteTxRequest
  1649. (*DeleteBatchTxRequest)(nil), // 6: request.DeleteBatchTxRequest
  1650. (*UpdateTxRequest)(nil), // 7: request.UpdateTxRequest
  1651. (*TransactionEndRequest)(nil), // 8: request.TransactionEndRequest
  1652. (*TransactionOperation)(nil), // 9: request.TransactionOperation
  1653. (*InsertRequest)(nil), // 10: request.InsertRequest
  1654. (*InsertBatchRequest)(nil), // 11: request.InsertBatchRequest
  1655. (*InsertTableRowItem)(nil), // 12: request.InsertTableRowItem
  1656. (*DeleteRequest)(nil), // 13: request.DeleteRequest
  1657. (*DeleteBatchRequest)(nil), // 14: request.DeleteBatchRequest
  1658. (*DeleteTableRowItem)(nil), // 15: request.DeleteTableRowItem
  1659. (*DeleteItem)(nil), // 16: request.DeleteItem
  1660. (*UpdateRequest)(nil), // 17: request.UpdateRequest
  1661. (*ReplayRequest)(nil), // 18: request.ReplayRequest
  1662. (*TableRow)(nil), // 19: request.TableRow
  1663. (*Column)(nil), // 20: request.Column
  1664. (*ColumnValue)(nil), // 21: request.ColumnValue
  1665. nil, // 22: request.DeleteTxRequest.KeyValuesEntry
  1666. nil, // 23: request.UpdateTxRequest.KeyValuesEntry
  1667. nil, // 24: request.DeleteRequest.KeyValuesEntry
  1668. nil, // 25: request.DeleteItem.KeyValuesEntry
  1669. nil, // 26: request.UpdateRequest.KeyValuesEntry
  1670. nil, // 27: request.ReplayRequest.KeyValuesEntry
  1671. }
  1672. var file_v1_request_command_proto_depIdxs = []int32{
  1673. 1, // 0: request.AutoMigrateRequest.Items:type_name -> request.AutoMigrateItem
  1674. 19, // 1: request.InsertTxRequest.TableRow:type_name -> request.TableRow
  1675. 12, // 2: request.InsertBatchTxRequest.Items:type_name -> request.InsertTableRowItem
  1676. 22, // 3: request.DeleteTxRequest.KeyValues:type_name -> request.DeleteTxRequest.KeyValuesEntry
  1677. 15, // 4: request.DeleteBatchTxRequest.Items:type_name -> request.DeleteTableRowItem
  1678. 23, // 5: request.UpdateTxRequest.KeyValues:type_name -> request.UpdateTxRequest.KeyValuesEntry
  1679. 19, // 6: request.UpdateTxRequest.NewTableRow:type_name -> request.TableRow
  1680. 2, // 7: request.TransactionOperation.TransactionBeginRequest:type_name -> request.TransactionBeginRequest
  1681. 3, // 8: request.TransactionOperation.InsertTxRequest:type_name -> request.InsertTxRequest
  1682. 4, // 9: request.TransactionOperation.InsertBatchTxRequest:type_name -> request.InsertBatchTxRequest
  1683. 5, // 10: request.TransactionOperation.DeleteTxRequest:type_name -> request.DeleteTxRequest
  1684. 6, // 11: request.TransactionOperation.DeleteBatchTxRequest:type_name -> request.DeleteBatchTxRequest
  1685. 7, // 12: request.TransactionOperation.UpdateTxRequest:type_name -> request.UpdateTxRequest
  1686. 8, // 13: request.TransactionOperation.TransactionEndRequest:type_name -> request.TransactionEndRequest
  1687. 19, // 14: request.InsertRequest.TableRow:type_name -> request.TableRow
  1688. 12, // 15: request.InsertBatchRequest.Items:type_name -> request.InsertTableRowItem
  1689. 19, // 16: request.InsertTableRowItem.TableRows:type_name -> request.TableRow
  1690. 24, // 17: request.DeleteRequest.KeyValues:type_name -> request.DeleteRequest.KeyValuesEntry
  1691. 15, // 18: request.DeleteBatchRequest.Items:type_name -> request.DeleteTableRowItem
  1692. 16, // 19: request.DeleteTableRowItem.Items:type_name -> request.DeleteItem
  1693. 25, // 20: request.DeleteItem.KeyValues:type_name -> request.DeleteItem.KeyValuesEntry
  1694. 26, // 21: request.UpdateRequest.KeyValues:type_name -> request.UpdateRequest.KeyValuesEntry
  1695. 19, // 22: request.UpdateRequest.NewTableRow:type_name -> request.TableRow
  1696. 27, // 23: request.ReplayRequest.KeyValues:type_name -> request.ReplayRequest.KeyValuesEntry
  1697. 20, // 24: request.TableRow.Columns:type_name -> request.Column
  1698. 21, // 25: request.Column.Value:type_name -> request.ColumnValue
  1699. 26, // [26:26] is the sub-list for method output_type
  1700. 26, // [26:26] is the sub-list for method input_type
  1701. 26, // [26:26] is the sub-list for extension type_name
  1702. 26, // [26:26] is the sub-list for extension extendee
  1703. 0, // [0:26] is the sub-list for field type_name
  1704. }
  1705. func init() { file_v1_request_command_proto_init() }
  1706. func file_v1_request_command_proto_init() {
  1707. if File_v1_request_command_proto != nil {
  1708. return
  1709. }
  1710. if !protoimpl.UnsafeEnabled {
  1711. file_v1_request_command_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1712. switch v := v.(*AutoMigrateRequest); i {
  1713. case 0:
  1714. return &v.state
  1715. case 1:
  1716. return &v.sizeCache
  1717. case 2:
  1718. return &v.unknownFields
  1719. default:
  1720. return nil
  1721. }
  1722. }
  1723. file_v1_request_command_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1724. switch v := v.(*AutoMigrateItem); i {
  1725. case 0:
  1726. return &v.state
  1727. case 1:
  1728. return &v.sizeCache
  1729. case 2:
  1730. return &v.unknownFields
  1731. default:
  1732. return nil
  1733. }
  1734. }
  1735. file_v1_request_command_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1736. switch v := v.(*TransactionBeginRequest); i {
  1737. case 0:
  1738. return &v.state
  1739. case 1:
  1740. return &v.sizeCache
  1741. case 2:
  1742. return &v.unknownFields
  1743. default:
  1744. return nil
  1745. }
  1746. }
  1747. file_v1_request_command_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1748. switch v := v.(*InsertTxRequest); i {
  1749. case 0:
  1750. return &v.state
  1751. case 1:
  1752. return &v.sizeCache
  1753. case 2:
  1754. return &v.unknownFields
  1755. default:
  1756. return nil
  1757. }
  1758. }
  1759. file_v1_request_command_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1760. switch v := v.(*InsertBatchTxRequest); i {
  1761. case 0:
  1762. return &v.state
  1763. case 1:
  1764. return &v.sizeCache
  1765. case 2:
  1766. return &v.unknownFields
  1767. default:
  1768. return nil
  1769. }
  1770. }
  1771. file_v1_request_command_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1772. switch v := v.(*DeleteTxRequest); i {
  1773. case 0:
  1774. return &v.state
  1775. case 1:
  1776. return &v.sizeCache
  1777. case 2:
  1778. return &v.unknownFields
  1779. default:
  1780. return nil
  1781. }
  1782. }
  1783. file_v1_request_command_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1784. switch v := v.(*DeleteBatchTxRequest); i {
  1785. case 0:
  1786. return &v.state
  1787. case 1:
  1788. return &v.sizeCache
  1789. case 2:
  1790. return &v.unknownFields
  1791. default:
  1792. return nil
  1793. }
  1794. }
  1795. file_v1_request_command_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1796. switch v := v.(*UpdateTxRequest); i {
  1797. case 0:
  1798. return &v.state
  1799. case 1:
  1800. return &v.sizeCache
  1801. case 2:
  1802. return &v.unknownFields
  1803. default:
  1804. return nil
  1805. }
  1806. }
  1807. file_v1_request_command_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1808. switch v := v.(*TransactionEndRequest); i {
  1809. case 0:
  1810. return &v.state
  1811. case 1:
  1812. return &v.sizeCache
  1813. case 2:
  1814. return &v.unknownFields
  1815. default:
  1816. return nil
  1817. }
  1818. }
  1819. file_v1_request_command_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1820. switch v := v.(*TransactionOperation); i {
  1821. case 0:
  1822. return &v.state
  1823. case 1:
  1824. return &v.sizeCache
  1825. case 2:
  1826. return &v.unknownFields
  1827. default:
  1828. return nil
  1829. }
  1830. }
  1831. file_v1_request_command_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1832. switch v := v.(*InsertRequest); i {
  1833. case 0:
  1834. return &v.state
  1835. case 1:
  1836. return &v.sizeCache
  1837. case 2:
  1838. return &v.unknownFields
  1839. default:
  1840. return nil
  1841. }
  1842. }
  1843. file_v1_request_command_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1844. switch v := v.(*InsertBatchRequest); i {
  1845. case 0:
  1846. return &v.state
  1847. case 1:
  1848. return &v.sizeCache
  1849. case 2:
  1850. return &v.unknownFields
  1851. default:
  1852. return nil
  1853. }
  1854. }
  1855. file_v1_request_command_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1856. switch v := v.(*InsertTableRowItem); i {
  1857. case 0:
  1858. return &v.state
  1859. case 1:
  1860. return &v.sizeCache
  1861. case 2:
  1862. return &v.unknownFields
  1863. default:
  1864. return nil
  1865. }
  1866. }
  1867. file_v1_request_command_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1868. switch v := v.(*DeleteRequest); i {
  1869. case 0:
  1870. return &v.state
  1871. case 1:
  1872. return &v.sizeCache
  1873. case 2:
  1874. return &v.unknownFields
  1875. default:
  1876. return nil
  1877. }
  1878. }
  1879. file_v1_request_command_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1880. switch v := v.(*DeleteBatchRequest); i {
  1881. case 0:
  1882. return &v.state
  1883. case 1:
  1884. return &v.sizeCache
  1885. case 2:
  1886. return &v.unknownFields
  1887. default:
  1888. return nil
  1889. }
  1890. }
  1891. file_v1_request_command_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1892. switch v := v.(*DeleteTableRowItem); i {
  1893. case 0:
  1894. return &v.state
  1895. case 1:
  1896. return &v.sizeCache
  1897. case 2:
  1898. return &v.unknownFields
  1899. default:
  1900. return nil
  1901. }
  1902. }
  1903. file_v1_request_command_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  1904. switch v := v.(*DeleteItem); i {
  1905. case 0:
  1906. return &v.state
  1907. case 1:
  1908. return &v.sizeCache
  1909. case 2:
  1910. return &v.unknownFields
  1911. default:
  1912. return nil
  1913. }
  1914. }
  1915. file_v1_request_command_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  1916. switch v := v.(*UpdateRequest); i {
  1917. case 0:
  1918. return &v.state
  1919. case 1:
  1920. return &v.sizeCache
  1921. case 2:
  1922. return &v.unknownFields
  1923. default:
  1924. return nil
  1925. }
  1926. }
  1927. file_v1_request_command_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  1928. switch v := v.(*ReplayRequest); i {
  1929. case 0:
  1930. return &v.state
  1931. case 1:
  1932. return &v.sizeCache
  1933. case 2:
  1934. return &v.unknownFields
  1935. default:
  1936. return nil
  1937. }
  1938. }
  1939. file_v1_request_command_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  1940. switch v := v.(*TableRow); i {
  1941. case 0:
  1942. return &v.state
  1943. case 1:
  1944. return &v.sizeCache
  1945. case 2:
  1946. return &v.unknownFields
  1947. default:
  1948. return nil
  1949. }
  1950. }
  1951. file_v1_request_command_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  1952. switch v := v.(*Column); i {
  1953. case 0:
  1954. return &v.state
  1955. case 1:
  1956. return &v.sizeCache
  1957. case 2:
  1958. return &v.unknownFields
  1959. default:
  1960. return nil
  1961. }
  1962. }
  1963. file_v1_request_command_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  1964. switch v := v.(*ColumnValue); i {
  1965. case 0:
  1966. return &v.state
  1967. case 1:
  1968. return &v.sizeCache
  1969. case 2:
  1970. return &v.unknownFields
  1971. default:
  1972. return nil
  1973. }
  1974. }
  1975. }
  1976. file_v1_request_command_proto_msgTypes[9].OneofWrappers = []interface{}{
  1977. (*TransactionOperation_TransactionBeginRequest)(nil),
  1978. (*TransactionOperation_InsertTxRequest)(nil),
  1979. (*TransactionOperation_InsertBatchTxRequest)(nil),
  1980. (*TransactionOperation_DeleteTxRequest)(nil),
  1981. (*TransactionOperation_DeleteBatchTxRequest)(nil),
  1982. (*TransactionOperation_UpdateTxRequest)(nil),
  1983. (*TransactionOperation_TransactionEndRequest)(nil),
  1984. }
  1985. file_v1_request_command_proto_msgTypes[21].OneofWrappers = []interface{}{
  1986. (*ColumnValue_StringValue)(nil),
  1987. (*ColumnValue_Uint32Value)(nil),
  1988. (*ColumnValue_Uint64Value)(nil),
  1989. (*ColumnValue_Float64Value)(nil),
  1990. (*ColumnValue_BoolValue)(nil),
  1991. }
  1992. type x struct{}
  1993. out := protoimpl.TypeBuilder{
  1994. File: protoimpl.DescBuilder{
  1995. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1996. RawDescriptor: file_v1_request_command_proto_rawDesc,
  1997. NumEnums: 0,
  1998. NumMessages: 28,
  1999. NumExtensions: 0,
  2000. NumServices: 0,
  2001. },
  2002. GoTypes: file_v1_request_command_proto_goTypes,
  2003. DependencyIndexes: file_v1_request_command_proto_depIdxs,
  2004. MessageInfos: file_v1_request_command_proto_msgTypes,
  2005. }.Build()
  2006. File_v1_request_command_proto = out.File
  2007. file_v1_request_command_proto_rawDesc = nil
  2008. file_v1_request_command_proto_goTypes = nil
  2009. file_v1_request_command_proto_depIdxs = nil
  2010. }