Welcome to mirror list, hosted at ThFree Co, Russian Federation.

shared.pb.go « gitalypb « go « proto - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50e47b81da150c929f4823445898bdd11daa0c16 (plain)
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
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: shared.proto

package gitalypb

import (
	fmt "fmt"
	proto "github.com/golang/protobuf/proto"
	timestamp "github.com/golang/protobuf/ptypes/timestamp"
	math "math"
)

// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf

// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package

type ObjectType int32

const (
	ObjectType_UNKNOWN ObjectType = 0
	ObjectType_COMMIT  ObjectType = 1
	ObjectType_BLOB    ObjectType = 2
	ObjectType_TREE    ObjectType = 3
	ObjectType_TAG     ObjectType = 4
)

var ObjectType_name = map[int32]string{
	0: "UNKNOWN",
	1: "COMMIT",
	2: "BLOB",
	3: "TREE",
	4: "TAG",
}

var ObjectType_value = map[string]int32{
	"UNKNOWN": 0,
	"COMMIT":  1,
	"BLOB":    2,
	"TREE":    3,
	"TAG":     4,
}

func (x ObjectType) String() string {
	return proto.EnumName(ObjectType_name, int32(x))
}

func (ObjectType) EnumDescriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{0}
}

type SignatureType int32

const (
	SignatureType_NONE SignatureType = 0
	SignatureType_PGP  SignatureType = 1
	SignatureType_X509 SignatureType = 2
)

var SignatureType_name = map[int32]string{
	0: "NONE",
	1: "PGP",
	2: "X509",
}

var SignatureType_value = map[string]int32{
	"NONE": 0,
	"PGP":  1,
	"X509": 2,
}

func (x SignatureType) String() string {
	return proto.EnumName(SignatureType_name, int32(x))
}

func (SignatureType) EnumDescriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{1}
}

type Repository struct {
	StorageName  string `protobuf:"bytes,2,opt,name=storage_name,json=storageName,proto3" json:"storage_name,omitempty"`
	RelativePath string `protobuf:"bytes,3,opt,name=relative_path,json=relativePath,proto3" json:"relative_path,omitempty"`
	// Sets the GIT_OBJECT_DIRECTORY envvar on git commands to the value of this field.
	// It influences the object storage directory the SHA1 directories are created underneath.
	GitObjectDirectory string `protobuf:"bytes,4,opt,name=git_object_directory,json=gitObjectDirectory,proto3" json:"git_object_directory,omitempty"`
	// Sets the GIT_ALTERNATE_OBJECT_DIRECTORIES envvar on git commands to the values of this field.
	// It influences the list of Git object directories which can be used to search for Git objects.
	GitAlternateObjectDirectories []string `protobuf:"bytes,5,rep,name=git_alternate_object_directories,json=gitAlternateObjectDirectories,proto3" json:"git_alternate_object_directories,omitempty"`
	// Used in callbacks to GitLab so that it knows what repository the event is
	// associated with. May be left empty on RPC's that do not perform callbacks.
	// During project creation, `gl_repository` may not be known.
	GlRepository string `protobuf:"bytes,6,opt,name=gl_repository,json=glRepository,proto3" json:"gl_repository,omitempty"`
	// The human-readable GitLab project path (e.g. gitlab-org/gitlab-ce).
	// When hashed storage is use, this associates a project path with its
	// path on disk. The name can change over time (e.g. when a project is
	// renamed). This is primarily used for logging/debugging at the
	// moment.
	GlProjectPath        string   `protobuf:"bytes,8,opt,name=gl_project_path,json=glProjectPath,proto3" json:"gl_project_path,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *Repository) Reset()         { *m = Repository{} }
func (m *Repository) String() string { return proto.CompactTextString(m) }
func (*Repository) ProtoMessage()    {}
func (*Repository) Descriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{0}
}

func (m *Repository) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_Repository.Unmarshal(m, b)
}
func (m *Repository) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_Repository.Marshal(b, m, deterministic)
}
func (m *Repository) XXX_Merge(src proto.Message) {
	xxx_messageInfo_Repository.Merge(m, src)
}
func (m *Repository) XXX_Size() int {
	return xxx_messageInfo_Repository.Size(m)
}
func (m *Repository) XXX_DiscardUnknown() {
	xxx_messageInfo_Repository.DiscardUnknown(m)
}

var xxx_messageInfo_Repository proto.InternalMessageInfo

func (m *Repository) GetStorageName() string {
	if m != nil {
		return m.StorageName
	}
	return ""
}

func (m *Repository) GetRelativePath() string {
	if m != nil {
		return m.RelativePath
	}
	return ""
}

func (m *Repository) GetGitObjectDirectory() string {
	if m != nil {
		return m.GitObjectDirectory
	}
	return ""
}

func (m *Repository) GetGitAlternateObjectDirectories() []string {
	if m != nil {
		return m.GitAlternateObjectDirectories
	}
	return nil
}

func (m *Repository) GetGlRepository() string {
	if m != nil {
		return m.GlRepository
	}
	return ""
}

func (m *Repository) GetGlProjectPath() string {
	if m != nil {
		return m.GlProjectPath
	}
	return ""
}

// A single Git trailer (https://git-scm.com/docs/git-interpret-trailers)
// key-value pair.
type CommitTrailer struct {
	// The key of the trailer, such as `Signed-off-by`.
	Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// The value of the trailer, such as `Alice <alice@gmail.com>`.
	Value                []byte   `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *CommitTrailer) Reset()         { *m = CommitTrailer{} }
func (m *CommitTrailer) String() string { return proto.CompactTextString(m) }
func (*CommitTrailer) ProtoMessage()    {}
func (*CommitTrailer) Descriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{1}
}

func (m *CommitTrailer) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_CommitTrailer.Unmarshal(m, b)
}
func (m *CommitTrailer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_CommitTrailer.Marshal(b, m, deterministic)
}
func (m *CommitTrailer) XXX_Merge(src proto.Message) {
	xxx_messageInfo_CommitTrailer.Merge(m, src)
}
func (m *CommitTrailer) XXX_Size() int {
	return xxx_messageInfo_CommitTrailer.Size(m)
}
func (m *CommitTrailer) XXX_DiscardUnknown() {
	xxx_messageInfo_CommitTrailer.DiscardUnknown(m)
}

var xxx_messageInfo_CommitTrailer proto.InternalMessageInfo

func (m *CommitTrailer) GetKey() []byte {
	if m != nil {
		return m.Key
	}
	return nil
}

func (m *CommitTrailer) GetValue() []byte {
	if m != nil {
		return m.Value
	}
	return nil
}

// Corresponds to Gitlab::Git::Commit
type GitCommit struct {
	Id        string        `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Subject   []byte        `protobuf:"bytes,2,opt,name=subject,proto3" json:"subject,omitempty"`
	Body      []byte        `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
	Author    *CommitAuthor `protobuf:"bytes,4,opt,name=author,proto3" json:"author,omitempty"`
	Committer *CommitAuthor `protobuf:"bytes,5,opt,name=committer,proto3" json:"committer,omitempty"`
	ParentIds []string      `protobuf:"bytes,6,rep,name=parent_ids,json=parentIds,proto3" json:"parent_ids,omitempty"`
	// If body exceeds a certain threshold, it will be nullified,
	// but its size will be set in body_size so we can know if
	// a commit had a body in the first place.
	BodySize      int64         `protobuf:"varint,7,opt,name=body_size,json=bodySize,proto3" json:"body_size,omitempty"`
	SignatureType SignatureType `protobuf:"varint,8,opt,name=signature_type,json=signatureType,proto3,enum=gitaly.SignatureType" json:"signature_type,omitempty"`
	// The tree ID will always be filled, even if the tree is empty. In that case
	// the value will be `4b825dc642cb6eb9a060e54bf8d69288fbee4904`.
	// That value is equivalent to `git hash-object -t tree /dev/null`
	TreeId string `protobuf:"bytes,9,opt,name=tree_id,json=treeId,proto3" json:"tree_id,omitempty"`
	// The list of Git trailers (https://git-scm.com/docs/git-interpret-trailers)
	// found in this commit's message. The number of trailers and their key/value
	// sizes are limited. If a trailer exceeds these size limits, it and any
	// trailers that follow it are not included.
	Trailers             []*CommitTrailer `protobuf:"bytes,10,rep,name=trailers,proto3" json:"trailers,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (m *GitCommit) Reset()         { *m = GitCommit{} }
func (m *GitCommit) String() string { return proto.CompactTextString(m) }
func (*GitCommit) ProtoMessage()    {}
func (*GitCommit) Descriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{2}
}

func (m *GitCommit) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GitCommit.Unmarshal(m, b)
}
func (m *GitCommit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GitCommit.Marshal(b, m, deterministic)
}
func (m *GitCommit) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GitCommit.Merge(m, src)
}
func (m *GitCommit) XXX_Size() int {
	return xxx_messageInfo_GitCommit.Size(m)
}
func (m *GitCommit) XXX_DiscardUnknown() {
	xxx_messageInfo_GitCommit.DiscardUnknown(m)
}

var xxx_messageInfo_GitCommit proto.InternalMessageInfo

func (m *GitCommit) GetId() string {
	if m != nil {
		return m.Id
	}
	return ""
}

func (m *GitCommit) GetSubject() []byte {
	if m != nil {
		return m.Subject
	}
	return nil
}

func (m *GitCommit) GetBody() []byte {
	if m != nil {
		return m.Body
	}
	return nil
}

func (m *GitCommit) GetAuthor() *CommitAuthor {
	if m != nil {
		return m.Author
	}
	return nil
}

func (m *GitCommit) GetCommitter() *CommitAuthor {
	if m != nil {
		return m.Committer
	}
	return nil
}

func (m *GitCommit) GetParentIds() []string {
	if m != nil {
		return m.ParentIds
	}
	return nil
}

func (m *GitCommit) GetBodySize() int64 {
	if m != nil {
		return m.BodySize
	}
	return 0
}

func (m *GitCommit) GetSignatureType() SignatureType {
	if m != nil {
		return m.SignatureType
	}
	return SignatureType_NONE
}

func (m *GitCommit) GetTreeId() string {
	if m != nil {
		return m.TreeId
	}
	return ""
}

func (m *GitCommit) GetTrailers() []*CommitTrailer {
	if m != nil {
		return m.Trailers
	}
	return nil
}

type CommitAuthor struct {
	Name                 []byte               `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Email                []byte               `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
	Date                 *timestamp.Timestamp `protobuf:"bytes,3,opt,name=date,proto3" json:"date,omitempty"`
	Timezone             []byte               `protobuf:"bytes,4,opt,name=timezone,proto3" json:"timezone,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (m *CommitAuthor) Reset()         { *m = CommitAuthor{} }
func (m *CommitAuthor) String() string { return proto.CompactTextString(m) }
func (*CommitAuthor) ProtoMessage()    {}
func (*CommitAuthor) Descriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{3}
}

func (m *CommitAuthor) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_CommitAuthor.Unmarshal(m, b)
}
func (m *CommitAuthor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_CommitAuthor.Marshal(b, m, deterministic)
}
func (m *CommitAuthor) XXX_Merge(src proto.Message) {
	xxx_messageInfo_CommitAuthor.Merge(m, src)
}
func (m *CommitAuthor) XXX_Size() int {
	return xxx_messageInfo_CommitAuthor.Size(m)
}
func (m *CommitAuthor) XXX_DiscardUnknown() {
	xxx_messageInfo_CommitAuthor.DiscardUnknown(m)
}

var xxx_messageInfo_CommitAuthor proto.InternalMessageInfo

func (m *CommitAuthor) GetName() []byte {
	if m != nil {
		return m.Name
	}
	return nil
}

func (m *CommitAuthor) GetEmail() []byte {
	if m != nil {
		return m.Email
	}
	return nil
}

func (m *CommitAuthor) GetDate() *timestamp.Timestamp {
	if m != nil {
		return m.Date
	}
	return nil
}

func (m *CommitAuthor) GetTimezone() []byte {
	if m != nil {
		return m.Timezone
	}
	return nil
}

type ExitStatus struct {
	Value                int32    `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *ExitStatus) Reset()         { *m = ExitStatus{} }
func (m *ExitStatus) String() string { return proto.CompactTextString(m) }
func (*ExitStatus) ProtoMessage()    {}
func (*ExitStatus) Descriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{4}
}

func (m *ExitStatus) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ExitStatus.Unmarshal(m, b)
}
func (m *ExitStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ExitStatus.Marshal(b, m, deterministic)
}
func (m *ExitStatus) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ExitStatus.Merge(m, src)
}
func (m *ExitStatus) XXX_Size() int {
	return xxx_messageInfo_ExitStatus.Size(m)
}
func (m *ExitStatus) XXX_DiscardUnknown() {
	xxx_messageInfo_ExitStatus.DiscardUnknown(m)
}

var xxx_messageInfo_ExitStatus proto.InternalMessageInfo

func (m *ExitStatus) GetValue() int32 {
	if m != nil {
		return m.Value
	}
	return 0
}

// Corresponds to Gitlab::Git::Branch
type Branch struct {
	Name                 []byte     `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	TargetCommit         *GitCommit `protobuf:"bytes,2,opt,name=target_commit,json=targetCommit,proto3" json:"target_commit,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (m *Branch) Reset()         { *m = Branch{} }
func (m *Branch) String() string { return proto.CompactTextString(m) }
func (*Branch) ProtoMessage()    {}
func (*Branch) Descriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{5}
}

func (m *Branch) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_Branch.Unmarshal(m, b)
}
func (m *Branch) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_Branch.Marshal(b, m, deterministic)
}
func (m *Branch) XXX_Merge(src proto.Message) {
	xxx_messageInfo_Branch.Merge(m, src)
}
func (m *Branch) XXX_Size() int {
	return xxx_messageInfo_Branch.Size(m)
}
func (m *Branch) XXX_DiscardUnknown() {
	xxx_messageInfo_Branch.DiscardUnknown(m)
}

var xxx_messageInfo_Branch proto.InternalMessageInfo

func (m *Branch) GetName() []byte {
	if m != nil {
		return m.Name
	}
	return nil
}

func (m *Branch) GetTargetCommit() *GitCommit {
	if m != nil {
		return m.TargetCommit
	}
	return nil
}

type Tag struct {
	Name         []byte     `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Id           string     `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	TargetCommit *GitCommit `protobuf:"bytes,3,opt,name=target_commit,json=targetCommit,proto3" json:"target_commit,omitempty"`
	// If message exceeds a certain threshold, it will be nullified,
	// but its size will be set in message_size so we can know if
	// a tag had a message in the first place.
	Message              []byte        `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"`
	MessageSize          int64         `protobuf:"varint,5,opt,name=message_size,json=messageSize,proto3" json:"message_size,omitempty"`
	Tagger               *CommitAuthor `protobuf:"bytes,6,opt,name=tagger,proto3" json:"tagger,omitempty"`
	SignatureType        SignatureType `protobuf:"varint,7,opt,name=signature_type,json=signatureType,proto3,enum=gitaly.SignatureType" json:"signature_type,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (m *Tag) Reset()         { *m = Tag{} }
func (m *Tag) String() string { return proto.CompactTextString(m) }
func (*Tag) ProtoMessage()    {}
func (*Tag) Descriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{6}
}

func (m *Tag) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_Tag.Unmarshal(m, b)
}
func (m *Tag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_Tag.Marshal(b, m, deterministic)
}
func (m *Tag) XXX_Merge(src proto.Message) {
	xxx_messageInfo_Tag.Merge(m, src)
}
func (m *Tag) XXX_Size() int {
	return xxx_messageInfo_Tag.Size(m)
}
func (m *Tag) XXX_DiscardUnknown() {
	xxx_messageInfo_Tag.DiscardUnknown(m)
}

var xxx_messageInfo_Tag proto.InternalMessageInfo

func (m *Tag) GetName() []byte {
	if m != nil {
		return m.Name
	}
	return nil
}

func (m *Tag) GetId() string {
	if m != nil {
		return m.Id
	}
	return ""
}

func (m *Tag) GetTargetCommit() *GitCommit {
	if m != nil {
		return m.TargetCommit
	}
	return nil
}

func (m *Tag) GetMessage() []byte {
	if m != nil {
		return m.Message
	}
	return nil
}

func (m *Tag) GetMessageSize() int64 {
	if m != nil {
		return m.MessageSize
	}
	return 0
}

func (m *Tag) GetTagger() *CommitAuthor {
	if m != nil {
		return m.Tagger
	}
	return nil
}

func (m *Tag) GetSignatureType() SignatureType {
	if m != nil {
		return m.SignatureType
	}
	return SignatureType_NONE
}

type User struct {
	GlId                 string   `protobuf:"bytes,1,opt,name=gl_id,json=glId,proto3" json:"gl_id,omitempty"`
	Name                 []byte   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Email                []byte   `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	GlUsername           string   `protobuf:"bytes,4,opt,name=gl_username,json=glUsername,proto3" json:"gl_username,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *User) Reset()         { *m = User{} }
func (m *User) String() string { return proto.CompactTextString(m) }
func (*User) ProtoMessage()    {}
func (*User) Descriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{7}
}

func (m *User) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_User.Unmarshal(m, b)
}
func (m *User) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_User.Marshal(b, m, deterministic)
}
func (m *User) XXX_Merge(src proto.Message) {
	xxx_messageInfo_User.Merge(m, src)
}
func (m *User) XXX_Size() int {
	return xxx_messageInfo_User.Size(m)
}
func (m *User) XXX_DiscardUnknown() {
	xxx_messageInfo_User.DiscardUnknown(m)
}

var xxx_messageInfo_User proto.InternalMessageInfo

func (m *User) GetGlId() string {
	if m != nil {
		return m.GlId
	}
	return ""
}

func (m *User) GetName() []byte {
	if m != nil {
		return m.Name
	}
	return nil
}

func (m *User) GetEmail() []byte {
	if m != nil {
		return m.Email
	}
	return nil
}

func (m *User) GetGlUsername() string {
	if m != nil {
		return m.GlUsername
	}
	return ""
}

type ObjectPool struct {
	Repository           *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (m *ObjectPool) Reset()         { *m = ObjectPool{} }
func (m *ObjectPool) String() string { return proto.CompactTextString(m) }
func (*ObjectPool) ProtoMessage()    {}
func (*ObjectPool) Descriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{8}
}

func (m *ObjectPool) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ObjectPool.Unmarshal(m, b)
}
func (m *ObjectPool) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ObjectPool.Marshal(b, m, deterministic)
}
func (m *ObjectPool) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ObjectPool.Merge(m, src)
}
func (m *ObjectPool) XXX_Size() int {
	return xxx_messageInfo_ObjectPool.Size(m)
}
func (m *ObjectPool) XXX_DiscardUnknown() {
	xxx_messageInfo_ObjectPool.DiscardUnknown(m)
}

var xxx_messageInfo_ObjectPool proto.InternalMessageInfo

func (m *ObjectPool) GetRepository() *Repository {
	if m != nil {
		return m.Repository
	}
	return nil
}

type PaginationParameter struct {
	// Instructs pagination to start sending results after the provided page
	// token appears. A page token allows for a generic pattern to uniquely
	// identify a result or 'page'. Each paginated RPC may interpret a page
	// token differently.
	PageToken string `protobuf:"bytes,1,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// When fully consuming the response the client will receive _at most_
	// `limit` number of resulting objects. Note that the number of response
	// messages might be much lower, as some response messages already send
	// multiple objects per message.
	// When the limit is smaller than 0, it will be normalized to 2147483647
	// on the server side. When limit is not set, it defaults to 0, and no
	// results are send in the response.
	Limit                int32    `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *PaginationParameter) Reset()         { *m = PaginationParameter{} }
func (m *PaginationParameter) String() string { return proto.CompactTextString(m) }
func (*PaginationParameter) ProtoMessage()    {}
func (*PaginationParameter) Descriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{9}
}

func (m *PaginationParameter) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_PaginationParameter.Unmarshal(m, b)
}
func (m *PaginationParameter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_PaginationParameter.Marshal(b, m, deterministic)
}
func (m *PaginationParameter) XXX_Merge(src proto.Message) {
	xxx_messageInfo_PaginationParameter.Merge(m, src)
}
func (m *PaginationParameter) XXX_Size() int {
	return xxx_messageInfo_PaginationParameter.Size(m)
}
func (m *PaginationParameter) XXX_DiscardUnknown() {
	xxx_messageInfo_PaginationParameter.DiscardUnknown(m)
}

var xxx_messageInfo_PaginationParameter proto.InternalMessageInfo

func (m *PaginationParameter) GetPageToken() string {
	if m != nil {
		return m.PageToken
	}
	return ""
}

func (m *PaginationParameter) GetLimit() int32 {
	if m != nil {
		return m.Limit
	}
	return 0
}

// https://git-scm.com/docs/git/#_options
type GlobalOptions struct {
	// Treat pathspecs literally (i.e. no globbing, no pathspec magic)
	LiteralPathspecs     bool     `protobuf:"varint,1,opt,name=literal_pathspecs,json=literalPathspecs,proto3" json:"literal_pathspecs,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *GlobalOptions) Reset()         { *m = GlobalOptions{} }
func (m *GlobalOptions) String() string { return proto.CompactTextString(m) }
func (*GlobalOptions) ProtoMessage()    {}
func (*GlobalOptions) Descriptor() ([]byte, []int) {
	return fileDescriptor_d8a4e87e678c5ced, []int{10}
}

func (m *GlobalOptions) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GlobalOptions.Unmarshal(m, b)
}
func (m *GlobalOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GlobalOptions.Marshal(b, m, deterministic)
}
func (m *GlobalOptions) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GlobalOptions.Merge(m, src)
}
func (m *GlobalOptions) XXX_Size() int {
	return xxx_messageInfo_GlobalOptions.Size(m)
}
func (m *GlobalOptions) XXX_DiscardUnknown() {
	xxx_messageInfo_GlobalOptions.DiscardUnknown(m)
}

var xxx_messageInfo_GlobalOptions proto.InternalMessageInfo

func (m *GlobalOptions) GetLiteralPathspecs() bool {
	if m != nil {
		return m.LiteralPathspecs
	}
	return false
}

func init() {
	proto.RegisterEnum("gitaly.ObjectType", ObjectType_name, ObjectType_value)
	proto.RegisterEnum("gitaly.SignatureType", SignatureType_name, SignatureType_value)
	proto.RegisterType((*Repository)(nil), "gitaly.Repository")
	proto.RegisterType((*CommitTrailer)(nil), "gitaly.CommitTrailer")
	proto.RegisterType((*GitCommit)(nil), "gitaly.GitCommit")
	proto.RegisterType((*CommitAuthor)(nil), "gitaly.CommitAuthor")
	proto.RegisterType((*ExitStatus)(nil), "gitaly.ExitStatus")
	proto.RegisterType((*Branch)(nil), "gitaly.Branch")
	proto.RegisterType((*Tag)(nil), "gitaly.Tag")
	proto.RegisterType((*User)(nil), "gitaly.User")
	proto.RegisterType((*ObjectPool)(nil), "gitaly.ObjectPool")
	proto.RegisterType((*PaginationParameter)(nil), "gitaly.PaginationParameter")
	proto.RegisterType((*GlobalOptions)(nil), "gitaly.GlobalOptions")
}

func init() { proto.RegisterFile("shared.proto", fileDescriptor_d8a4e87e678c5ced) }

var fileDescriptor_d8a4e87e678c5ced = []byte{
	// 934 bytes of a gzipped FileDescriptorProto
	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x55, 0x5f, 0x6f, 0xe3, 0x44,
	0x10, 0xbf, 0xd8, 0xce, 0xbf, 0x49, 0x72, 0xf8, 0xf6, 0x8a, 0xb0, 0x8a, 0x4e, 0x17, 0x8c, 0x84,
	0xaa, 0xa3, 0xa4, 0xa5, 0x88, 0x7f, 0xd2, 0xbd, 0x34, 0x47, 0xa9, 0x5a, 0xb8, 0x24, 0x72, 0x53,
	0x81, 0x78, 0xb1, 0x36, 0xf1, 0xde, 0x66, 0xb9, 0xb5, 0xd7, 0xda, 0xdd, 0x9c, 0x48, 0x9f, 0x79,
	0xe2, 0x89, 0x4f, 0xc2, 0xc7, 0xe0, 0xfb, 0xf0, 0x0d, 0xd0, 0xee, 0xda, 0x69, 0x0a, 0x05, 0xdd,
	0xdb, 0xce, 0xec, 0x6f, 0xc7, 0x33, 0xbf, 0xf9, 0xcd, 0x18, 0xfa, 0x6a, 0x85, 0x25, 0xc9, 0x46,
	0xa5, 0x14, 0x5a, 0xa0, 0x16, 0x65, 0x1a, 0xf3, 0xcd, 0xfe, 0x53, 0x2a, 0x04, 0xe5, 0xe4, 0xc8,
	0x7a, 0x17, 0xeb, 0x57, 0x47, 0x9a, 0xe5, 0x44, 0x69, 0x9c, 0x97, 0x0e, 0xb8, 0x0f, 0x9c, 0x15,
	0xda, 0x9d, 0xe3, 0x3f, 0x3c, 0x80, 0x84, 0x94, 0x42, 0x31, 0x2d, 0xe4, 0x06, 0x7d, 0x00, 0x7d,
	0xa5, 0x85, 0xc4, 0x94, 0xa4, 0x05, 0xce, 0x49, 0xe4, 0x0d, 0x1b, 0x07, 0xdd, 0xa4, 0x57, 0xf9,
	0x26, 0x38, 0x27, 0xe8, 0x43, 0x18, 0x48, 0xc2, 0xb1, 0x66, 0x6f, 0x48, 0x5a, 0x62, 0xbd, 0x8a,
	0x7c, 0x8b, 0xe9, 0xd7, 0xce, 0x19, 0xd6, 0x2b, 0x74, 0x0c, 0x7b, 0x94, 0xe9, 0x54, 0x2c, 0x7e,
	0x26, 0x4b, 0x9d, 0x66, 0x4c, 0x92, 0xa5, 0x89, 0x1f, 0x05, 0x16, 0x8b, 0x28, 0xd3, 0x53, 0x7b,
	0xf5, 0x4d, 0x7d, 0x83, 0xce, 0x61, 0x68, 0x5e, 0x60, 0xae, 0x89, 0x2c, 0xb0, 0x26, 0xff, 0x7c,
	0xcb, 0x88, 0x8a, 0x9a, 0x43, 0xff, 0xa0, 0x9b, 0x3c, 0xa1, 0x4c, 0x9f, 0xd6, 0xb0, 0xbb, 0x61,
	0x18, 0x51, 0x26, 0x3f, 0xca, 0x53, 0xb9, 0xad, 0x29, 0x6a, 0xb9, 0xfc, 0x28, 0xdf, 0xa9, 0xf3,
	0x23, 0x78, 0x87, 0xf2, 0xb4, 0x94, 0xc2, 0x7e, 0xc3, 0x96, 0xd1, 0xb1, 0xb0, 0x01, 0xe5, 0x33,
	0xe7, 0x35, 0x75, 0x5c, 0x06, 0x9d, 0x46, 0xe8, 0x5d, 0x06, 0x9d, 0x76, 0xd8, 0x49, 0x02, 0x03,
	0x8b, 0xbf, 0x84, 0xc1, 0x0b, 0x91, 0xe7, 0x4c, 0xcf, 0x25, 0x66, 0x9c, 0x48, 0x14, 0x82, 0xff,
	0x9a, 0x6c, 0xa2, 0xc6, 0xb0, 0x71, 0xd0, 0x4f, 0xcc, 0x11, 0xed, 0x41, 0xf3, 0x0d, 0xe6, 0x6b,
	0xc7, 0x5e, 0x3f, 0x71, 0x46, 0xfc, 0x97, 0x07, 0xdd, 0x73, 0xa6, 0xdd, 0x63, 0xf4, 0x10, 0x3c,
	0x96, 0xd9, 0x47, 0xdd, 0xc4, 0x63, 0x19, 0x8a, 0xa0, 0xad, 0xd6, 0xb6, 0x96, 0xea, 0x55, 0x6d,
	0x22, 0x04, 0xc1, 0x42, 0x64, 0x1b, 0x4b, 0x73, 0x3f, 0xb1, 0x67, 0x74, 0x08, 0x2d, 0xbc, 0xd6,
	0x2b, 0x21, 0x2d, 0xa1, 0xbd, 0x93, 0xbd, 0x91, 0xeb, 0xfd, 0xc8, 0x45, 0x3f, 0xb5, 0x77, 0x49,
	0x85, 0x41, 0x27, 0xd0, 0x5d, 0x5a, 0xbf, 0x26, 0x32, 0x6a, 0xfe, 0xcf, 0x83, 0x5b, 0x18, 0x7a,
	0x02, 0x50, 0x62, 0x49, 0x0a, 0x9d, 0xb2, 0x4c, 0x45, 0x2d, 0x4b, 0x7c, 0xd7, 0x79, 0x2e, 0x32,
	0x85, 0xde, 0x87, 0xae, 0x49, 0x24, 0x55, 0xec, 0x86, 0x44, 0xed, 0x61, 0xe3, 0xc0, 0x4f, 0x3a,
	0xc6, 0x71, 0xc5, 0x6e, 0x08, 0x7a, 0x0e, 0x0f, 0x15, 0xa3, 0x05, 0xd6, 0x6b, 0x49, 0x52, 0xbd,
	0x29, 0x89, 0xe5, 0xf6, 0xe1, 0xc9, 0xbb, 0xf5, 0x47, 0xaf, 0xea, 0xdb, 0xf9, 0xa6, 0x24, 0xc9,
	0x40, 0xed, 0x9a, 0xe8, 0x3d, 0x68, 0x6b, 0x49, 0x48, 0xca, 0xb2, 0xa8, 0x6b, 0xe9, 0x69, 0x19,
	0xf3, 0x22, 0x43, 0x9f, 0x42, 0x47, 0x3b, 0xce, 0x55, 0x04, 0x43, 0xff, 0xa0, 0x77, 0x1b, 0xf0,
	0x4e, 0x47, 0x92, 0x2d, 0x2c, 0xfe, 0xb5, 0x01, 0xfd, 0xdd, 0x0a, 0x0d, 0x99, 0x56, 0xd7, 0xae,
	0x5b, 0xf6, 0x6c, 0xda, 0x45, 0x72, 0xcc, 0x78, 0xdd, 0x2e, 0x6b, 0xa0, 0x11, 0x04, 0x19, 0xd6,
	0xc4, 0xd2, 0xde, 0x3b, 0xd9, 0x1f, 0xb9, 0xa1, 0x1a, 0xd5, 0x43, 0x35, 0x9a, 0xd7, 0x43, 0x95,
	0x58, 0x1c, 0xda, 0x87, 0x8e, 0x99, 0xb3, 0x1b, 0x51, 0x10, 0xdb, 0x94, 0x7e, 0xb2, 0xb5, 0xe3,
	0x18, 0xe0, 0xec, 0x17, 0xa6, 0xaf, 0x34, 0xd6, 0x6b, 0x75, 0x2b, 0x0f, 0x93, 0x44, 0xb3, 0x96,
	0xc7, 0x1c, 0x5a, 0x63, 0x89, 0x8b, 0xe5, 0xea, 0xde, 0x1c, 0xbf, 0x80, 0x81, 0xc6, 0x92, 0x12,
	0x9d, 0xba, 0x16, 0xd9, 0x5c, 0x7b, 0x27, 0x8f, 0x6a, 0x02, 0xb6, 0xc2, 0x4a, 0xfa, 0x0e, 0xe7,
	0xac, 0xf8, 0x37, 0x0f, 0xfc, 0x39, 0xa6, 0xf7, 0xc6, 0x74, 0x12, 0xf4, 0xb6, 0x12, 0xfc, 0xd7,
	0x37, 0xfc, 0xb7, 0xfa, 0x86, 0x91, 0x6e, 0x4e, 0x94, 0xc2, 0xb4, 0x2e, 0xbc, 0x36, 0xcd, 0x36,
	0xa9, 0x8e, 0x4e, 0x28, 0x4d, 0x2b, 0x94, 0x5e, 0xe5, 0xb3, 0x5a, 0x39, 0x84, 0x96, 0xc6, 0x94,
	0x12, 0x69, 0xc7, 0xf4, 0x3f, 0x95, 0xec, 0x30, 0xf7, 0x28, 0xab, 0xfd, 0xf6, 0xca, 0x8a, 0x5f,
	0x41, 0x70, 0xad, 0x88, 0x44, 0x8f, 0xa1, 0x49, 0x79, 0xba, 0x1d, 0xbf, 0x80, 0xf2, 0x8b, 0x6c,
	0xcb, 0x90, 0x77, 0x9f, 0x32, 0xfc, 0x5d, 0x65, 0x3c, 0x85, 0x1e, 0xe5, 0xe9, 0x5a, 0x99, 0x05,
	0x94, 0x93, 0x6a, 0xa5, 0x01, 0xe5, 0xd7, 0x95, 0x27, 0xfe, 0x16, 0xc0, 0xad, 0xa5, 0x99, 0x10,
	0x1c, 0x7d, 0x05, 0xb0, 0xb3, 0x8c, 0x1a, 0xb6, 0x4a, 0x54, 0xe7, 0x7b, 0xbb, 0x92, 0xc6, 0xc1,
	0xef, 0x7f, 0x1e, 0x36, 0x92, 0x1d, 0x6c, 0x7c, 0x09, 0x8f, 0x67, 0x98, 0xb2, 0x02, 0x6b, 0x26,
	0x8a, 0x19, 0x96, 0x38, 0x27, 0xdb, 0xd1, 0xa4, 0x24, 0xd5, 0xe2, 0x35, 0x29, 0xaa, 0x1a, 0xba,
	0xc6, 0x33, 0x37, 0x0e, 0x93, 0x34, 0x67, 0xb5, 0x44, 0x9a, 0x89, 0x33, 0xe2, 0xe7, 0x30, 0x38,
	0xe7, 0x62, 0x81, 0xf9, 0xb4, 0x34, 0xd1, 0x14, 0xfa, 0x18, 0x1e, 0x71, 0xa6, 0x89, 0xc4, 0xdc,
	0xae, 0x3f, 0x55, 0x92, 0xa5, 0xb2, 0xc1, 0x3a, 0x49, 0x58, 0x5d, 0xcc, 0x6a, 0xff, 0xb3, 0x71,
	0x5d, 0x91, 0x9d, 0xd0, 0x1e, 0xb4, 0xaf, 0x27, 0xdf, 0x4d, 0xa6, 0x3f, 0x4c, 0xc2, 0x07, 0x08,
	0xa0, 0xf5, 0x62, 0xfa, 0xf2, 0xe5, 0xc5, 0x3c, 0x6c, 0xa0, 0x0e, 0x04, 0xe3, 0xef, 0xa7, 0xe3,
	0xd0, 0x33, 0xa7, 0x79, 0x72, 0x76, 0x16, 0xfa, 0xa8, 0x0d, 0xfe, 0xfc, 0xf4, 0x3c, 0x0c, 0x9e,
	0x1d, 0xc2, 0xe0, 0x4e, 0x77, 0x0c, 0x66, 0x32, 0x9d, 0x9c, 0x85, 0x0f, 0x0c, 0x66, 0x76, 0x3e,
	0x73, 0x01, 0x7e, 0xfc, 0xfc, 0xf8, 0xeb, 0xd0, 0x1b, 0x1f, 0xff, 0x64, 0x28, 0xe2, 0x78, 0x31,
	0x5a, 0x8a, 0xfc, 0xc8, 0x1d, 0x3f, 0x11, 0x92, 0x1e, 0x39, 0xe2, 0xdc, 0xcf, 0xed, 0x88, 0x8a,
	0xca, 0x2e, 0x17, 0x8b, 0x96, 0x75, 0x7d, 0xf6, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd5, 0x07,
	0x2e, 0x7a, 0x15, 0x07, 0x00, 0x00,
}