forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.pb.go
712 lines (609 loc) · 25.7 KB
/
data.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
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: data.proto
package rest
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import tree "github.com/pydio/cells/common/proto/tree"
import docstore "github.com/pydio/cells/common/proto/docstore"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
type SearchResults struct {
Results []*tree.Node `protobuf:"bytes,1,rep,name=Results" json:"Results,omitempty"`
Total int32 `protobuf:"varint,2,opt,name=Total" json:"Total,omitempty"`
}
func (m *SearchResults) Reset() { *m = SearchResults{} }
func (m *SearchResults) String() string { return proto.CompactTextString(m) }
func (*SearchResults) ProtoMessage() {}
func (*SearchResults) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{0} }
func (m *SearchResults) GetResults() []*tree.Node {
if m != nil {
return m.Results
}
return nil
}
func (m *SearchResults) GetTotal() int32 {
if m != nil {
return m.Total
}
return 0
}
// Generic container for responses sending pagination information
type Pagination struct {
// Current Limit parameter, either passed by request or default value
Limit int32 `protobuf:"varint,1,opt,name=Limit" json:"Limit,omitempty"`
// Current Offset value
CurrentOffset int32 `protobuf:"varint,2,opt,name=CurrentOffset" json:"CurrentOffset,omitempty"`
// Total number of records
Total int32 `protobuf:"varint,3,opt,name=Total" json:"Total,omitempty"`
// Current number of Page
CurrentPage int32 `protobuf:"varint,4,opt,name=CurrentPage" json:"CurrentPage,omitempty"`
// Number of detected pages
TotalPages int32 `protobuf:"varint,5,opt,name=TotalPages" json:"TotalPages,omitempty"`
// Offset value for next page if there is one
NextOffset int32 `protobuf:"varint,6,opt,name=NextOffset" json:"NextOffset,omitempty"`
// Offset value for previous page, if there is one
PrevOffset int32 `protobuf:"varint,7,opt,name=PrevOffset" json:"PrevOffset,omitempty"`
}
func (m *Pagination) Reset() { *m = Pagination{} }
func (m *Pagination) String() string { return proto.CompactTextString(m) }
func (*Pagination) ProtoMessage() {}
func (*Pagination) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{1} }
func (m *Pagination) GetLimit() int32 {
if m != nil {
return m.Limit
}
return 0
}
func (m *Pagination) GetCurrentOffset() int32 {
if m != nil {
return m.CurrentOffset
}
return 0
}
func (m *Pagination) GetTotal() int32 {
if m != nil {
return m.Total
}
return 0
}
func (m *Pagination) GetCurrentPage() int32 {
if m != nil {
return m.CurrentPage
}
return 0
}
func (m *Pagination) GetTotalPages() int32 {
if m != nil {
return m.TotalPages
}
return 0
}
func (m *Pagination) GetNextOffset() int32 {
if m != nil {
return m.NextOffset
}
return 0
}
func (m *Pagination) GetPrevOffset() int32 {
if m != nil {
return m.PrevOffset
}
return 0
}
type Metadata struct {
Namespace string `protobuf:"bytes,1,opt,name=Namespace" json:"Namespace,omitempty"`
JsonMeta string `protobuf:"bytes,2,opt,name=JsonMeta" json:"JsonMeta,omitempty"`
}
func (m *Metadata) Reset() { *m = Metadata{} }
func (m *Metadata) String() string { return proto.CompactTextString(m) }
func (*Metadata) ProtoMessage() {}
func (*Metadata) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{2} }
func (m *Metadata) GetNamespace() string {
if m != nil {
return m.Namespace
}
return ""
}
func (m *Metadata) GetJsonMeta() string {
if m != nil {
return m.JsonMeta
}
return ""
}
type MetaCollection struct {
NodePath string `protobuf:"bytes,1,opt,name=NodePath" json:"NodePath,omitempty"`
Metadatas []*Metadata `protobuf:"bytes,2,rep,name=Metadatas" json:"Metadatas,omitempty"`
}
func (m *MetaCollection) Reset() { *m = MetaCollection{} }
func (m *MetaCollection) String() string { return proto.CompactTextString(m) }
func (*MetaCollection) ProtoMessage() {}
func (*MetaCollection) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{3} }
func (m *MetaCollection) GetNodePath() string {
if m != nil {
return m.NodePath
}
return ""
}
func (m *MetaCollection) GetMetadatas() []*Metadata {
if m != nil {
return m.Metadatas
}
return nil
}
type MetaNamespaceRequest struct {
NodePath string `protobuf:"bytes,1,opt,name=NodePath" json:"NodePath,omitempty"`
Namespace []string `protobuf:"bytes,2,rep,name=Namespace" json:"Namespace,omitempty"`
}
func (m *MetaNamespaceRequest) Reset() { *m = MetaNamespaceRequest{} }
func (m *MetaNamespaceRequest) String() string { return proto.CompactTextString(m) }
func (*MetaNamespaceRequest) ProtoMessage() {}
func (*MetaNamespaceRequest) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{4} }
func (m *MetaNamespaceRequest) GetNodePath() string {
if m != nil {
return m.NodePath
}
return ""
}
func (m *MetaNamespaceRequest) GetNamespace() []string {
if m != nil {
return m.Namespace
}
return nil
}
type GetBulkMetaRequest struct {
NodePaths []string `protobuf:"bytes,1,rep,name=NodePaths" json:"NodePaths,omitempty"`
NodeUuids []string `protobuf:"bytes,2,rep,name=NodeUuids" json:"NodeUuids,omitempty"`
AllMetaProviders bool `protobuf:"varint,3,opt,name=AllMetaProviders" json:"AllMetaProviders,omitempty"`
Versions bool `protobuf:"varint,4,opt,name=Versions" json:"Versions,omitempty"`
Offset int32 `protobuf:"varint,5,opt,name=Offset" json:"Offset,omitempty"`
Limit int32 `protobuf:"varint,6,opt,name=Limit" json:"Limit,omitempty"`
}
func (m *GetBulkMetaRequest) Reset() { *m = GetBulkMetaRequest{} }
func (m *GetBulkMetaRequest) String() string { return proto.CompactTextString(m) }
func (*GetBulkMetaRequest) ProtoMessage() {}
func (*GetBulkMetaRequest) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{5} }
func (m *GetBulkMetaRequest) GetNodePaths() []string {
if m != nil {
return m.NodePaths
}
return nil
}
func (m *GetBulkMetaRequest) GetNodeUuids() []string {
if m != nil {
return m.NodeUuids
}
return nil
}
func (m *GetBulkMetaRequest) GetAllMetaProviders() bool {
if m != nil {
return m.AllMetaProviders
}
return false
}
func (m *GetBulkMetaRequest) GetVersions() bool {
if m != nil {
return m.Versions
}
return false
}
func (m *GetBulkMetaRequest) GetOffset() int32 {
if m != nil {
return m.Offset
}
return 0
}
func (m *GetBulkMetaRequest) GetLimit() int32 {
if m != nil {
return m.Limit
}
return 0
}
type BulkMetaResponse struct {
Nodes []*tree.Node `protobuf:"bytes,1,rep,name=Nodes" json:"Nodes,omitempty"`
Pagination *Pagination `protobuf:"bytes,5,opt,name=Pagination" json:"Pagination,omitempty"`
}
func (m *BulkMetaResponse) Reset() { *m = BulkMetaResponse{} }
func (m *BulkMetaResponse) String() string { return proto.CompactTextString(m) }
func (*BulkMetaResponse) ProtoMessage() {}
func (*BulkMetaResponse) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{6} }
func (m *BulkMetaResponse) GetNodes() []*tree.Node {
if m != nil {
return m.Nodes
}
return nil
}
func (m *BulkMetaResponse) GetPagination() *Pagination {
if m != nil {
return m.Pagination
}
return nil
}
type HeadNodeRequest struct {
Node string `protobuf:"bytes,1,opt,name=Node" json:"Node,omitempty"`
}
func (m *HeadNodeRequest) Reset() { *m = HeadNodeRequest{} }
func (m *HeadNodeRequest) String() string { return proto.CompactTextString(m) }
func (*HeadNodeRequest) ProtoMessage() {}
func (*HeadNodeRequest) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{7} }
func (m *HeadNodeRequest) GetNode() string {
if m != nil {
return m.Node
}
return ""
}
type HeadNodeResponse struct {
Node *tree.Node `protobuf:"bytes,1,opt,name=Node" json:"Node,omitempty"`
}
func (m *HeadNodeResponse) Reset() { *m = HeadNodeResponse{} }
func (m *HeadNodeResponse) String() string { return proto.CompactTextString(m) }
func (*HeadNodeResponse) ProtoMessage() {}
func (*HeadNodeResponse) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{8} }
func (m *HeadNodeResponse) GetNode() *tree.Node {
if m != nil {
return m.Node
}
return nil
}
type CreateNodesRequest struct {
Nodes []*tree.Node `protobuf:"bytes,1,rep,name=Nodes" json:"Nodes,omitempty"`
Recursive bool `protobuf:"varint,2,opt,name=Recursive" json:"Recursive,omitempty"`
TemplateUUID string `protobuf:"bytes,3,opt,name=TemplateUUID" json:"TemplateUUID,omitempty"`
}
func (m *CreateNodesRequest) Reset() { *m = CreateNodesRequest{} }
func (m *CreateNodesRequest) String() string { return proto.CompactTextString(m) }
func (*CreateNodesRequest) ProtoMessage() {}
func (*CreateNodesRequest) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{9} }
func (m *CreateNodesRequest) GetNodes() []*tree.Node {
if m != nil {
return m.Nodes
}
return nil
}
func (m *CreateNodesRequest) GetRecursive() bool {
if m != nil {
return m.Recursive
}
return false
}
func (m *CreateNodesRequest) GetTemplateUUID() string {
if m != nil {
return m.TemplateUUID
}
return ""
}
type CreateSelectionRequest struct {
Nodes []*tree.Node `protobuf:"bytes,1,rep,name=Nodes" json:"Nodes,omitempty"`
TargetAction string `protobuf:"bytes,2,opt,name=TargetAction" json:"TargetAction,omitempty"`
Persist bool `protobuf:"varint,3,opt,name=Persist" json:"Persist,omitempty"`
}
func (m *CreateSelectionRequest) Reset() { *m = CreateSelectionRequest{} }
func (m *CreateSelectionRequest) String() string { return proto.CompactTextString(m) }
func (*CreateSelectionRequest) ProtoMessage() {}
func (*CreateSelectionRequest) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{10} }
func (m *CreateSelectionRequest) GetNodes() []*tree.Node {
if m != nil {
return m.Nodes
}
return nil
}
func (m *CreateSelectionRequest) GetTargetAction() string {
if m != nil {
return m.TargetAction
}
return ""
}
func (m *CreateSelectionRequest) GetPersist() bool {
if m != nil {
return m.Persist
}
return false
}
type CreateSelectionResponse struct {
SelectionUUID string `protobuf:"bytes,1,opt,name=SelectionUUID" json:"SelectionUUID,omitempty"`
Nodes []*tree.Node `protobuf:"bytes,2,rep,name=Nodes" json:"Nodes,omitempty"`
}
func (m *CreateSelectionResponse) Reset() { *m = CreateSelectionResponse{} }
func (m *CreateSelectionResponse) String() string { return proto.CompactTextString(m) }
func (*CreateSelectionResponse) ProtoMessage() {}
func (*CreateSelectionResponse) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{11} }
func (m *CreateSelectionResponse) GetSelectionUUID() string {
if m != nil {
return m.SelectionUUID
}
return ""
}
func (m *CreateSelectionResponse) GetNodes() []*tree.Node {
if m != nil {
return m.Nodes
}
return nil
}
type NodesCollection struct {
Parent *tree.Node `protobuf:"bytes,1,opt,name=Parent" json:"Parent,omitempty"`
Children []*tree.Node `protobuf:"bytes,2,rep,name=Children" json:"Children,omitempty"`
}
func (m *NodesCollection) Reset() { *m = NodesCollection{} }
func (m *NodesCollection) String() string { return proto.CompactTextString(m) }
func (*NodesCollection) ProtoMessage() {}
func (*NodesCollection) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{12} }
func (m *NodesCollection) GetParent() *tree.Node {
if m != nil {
return m.Parent
}
return nil
}
func (m *NodesCollection) GetChildren() []*tree.Node {
if m != nil {
return m.Children
}
return nil
}
type DeleteNodesRequest struct {
Nodes []*tree.Node `protobuf:"bytes,1,rep,name=Nodes" json:"Nodes,omitempty"`
Recursive bool `protobuf:"varint,2,opt,name=Recursive" json:"Recursive,omitempty"`
}
func (m *DeleteNodesRequest) Reset() { *m = DeleteNodesRequest{} }
func (m *DeleteNodesRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteNodesRequest) ProtoMessage() {}
func (*DeleteNodesRequest) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{13} }
func (m *DeleteNodesRequest) GetNodes() []*tree.Node {
if m != nil {
return m.Nodes
}
return nil
}
func (m *DeleteNodesRequest) GetRecursive() bool {
if m != nil {
return m.Recursive
}
return false
}
type BackgroundJobResult struct {
Uuid string `protobuf:"bytes,1,opt,name=Uuid" json:"Uuid,omitempty"`
Label string `protobuf:"bytes,2,opt,name=Label" json:"Label,omitempty"`
}
func (m *BackgroundJobResult) Reset() { *m = BackgroundJobResult{} }
func (m *BackgroundJobResult) String() string { return proto.CompactTextString(m) }
func (*BackgroundJobResult) ProtoMessage() {}
func (*BackgroundJobResult) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{14} }
func (m *BackgroundJobResult) GetUuid() string {
if m != nil {
return m.Uuid
}
return ""
}
func (m *BackgroundJobResult) GetLabel() string {
if m != nil {
return m.Label
}
return ""
}
type DeleteNodesResponse struct {
DeleteJobs []*BackgroundJobResult `protobuf:"bytes,1,rep,name=DeleteJobs" json:"DeleteJobs,omitempty"`
}
func (m *DeleteNodesResponse) Reset() { *m = DeleteNodesResponse{} }
func (m *DeleteNodesResponse) String() string { return proto.CompactTextString(m) }
func (*DeleteNodesResponse) ProtoMessage() {}
func (*DeleteNodesResponse) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{15} }
func (m *DeleteNodesResponse) GetDeleteJobs() []*BackgroundJobResult {
if m != nil {
return m.DeleteJobs
}
return nil
}
type RestoreNodesRequest struct {
Nodes []*tree.Node `protobuf:"bytes,1,rep,name=Nodes" json:"Nodes,omitempty"`
}
func (m *RestoreNodesRequest) Reset() { *m = RestoreNodesRequest{} }
func (m *RestoreNodesRequest) String() string { return proto.CompactTextString(m) }
func (*RestoreNodesRequest) ProtoMessage() {}
func (*RestoreNodesRequest) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{16} }
func (m *RestoreNodesRequest) GetNodes() []*tree.Node {
if m != nil {
return m.Nodes
}
return nil
}
type RestoreNodesResponse struct {
RestoreJobs []*BackgroundJobResult `protobuf:"bytes,1,rep,name=RestoreJobs" json:"RestoreJobs,omitempty"`
}
func (m *RestoreNodesResponse) Reset() { *m = RestoreNodesResponse{} }
func (m *RestoreNodesResponse) String() string { return proto.CompactTextString(m) }
func (*RestoreNodesResponse) ProtoMessage() {}
func (*RestoreNodesResponse) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{17} }
func (m *RestoreNodesResponse) GetRestoreJobs() []*BackgroundJobResult {
if m != nil {
return m.RestoreJobs
}
return nil
}
type ListDocstoreRequest struct {
StoreID string `protobuf:"bytes,1,opt,name=StoreID" json:"StoreID,omitempty"`
Query *docstore.DocumentQuery `protobuf:"bytes,2,opt,name=Query" json:"Query,omitempty"`
CountOnly bool `protobuf:"varint,3,opt,name=CountOnly" json:"CountOnly,omitempty"`
}
func (m *ListDocstoreRequest) Reset() { *m = ListDocstoreRequest{} }
func (m *ListDocstoreRequest) String() string { return proto.CompactTextString(m) }
func (*ListDocstoreRequest) ProtoMessage() {}
func (*ListDocstoreRequest) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{18} }
func (m *ListDocstoreRequest) GetStoreID() string {
if m != nil {
return m.StoreID
}
return ""
}
func (m *ListDocstoreRequest) GetQuery() *docstore.DocumentQuery {
if m != nil {
return m.Query
}
return nil
}
func (m *ListDocstoreRequest) GetCountOnly() bool {
if m != nil {
return m.CountOnly
}
return false
}
type DocstoreCollection struct {
Docs []*docstore.Document `protobuf:"bytes,1,rep,name=Docs" json:"Docs,omitempty"`
Total int64 `protobuf:"varint,2,opt,name=Total" json:"Total,omitempty"`
}
func (m *DocstoreCollection) Reset() { *m = DocstoreCollection{} }
func (m *DocstoreCollection) String() string { return proto.CompactTextString(m) }
func (*DocstoreCollection) ProtoMessage() {}
func (*DocstoreCollection) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{19} }
func (m *DocstoreCollection) GetDocs() []*docstore.Document {
if m != nil {
return m.Docs
}
return nil
}
func (m *DocstoreCollection) GetTotal() int64 {
if m != nil {
return m.Total
}
return 0
}
type ChangeRequest struct {
SeqID int64 `protobuf:"varint,1,opt,name=SeqID" json:"SeqID,omitempty"`
Filter string `protobuf:"bytes,2,opt,name=filter" json:"filter,omitempty"`
Flatten bool `protobuf:"varint,3,opt,name=flatten" json:"flatten,omitempty"`
Stream bool `protobuf:"varint,4,opt,name=stream" json:"stream,omitempty"`
}
func (m *ChangeRequest) Reset() { *m = ChangeRequest{} }
func (m *ChangeRequest) String() string { return proto.CompactTextString(m) }
func (*ChangeRequest) ProtoMessage() {}
func (*ChangeRequest) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{20} }
func (m *ChangeRequest) GetSeqID() int64 {
if m != nil {
return m.SeqID
}
return 0
}
func (m *ChangeRequest) GetFilter() string {
if m != nil {
return m.Filter
}
return ""
}
func (m *ChangeRequest) GetFlatten() bool {
if m != nil {
return m.Flatten
}
return false
}
func (m *ChangeRequest) GetStream() bool {
if m != nil {
return m.Stream
}
return false
}
type ChangeCollection struct {
Changes []*tree.SyncChange `protobuf:"bytes,1,rep,name=Changes,json=changes" json:"Changes,omitempty"`
LastSeqId int64 `protobuf:"varint,2,opt,name=LastSeqId,json=last_seq" json:"LastSeqId,omitempty"`
}
func (m *ChangeCollection) Reset() { *m = ChangeCollection{} }
func (m *ChangeCollection) String() string { return proto.CompactTextString(m) }
func (*ChangeCollection) ProtoMessage() {}
func (*ChangeCollection) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{21} }
func (m *ChangeCollection) GetChanges() []*tree.SyncChange {
if m != nil {
return m.Changes
}
return nil
}
func (m *ChangeCollection) GetLastSeqId() int64 {
if m != nil {
return m.LastSeqId
}
return 0
}
func init() {
proto.RegisterType((*SearchResults)(nil), "rest.SearchResults")
proto.RegisterType((*Pagination)(nil), "rest.Pagination")
proto.RegisterType((*Metadata)(nil), "rest.Metadata")
proto.RegisterType((*MetaCollection)(nil), "rest.MetaCollection")
proto.RegisterType((*MetaNamespaceRequest)(nil), "rest.MetaNamespaceRequest")
proto.RegisterType((*GetBulkMetaRequest)(nil), "rest.GetBulkMetaRequest")
proto.RegisterType((*BulkMetaResponse)(nil), "rest.BulkMetaResponse")
proto.RegisterType((*HeadNodeRequest)(nil), "rest.HeadNodeRequest")
proto.RegisterType((*HeadNodeResponse)(nil), "rest.HeadNodeResponse")
proto.RegisterType((*CreateNodesRequest)(nil), "rest.CreateNodesRequest")
proto.RegisterType((*CreateSelectionRequest)(nil), "rest.CreateSelectionRequest")
proto.RegisterType((*CreateSelectionResponse)(nil), "rest.CreateSelectionResponse")
proto.RegisterType((*NodesCollection)(nil), "rest.NodesCollection")
proto.RegisterType((*DeleteNodesRequest)(nil), "rest.DeleteNodesRequest")
proto.RegisterType((*BackgroundJobResult)(nil), "rest.BackgroundJobResult")
proto.RegisterType((*DeleteNodesResponse)(nil), "rest.DeleteNodesResponse")
proto.RegisterType((*RestoreNodesRequest)(nil), "rest.RestoreNodesRequest")
proto.RegisterType((*RestoreNodesResponse)(nil), "rest.RestoreNodesResponse")
proto.RegisterType((*ListDocstoreRequest)(nil), "rest.ListDocstoreRequest")
proto.RegisterType((*DocstoreCollection)(nil), "rest.DocstoreCollection")
proto.RegisterType((*ChangeRequest)(nil), "rest.ChangeRequest")
proto.RegisterType((*ChangeCollection)(nil), "rest.ChangeCollection")
}
func init() { proto.RegisterFile("data.proto", fileDescriptor3) }
var fileDescriptor3 = []byte{
// 918 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x5b, 0x6f, 0x1b, 0x45,
0x14, 0x56, 0x2e, 0xbe, 0x1d, 0x93, 0xd6, 0x9a, 0x44, 0xad, 0x09, 0x55, 0x15, 0x8d, 0x42, 0x55,
0x55, 0x60, 0xa3, 0xf4, 0x01, 0xa1, 0x3e, 0xa0, 0xd6, 0x96, 0x80, 0x10, 0xd2, 0x65, 0x9c, 0xf0,
0x00, 0x42, 0x68, 0xbc, 0x7b, 0x6c, 0xaf, 0xba, 0xde, 0x71, 0x66, 0x66, 0xa3, 0x44, 0xe2, 0xf7,
0xf1, 0x3b, 0xf8, 0x29, 0x68, 0x6e, 0x7b, 0x51, 0x02, 0x04, 0x89, 0x97, 0x64, 0xcf, 0x77, 0xee,
0xe7, 0x7c, 0x33, 0x63, 0x80, 0x84, 0x6b, 0x3e, 0xda, 0x48, 0xa1, 0x05, 0xd9, 0x95, 0xa8, 0xf4,
0xe1, 0xeb, 0x65, 0xaa, 0x57, 0xc5, 0x7c, 0x14, 0x8b, 0xf5, 0x78, 0x73, 0x9b, 0xa4, 0x62, 0x1c,
0x63, 0x96, 0xa9, 0x71, 0x2c, 0xd6, 0x6b, 0x91, 0x8f, 0xad, 0xe9, 0x58, 0x4b, 0x44, 0xfb, 0xc7,
0xb9, 0x1e, 0xbe, 0x79, 0x88, 0x53, 0x22, 0x62, 0xa5, 0x85, 0xc4, 0xf2, 0xc3, 0x39, 0xd3, 0xef,
0x61, 0x6f, 0x86, 0x5c, 0xc6, 0x2b, 0x86, 0xaa, 0xc8, 0xb4, 0x22, 0xc7, 0xd0, 0xf1, 0x9f, 0xc3,
0xad, 0xa3, 0x9d, 0x97, 0xfd, 0x13, 0x18, 0xd9, 0x5c, 0xe7, 0x22, 0x41, 0x16, 0x54, 0xe4, 0x00,
0x5a, 0x17, 0x42, 0xf3, 0x6c, 0xb8, 0x7d, 0xb4, 0xf5, 0xb2, 0xc5, 0x9c, 0x40, 0xff, 0xdc, 0x02,
0x88, 0xf8, 0x32, 0xcd, 0xb9, 0x4e, 0x45, 0x6e, 0x8c, 0xce, 0xd2, 0x75, 0xaa, 0x87, 0x5b, 0xce,
0xc8, 0x0a, 0xe4, 0x18, 0xf6, 0x26, 0x85, 0x94, 0x98, 0xeb, 0xf7, 0x8b, 0x85, 0x42, 0xed, 0x43,
0x34, 0xc1, 0x2a, 0xc1, 0x4e, 0x2d, 0x01, 0x39, 0x82, 0xbe, 0x37, 0x8b, 0xf8, 0x12, 0x87, 0xbb,
0x56, 0x57, 0x87, 0xc8, 0x73, 0x00, 0x6b, 0x6a, 0x04, 0x35, 0x6c, 0x59, 0x83, 0x1a, 0x62, 0xf4,
0xe7, 0x78, 0x13, 0x52, 0xb7, 0x9d, 0xbe, 0x42, 0x8c, 0x3e, 0x92, 0x78, 0xed, 0xf5, 0x1d, 0xa7,
0xaf, 0x10, 0x3a, 0x85, 0xee, 0x0f, 0xa8, 0xb9, 0xd9, 0x1c, 0x79, 0x06, 0xbd, 0x73, 0xbe, 0x46,
0xb5, 0xe1, 0x31, 0xda, 0x1e, 0x7b, 0xac, 0x02, 0xc8, 0x21, 0x74, 0x4f, 0x95, 0xc8, 0x8d, 0xb5,
0x6d, 0xb1, 0xc7, 0x4a, 0x99, 0xfe, 0x0c, 0x8f, 0xcc, 0xff, 0x89, 0xc8, 0x32, 0x8c, 0xed, 0xac,
0x0e, 0xa1, 0x6b, 0x26, 0x1c, 0x71, 0xbd, 0xf2, 0xa1, 0x4a, 0x99, 0x7c, 0x06, 0xbd, 0x90, 0x53,
0x0d, 0xb7, 0xed, 0x52, 0x1e, 0x8d, 0x0c, 0x5f, 0x46, 0x01, 0x66, 0x95, 0x01, 0x8d, 0xe0, 0xc0,
0x08, 0x65, 0x21, 0x0c, 0xaf, 0x0a, 0x54, 0xfa, 0x1f, 0x33, 0x34, 0x3a, 0x31, 0x19, 0xea, 0x9d,
0xd0, 0x3f, 0xb6, 0x80, 0x7c, 0x83, 0xfa, 0x5d, 0x91, 0x7d, 0x30, 0x91, 0x43, 0x40, 0xe3, 0xe4,
0x03, 0x38, 0xae, 0x18, 0xa7, 0x00, 0x04, 0xed, 0x65, 0x91, 0x26, 0xaa, 0x0c, 0x19, 0x00, 0xf2,
0x0a, 0x06, 0x6f, 0xb3, 0xcc, 0x44, 0x8b, 0xa4, 0xb8, 0x4e, 0x13, 0x94, 0xca, 0x6e, 0xba, 0xcb,
0xee, 0xe0, 0xa6, 0xf0, 0x9f, 0x50, 0xaa, 0x54, 0xe4, 0xca, 0x6e, 0xbc, 0xcb, 0x4a, 0x99, 0x3c,
0x81, 0xb6, 0x5f, 0x95, 0x5b, 0x75, 0xbb, 0xa2, 0x8f, 0xa3, 0x5e, 0xbb, 0x46, 0x3d, 0xba, 0x80,
0x41, 0xd5, 0x84, 0xda, 0x88, 0x5c, 0x21, 0x39, 0x82, 0x96, 0x29, 0xeb, 0x3e, 0xb6, 0x3b, 0x05,
0xf9, 0xa2, 0x4e, 0x6a, 0x9b, 0xa7, 0x7f, 0x32, 0x70, 0xf3, 0xaf, 0x70, 0x56, 0xb3, 0xa1, 0x9f,
0xc2, 0xe3, 0x6f, 0x91, 0x27, 0x36, 0x88, 0x1f, 0x16, 0x81, 0x5d, 0x23, 0xfa, 0xc9, 0xdb, 0x6f,
0x7a, 0x02, 0x83, 0xca, 0xcc, 0x97, 0xf3, 0xbc, 0x66, 0xd7, 0xac, 0xc6, 0xf9, 0xdc, 0x00, 0x99,
0x48, 0xe4, 0x1a, 0x6d, 0x6d, 0x21, 0xfa, 0xbf, 0x37, 0xf1, 0x0c, 0x7a, 0x0c, 0xe3, 0x42, 0xaa,
0xf4, 0x1a, 0x2d, 0x1d, 0xbb, 0xac, 0x02, 0x08, 0x85, 0x8f, 0x2e, 0x70, 0xbd, 0xc9, 0xb8, 0xc6,
0xcb, 0xcb, 0xef, 0xa6, 0x76, 0x15, 0x3d, 0xd6, 0xc0, 0xe8, 0x0d, 0x3c, 0x71, 0x99, 0x67, 0xe8,
0x49, 0xfb, 0xf0, 0xec, 0x26, 0x3e, 0x97, 0x4b, 0xd4, 0x6f, 0xad, 0xa3, 0x3f, 0x0f, 0x0d, 0x8c,
0x0c, 0xa1, 0x13, 0x99, 0xb5, 0x2a, 0xed, 0x99, 0x10, 0x44, 0xca, 0xe1, 0xe9, 0x9d, 0xcc, 0x7e,
0x5c, 0xc7, 0xe6, 0xfa, 0xf2, 0xa0, 0xad, 0xdc, 0xcd, 0xb7, 0x09, 0x56, 0x05, 0x6e, 0xff, 0x4d,
0x81, 0xf4, 0x57, 0x78, 0x6c, 0x3f, 0x6a, 0x27, 0x92, 0x42, 0x3b, 0xe2, 0xe6, 0x5e, 0xb9, 0x67,
0x17, 0x5e, 0x43, 0x5e, 0x40, 0x77, 0xb2, 0x4a, 0xb3, 0x44, 0x62, 0x7e, 0x4f, 0xec, 0x52, 0x47,
0x2f, 0x80, 0x4c, 0x31, 0xc3, 0xff, 0x77, 0x6b, 0xf4, 0x6b, 0xd8, 0x7f, 0xc7, 0xe3, 0x0f, 0x4b,
0x29, 0x8a, 0x3c, 0x39, 0x15, 0x73, 0x77, 0x39, 0x1b, 0xaa, 0x99, 0x43, 0x16, 0xa8, 0x66, 0xbe,
0xed, 0x79, 0xe0, 0x73, 0xcc, 0xfc, 0xe4, 0x9d, 0x40, 0x23, 0xd8, 0x6f, 0x94, 0xe5, 0x87, 0xfa,
0x15, 0x80, 0x83, 0x4f, 0xc5, 0x3c, 0x14, 0xf7, 0xb1, 0x23, 0xfc, 0x3d, 0xf9, 0x58, 0xcd, 0x98,
0x7e, 0x09, 0xfb, 0x0c, 0xed, 0xfb, 0xf2, 0xdf, 0x3a, 0xa5, 0x33, 0x38, 0x68, 0x3a, 0xfa, 0x5a,
0xde, 0x40, 0xdf, 0xe3, 0x0f, 0x2b, 0xa6, 0x6e, 0x4d, 0x7f, 0x87, 0xfd, 0xb3, 0x54, 0xe9, 0xa9,
0x7f, 0xf2, 0x42, 0x35, 0x43, 0xe8, 0xcc, 0x8c, 0x5c, 0xd2, 0x25, 0x88, 0xe4, 0x73, 0x68, 0xfd,
0x58, 0xa0, 0xbc, 0xb5, 0x63, 0xea, 0x9f, 0x3c, 0x1d, 0x95, 0xaf, 0xe5, 0x54, 0xc4, 0xc5, 0x1a,
0x73, 0x6d, 0xd5, 0xcc, 0x59, 0x99, 0xf5, 0x4c, 0x44, 0x91, 0xeb, 0xf7, 0x79, 0x76, 0xeb, 0x49,
0x5b, 0x01, 0x94, 0x01, 0x09, 0x99, 0x6b, 0xb4, 0x7a, 0x01, 0xbb, 0x06, 0xf5, 0x9d, 0x90, 0xbb,
0x19, 0x98, 0xd5, 0x37, 0x5f, 0xd8, 0x9d, 0xf0, 0xc2, 0x0a, 0xd8, 0x9b, 0xac, 0x78, 0xbe, 0x2c,
0x7b, 0x39, 0x80, 0xd6, 0x0c, 0xaf, 0x7c, 0x27, 0x3b, 0xcc, 0x09, 0xe6, 0x5a, 0x5c, 0xa4, 0x99,
0x46, 0xe9, 0xf7, 0xed, 0x25, 0xd3, 0xf9, 0x22, 0xe3, 0x5a, 0x63, 0x1e, 0xce, 0x98, 0x17, 0x8d,
0x87, 0xd2, 0x12, 0xf9, 0xda, 0x5f, 0xb1, 0x5e, 0xa2, 0xbf, 0xc0, 0xc0, 0x25, 0xac, 0xb5, 0xf0,
0x0a, 0x3a, 0x0e, 0x0b, 0x5d, 0x0c, 0xdc, 0x3e, 0x67, 0xb7, 0x79, 0xec, 0xab, 0xeb, 0xc4, 0xce,
0x80, 0x7c, 0x02, 0xbd, 0x33, 0xae, 0xb4, 0x29, 0x2b, 0xf1, 0xad, 0x74, 0x33, 0xae, 0xf4, 0x6f,
0x0a, 0xaf, 0xe6, 0x6d, 0xfb, 0x1b, 0xe4, 0xf5, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa9, 0xa3,
0x84, 0x91, 0x09, 0x09, 0x00, 0x00,
}