-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmaprdb-server.pb.go
2308 lines (2042 loc) · 82.6 KB
/
maprdb-server.pb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.25.0-devel
// protoc v3.14.0
// source: maprdb-server.proto
package private_maprdb_go_client
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
//*
// RPC response error codes. POSIX error codes are used where appropriate.
//
// Extended error codes, those that can not be mapped to a POSIX error code, begins at 256.
type ErrorCode int32
const (
//*
// No error, operation completed successfully.
ErrorCode_NO_ERROR ErrorCode = 0
//*
// Specified table does not exist
ErrorCode_TABLE_NOT_FOUND ErrorCode = 2
//*
// An I/O error occurred on the server(s)
ErrorCode_IO_ERROR ErrorCode = 5
//*
// The operation resulted in server(s) running out of memory
ErrorCode_OUT_OF_MEMORY ErrorCode = 12
//*
// User does not have sufficient permission to execute the operation.
ErrorCode_ACCESS_DENIED ErrorCode = 13
//*
// The specified table already exists.
ErrorCode_TABLE_ALREADY_EXISTS ErrorCode = 17
//*
// One or more request parameter was invalid.
// This error code should be used whenever a request parameter was unrecognized or outside a valid domain.
// For example, an unrecognized enum value was supplied for InsertMode.
ErrorCode_INVALID_ARGUMENT ErrorCode = 22
//*
// Requested operation is not supported by this server.
// This error code should be used if a known, valid operation is not supported by the current service.
ErrorCode_UNSUPPORTED_OPERATION ErrorCode = 38
//*
// Catch-all for all undefined errors on server.
ErrorCode_UNKNOWN_ERROR ErrorCode = 256
//
// Extended error codes.
//
// TODO: renumber the error codes before release
//
ErrorCode_UNKNOWN_PAYLOAD_ENCODING ErrorCode = 260 // specified payload encoding is not supported
ErrorCode_CLUSTER_NOT_FOUND ErrorCode = 270 // specified cluster does not exist
ErrorCode_PATH_NOT_FOUND ErrorCode = 271 // parent path of the specified table does not exist
ErrorCode_DOCUMENT_ALREADY_EXISTS ErrorCode = 280 // a document with the specified _id already exist in the store
ErrorCode_DOCUMENT_NOT_FOUND ErrorCode = 281 // a document with the specified _id wasn't found in the store
ErrorCode_ENCODING_ERROR ErrorCode = 290 // an error occurred while encoding an OJAI object
ErrorCode_DECODING_ERROR ErrorCode = 291 // the supplied OJAI object could not be decoded
ErrorCode_ILLEGAL_MUTATION ErrorCode = 292 // A mutation operation could not be applied
)
// Enum value maps for ErrorCode.
var (
ErrorCode_name = map[int32]string{
0: "NO_ERROR",
2: "TABLE_NOT_FOUND",
5: "IO_ERROR",
12: "OUT_OF_MEMORY",
13: "ACCESS_DENIED",
17: "TABLE_ALREADY_EXISTS",
22: "INVALID_ARGUMENT",
38: "UNSUPPORTED_OPERATION",
256: "UNKNOWN_ERROR",
260: "UNKNOWN_PAYLOAD_ENCODING",
270: "CLUSTER_NOT_FOUND",
271: "PATH_NOT_FOUND",
280: "DOCUMENT_ALREADY_EXISTS",
281: "DOCUMENT_NOT_FOUND",
290: "ENCODING_ERROR",
291: "DECODING_ERROR",
292: "ILLEGAL_MUTATION",
}
ErrorCode_value = map[string]int32{
"NO_ERROR": 0,
"TABLE_NOT_FOUND": 2,
"IO_ERROR": 5,
"OUT_OF_MEMORY": 12,
"ACCESS_DENIED": 13,
"TABLE_ALREADY_EXISTS": 17,
"INVALID_ARGUMENT": 22,
"UNSUPPORTED_OPERATION": 38,
"UNKNOWN_ERROR": 256,
"UNKNOWN_PAYLOAD_ENCODING": 260,
"CLUSTER_NOT_FOUND": 270,
"PATH_NOT_FOUND": 271,
"DOCUMENT_ALREADY_EXISTS": 280,
"DOCUMENT_NOT_FOUND": 281,
"ENCODING_ERROR": 290,
"DECODING_ERROR": 291,
"ILLEGAL_MUTATION": 292,
}
)
func (x ErrorCode) Enum() *ErrorCode {
p := new(ErrorCode)
*p = x
return p
}
func (x ErrorCode) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (ErrorCode) Descriptor() protoreflect.EnumDescriptor {
return file_maprdb_server_proto_enumTypes[0].Descriptor()
}
func (ErrorCode) Type() protoreflect.EnumType {
return &file_maprdb_server_proto_enumTypes[0]
}
func (x ErrorCode) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use ErrorCode.Descriptor instead.
func (ErrorCode) EnumDescriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{0}
}
//*
// ENUM indicating the encoding scheme of the OJAI objects in RPC request/response.
// Currently only JSON encoding is supported.
type PayloadEncoding int32
const (
//*
// Invalid, unknown encoding
PayloadEncoding_UNKNOWN_ENCODING PayloadEncoding = 0
//*
// Payload is encoded as JSON string
PayloadEncoding_JSON_ENCODING PayloadEncoding = 1
)
// Enum value maps for PayloadEncoding.
var (
PayloadEncoding_name = map[int32]string{
0: "UNKNOWN_ENCODING",
1: "JSON_ENCODING",
}
PayloadEncoding_value = map[string]int32{
"UNKNOWN_ENCODING": 0,
"JSON_ENCODING": 1,
}
)
func (x PayloadEncoding) Enum() *PayloadEncoding {
p := new(PayloadEncoding)
*p = x
return p
}
func (x PayloadEncoding) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (PayloadEncoding) Descriptor() protoreflect.EnumDescriptor {
return file_maprdb_server_proto_enumTypes[1].Descriptor()
}
func (PayloadEncoding) Type() protoreflect.EnumType {
return &file_maprdb_server_proto_enumTypes[1]
}
func (x PayloadEncoding) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use PayloadEncoding.Descriptor instead.
func (PayloadEncoding) EnumDescriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{1}
}
type InsertMode int32
const (
//*
// Invalid, unknown mode
InsertMode_UNKNOWN_MODE InsertMode = 0
//*
// Insert this document WHETHER OR NOT a document with the same _id exist in the store
InsertMode_INSERT_OR_REPLACE InsertMode = 1
//*
// Insert this document ONLY IF another document with the same _id DOES NOT exist in the store
InsertMode_INSERT InsertMode = 2
//*
// Insert this document ONLY IF a document with the same _id EXISTS in the store
InsertMode_REPLACE InsertMode = 3
)
// Enum value maps for InsertMode.
var (
InsertMode_name = map[int32]string{
0: "UNKNOWN_MODE",
1: "INSERT_OR_REPLACE",
2: "INSERT",
3: "REPLACE",
}
InsertMode_value = map[string]int32{
"UNKNOWN_MODE": 0,
"INSERT_OR_REPLACE": 1,
"INSERT": 2,
"REPLACE": 3,
}
)
func (x InsertMode) Enum() *InsertMode {
p := new(InsertMode)
*p = x
return p
}
func (x InsertMode) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (InsertMode) Descriptor() protoreflect.EnumDescriptor {
return file_maprdb_server_proto_enumTypes[2].Descriptor()
}
func (InsertMode) Type() protoreflect.EnumType {
return &file_maprdb_server_proto_enumTypes[2]
}
func (x InsertMode) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use InsertMode.Descriptor instead.
func (InsertMode) EnumDescriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{2}
}
type FindResponseType int32
const (
//*
// Invalid, unknown type
FindResponseType_UNKNOWN_TYPE FindResponseType = 0
//*
// Indicates that the current response contains a QueryResult Document
FindResponseType_RESULT_DOCUMENT FindResponseType = 1
//*
// Indicates that the current response contains a Query plan
FindResponseType_QUERY_PLAN FindResponseType = 2
)
// Enum value maps for FindResponseType.
var (
FindResponseType_name = map[int32]string{
0: "UNKNOWN_TYPE",
1: "RESULT_DOCUMENT",
2: "QUERY_PLAN",
}
FindResponseType_value = map[string]int32{
"UNKNOWN_TYPE": 0,
"RESULT_DOCUMENT": 1,
"QUERY_PLAN": 2,
}
)
func (x FindResponseType) Enum() *FindResponseType {
p := new(FindResponseType)
*p = x
return p
}
func (x FindResponseType) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (FindResponseType) Descriptor() protoreflect.EnumDescriptor {
return file_maprdb_server_proto_enumTypes[3].Descriptor()
}
func (FindResponseType) Type() protoreflect.EnumType {
return &file_maprdb_server_proto_enumTypes[3]
}
func (x FindResponseType) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use FindResponseType.Descriptor instead.
func (FindResponseType) EnumDescriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{3}
}
//*
// Protobuf message that encapsulates RPC operation error, if any.
// Each RPC response should include RpcError message, with `NO_ERROR` indicating success
type RpcError struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
//*
// Error code for the RPC. `NO_ERROR` indicates RPC completed successfully
ErrCode ErrorCode `protobuf:"varint,1,opt,name=err_code,json=errCode,proto3,enum=com.mapr.data.db.ErrorCode" json:"err_code,omitempty"`
//*
// NULL if `err` is `NO_ERROR`
ErrorMessage string `protobuf:"bytes,2,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"`
//*
// NULL if `err` is `NO_ERROR`
JavaStackTrace string `protobuf:"bytes,3,opt,name=java_stack_trace,json=javaStackTrace,proto3" json:"java_stack_trace,omitempty"`
}
func (x *RpcError) Reset() {
*x = RpcError{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RpcError) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RpcError) ProtoMessage() {}
func (x *RpcError) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RpcError.ProtoReflect.Descriptor instead.
func (*RpcError) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{0}
}
func (x *RpcError) GetErrCode() ErrorCode {
if x != nil {
return x.ErrCode
}
return ErrorCode_NO_ERROR
}
func (x *RpcError) GetErrorMessage() string {
if x != nil {
return x.ErrorMessage
}
return ""
}
func (x *RpcError) GetJavaStackTrace() string {
if x != nil {
return x.JavaStackTrace
}
return ""
}
type PingRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *PingRequest) Reset() {
*x = PingRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PingRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PingRequest) ProtoMessage() {}
func (x *PingRequest) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.
func (*PingRequest) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{1}
}
type PingResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *PingResponse) Reset() {
*x = PingResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PingResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PingResponse) ProtoMessage() {}
func (x *PingResponse) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.
func (*PingResponse) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{2}
}
type CreateTableRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
TablePath string `protobuf:"bytes,1,opt,name=table_path,json=tablePath,proto3" json:"table_path,omitempty"`
}
func (x *CreateTableRequest) Reset() {
*x = CreateTableRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateTableRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateTableRequest) ProtoMessage() {}
func (x *CreateTableRequest) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateTableRequest.ProtoReflect.Descriptor instead.
func (*CreateTableRequest) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{3}
}
func (x *CreateTableRequest) GetTablePath() string {
if x != nil {
return x.TablePath
}
return ""
}
type CreateTableResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
//*
// `NO_ERROR` - if the table was created successfully,
// `TABLE_ALREADY_EXISTS` - if a table with the same path already exists
Error *RpcError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
}
func (x *CreateTableResponse) Reset() {
*x = CreateTableResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateTableResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateTableResponse) ProtoMessage() {}
func (x *CreateTableResponse) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateTableResponse.ProtoReflect.Descriptor instead.
func (*CreateTableResponse) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{4}
}
func (x *CreateTableResponse) GetError() *RpcError {
if x != nil {
return x.Error
}
return nil
}
type DeleteTableRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
TablePath string `protobuf:"bytes,1,opt,name=table_path,json=tablePath,proto3" json:"table_path,omitempty"`
}
func (x *DeleteTableRequest) Reset() {
*x = DeleteTableRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DeleteTableRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DeleteTableRequest) ProtoMessage() {}
func (x *DeleteTableRequest) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DeleteTableRequest.ProtoReflect.Descriptor instead.
func (*DeleteTableRequest) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{5}
}
func (x *DeleteTableRequest) GetTablePath() string {
if x != nil {
return x.TablePath
}
return ""
}
type DeleteTableResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
//*
// `NO_ERROR` - if the table exists
// `TABLE_NOT_FOUND` - if the table does not exist
Error *RpcError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
}
func (x *DeleteTableResponse) Reset() {
*x = DeleteTableResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DeleteTableResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DeleteTableResponse) ProtoMessage() {}
func (x *DeleteTableResponse) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DeleteTableResponse.ProtoReflect.Descriptor instead.
func (*DeleteTableResponse) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{6}
}
func (x *DeleteTableResponse) GetError() *RpcError {
if x != nil {
return x.Error
}
return nil
}
type TableExistsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
TablePath string `protobuf:"bytes,1,opt,name=table_path,json=tablePath,proto3" json:"table_path,omitempty"`
}
func (x *TableExistsRequest) Reset() {
*x = TableExistsRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TableExistsRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TableExistsRequest) ProtoMessage() {}
func (x *TableExistsRequest) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TableExistsRequest.ProtoReflect.Descriptor instead.
func (*TableExistsRequest) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{7}
}
func (x *TableExistsRequest) GetTablePath() string {
if x != nil {
return x.TablePath
}
return ""
}
type TableExistsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
//*
// `NO_ERROR` - if the table exists
// `TABLE_NOT_FOUND` - if the table does not exist
Error *RpcError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
}
func (x *TableExistsResponse) Reset() {
*x = TableExistsResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TableExistsResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TableExistsResponse) ProtoMessage() {}
func (x *TableExistsResponse) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TableExistsResponse.ProtoReflect.Descriptor instead.
func (*TableExistsResponse) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{8}
}
func (x *TableExistsResponse) GetError() *RpcError {
if x != nil {
return x.Error
}
return nil
}
type InsertOrReplaceRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
TablePath string `protobuf:"bytes,1,opt,name=table_path,json=tablePath,proto3" json:"table_path,omitempty"`
InsertMode InsertMode `protobuf:"varint,2,opt,name=insert_mode,json=insertMode,proto3,enum=com.mapr.data.db.InsertMode" json:"insert_mode,omitempty"`
PayloadEncoding PayloadEncoding `protobuf:"varint,3,opt,name=payload_encoding,json=payloadEncoding,proto3,enum=com.mapr.data.db.PayloadEncoding" json:"payload_encoding,omitempty"`
// Types that are assignable to Condition:
// *InsertOrReplaceRequest_JsonCondition
Condition isInsertOrReplaceRequest_Condition `protobuf_oneof:"condition"`
// Types that are assignable to Data:
// *InsertOrReplaceRequest_JsonDocument
Data isInsertOrReplaceRequest_Data `protobuf_oneof:"data"`
}
func (x *InsertOrReplaceRequest) Reset() {
*x = InsertOrReplaceRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *InsertOrReplaceRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*InsertOrReplaceRequest) ProtoMessage() {}
func (x *InsertOrReplaceRequest) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use InsertOrReplaceRequest.ProtoReflect.Descriptor instead.
func (*InsertOrReplaceRequest) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{9}
}
func (x *InsertOrReplaceRequest) GetTablePath() string {
if x != nil {
return x.TablePath
}
return ""
}
func (x *InsertOrReplaceRequest) GetInsertMode() InsertMode {
if x != nil {
return x.InsertMode
}
return InsertMode_UNKNOWN_MODE
}
func (x *InsertOrReplaceRequest) GetPayloadEncoding() PayloadEncoding {
if x != nil {
return x.PayloadEncoding
}
return PayloadEncoding_UNKNOWN_ENCODING
}
func (m *InsertOrReplaceRequest) GetCondition() isInsertOrReplaceRequest_Condition {
if m != nil {
return m.Condition
}
return nil
}
func (x *InsertOrReplaceRequest) GetJsonCondition() string {
if x, ok := x.GetCondition().(*InsertOrReplaceRequest_JsonCondition); ok {
return x.JsonCondition
}
return ""
}
func (m *InsertOrReplaceRequest) GetData() isInsertOrReplaceRequest_Data {
if m != nil {
return m.Data
}
return nil
}
func (x *InsertOrReplaceRequest) GetJsonDocument() string {
if x, ok := x.GetData().(*InsertOrReplaceRequest_JsonDocument); ok {
return x.JsonDocument
}
return ""
}
type isInsertOrReplaceRequest_Condition interface {
isInsertOrReplaceRequest_Condition()
}
type InsertOrReplaceRequest_JsonCondition struct {
//*
// <b>[Optional]</b><p/>
// Contains JSON encoded OJAI QueryCondition when payload_encoding is `JSON_ENCODING`.<p/>
// This should only be specified if the `insert_mode` == REPLACE
JsonCondition string `protobuf:"bytes,4,opt,name=json_condition,json=jsonCondition,proto3,oneof"`
}
func (*InsertOrReplaceRequest_JsonCondition) isInsertOrReplaceRequest_Condition() {}
type isInsertOrReplaceRequest_Data interface {
isInsertOrReplaceRequest_Data()
}
type InsertOrReplaceRequest_JsonDocument struct {
//*
// <b>[Required]</b><p/>
// Contains JSON encoded OJAI Document if the payload_encoding is `JSON_ENCODING`
JsonDocument string `protobuf:"bytes,30,opt,name=json_document,json=jsonDocument,proto3,oneof"`
}
func (*InsertOrReplaceRequest_JsonDocument) isInsertOrReplaceRequest_Data() {}
type InsertOrReplaceResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Error *RpcError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
}
func (x *InsertOrReplaceResponse) Reset() {
*x = InsertOrReplaceResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *InsertOrReplaceResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*InsertOrReplaceResponse) ProtoMessage() {}
func (x *InsertOrReplaceResponse) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use InsertOrReplaceResponse.ProtoReflect.Descriptor instead.
func (*InsertOrReplaceResponse) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{10}
}
func (x *InsertOrReplaceResponse) GetError() *RpcError {
if x != nil {
return x.Error
}
return nil
}
type FindByIdRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
TablePath string `protobuf:"bytes,1,opt,name=table_path,json=tablePath,proto3" json:"table_path,omitempty"`
PayloadEncoding PayloadEncoding `protobuf:"varint,2,opt,name=payload_encoding,json=payloadEncoding,proto3,enum=com.mapr.data.db.PayloadEncoding" json:"payload_encoding,omitempty"`
//*
// <b>[Optional]</b><p/>
// List of OJAI FieldPaths that should be included in the returned document
Projections []string `protobuf:"bytes,3,rep,name=projections,proto3" json:"projections,omitempty"`
// Types that are assignable to Condition:
// *FindByIdRequest_JsonCondition
Condition isFindByIdRequest_Condition `protobuf_oneof:"condition"`
// Types that are assignable to Document:
// *FindByIdRequest_JsonDocument
Document isFindByIdRequest_Document `protobuf_oneof:"document"`
}
func (x *FindByIdRequest) Reset() {
*x = FindByIdRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_maprdb_server_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FindByIdRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FindByIdRequest) ProtoMessage() {}
func (x *FindByIdRequest) ProtoReflect() protoreflect.Message {
mi := &file_maprdb_server_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FindByIdRequest.ProtoReflect.Descriptor instead.
func (*FindByIdRequest) Descriptor() ([]byte, []int) {
return file_maprdb_server_proto_rawDescGZIP(), []int{11}
}
func (x *FindByIdRequest) GetTablePath() string {
if x != nil {
return x.TablePath
}
return ""
}
func (x *FindByIdRequest) GetPayloadEncoding() PayloadEncoding {
if x != nil {
return x.PayloadEncoding
}
return PayloadEncoding_UNKNOWN_ENCODING
}
func (x *FindByIdRequest) GetProjections() []string {
if x != nil {
return x.Projections
}
return nil
}
func (m *FindByIdRequest) GetCondition() isFindByIdRequest_Condition {
if m != nil {
return m.Condition
}
return nil
}