command.pb.go 88 KB

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