proto-gorm.pb.go 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0
  4. // protoc v3.6.1
  5. // source: proto-gorm/api/proto-gorm.proto
  6. package proto_gorm
  7. import (
  8. _ "github.com/golang/protobuf/ptypes/empty"
  9. query "github.com/infobloxopen/atlas-app-toolkit/query"
  10. _ "github.com/infobloxopen/protoc-gen-gorm/options"
  11. _ "google.golang.org/genproto/googleapis/api/annotations"
  12. field_mask "google.golang.org/genproto/protobuf/field_mask"
  13. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  14. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  15. reflect "reflect"
  16. sync "sync"
  17. )
  18. const (
  19. // Verify that this generated code is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  21. // Verify that runtime/protoimpl is sufficiently up-to-date.
  22. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  23. )
  24. // WSMessage wraps PB Messages with its type for transit
  25. type WSMessage struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
  30. Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
  31. Streamid string `protobuf:"bytes,3,opt,name=streamid,proto3" json:"streamid,omitempty"`
  32. Body []byte `protobuf:"bytes,4,opt,name=body,proto3" json:"body,omitempty"`
  33. }
  34. func (x *WSMessage) Reset() {
  35. *x = WSMessage{}
  36. if protoimpl.UnsafeEnabled {
  37. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[0]
  38. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  39. ms.StoreMessageInfo(mi)
  40. }
  41. }
  42. func (x *WSMessage) String() string {
  43. return protoimpl.X.MessageStringOf(x)
  44. }
  45. func (*WSMessage) ProtoMessage() {}
  46. func (x *WSMessage) ProtoReflect() protoreflect.Message {
  47. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[0]
  48. if protoimpl.UnsafeEnabled && x != nil {
  49. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  50. if ms.LoadMessageInfo() == nil {
  51. ms.StoreMessageInfo(mi)
  52. }
  53. return ms
  54. }
  55. return mi.MessageOf(x)
  56. }
  57. // Deprecated: Use WSMessage.ProtoReflect.Descriptor instead.
  58. func (*WSMessage) Descriptor() ([]byte, []int) {
  59. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{0}
  60. }
  61. func (x *WSMessage) GetMethod() string {
  62. if x != nil {
  63. return x.Method
  64. }
  65. return ""
  66. }
  67. func (x *WSMessage) GetPath() string {
  68. if x != nil {
  69. return x.Path
  70. }
  71. return ""
  72. }
  73. func (x *WSMessage) GetStreamid() string {
  74. if x != nil {
  75. return x.Streamid
  76. }
  77. return ""
  78. }
  79. func (x *WSMessage) GetBody() []byte {
  80. if x != nil {
  81. return x.Body
  82. }
  83. return nil
  84. }
  85. // IntPoint is a basic message type representing a single cartesian point
  86. // that we want to store in a database
  87. type IntPoint struct {
  88. state protoimpl.MessageState
  89. sizeCache protoimpl.SizeCache
  90. unknownFields protoimpl.UnknownFields
  91. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  92. X int32 `protobuf:"varint,2,opt,name=x,proto3" json:"x,omitempty"`
  93. Y int32 `protobuf:"varint,3,opt,name=y,proto3" json:"y,omitempty"`
  94. }
  95. func (x *IntPoint) Reset() {
  96. *x = IntPoint{}
  97. if protoimpl.UnsafeEnabled {
  98. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[1]
  99. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  100. ms.StoreMessageInfo(mi)
  101. }
  102. }
  103. func (x *IntPoint) String() string {
  104. return protoimpl.X.MessageStringOf(x)
  105. }
  106. func (*IntPoint) ProtoMessage() {}
  107. func (x *IntPoint) ProtoReflect() protoreflect.Message {
  108. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[1]
  109. if protoimpl.UnsafeEnabled && x != nil {
  110. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  111. if ms.LoadMessageInfo() == nil {
  112. ms.StoreMessageInfo(mi)
  113. }
  114. return ms
  115. }
  116. return mi.MessageOf(x)
  117. }
  118. // Deprecated: Use IntPoint.ProtoReflect.Descriptor instead.
  119. func (*IntPoint) Descriptor() ([]byte, []int) {
  120. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{1}
  121. }
  122. func (x *IntPoint) GetId() uint32 {
  123. if x != nil {
  124. return x.Id
  125. }
  126. return 0
  127. }
  128. func (x *IntPoint) GetX() int32 {
  129. if x != nil {
  130. return x.X
  131. }
  132. return 0
  133. }
  134. func (x *IntPoint) GetY() int32 {
  135. if x != nil {
  136. return x.Y
  137. }
  138. return 0
  139. }
  140. type CreateIntPointRequest struct {
  141. state protoimpl.MessageState
  142. sizeCache protoimpl.SizeCache
  143. unknownFields protoimpl.UnknownFields
  144. // Convention dictates that this field be of the given type, and be
  145. // named 'payload' in order to autogenerate the handler
  146. Payload *IntPoint `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
  147. }
  148. func (x *CreateIntPointRequest) Reset() {
  149. *x = CreateIntPointRequest{}
  150. if protoimpl.UnsafeEnabled {
  151. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[2]
  152. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  153. ms.StoreMessageInfo(mi)
  154. }
  155. }
  156. func (x *CreateIntPointRequest) String() string {
  157. return protoimpl.X.MessageStringOf(x)
  158. }
  159. func (*CreateIntPointRequest) ProtoMessage() {}
  160. func (x *CreateIntPointRequest) ProtoReflect() protoreflect.Message {
  161. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[2]
  162. if protoimpl.UnsafeEnabled && x != nil {
  163. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  164. if ms.LoadMessageInfo() == nil {
  165. ms.StoreMessageInfo(mi)
  166. }
  167. return ms
  168. }
  169. return mi.MessageOf(x)
  170. }
  171. // Deprecated: Use CreateIntPointRequest.ProtoReflect.Descriptor instead.
  172. func (*CreateIntPointRequest) Descriptor() ([]byte, []int) {
  173. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{2}
  174. }
  175. func (x *CreateIntPointRequest) GetPayload() *IntPoint {
  176. if x != nil {
  177. return x.Payload
  178. }
  179. return nil
  180. }
  181. type CreateIntPointResponse struct {
  182. state protoimpl.MessageState
  183. sizeCache protoimpl.SizeCache
  184. unknownFields protoimpl.UnknownFields
  185. // Convention also requires that the return type be the same and named 'result'
  186. Result *IntPoint `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  187. }
  188. func (x *CreateIntPointResponse) Reset() {
  189. *x = CreateIntPointResponse{}
  190. if protoimpl.UnsafeEnabled {
  191. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[3]
  192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  193. ms.StoreMessageInfo(mi)
  194. }
  195. }
  196. func (x *CreateIntPointResponse) String() string {
  197. return protoimpl.X.MessageStringOf(x)
  198. }
  199. func (*CreateIntPointResponse) ProtoMessage() {}
  200. func (x *CreateIntPointResponse) ProtoReflect() protoreflect.Message {
  201. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[3]
  202. if protoimpl.UnsafeEnabled && x != nil {
  203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  204. if ms.LoadMessageInfo() == nil {
  205. ms.StoreMessageInfo(mi)
  206. }
  207. return ms
  208. }
  209. return mi.MessageOf(x)
  210. }
  211. // Deprecated: Use CreateIntPointResponse.ProtoReflect.Descriptor instead.
  212. func (*CreateIntPointResponse) Descriptor() ([]byte, []int) {
  213. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{3}
  214. }
  215. func (x *CreateIntPointResponse) GetResult() *IntPoint {
  216. if x != nil {
  217. return x.Result
  218. }
  219. return nil
  220. }
  221. type ReadIntPointRequest struct {
  222. state protoimpl.MessageState
  223. sizeCache protoimpl.SizeCache
  224. unknownFields protoimpl.UnknownFields
  225. // For a read request, the id field is the only to be specified
  226. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  227. Fields *query.FieldSelection `protobuf:"bytes,2,opt,name=fields,proto3" json:"fields,omitempty"`
  228. }
  229. func (x *ReadIntPointRequest) Reset() {
  230. *x = ReadIntPointRequest{}
  231. if protoimpl.UnsafeEnabled {
  232. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[4]
  233. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  234. ms.StoreMessageInfo(mi)
  235. }
  236. }
  237. func (x *ReadIntPointRequest) String() string {
  238. return protoimpl.X.MessageStringOf(x)
  239. }
  240. func (*ReadIntPointRequest) ProtoMessage() {}
  241. func (x *ReadIntPointRequest) ProtoReflect() protoreflect.Message {
  242. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[4]
  243. if protoimpl.UnsafeEnabled && x != nil {
  244. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  245. if ms.LoadMessageInfo() == nil {
  246. ms.StoreMessageInfo(mi)
  247. }
  248. return ms
  249. }
  250. return mi.MessageOf(x)
  251. }
  252. // Deprecated: Use ReadIntPointRequest.ProtoReflect.Descriptor instead.
  253. func (*ReadIntPointRequest) Descriptor() ([]byte, []int) {
  254. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{4}
  255. }
  256. func (x *ReadIntPointRequest) GetId() uint32 {
  257. if x != nil {
  258. return x.Id
  259. }
  260. return 0
  261. }
  262. func (x *ReadIntPointRequest) GetFields() *query.FieldSelection {
  263. if x != nil {
  264. return x.Fields
  265. }
  266. return nil
  267. }
  268. type ReadIntPointResponse struct {
  269. state protoimpl.MessageState
  270. sizeCache protoimpl.SizeCache
  271. unknownFields protoimpl.UnknownFields
  272. // Again the type with 'result' name
  273. Result *IntPoint `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  274. }
  275. func (x *ReadIntPointResponse) Reset() {
  276. *x = ReadIntPointResponse{}
  277. if protoimpl.UnsafeEnabled {
  278. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[5]
  279. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  280. ms.StoreMessageInfo(mi)
  281. }
  282. }
  283. func (x *ReadIntPointResponse) String() string {
  284. return protoimpl.X.MessageStringOf(x)
  285. }
  286. func (*ReadIntPointResponse) ProtoMessage() {}
  287. func (x *ReadIntPointResponse) ProtoReflect() protoreflect.Message {
  288. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[5]
  289. if protoimpl.UnsafeEnabled && x != nil {
  290. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  291. if ms.LoadMessageInfo() == nil {
  292. ms.StoreMessageInfo(mi)
  293. }
  294. return ms
  295. }
  296. return mi.MessageOf(x)
  297. }
  298. // Deprecated: Use ReadIntPointResponse.ProtoReflect.Descriptor instead.
  299. func (*ReadIntPointResponse) Descriptor() ([]byte, []int) {
  300. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{5}
  301. }
  302. func (x *ReadIntPointResponse) GetResult() *IntPoint {
  303. if x != nil {
  304. return x.Result
  305. }
  306. return nil
  307. }
  308. type UpdateIntPointRequest struct {
  309. state protoimpl.MessageState
  310. sizeCache protoimpl.SizeCache
  311. unknownFields protoimpl.UnknownFields
  312. Payload *IntPoint `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
  313. GerogeriGegege *field_mask.FieldMask `protobuf:"bytes,2,opt,name=gerogeri_gegege,json=gerogeriGegege,proto3" json:"gerogeri_gegege,omitempty"`
  314. }
  315. func (x *UpdateIntPointRequest) Reset() {
  316. *x = UpdateIntPointRequest{}
  317. if protoimpl.UnsafeEnabled {
  318. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[6]
  319. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  320. ms.StoreMessageInfo(mi)
  321. }
  322. }
  323. func (x *UpdateIntPointRequest) String() string {
  324. return protoimpl.X.MessageStringOf(x)
  325. }
  326. func (*UpdateIntPointRequest) ProtoMessage() {}
  327. func (x *UpdateIntPointRequest) ProtoReflect() protoreflect.Message {
  328. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[6]
  329. if protoimpl.UnsafeEnabled && x != nil {
  330. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  331. if ms.LoadMessageInfo() == nil {
  332. ms.StoreMessageInfo(mi)
  333. }
  334. return ms
  335. }
  336. return mi.MessageOf(x)
  337. }
  338. // Deprecated: Use UpdateIntPointRequest.ProtoReflect.Descriptor instead.
  339. func (*UpdateIntPointRequest) Descriptor() ([]byte, []int) {
  340. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{6}
  341. }
  342. func (x *UpdateIntPointRequest) GetPayload() *IntPoint {
  343. if x != nil {
  344. return x.Payload
  345. }
  346. return nil
  347. }
  348. func (x *UpdateIntPointRequest) GetGerogeriGegege() *field_mask.FieldMask {
  349. if x != nil {
  350. return x.GerogeriGegege
  351. }
  352. return nil
  353. }
  354. type UpdateIntPointResponse struct {
  355. state protoimpl.MessageState
  356. sizeCache protoimpl.SizeCache
  357. unknownFields protoimpl.UnknownFields
  358. Result *IntPoint `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  359. }
  360. func (x *UpdateIntPointResponse) Reset() {
  361. *x = UpdateIntPointResponse{}
  362. if protoimpl.UnsafeEnabled {
  363. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[7]
  364. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  365. ms.StoreMessageInfo(mi)
  366. }
  367. }
  368. func (x *UpdateIntPointResponse) String() string {
  369. return protoimpl.X.MessageStringOf(x)
  370. }
  371. func (*UpdateIntPointResponse) ProtoMessage() {}
  372. func (x *UpdateIntPointResponse) ProtoReflect() protoreflect.Message {
  373. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[7]
  374. if protoimpl.UnsafeEnabled && x != nil {
  375. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  376. if ms.LoadMessageInfo() == nil {
  377. ms.StoreMessageInfo(mi)
  378. }
  379. return ms
  380. }
  381. return mi.MessageOf(x)
  382. }
  383. // Deprecated: Use UpdateIntPointResponse.ProtoReflect.Descriptor instead.
  384. func (*UpdateIntPointResponse) Descriptor() ([]byte, []int) {
  385. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{7}
  386. }
  387. func (x *UpdateIntPointResponse) GetResult() *IntPoint {
  388. if x != nil {
  389. return x.Result
  390. }
  391. return nil
  392. }
  393. type UpdateSetIntPointRequest struct {
  394. state protoimpl.MessageState
  395. sizeCache protoimpl.SizeCache
  396. unknownFields protoimpl.UnknownFields
  397. Objects []*IntPoint `protobuf:"bytes,1,rep,name=objects,proto3" json:"objects,omitempty"`
  398. Masks []*field_mask.FieldMask `protobuf:"bytes,2,rep,name=masks,proto3" json:"masks,omitempty"`
  399. }
  400. func (x *UpdateSetIntPointRequest) Reset() {
  401. *x = UpdateSetIntPointRequest{}
  402. if protoimpl.UnsafeEnabled {
  403. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[8]
  404. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  405. ms.StoreMessageInfo(mi)
  406. }
  407. }
  408. func (x *UpdateSetIntPointRequest) String() string {
  409. return protoimpl.X.MessageStringOf(x)
  410. }
  411. func (*UpdateSetIntPointRequest) ProtoMessage() {}
  412. func (x *UpdateSetIntPointRequest) ProtoReflect() protoreflect.Message {
  413. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[8]
  414. if protoimpl.UnsafeEnabled && x != nil {
  415. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  416. if ms.LoadMessageInfo() == nil {
  417. ms.StoreMessageInfo(mi)
  418. }
  419. return ms
  420. }
  421. return mi.MessageOf(x)
  422. }
  423. // Deprecated: Use UpdateSetIntPointRequest.ProtoReflect.Descriptor instead.
  424. func (*UpdateSetIntPointRequest) Descriptor() ([]byte, []int) {
  425. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{8}
  426. }
  427. func (x *UpdateSetIntPointRequest) GetObjects() []*IntPoint {
  428. if x != nil {
  429. return x.Objects
  430. }
  431. return nil
  432. }
  433. func (x *UpdateSetIntPointRequest) GetMasks() []*field_mask.FieldMask {
  434. if x != nil {
  435. return x.Masks
  436. }
  437. return nil
  438. }
  439. type UpdateSetIntPointResponse struct {
  440. state protoimpl.MessageState
  441. sizeCache protoimpl.SizeCache
  442. unknownFields protoimpl.UnknownFields
  443. Results []*IntPoint `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
  444. }
  445. func (x *UpdateSetIntPointResponse) Reset() {
  446. *x = UpdateSetIntPointResponse{}
  447. if protoimpl.UnsafeEnabled {
  448. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[9]
  449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  450. ms.StoreMessageInfo(mi)
  451. }
  452. }
  453. func (x *UpdateSetIntPointResponse) String() string {
  454. return protoimpl.X.MessageStringOf(x)
  455. }
  456. func (*UpdateSetIntPointResponse) ProtoMessage() {}
  457. func (x *UpdateSetIntPointResponse) ProtoReflect() protoreflect.Message {
  458. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[9]
  459. if protoimpl.UnsafeEnabled && x != nil {
  460. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  461. if ms.LoadMessageInfo() == nil {
  462. ms.StoreMessageInfo(mi)
  463. }
  464. return ms
  465. }
  466. return mi.MessageOf(x)
  467. }
  468. // Deprecated: Use UpdateSetIntPointResponse.ProtoReflect.Descriptor instead.
  469. func (*UpdateSetIntPointResponse) Descriptor() ([]byte, []int) {
  470. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{9}
  471. }
  472. func (x *UpdateSetIntPointResponse) GetResults() []*IntPoint {
  473. if x != nil {
  474. return x.Results
  475. }
  476. return nil
  477. }
  478. type DeleteIntPointRequest struct {
  479. state protoimpl.MessageState
  480. sizeCache protoimpl.SizeCache
  481. unknownFields protoimpl.UnknownFields
  482. // Only the id is needed for a delete request
  483. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  484. }
  485. func (x *DeleteIntPointRequest) Reset() {
  486. *x = DeleteIntPointRequest{}
  487. if protoimpl.UnsafeEnabled {
  488. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[10]
  489. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  490. ms.StoreMessageInfo(mi)
  491. }
  492. }
  493. func (x *DeleteIntPointRequest) String() string {
  494. return protoimpl.X.MessageStringOf(x)
  495. }
  496. func (*DeleteIntPointRequest) ProtoMessage() {}
  497. func (x *DeleteIntPointRequest) ProtoReflect() protoreflect.Message {
  498. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[10]
  499. if protoimpl.UnsafeEnabled && x != nil {
  500. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  501. if ms.LoadMessageInfo() == nil {
  502. ms.StoreMessageInfo(mi)
  503. }
  504. return ms
  505. }
  506. return mi.MessageOf(x)
  507. }
  508. // Deprecated: Use DeleteIntPointRequest.ProtoReflect.Descriptor instead.
  509. func (*DeleteIntPointRequest) Descriptor() ([]byte, []int) {
  510. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{10}
  511. }
  512. func (x *DeleteIntPointRequest) GetId() uint32 {
  513. if x != nil {
  514. return x.Id
  515. }
  516. return 0
  517. }
  518. type DeleteIntPointsRequest struct {
  519. state protoimpl.MessageState
  520. sizeCache protoimpl.SizeCache
  521. unknownFields protoimpl.UnknownFields
  522. // Only the id is needed for a delete request
  523. Ids []uint32 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
  524. }
  525. func (x *DeleteIntPointsRequest) Reset() {
  526. *x = DeleteIntPointsRequest{}
  527. if protoimpl.UnsafeEnabled {
  528. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[11]
  529. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  530. ms.StoreMessageInfo(mi)
  531. }
  532. }
  533. func (x *DeleteIntPointsRequest) String() string {
  534. return protoimpl.X.MessageStringOf(x)
  535. }
  536. func (*DeleteIntPointsRequest) ProtoMessage() {}
  537. func (x *DeleteIntPointsRequest) ProtoReflect() protoreflect.Message {
  538. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[11]
  539. if protoimpl.UnsafeEnabled && x != nil {
  540. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  541. if ms.LoadMessageInfo() == nil {
  542. ms.StoreMessageInfo(mi)
  543. }
  544. return ms
  545. }
  546. return mi.MessageOf(x)
  547. }
  548. // Deprecated: Use DeleteIntPointsRequest.ProtoReflect.Descriptor instead.
  549. func (*DeleteIntPointsRequest) Descriptor() ([]byte, []int) {
  550. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{11}
  551. }
  552. func (x *DeleteIntPointsRequest) GetIds() []uint32 {
  553. if x != nil {
  554. return x.Ids
  555. }
  556. return nil
  557. }
  558. // By convention, on DELETE no response data is given, so either a
  559. // google.protobuf.empty, or an empty struct is sufficient
  560. type DeleteIntPointResponse struct {
  561. state protoimpl.MessageState
  562. sizeCache protoimpl.SizeCache
  563. unknownFields protoimpl.UnknownFields
  564. }
  565. func (x *DeleteIntPointResponse) Reset() {
  566. *x = DeleteIntPointResponse{}
  567. if protoimpl.UnsafeEnabled {
  568. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[12]
  569. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  570. ms.StoreMessageInfo(mi)
  571. }
  572. }
  573. func (x *DeleteIntPointResponse) String() string {
  574. return protoimpl.X.MessageStringOf(x)
  575. }
  576. func (*DeleteIntPointResponse) ProtoMessage() {}
  577. func (x *DeleteIntPointResponse) ProtoReflect() protoreflect.Message {
  578. mi := &file_proto_gorm_api_proto_gorm_proto_msgTypes[12]
  579. if protoimpl.UnsafeEnabled && x != nil {
  580. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  581. if ms.LoadMessageInfo() == nil {
  582. ms.StoreMessageInfo(mi)
  583. }
  584. return ms
  585. }
  586. return mi.MessageOf(x)
  587. }
  588. // Deprecated: Use DeleteIntPointResponse.ProtoReflect.Descriptor instead.
  589. func (*DeleteIntPointResponse) Descriptor() ([]byte, []int) {
  590. return file_proto_gorm_api_proto_gorm_proto_rawDescGZIP(), []int{12}
  591. }
  592. var File_proto_gorm_api_proto_gorm_proto protoreflect.FileDescriptor
  593. var file_proto_gorm_api_proto_gorm_proto_rawDesc = []byte{
  594. 0x0a, 0x1f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2d, 0x67, 0x6f, 0x72, 0x6d, 0x2f, 0x61, 0x70, 0x69,
  595. 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2d, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  596. 0x6f, 0x12, 0x0a, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x1a, 0x1b, 0x67,
  597. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65,
  598. 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x12, 0x6f, 0x70, 0x74, 0x69,
  599. 0x6f, 0x6e, 0x73, 0x2f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20,
  600. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
  601. 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  602. 0x1a, 0x29, 0x61, 0x74, 0x6c, 0x61, 0x73, 0x2f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2f, 0x76, 0x31,
  603. 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72,
  604. 0x61, 0x74, 0x6f, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f,
  605. 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69,
  606. 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x67, 0x0a, 0x09, 0x57, 0x53, 0x4d,
  607. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64,
  608. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x12,
  609. 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61,
  610. 0x74, 0x68, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x69, 0x64, 0x18, 0x03,
  611. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x69, 0x64, 0x12, 0x12,
  612. 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x62, 0x6f,
  613. 0x64, 0x79, 0x22, 0x3e, 0x0a, 0x08, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x0e,
  614. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x0c,
  615. 0x0a, 0x01, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x78, 0x12, 0x0c, 0x0a, 0x01,
  616. 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x79, 0x3a, 0x06, 0xba, 0xb9, 0x19, 0x02,
  617. 0x08, 0x01, 0x22, 0x47, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50,
  618. 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x07, 0x70,
  619. 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70,
  620. 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69,
  621. 0x6e, 0x74, 0x52, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x22, 0x46, 0x0a, 0x16, 0x43,
  622. 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x73,
  623. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2c, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18,
  624. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f,
  625. 0x72, 0x6d, 0x2e, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73,
  626. 0x75, 0x6c, 0x74, 0x22, 0x5d, 0x0a, 0x13, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x74, 0x50, 0x6f,
  627. 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  628. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x36, 0x0a, 0x06, 0x66, 0x69,
  629. 0x65, 0x6c, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x74, 0x6c,
  630. 0x61, 0x73, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x65, 0x6c,
  631. 0x64, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c,
  632. 0x64, 0x73, 0x22, 0x44, 0x0a, 0x14, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69,
  633. 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2c, 0x0a, 0x06, 0x72, 0x65,
  634. 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72, 0x6f,
  635. 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74,
  636. 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x8c, 0x01, 0x0a, 0x15, 0x55, 0x70, 0x64,
  637. 0x61, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  638. 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x01, 0x20,
  639. 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d,
  640. 0x2e, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f,
  641. 0x61, 0x64, 0x12, 0x43, 0x0a, 0x0f, 0x67, 0x65, 0x72, 0x6f, 0x67, 0x65, 0x72, 0x69, 0x5f, 0x67,
  642. 0x65, 0x67, 0x65, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
  643. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69,
  644. 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0e, 0x67, 0x65, 0x72, 0x6f, 0x67, 0x65, 0x72,
  645. 0x69, 0x47, 0x65, 0x67, 0x65, 0x67, 0x65, 0x22, 0x46, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74,
  646. 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  647. 0x65, 0x12, 0x2c, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  648. 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x49,
  649. 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22,
  650. 0x7c, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x74, 0x49, 0x6e, 0x74, 0x50,
  651. 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x07, 0x6f,
  652. 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70,
  653. 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69,
  654. 0x6e, 0x74, 0x52, 0x07, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x30, 0x0a, 0x05, 0x6d,
  655. 0x61, 0x73, 0x6b, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
  656. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65,
  657. 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x05, 0x6d, 0x61, 0x73, 0x6b, 0x73, 0x22, 0x4b, 0x0a,
  658. 0x19, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x74, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69,
  659. 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2e, 0x0a, 0x07, 0x72, 0x65,
  660. 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x72,
  661. 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e,
  662. 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x27, 0x0a, 0x15, 0x44, 0x65,
  663. 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75,
  664. 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  665. 0x02, 0x69, 0x64, 0x22, 0x2a, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x74,
  666. 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a,
  667. 0x03, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22,
  668. 0x18, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e,
  669. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xb6, 0x04, 0x0a, 0x0f, 0x49, 0x6e,
  670. 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x6b, 0x0a,
  671. 0x06, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x21, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f,
  672. 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f,
  673. 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x70, 0x72, 0x6f,
  674. 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e,
  675. 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1a,
  676. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x14, 0x22, 0x09, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x6f, 0x69, 0x6e,
  677. 0x74, 0x3a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x61, 0x0a, 0x04, 0x52, 0x65,
  678. 0x61, 0x64, 0x12, 0x1f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e,
  679. 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75,
  680. 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d,
  681. 0x2e, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x73,
  682. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x16, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x10, 0x12, 0x0e, 0x2f,
  683. 0x76, 0x31, 0x2f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0x78, 0x0a,
  684. 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x21, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f,
  685. 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f,
  686. 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x70, 0x72, 0x6f,
  687. 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e,
  688. 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x27,
  689. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x32, 0x16, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x6f, 0x69, 0x6e,
  690. 0x74, 0x2f, 0x7b, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x2e, 0x69, 0x64, 0x7d, 0x3a, 0x07,
  691. 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x5a, 0x0a, 0x09, 0x55, 0x70, 0x64, 0x61, 0x74,
  692. 0x65, 0x53, 0x65, 0x74, 0x12, 0x24, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72,
  693. 0x6d, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x74, 0x49, 0x6e, 0x74, 0x50, 0x6f,
  694. 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x70, 0x72, 0x6f,
  695. 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65,
  696. 0x74, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  697. 0x65, 0x22, 0x00, 0x12, 0x75, 0x0a, 0x06, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x21, 0x2e,
  698. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,
  699. 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  700. 0x1a, 0x22, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x44, 0x65,
  701. 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,
  702. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x24, 0xba, 0xb9, 0x19, 0x0a, 0x0a, 0x08, 0x49, 0x6e, 0x74, 0x50,
  703. 0x6f, 0x69, 0x6e, 0x74, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x10, 0x2a, 0x0e, 0x2f, 0x76, 0x31, 0x2f,
  704. 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x1a, 0x06, 0xba, 0xb9, 0x19, 0x02,
  705. 0x08, 0x01, 0x32, 0xd4, 0x03, 0x0a, 0x0b, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x54,
  706. 0x78, 0x6e, 0x12, 0x51, 0x0a, 0x06, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x21, 0x2e, 0x70,
  707. 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  708. 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  709. 0x22, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x43, 0x72, 0x65,
  710. 0x61, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
  711. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x04, 0x52, 0x65, 0x61, 0x64, 0x12, 0x1f, 0x2e,
  712. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x49,
  713. 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20,
  714. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x52, 0x65, 0x61, 0x64,
  715. 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  716. 0x22, 0x00, 0x12, 0x51, 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x21, 0x2e, 0x70,
  717. 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  718. 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  719. 0x22, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x55, 0x70, 0x64,
  720. 0x61, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
  721. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x06, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12,
  722. 0x21, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x44, 0x65, 0x6c,
  723. 0x65, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  724. 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e,
  725. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65,
  726. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x0f, 0xba, 0xb9, 0x19, 0x0b, 0x0a, 0x09, 0x69, 0x6e,
  727. 0x74, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x64, 0x0a, 0x09, 0x44, 0x65, 0x6c, 0x65, 0x74,
  728. 0x65, 0x53, 0x65, 0x74, 0x12, 0x22, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72,
  729. 0x6d, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50, 0x6f, 0x69, 0x6e, 0x74,
  730. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  731. 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x6e, 0x74, 0x50,
  732. 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x0f, 0xba, 0xb9,
  733. 0x19, 0x0b, 0x0a, 0x09, 0x69, 0x6e, 0x74, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x1a, 0x0a, 0xba,
  734. 0xb9, 0x19, 0x06, 0x08, 0x01, 0x10, 0x01, 0x18, 0x01, 0x42, 0x21, 0x5a, 0x1f, 0x67, 0x69, 0x74,
  735. 0x2e, 0x61, 0x6c, 0x66, 0x69, 0x2e, 0x6c, 0x69, 0x2f, 0x67, 0x61, 0x6d, 0x65, 0x6c, 0x61, 0x6e,
  736. 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x67, 0x6f, 0x72, 0x6d, 0x62, 0x06, 0x70, 0x72,
  737. 0x6f, 0x74, 0x6f, 0x33,
  738. }
  739. var (
  740. file_proto_gorm_api_proto_gorm_proto_rawDescOnce sync.Once
  741. file_proto_gorm_api_proto_gorm_proto_rawDescData = file_proto_gorm_api_proto_gorm_proto_rawDesc
  742. )
  743. func file_proto_gorm_api_proto_gorm_proto_rawDescGZIP() []byte {
  744. file_proto_gorm_api_proto_gorm_proto_rawDescOnce.Do(func() {
  745. file_proto_gorm_api_proto_gorm_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto_gorm_api_proto_gorm_proto_rawDescData)
  746. })
  747. return file_proto_gorm_api_proto_gorm_proto_rawDescData
  748. }
  749. var file_proto_gorm_api_proto_gorm_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
  750. var file_proto_gorm_api_proto_gorm_proto_goTypes = []interface{}{
  751. (*WSMessage)(nil), // 0: proto_gorm.WSMessage
  752. (*IntPoint)(nil), // 1: proto_gorm.IntPoint
  753. (*CreateIntPointRequest)(nil), // 2: proto_gorm.CreateIntPointRequest
  754. (*CreateIntPointResponse)(nil), // 3: proto_gorm.CreateIntPointResponse
  755. (*ReadIntPointRequest)(nil), // 4: proto_gorm.ReadIntPointRequest
  756. (*ReadIntPointResponse)(nil), // 5: proto_gorm.ReadIntPointResponse
  757. (*UpdateIntPointRequest)(nil), // 6: proto_gorm.UpdateIntPointRequest
  758. (*UpdateIntPointResponse)(nil), // 7: proto_gorm.UpdateIntPointResponse
  759. (*UpdateSetIntPointRequest)(nil), // 8: proto_gorm.UpdateSetIntPointRequest
  760. (*UpdateSetIntPointResponse)(nil), // 9: proto_gorm.UpdateSetIntPointResponse
  761. (*DeleteIntPointRequest)(nil), // 10: proto_gorm.DeleteIntPointRequest
  762. (*DeleteIntPointsRequest)(nil), // 11: proto_gorm.DeleteIntPointsRequest
  763. (*DeleteIntPointResponse)(nil), // 12: proto_gorm.DeleteIntPointResponse
  764. (*query.FieldSelection)(nil), // 13: atlas.query.v1.FieldSelection
  765. (*field_mask.FieldMask)(nil), // 14: google.protobuf.FieldMask
  766. }
  767. var file_proto_gorm_api_proto_gorm_proto_depIdxs = []int32{
  768. 1, // 0: proto_gorm.CreateIntPointRequest.payload:type_name -> proto_gorm.IntPoint
  769. 1, // 1: proto_gorm.CreateIntPointResponse.result:type_name -> proto_gorm.IntPoint
  770. 13, // 2: proto_gorm.ReadIntPointRequest.fields:type_name -> atlas.query.v1.FieldSelection
  771. 1, // 3: proto_gorm.ReadIntPointResponse.result:type_name -> proto_gorm.IntPoint
  772. 1, // 4: proto_gorm.UpdateIntPointRequest.payload:type_name -> proto_gorm.IntPoint
  773. 14, // 5: proto_gorm.UpdateIntPointRequest.gerogeri_gegege:type_name -> google.protobuf.FieldMask
  774. 1, // 6: proto_gorm.UpdateIntPointResponse.result:type_name -> proto_gorm.IntPoint
  775. 1, // 7: proto_gorm.UpdateSetIntPointRequest.objects:type_name -> proto_gorm.IntPoint
  776. 14, // 8: proto_gorm.UpdateSetIntPointRequest.masks:type_name -> google.protobuf.FieldMask
  777. 1, // 9: proto_gorm.UpdateSetIntPointResponse.results:type_name -> proto_gorm.IntPoint
  778. 2, // 10: proto_gorm.IntPointService.Create:input_type -> proto_gorm.CreateIntPointRequest
  779. 4, // 11: proto_gorm.IntPointService.Read:input_type -> proto_gorm.ReadIntPointRequest
  780. 6, // 12: proto_gorm.IntPointService.Update:input_type -> proto_gorm.UpdateIntPointRequest
  781. 8, // 13: proto_gorm.IntPointService.UpdateSet:input_type -> proto_gorm.UpdateSetIntPointRequest
  782. 10, // 14: proto_gorm.IntPointService.Delete:input_type -> proto_gorm.DeleteIntPointRequest
  783. 2, // 15: proto_gorm.IntPointTxn.Create:input_type -> proto_gorm.CreateIntPointRequest
  784. 4, // 16: proto_gorm.IntPointTxn.Read:input_type -> proto_gorm.ReadIntPointRequest
  785. 6, // 17: proto_gorm.IntPointTxn.Update:input_type -> proto_gorm.UpdateIntPointRequest
  786. 10, // 18: proto_gorm.IntPointTxn.Delete:input_type -> proto_gorm.DeleteIntPointRequest
  787. 11, // 19: proto_gorm.IntPointTxn.DeleteSet:input_type -> proto_gorm.DeleteIntPointsRequest
  788. 3, // 20: proto_gorm.IntPointService.Create:output_type -> proto_gorm.CreateIntPointResponse
  789. 5, // 21: proto_gorm.IntPointService.Read:output_type -> proto_gorm.ReadIntPointResponse
  790. 7, // 22: proto_gorm.IntPointService.Update:output_type -> proto_gorm.UpdateIntPointResponse
  791. 9, // 23: proto_gorm.IntPointService.UpdateSet:output_type -> proto_gorm.UpdateSetIntPointResponse
  792. 12, // 24: proto_gorm.IntPointService.Delete:output_type -> proto_gorm.DeleteIntPointResponse
  793. 3, // 25: proto_gorm.IntPointTxn.Create:output_type -> proto_gorm.CreateIntPointResponse
  794. 5, // 26: proto_gorm.IntPointTxn.Read:output_type -> proto_gorm.ReadIntPointResponse
  795. 7, // 27: proto_gorm.IntPointTxn.Update:output_type -> proto_gorm.UpdateIntPointResponse
  796. 12, // 28: proto_gorm.IntPointTxn.Delete:output_type -> proto_gorm.DeleteIntPointResponse
  797. 12, // 29: proto_gorm.IntPointTxn.DeleteSet:output_type -> proto_gorm.DeleteIntPointResponse
  798. 20, // [20:30] is the sub-list for method output_type
  799. 10, // [10:20] is the sub-list for method input_type
  800. 10, // [10:10] is the sub-list for extension type_name
  801. 10, // [10:10] is the sub-list for extension extendee
  802. 0, // [0:10] is the sub-list for field type_name
  803. }
  804. func init() { file_proto_gorm_api_proto_gorm_proto_init() }
  805. func file_proto_gorm_api_proto_gorm_proto_init() {
  806. if File_proto_gorm_api_proto_gorm_proto != nil {
  807. return
  808. }
  809. if !protoimpl.UnsafeEnabled {
  810. file_proto_gorm_api_proto_gorm_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  811. switch v := v.(*WSMessage); i {
  812. case 0:
  813. return &v.state
  814. case 1:
  815. return &v.sizeCache
  816. case 2:
  817. return &v.unknownFields
  818. default:
  819. return nil
  820. }
  821. }
  822. file_proto_gorm_api_proto_gorm_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  823. switch v := v.(*IntPoint); i {
  824. case 0:
  825. return &v.state
  826. case 1:
  827. return &v.sizeCache
  828. case 2:
  829. return &v.unknownFields
  830. default:
  831. return nil
  832. }
  833. }
  834. file_proto_gorm_api_proto_gorm_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  835. switch v := v.(*CreateIntPointRequest); i {
  836. case 0:
  837. return &v.state
  838. case 1:
  839. return &v.sizeCache
  840. case 2:
  841. return &v.unknownFields
  842. default:
  843. return nil
  844. }
  845. }
  846. file_proto_gorm_api_proto_gorm_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  847. switch v := v.(*CreateIntPointResponse); i {
  848. case 0:
  849. return &v.state
  850. case 1:
  851. return &v.sizeCache
  852. case 2:
  853. return &v.unknownFields
  854. default:
  855. return nil
  856. }
  857. }
  858. file_proto_gorm_api_proto_gorm_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  859. switch v := v.(*ReadIntPointRequest); i {
  860. case 0:
  861. return &v.state
  862. case 1:
  863. return &v.sizeCache
  864. case 2:
  865. return &v.unknownFields
  866. default:
  867. return nil
  868. }
  869. }
  870. file_proto_gorm_api_proto_gorm_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  871. switch v := v.(*ReadIntPointResponse); i {
  872. case 0:
  873. return &v.state
  874. case 1:
  875. return &v.sizeCache
  876. case 2:
  877. return &v.unknownFields
  878. default:
  879. return nil
  880. }
  881. }
  882. file_proto_gorm_api_proto_gorm_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  883. switch v := v.(*UpdateIntPointRequest); i {
  884. case 0:
  885. return &v.state
  886. case 1:
  887. return &v.sizeCache
  888. case 2:
  889. return &v.unknownFields
  890. default:
  891. return nil
  892. }
  893. }
  894. file_proto_gorm_api_proto_gorm_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  895. switch v := v.(*UpdateIntPointResponse); i {
  896. case 0:
  897. return &v.state
  898. case 1:
  899. return &v.sizeCache
  900. case 2:
  901. return &v.unknownFields
  902. default:
  903. return nil
  904. }
  905. }
  906. file_proto_gorm_api_proto_gorm_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  907. switch v := v.(*UpdateSetIntPointRequest); i {
  908. case 0:
  909. return &v.state
  910. case 1:
  911. return &v.sizeCache
  912. case 2:
  913. return &v.unknownFields
  914. default:
  915. return nil
  916. }
  917. }
  918. file_proto_gorm_api_proto_gorm_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  919. switch v := v.(*UpdateSetIntPointResponse); i {
  920. case 0:
  921. return &v.state
  922. case 1:
  923. return &v.sizeCache
  924. case 2:
  925. return &v.unknownFields
  926. default:
  927. return nil
  928. }
  929. }
  930. file_proto_gorm_api_proto_gorm_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  931. switch v := v.(*DeleteIntPointRequest); i {
  932. case 0:
  933. return &v.state
  934. case 1:
  935. return &v.sizeCache
  936. case 2:
  937. return &v.unknownFields
  938. default:
  939. return nil
  940. }
  941. }
  942. file_proto_gorm_api_proto_gorm_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  943. switch v := v.(*DeleteIntPointsRequest); i {
  944. case 0:
  945. return &v.state
  946. case 1:
  947. return &v.sizeCache
  948. case 2:
  949. return &v.unknownFields
  950. default:
  951. return nil
  952. }
  953. }
  954. file_proto_gorm_api_proto_gorm_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  955. switch v := v.(*DeleteIntPointResponse); i {
  956. case 0:
  957. return &v.state
  958. case 1:
  959. return &v.sizeCache
  960. case 2:
  961. return &v.unknownFields
  962. default:
  963. return nil
  964. }
  965. }
  966. }
  967. type x struct{}
  968. out := protoimpl.TypeBuilder{
  969. File: protoimpl.DescBuilder{
  970. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  971. RawDescriptor: file_proto_gorm_api_proto_gorm_proto_rawDesc,
  972. NumEnums: 0,
  973. NumMessages: 13,
  974. NumExtensions: 0,
  975. NumServices: 2,
  976. },
  977. GoTypes: file_proto_gorm_api_proto_gorm_proto_goTypes,
  978. DependencyIndexes: file_proto_gorm_api_proto_gorm_proto_depIdxs,
  979. MessageInfos: file_proto_gorm_api_proto_gorm_proto_msgTypes,
  980. }.Build()
  981. File_proto_gorm_api_proto_gorm_proto = out.File
  982. file_proto_gorm_api_proto_gorm_proto_rawDesc = nil
  983. file_proto_gorm_api_proto_gorm_proto_goTypes = nil
  984. file_proto_gorm_api_proto_gorm_proto_depIdxs = nil
  985. }