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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'proto/go/gitalypb/shared.pb.go')
-rw-r--r--proto/go/gitalypb/shared.pb.go1394
1 files changed, 888 insertions, 506 deletions
diff --git a/proto/go/gitalypb/shared.pb.go b/proto/go/gitalypb/shared.pb.go
index 50e47b81d..10588f28a 100644
--- a/proto/go/gitalypb/shared.pb.go
+++ b/proto/go/gitalypb/shared.pb.go
@@ -1,25 +1,30 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// protoc-gen-go v1.23.0
+// protoc v3.12.4
// source: shared.proto
package gitalypb
import (
- fmt "fmt"
proto "github.com/golang/protobuf/proto"
timestamp "github.com/golang/protobuf/ptypes/timestamp"
- math "math"
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+ reflect "reflect"
+ sync "sync"
)
-// Reference imports to suppress errors if they are not otherwise used.
-var _ = proto.Marshal
-var _ = fmt.Errorf
-var _ = math.Inf
+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)
+)
-// 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
+// This is a compile-time assertion that a sufficiently up-to-date version
+// of the legacy proto package is being used.
+const _ = proto.ProtoPackageIsVersion4
type ObjectType int32
@@ -31,28 +36,49 @@ const (
ObjectType_TAG ObjectType = 4
)
-var ObjectType_name = map[int32]string{
- 0: "UNKNOWN",
- 1: "COMMIT",
- 2: "BLOB",
- 3: "TREE",
- 4: "TAG",
-}
+// Enum value maps for ObjectType.
+var (
+ ObjectType_name = map[int32]string{
+ 0: "UNKNOWN",
+ 1: "COMMIT",
+ 2: "BLOB",
+ 3: "TREE",
+ 4: "TAG",
+ }
+ ObjectType_value = map[string]int32{
+ "UNKNOWN": 0,
+ "COMMIT": 1,
+ "BLOB": 2,
+ "TREE": 3,
+ "TAG": 4,
+ }
+)
-var ObjectType_value = map[string]int32{
- "UNKNOWN": 0,
- "COMMIT": 1,
- "BLOB": 2,
- "TREE": 3,
- "TAG": 4,
+func (x ObjectType) Enum() *ObjectType {
+ p := new(ObjectType)
+ *p = x
+ return p
}
func (x ObjectType) String() string {
- return proto.EnumName(ObjectType_name, int32(x))
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+}
+
+func (ObjectType) Descriptor() protoreflect.EnumDescriptor {
+ return file_shared_proto_enumTypes[0].Descriptor()
+}
+
+func (ObjectType) Type() protoreflect.EnumType {
+ return &file_shared_proto_enumTypes[0]
}
+func (x ObjectType) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
+// Deprecated: Use ObjectType.Descriptor instead.
func (ObjectType) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_d8a4e87e678c5ced, []int{0}
+ return file_shared_proto_rawDescGZIP(), []int{0}
}
type SignatureType int32
@@ -60,30 +86,55 @@ type SignatureType int32
const (
SignatureType_NONE SignatureType = 0
SignatureType_PGP SignatureType = 1
- SignatureType_X509 SignatureType = 2
+ SignatureType_X509 SignatureType = 2 // maybe add X509+TSA or other combinations at a later step
)
-var SignatureType_name = map[int32]string{
- 0: "NONE",
- 1: "PGP",
- 2: "X509",
-}
+// Enum value maps for SignatureType.
+var (
+ SignatureType_name = map[int32]string{
+ 0: "NONE",
+ 1: "PGP",
+ 2: "X509",
+ }
+ SignatureType_value = map[string]int32{
+ "NONE": 0,
+ "PGP": 1,
+ "X509": 2,
+ }
+)
-var SignatureType_value = map[string]int32{
- "NONE": 0,
- "PGP": 1,
- "X509": 2,
+func (x SignatureType) Enum() *SignatureType {
+ p := new(SignatureType)
+ *p = x
+ return p
}
func (x SignatureType) String() string {
- return proto.EnumName(SignatureType_name, int32(x))
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+}
+
+func (SignatureType) Descriptor() protoreflect.EnumDescriptor {
+ return file_shared_proto_enumTypes[1].Descriptor()
}
+func (SignatureType) Type() protoreflect.EnumType {
+ return &file_shared_proto_enumTypes[1]
+}
+
+func (x SignatureType) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
+// Deprecated: Use SignatureType.Descriptor instead.
func (SignatureType) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_d8a4e87e678c5ced, []int{1}
+ return file_shared_proto_rawDescGZIP(), []int{1}
}
type Repository struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
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.
@@ -101,75 +152,79 @@ type Repository struct {
// 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:"-"`
+ GlProjectPath string `protobuf:"bytes,8,opt,name=gl_project_path,json=glProjectPath,proto3" json:"gl_project_path,omitempty"`
}
-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 (x *Repository) Reset() {
+ *x = Repository{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_shared_proto_msgTypes[0]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
}
-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 (x *Repository) String() string {
+ return protoimpl.X.MessageStringOf(x)
}
-func (m *Repository) XXX_DiscardUnknown() {
- xxx_messageInfo_Repository.DiscardUnknown(m)
+
+func (*Repository) ProtoMessage() {}
+
+func (x *Repository) ProtoReflect() protoreflect.Message {
+ mi := &file_shared_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)
}
-var xxx_messageInfo_Repository proto.InternalMessageInfo
+// Deprecated: Use Repository.ProtoReflect.Descriptor instead.
+func (*Repository) Descriptor() ([]byte, []int) {
+ return file_shared_proto_rawDescGZIP(), []int{0}
+}
-func (m *Repository) GetStorageName() string {
- if m != nil {
- return m.StorageName
+func (x *Repository) GetStorageName() string {
+ if x != nil {
+ return x.StorageName
}
return ""
}
-func (m *Repository) GetRelativePath() string {
- if m != nil {
- return m.RelativePath
+func (x *Repository) GetRelativePath() string {
+ if x != nil {
+ return x.RelativePath
}
return ""
}
-func (m *Repository) GetGitObjectDirectory() string {
- if m != nil {
- return m.GitObjectDirectory
+func (x *Repository) GetGitObjectDirectory() string {
+ if x != nil {
+ return x.GitObjectDirectory
}
return ""
}
-func (m *Repository) GetGitAlternateObjectDirectories() []string {
- if m != nil {
- return m.GitAlternateObjectDirectories
+func (x *Repository) GetGitAlternateObjectDirectories() []string {
+ if x != nil {
+ return x.GitAlternateObjectDirectories
}
return nil
}
-func (m *Repository) GetGlRepository() string {
- if m != nil {
- return m.GlRepository
+func (x *Repository) GetGlRepository() string {
+ if x != nil {
+ return x.GlRepository
}
return ""
}
-func (m *Repository) GetGlProjectPath() string {
- if m != nil {
- return m.GlProjectPath
+func (x *Repository) GetGlProjectPath() string {
+ if x != nil {
+ return x.GlProjectPath
}
return ""
}
@@ -177,56 +232,68 @@ func (m *Repository) GetGlProjectPath() string {
// A single Git trailer (https://git-scm.com/docs/git-interpret-trailers)
// key-value pair.
type CommitTrailer struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
// 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:"-"`
+ Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
}
-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 (x *CommitTrailer) Reset() {
+ *x = CommitTrailer{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_shared_proto_msgTypes[1]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
}
-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 (x *CommitTrailer) String() string {
+ return protoimpl.X.MessageStringOf(x)
}
-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)
+
+func (*CommitTrailer) ProtoMessage() {}
+
+func (x *CommitTrailer) ProtoReflect() protoreflect.Message {
+ mi := &file_shared_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)
}
-var xxx_messageInfo_CommitTrailer proto.InternalMessageInfo
+// Deprecated: Use CommitTrailer.ProtoReflect.Descriptor instead.
+func (*CommitTrailer) Descriptor() ([]byte, []int) {
+ return file_shared_proto_rawDescGZIP(), []int{1}
+}
-func (m *CommitTrailer) GetKey() []byte {
- if m != nil {
- return m.Key
+func (x *CommitTrailer) GetKey() []byte {
+ if x != nil {
+ return x.Key
}
return nil
}
-func (m *CommitTrailer) GetValue() []byte {
- if m != nil {
- return m.Value
+func (x *CommitTrailer) GetValue() []byte {
+ if x != nil {
+ return x.Value
}
return nil
}
// Corresponds to Gitlab::Git::Commit
type GitCommit struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
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"`
@@ -246,450 +313,506 @@ type GitCommit struct {
// 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:"-"`
+ Trailers []*CommitTrailer `protobuf:"bytes,10,rep,name=trailers,proto3" json:"trailers,omitempty"`
}
-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 (x *GitCommit) Reset() {
+ *x = GitCommit{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_shared_proto_msgTypes[2]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
}
-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 (x *GitCommit) String() string {
+ return protoimpl.X.MessageStringOf(x)
}
-func (m *GitCommit) XXX_Size() int {
- return xxx_messageInfo_GitCommit.Size(m)
-}
-func (m *GitCommit) XXX_DiscardUnknown() {
- xxx_messageInfo_GitCommit.DiscardUnknown(m)
+
+func (*GitCommit) ProtoMessage() {}
+
+func (x *GitCommit) ProtoReflect() protoreflect.Message {
+ mi := &file_shared_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)
}
-var xxx_messageInfo_GitCommit proto.InternalMessageInfo
+// Deprecated: Use GitCommit.ProtoReflect.Descriptor instead.
+func (*GitCommit) Descriptor() ([]byte, []int) {
+ return file_shared_proto_rawDescGZIP(), []int{2}
+}
-func (m *GitCommit) GetId() string {
- if m != nil {
- return m.Id
+func (x *GitCommit) GetId() string {
+ if x != nil {
+ return x.Id
}
return ""
}
-func (m *GitCommit) GetSubject() []byte {
- if m != nil {
- return m.Subject
+func (x *GitCommit) GetSubject() []byte {
+ if x != nil {
+ return x.Subject
}
return nil
}
-func (m *GitCommit) GetBody() []byte {
- if m != nil {
- return m.Body
+func (x *GitCommit) GetBody() []byte {
+ if x != nil {
+ return x.Body
}
return nil
}
-func (m *GitCommit) GetAuthor() *CommitAuthor {
- if m != nil {
- return m.Author
+func (x *GitCommit) GetAuthor() *CommitAuthor {
+ if x != nil {
+ return x.Author
}
return nil
}
-func (m *GitCommit) GetCommitter() *CommitAuthor {
- if m != nil {
- return m.Committer
+func (x *GitCommit) GetCommitter() *CommitAuthor {
+ if x != nil {
+ return x.Committer
}
return nil
}
-func (m *GitCommit) GetParentIds() []string {
- if m != nil {
- return m.ParentIds
+func (x *GitCommit) GetParentIds() []string {
+ if x != nil {
+ return x.ParentIds
}
return nil
}
-func (m *GitCommit) GetBodySize() int64 {
- if m != nil {
- return m.BodySize
+func (x *GitCommit) GetBodySize() int64 {
+ if x != nil {
+ return x.BodySize
}
return 0
}
-func (m *GitCommit) GetSignatureType() SignatureType {
- if m != nil {
- return m.SignatureType
+func (x *GitCommit) GetSignatureType() SignatureType {
+ if x != nil {
+ return x.SignatureType
}
return SignatureType_NONE
}
-func (m *GitCommit) GetTreeId() string {
- if m != nil {
- return m.TreeId
+func (x *GitCommit) GetTreeId() string {
+ if x != nil {
+ return x.TreeId
}
return ""
}
-func (m *GitCommit) GetTrailers() []*CommitTrailer {
- if m != nil {
- return m.Trailers
+func (x *GitCommit) GetTrailers() []*CommitTrailer {
+ if x != nil {
+ return x.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}
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ 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"`
+}
+
+func (x *CommitAuthor) Reset() {
+ *x = CommitAuthor{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_shared_proto_msgTypes[3]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
}
-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 (x *CommitAuthor) String() string {
+ return protoimpl.X.MessageStringOf(x)
}
-func (m *CommitAuthor) XXX_DiscardUnknown() {
- xxx_messageInfo_CommitAuthor.DiscardUnknown(m)
+
+func (*CommitAuthor) ProtoMessage() {}
+
+func (x *CommitAuthor) ProtoReflect() protoreflect.Message {
+ mi := &file_shared_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)
}
-var xxx_messageInfo_CommitAuthor proto.InternalMessageInfo
+// Deprecated: Use CommitAuthor.ProtoReflect.Descriptor instead.
+func (*CommitAuthor) Descriptor() ([]byte, []int) {
+ return file_shared_proto_rawDescGZIP(), []int{3}
+}
-func (m *CommitAuthor) GetName() []byte {
- if m != nil {
- return m.Name
+func (x *CommitAuthor) GetName() []byte {
+ if x != nil {
+ return x.Name
}
return nil
}
-func (m *CommitAuthor) GetEmail() []byte {
- if m != nil {
- return m.Email
+func (x *CommitAuthor) GetEmail() []byte {
+ if x != nil {
+ return x.Email
}
return nil
}
-func (m *CommitAuthor) GetDate() *timestamp.Timestamp {
- if m != nil {
- return m.Date
+func (x *CommitAuthor) GetDate() *timestamp.Timestamp {
+ if x != nil {
+ return x.Date
}
return nil
}
-func (m *CommitAuthor) GetTimezone() []byte {
- if m != nil {
- return m.Timezone
+func (x *CommitAuthor) GetTimezone() []byte {
+ if x != nil {
+ return x.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:"-"`
-}
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
-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}
+ Value int32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
}
-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 (x *ExitStatus) Reset() {
+ *x = ExitStatus{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_shared_proto_msgTypes[4]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
}
-func (m *ExitStatus) XXX_Size() int {
- return xxx_messageInfo_ExitStatus.Size(m)
+
+func (x *ExitStatus) String() string {
+ return protoimpl.X.MessageStringOf(x)
}
-func (m *ExitStatus) XXX_DiscardUnknown() {
- xxx_messageInfo_ExitStatus.DiscardUnknown(m)
+
+func (*ExitStatus) ProtoMessage() {}
+
+func (x *ExitStatus) ProtoReflect() protoreflect.Message {
+ mi := &file_shared_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)
}
-var xxx_messageInfo_ExitStatus proto.InternalMessageInfo
+// Deprecated: Use ExitStatus.ProtoReflect.Descriptor instead.
+func (*ExitStatus) Descriptor() ([]byte, []int) {
+ return file_shared_proto_rawDescGZIP(), []int{4}
+}
-func (m *ExitStatus) GetValue() int32 {
- if m != nil {
- return m.Value
+func (x *ExitStatus) GetValue() int32 {
+ if x != nil {
+ return x.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:"-"`
-}
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
-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}
+ 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"`
}
-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 (x *Branch) Reset() {
+ *x = Branch{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_shared_proto_msgTypes[5]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
}
-func (m *Branch) XXX_Size() int {
- return xxx_messageInfo_Branch.Size(m)
+
+func (x *Branch) String() string {
+ return protoimpl.X.MessageStringOf(x)
}
-func (m *Branch) XXX_DiscardUnknown() {
- xxx_messageInfo_Branch.DiscardUnknown(m)
+
+func (*Branch) ProtoMessage() {}
+
+func (x *Branch) ProtoReflect() protoreflect.Message {
+ mi := &file_shared_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)
}
-var xxx_messageInfo_Branch proto.InternalMessageInfo
+// Deprecated: Use Branch.ProtoReflect.Descriptor instead.
+func (*Branch) Descriptor() ([]byte, []int) {
+ return file_shared_proto_rawDescGZIP(), []int{5}
+}
-func (m *Branch) GetName() []byte {
- if m != nil {
- return m.Name
+func (x *Branch) GetName() []byte {
+ if x != nil {
+ return x.Name
}
return nil
}
-func (m *Branch) GetTargetCommit() *GitCommit {
- if m != nil {
- return m.TargetCommit
+func (x *Branch) GetTargetCommit() *GitCommit {
+ if x != nil {
+ return x.TargetCommit
}
return nil
}
type Tag struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
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}
+ 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"`
+}
+
+func (x *Tag) Reset() {
+ *x = Tag{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_shared_proto_msgTypes[6]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
}
-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 (x *Tag) String() string {
+ return protoimpl.X.MessageStringOf(x)
}
-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)
+
+func (*Tag) ProtoMessage() {}
+
+func (x *Tag) ProtoReflect() protoreflect.Message {
+ mi := &file_shared_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)
}
-var xxx_messageInfo_Tag proto.InternalMessageInfo
+// Deprecated: Use Tag.ProtoReflect.Descriptor instead.
+func (*Tag) Descriptor() ([]byte, []int) {
+ return file_shared_proto_rawDescGZIP(), []int{6}
+}
-func (m *Tag) GetName() []byte {
- if m != nil {
- return m.Name
+func (x *Tag) GetName() []byte {
+ if x != nil {
+ return x.Name
}
return nil
}
-func (m *Tag) GetId() string {
- if m != nil {
- return m.Id
+func (x *Tag) GetId() string {
+ if x != nil {
+ return x.Id
}
return ""
}
-func (m *Tag) GetTargetCommit() *GitCommit {
- if m != nil {
- return m.TargetCommit
+func (x *Tag) GetTargetCommit() *GitCommit {
+ if x != nil {
+ return x.TargetCommit
}
return nil
}
-func (m *Tag) GetMessage() []byte {
- if m != nil {
- return m.Message
+func (x *Tag) GetMessage() []byte {
+ if x != nil {
+ return x.Message
}
return nil
}
-func (m *Tag) GetMessageSize() int64 {
- if m != nil {
- return m.MessageSize
+func (x *Tag) GetMessageSize() int64 {
+ if x != nil {
+ return x.MessageSize
}
return 0
}
-func (m *Tag) GetTagger() *CommitAuthor {
- if m != nil {
- return m.Tagger
+func (x *Tag) GetTagger() *CommitAuthor {
+ if x != nil {
+ return x.Tagger
}
return nil
}
-func (m *Tag) GetSignatureType() SignatureType {
- if m != nil {
- return m.SignatureType
+func (x *Tag) GetSignatureType() SignatureType {
+ if x != nil {
+ return x.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}
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ 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"`
+}
+
+func (x *User) Reset() {
+ *x = User{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_shared_proto_msgTypes[7]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
}
-func (m *User) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_User.Unmarshal(m, b)
+func (x *User) String() string {
+ return protoimpl.X.MessageStringOf(x)
}
-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)
+
+func (*User) ProtoMessage() {}
+
+func (x *User) ProtoReflect() protoreflect.Message {
+ mi := &file_shared_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)
}
-var xxx_messageInfo_User proto.InternalMessageInfo
+// Deprecated: Use User.ProtoReflect.Descriptor instead.
+func (*User) Descriptor() ([]byte, []int) {
+ return file_shared_proto_rawDescGZIP(), []int{7}
+}
-func (m *User) GetGlId() string {
- if m != nil {
- return m.GlId
+func (x *User) GetGlId() string {
+ if x != nil {
+ return x.GlId
}
return ""
}
-func (m *User) GetName() []byte {
- if m != nil {
- return m.Name
+func (x *User) GetName() []byte {
+ if x != nil {
+ return x.Name
}
return nil
}
-func (m *User) GetEmail() []byte {
- if m != nil {
- return m.Email
+func (x *User) GetEmail() []byte {
+ if x != nil {
+ return x.Email
}
return nil
}
-func (m *User) GetGlUsername() string {
- if m != nil {
- return m.GlUsername
+func (x *User) GetGlUsername() string {
+ if x != nil {
+ return x.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:"-"`
-}
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
-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}
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
}
-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 (x *ObjectPool) Reset() {
+ *x = ObjectPool{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_shared_proto_msgTypes[8]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
}
-func (m *ObjectPool) XXX_Size() int {
- return xxx_messageInfo_ObjectPool.Size(m)
+
+func (x *ObjectPool) String() string {
+ return protoimpl.X.MessageStringOf(x)
}
-func (m *ObjectPool) XXX_DiscardUnknown() {
- xxx_messageInfo_ObjectPool.DiscardUnknown(m)
+
+func (*ObjectPool) ProtoMessage() {}
+
+func (x *ObjectPool) ProtoReflect() protoreflect.Message {
+ mi := &file_shared_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)
}
-var xxx_messageInfo_ObjectPool proto.InternalMessageInfo
+// Deprecated: Use ObjectPool.ProtoReflect.Descriptor instead.
+func (*ObjectPool) Descriptor() ([]byte, []int) {
+ return file_shared_proto_rawDescGZIP(), []int{8}
+}
-func (m *ObjectPool) GetRepository() *Repository {
- if m != nil {
- return m.Repository
+func (x *ObjectPool) GetRepository() *Repository {
+ if x != nil {
+ return x.Repository
}
return nil
}
type PaginationParameter struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
// 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
@@ -702,169 +825,428 @@ type PaginationParameter struct {
// 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:"-"`
+ Limit int32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
}
-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 (x *PaginationParameter) Reset() {
+ *x = PaginationParameter{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_shared_proto_msgTypes[9]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
}
-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 (x *PaginationParameter) String() string {
+ return protoimpl.X.MessageStringOf(x)
}
-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)
+
+func (*PaginationParameter) ProtoMessage() {}
+
+func (x *PaginationParameter) ProtoReflect() protoreflect.Message {
+ mi := &file_shared_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)
}
-var xxx_messageInfo_PaginationParameter proto.InternalMessageInfo
+// Deprecated: Use PaginationParameter.ProtoReflect.Descriptor instead.
+func (*PaginationParameter) Descriptor() ([]byte, []int) {
+ return file_shared_proto_rawDescGZIP(), []int{9}
+}
-func (m *PaginationParameter) GetPageToken() string {
- if m != nil {
- return m.PageToken
+func (x *PaginationParameter) GetPageToken() string {
+ if x != nil {
+ return x.PageToken
}
return ""
}
-func (m *PaginationParameter) GetLimit() int32 {
- if m != nil {
- return m.Limit
+func (x *PaginationParameter) GetLimit() int32 {
+ if x != nil {
+ return x.Limit
}
return 0
}
// https://git-scm.com/docs/git/#_options
type GlobalOptions struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
// 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:"-"`
+ LiteralPathspecs bool `protobuf:"varint,1,opt,name=literal_pathspecs,json=literalPathspecs,proto3" json:"literal_pathspecs,omitempty"`
}
-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 (x *GlobalOptions) Reset() {
+ *x = GlobalOptions{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_shared_proto_msgTypes[10]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
}
-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 (x *GlobalOptions) String() string {
+ return protoimpl.X.MessageStringOf(x)
}
-func (m *GlobalOptions) XXX_DiscardUnknown() {
- xxx_messageInfo_GlobalOptions.DiscardUnknown(m)
+
+func (*GlobalOptions) ProtoMessage() {}
+
+func (x *GlobalOptions) ProtoReflect() protoreflect.Message {
+ mi := &file_shared_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)
}
-var xxx_messageInfo_GlobalOptions proto.InternalMessageInfo
+// Deprecated: Use GlobalOptions.ProtoReflect.Descriptor instead.
+func (*GlobalOptions) Descriptor() ([]byte, []int) {
+ return file_shared_proto_rawDescGZIP(), []int{10}
+}
-func (m *GlobalOptions) GetLiteralPathspecs() bool {
- if m != nil {
- return m.LiteralPathspecs
+func (x *GlobalOptions) GetLiteralPathspecs() bool {
+ if x != nil {
+ return x.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,
+var File_shared_proto protoreflect.FileDescriptor
+
+var file_shared_proto_rawDesc = []byte{
+ 0x0a, 0x0c, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06,
+ 0x67, 0x69, 0x74, 0x61, 0x6c, 0x79, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70,
+ 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
+ 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0a, 0x6c, 0x69, 0x6e, 0x74, 0x2e, 0x70, 0x72,
+ 0x6f, 0x74, 0x6f, 0x22, 0xae, 0x02, 0x0a, 0x0a, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f,
+ 0x72, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x61,
+ 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67,
+ 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x76,
+ 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65,
+ 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x30, 0x0a, 0x14, 0x67, 0x69,
+ 0x74, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f,
+ 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x67, 0x69, 0x74, 0x4f, 0x62, 0x6a,
+ 0x65, 0x63, 0x74, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x47, 0x0a, 0x20,
+ 0x67, 0x69, 0x74, 0x5f, 0x61, 0x6c, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x62,
+ 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73,
+ 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x1d, 0x67, 0x69, 0x74, 0x41, 0x6c, 0x74, 0x65, 0x72,
+ 0x6e, 0x61, 0x74, 0x65, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74,
+ 0x6f, 0x72, 0x69, 0x65, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x67, 0x6c, 0x5f, 0x72, 0x65, 0x70, 0x6f,
+ 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x67, 0x6c,
+ 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x26, 0x0a, 0x0f, 0x67, 0x6c,
+ 0x5f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x08, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x0d, 0x67, 0x6c, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x50, 0x61,
+ 0x74, 0x68, 0x4a, 0x04, 0x08, 0x01, 0x10, 0x02, 0x4a, 0x04, 0x08, 0x07, 0x10, 0x08, 0x52, 0x04,
+ 0x70, 0x61, 0x74, 0x68, 0x22, 0x37, 0x0a, 0x0d, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x54, 0x72,
+ 0x61, 0x69, 0x6c, 0x65, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x0c, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xf1, 0x02,
+ 0x0a, 0x09, 0x47, 0x69, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69,
+ 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x73,
+ 0x75, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x73, 0x75,
+ 0x62, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x03, 0x20,
+ 0x01, 0x28, 0x0c, 0x52, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x12, 0x2c, 0x0a, 0x06, 0x61, 0x75, 0x74,
+ 0x68, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x69, 0x74, 0x61,
+ 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x52,
+ 0x06, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x12, 0x32, 0x0a, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x69,
+ 0x74, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x69, 0x74,
+ 0x61, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72,
+ 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x74, 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
+ 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52,
+ 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x6f,
+ 0x64, 0x79, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x62,
+ 0x6f, 0x64, 0x79, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3c, 0x0a, 0x0e, 0x73, 0x69, 0x67, 0x6e, 0x61,
+ 0x74, 0x75, 0x72, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x15, 0x2e, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x79, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
+ 0x72, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0d, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72,
+ 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x72, 0x65, 0x65, 0x5f, 0x69, 0x64,
+ 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x72, 0x65, 0x65, 0x49, 0x64, 0x12, 0x31,
+ 0x0a, 0x08, 0x74, 0x72, 0x61, 0x69, 0x6c, 0x65, 0x72, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b,
+ 0x32, 0x15, 0x2e, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74,
+ 0x54, 0x72, 0x61, 0x69, 0x6c, 0x65, 0x72, 0x52, 0x08, 0x74, 0x72, 0x61, 0x69, 0x6c, 0x65, 0x72,
+ 0x73, 0x22, 0x84, 0x01, 0x0a, 0x0c, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x41, 0x75, 0x74, 0x68,
+ 0x6f, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c,
+ 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18,
+ 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x2e, 0x0a, 0x04,
+ 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
+ 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x04, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08,
+ 0x74, 0x69, 0x6d, 0x65, 0x7a, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08,
+ 0x74, 0x69, 0x6d, 0x65, 0x7a, 0x6f, 0x6e, 0x65, 0x22, 0x22, 0x0a, 0x0a, 0x45, 0x78, 0x69, 0x74,
+ 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
+ 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x54, 0x0a, 0x06,
+ 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x36, 0x0a, 0x0d, 0x74, 0x61,
+ 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
+ 0x0b, 0x32, 0x11, 0x2e, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x79, 0x2e, 0x47, 0x69, 0x74, 0x43, 0x6f,
+ 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6d, 0x6d,
+ 0x69, 0x74, 0x22, 0x8a, 0x02, 0x0a, 0x03, 0x54, 0x61, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
+ 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x0e,
+ 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x36,
+ 0x0a, 0x0d, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x18,
+ 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x79, 0x2e, 0x47,
+ 0x69, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
+ 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
+ 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
+ 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65,
+ 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53,
+ 0x69, 0x7a, 0x65, 0x12, 0x2c, 0x0a, 0x06, 0x74, 0x61, 0x67, 0x67, 0x65, 0x72, 0x18, 0x06, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6d,
+ 0x6d, 0x69, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x52, 0x06, 0x74, 0x61, 0x67, 0x67, 0x65,
+ 0x72, 0x12, 0x3c, 0x0a, 0x0e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x74,
+ 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x67, 0x69, 0x74, 0x61,
+ 0x6c, 0x79, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x54, 0x79, 0x70, 0x65,
+ 0x52, 0x0d, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22,
+ 0x66, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x13, 0x0a, 0x05, 0x67, 0x6c, 0x5f, 0x69, 0x64,
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x67, 0x6c, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04,
+ 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
+ 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52,
+ 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x67, 0x6c, 0x5f, 0x75, 0x73, 0x65,
+ 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x67, 0x6c, 0x55,
+ 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x46, 0x0a, 0x0a, 0x4f, 0x62, 0x6a, 0x65, 0x63,
+ 0x74, 0x50, 0x6f, 0x6f, 0x6c, 0x12, 0x38, 0x0a, 0x0a, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74,
+ 0x6f, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x67, 0x69, 0x74, 0x61,
+ 0x6c, 0x79, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x42, 0x04, 0x90,
+ 0xc6, 0x2c, 0x01, 0x52, 0x0a, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x22,
+ 0x4a, 0x0a, 0x13, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72,
+ 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74,
+ 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65,
+ 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02,
+ 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x3c, 0x0a, 0x0d, 0x47,
+ 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2b, 0x0a, 0x11,
+ 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x73, 0x70, 0x65, 0x63,
+ 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c,
+ 0x50, 0x61, 0x74, 0x68, 0x73, 0x70, 0x65, 0x63, 0x73, 0x2a, 0x42, 0x0a, 0x0a, 0x4f, 0x62, 0x6a,
+ 0x65, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f,
+ 0x57, 0x4e, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x43, 0x4f, 0x4d, 0x4d, 0x49, 0x54, 0x10, 0x01,
+ 0x12, 0x08, 0x0a, 0x04, 0x42, 0x4c, 0x4f, 0x42, 0x10, 0x02, 0x12, 0x08, 0x0a, 0x04, 0x54, 0x52,
+ 0x45, 0x45, 0x10, 0x03, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x41, 0x47, 0x10, 0x04, 0x2a, 0x2c, 0x0a,
+ 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x08,
+ 0x0a, 0x04, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x50, 0x47, 0x50, 0x10,
+ 0x01, 0x12, 0x08, 0x0a, 0x04, 0x58, 0x35, 0x30, 0x39, 0x10, 0x02, 0x42, 0x30, 0x5a, 0x2e, 0x67,
+ 0x69, 0x74, 0x6c, 0x61, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x69, 0x74, 0x6c, 0x61, 0x62,
+ 0x2d, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x79, 0x2f, 0x70, 0x72, 0x6f, 0x74,
+ 0x6f, 0x2f, 0x67, 0x6f, 0x2f, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x79, 0x70, 0x62, 0x62, 0x06, 0x70,
+ 0x72, 0x6f, 0x74, 0x6f, 0x33,
+}
+
+var (
+ file_shared_proto_rawDescOnce sync.Once
+ file_shared_proto_rawDescData = file_shared_proto_rawDesc
+)
+
+func file_shared_proto_rawDescGZIP() []byte {
+ file_shared_proto_rawDescOnce.Do(func() {
+ file_shared_proto_rawDescData = protoimpl.X.CompressGZIP(file_shared_proto_rawDescData)
+ })
+ return file_shared_proto_rawDescData
+}
+
+var file_shared_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
+var file_shared_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
+var file_shared_proto_goTypes = []interface{}{
+ (ObjectType)(0), // 0: gitaly.ObjectType
+ (SignatureType)(0), // 1: gitaly.SignatureType
+ (*Repository)(nil), // 2: gitaly.Repository
+ (*CommitTrailer)(nil), // 3: gitaly.CommitTrailer
+ (*GitCommit)(nil), // 4: gitaly.GitCommit
+ (*CommitAuthor)(nil), // 5: gitaly.CommitAuthor
+ (*ExitStatus)(nil), // 6: gitaly.ExitStatus
+ (*Branch)(nil), // 7: gitaly.Branch
+ (*Tag)(nil), // 8: gitaly.Tag
+ (*User)(nil), // 9: gitaly.User
+ (*ObjectPool)(nil), // 10: gitaly.ObjectPool
+ (*PaginationParameter)(nil), // 11: gitaly.PaginationParameter
+ (*GlobalOptions)(nil), // 12: gitaly.GlobalOptions
+ (*timestamp.Timestamp)(nil), // 13: google.protobuf.Timestamp
+}
+var file_shared_proto_depIdxs = []int32{
+ 5, // 0: gitaly.GitCommit.author:type_name -> gitaly.CommitAuthor
+ 5, // 1: gitaly.GitCommit.committer:type_name -> gitaly.CommitAuthor
+ 1, // 2: gitaly.GitCommit.signature_type:type_name -> gitaly.SignatureType
+ 3, // 3: gitaly.GitCommit.trailers:type_name -> gitaly.CommitTrailer
+ 13, // 4: gitaly.CommitAuthor.date:type_name -> google.protobuf.Timestamp
+ 4, // 5: gitaly.Branch.target_commit:type_name -> gitaly.GitCommit
+ 4, // 6: gitaly.Tag.target_commit:type_name -> gitaly.GitCommit
+ 5, // 7: gitaly.Tag.tagger:type_name -> gitaly.CommitAuthor
+ 1, // 8: gitaly.Tag.signature_type:type_name -> gitaly.SignatureType
+ 2, // 9: gitaly.ObjectPool.repository:type_name -> gitaly.Repository
+ 10, // [10:10] is the sub-list for method output_type
+ 10, // [10:10] is the sub-list for method input_type
+ 10, // [10:10] is the sub-list for extension type_name
+ 10, // [10:10] is the sub-list for extension extendee
+ 0, // [0:10] is the sub-list for field type_name
+}
+
+func init() { file_shared_proto_init() }
+func file_shared_proto_init() {
+ if File_shared_proto != nil {
+ return
+ }
+ file_lint_proto_init()
+ if !protoimpl.UnsafeEnabled {
+ file_shared_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*Repository); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_shared_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*CommitTrailer); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_shared_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*GitCommit); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_shared_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*CommitAuthor); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_shared_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*ExitStatus); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_shared_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*Branch); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_shared_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*Tag); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_shared_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*User); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_shared_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*ObjectPool); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_shared_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*PaginationParameter); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_shared_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*GlobalOptions); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ }
+ type x struct{}
+ out := protoimpl.TypeBuilder{
+ File: protoimpl.DescBuilder{
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+ RawDescriptor: file_shared_proto_rawDesc,
+ NumEnums: 2,
+ NumMessages: 11,
+ NumExtensions: 0,
+ NumServices: 0,
+ },
+ GoTypes: file_shared_proto_goTypes,
+ DependencyIndexes: file_shared_proto_depIdxs,
+ EnumInfos: file_shared_proto_enumTypes,
+ MessageInfos: file_shared_proto_msgTypes,
+ }.Build()
+ File_shared_proto = out.File
+ file_shared_proto_rawDesc = nil
+ file_shared_proto_goTypes = nil
+ file_shared_proto_depIdxs = nil
}