summaryrefslogtreecommitdiff
path: root/go/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/operations.pb.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/operations.pb.go')
-rw-r--r--go/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/operations.pb.go2483
1 files changed, 0 insertions, 2483 deletions
diff --git a/go/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/operations.pb.go b/go/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/operations.pb.go
deleted file mode 100644
index 45f93c3..0000000
--- a/go/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/operations.pb.go
+++ /dev/null
@@ -1,2483 +0,0 @@
-// Code generated by protoc-gen-go. DO NOT EDIT.
-// source: operations.proto
-
-package gitalypb
-
-import proto "github.com/golang/protobuf/proto"
-import fmt "fmt"
-import math "math"
-
-import (
- context "golang.org/x/net/context"
- grpc "google.golang.org/grpc"
-)
-
-// Reference imports to suppress errors if they are not otherwise used.
-var _ = proto.Marshal
-var _ = fmt.Errorf
-var _ = math.Inf
-
-type UserCommitFilesActionHeader_ActionType int32
-
-const (
- UserCommitFilesActionHeader_CREATE UserCommitFilesActionHeader_ActionType = 0
- UserCommitFilesActionHeader_CREATE_DIR UserCommitFilesActionHeader_ActionType = 1
- UserCommitFilesActionHeader_UPDATE UserCommitFilesActionHeader_ActionType = 2
- UserCommitFilesActionHeader_MOVE UserCommitFilesActionHeader_ActionType = 3
- UserCommitFilesActionHeader_DELETE UserCommitFilesActionHeader_ActionType = 4
- UserCommitFilesActionHeader_CHMOD UserCommitFilesActionHeader_ActionType = 5
-)
-
-var UserCommitFilesActionHeader_ActionType_name = map[int32]string{
- 0: "CREATE",
- 1: "CREATE_DIR",
- 2: "UPDATE",
- 3: "MOVE",
- 4: "DELETE",
- 5: "CHMOD",
-}
-var UserCommitFilesActionHeader_ActionType_value = map[string]int32{
- "CREATE": 0,
- "CREATE_DIR": 1,
- "UPDATE": 2,
- "MOVE": 3,
- "DELETE": 4,
- "CHMOD": 5,
-}
-
-func (x UserCommitFilesActionHeader_ActionType) String() string {
- return proto.EnumName(UserCommitFilesActionHeader_ActionType_name, int32(x))
-}
-func (UserCommitFilesActionHeader_ActionType) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor8, []int{21, 0}
-}
-
-type UserCreateBranchRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- BranchName []byte `protobuf:"bytes,2,opt,name=branch_name,json=branchName,proto3" json:"branch_name,omitempty"`
- User *User `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"`
- StartPoint []byte `protobuf:"bytes,4,opt,name=start_point,json=startPoint,proto3" json:"start_point,omitempty"`
-}
-
-func (m *UserCreateBranchRequest) Reset() { *m = UserCreateBranchRequest{} }
-func (m *UserCreateBranchRequest) String() string { return proto.CompactTextString(m) }
-func (*UserCreateBranchRequest) ProtoMessage() {}
-func (*UserCreateBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{0} }
-
-func (m *UserCreateBranchRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserCreateBranchRequest) GetBranchName() []byte {
- if m != nil {
- return m.BranchName
- }
- return nil
-}
-
-func (m *UserCreateBranchRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserCreateBranchRequest) GetStartPoint() []byte {
- if m != nil {
- return m.StartPoint
- }
- return nil
-}
-
-type UserCreateBranchResponse struct {
- Branch *Branch `protobuf:"bytes,1,opt,name=branch" json:"branch,omitempty"`
- // Error returned by the pre-receive hook. If no error was thrown,
- // it's the empty string ("")
- PreReceiveError string `protobuf:"bytes,2,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
-}
-
-func (m *UserCreateBranchResponse) Reset() { *m = UserCreateBranchResponse{} }
-func (m *UserCreateBranchResponse) String() string { return proto.CompactTextString(m) }
-func (*UserCreateBranchResponse) ProtoMessage() {}
-func (*UserCreateBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{1} }
-
-func (m *UserCreateBranchResponse) GetBranch() *Branch {
- if m != nil {
- return m.Branch
- }
- return nil
-}
-
-func (m *UserCreateBranchResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-type UserUpdateBranchRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- BranchName []byte `protobuf:"bytes,2,opt,name=branch_name,json=branchName,proto3" json:"branch_name,omitempty"`
- User *User `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"`
- Newrev []byte `protobuf:"bytes,4,opt,name=newrev,proto3" json:"newrev,omitempty"`
- Oldrev []byte `protobuf:"bytes,5,opt,name=oldrev,proto3" json:"oldrev,omitempty"`
-}
-
-func (m *UserUpdateBranchRequest) Reset() { *m = UserUpdateBranchRequest{} }
-func (m *UserUpdateBranchRequest) String() string { return proto.CompactTextString(m) }
-func (*UserUpdateBranchRequest) ProtoMessage() {}
-func (*UserUpdateBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{2} }
-
-func (m *UserUpdateBranchRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserUpdateBranchRequest) GetBranchName() []byte {
- if m != nil {
- return m.BranchName
- }
- return nil
-}
-
-func (m *UserUpdateBranchRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserUpdateBranchRequest) GetNewrev() []byte {
- if m != nil {
- return m.Newrev
- }
- return nil
-}
-
-func (m *UserUpdateBranchRequest) GetOldrev() []byte {
- if m != nil {
- return m.Oldrev
- }
- return nil
-}
-
-type UserUpdateBranchResponse struct {
- PreReceiveError string `protobuf:"bytes,1,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
-}
-
-func (m *UserUpdateBranchResponse) Reset() { *m = UserUpdateBranchResponse{} }
-func (m *UserUpdateBranchResponse) String() string { return proto.CompactTextString(m) }
-func (*UserUpdateBranchResponse) ProtoMessage() {}
-func (*UserUpdateBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{3} }
-
-func (m *UserUpdateBranchResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-type UserDeleteBranchRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- BranchName []byte `protobuf:"bytes,2,opt,name=branch_name,json=branchName,proto3" json:"branch_name,omitempty"`
- User *User `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"`
-}
-
-func (m *UserDeleteBranchRequest) Reset() { *m = UserDeleteBranchRequest{} }
-func (m *UserDeleteBranchRequest) String() string { return proto.CompactTextString(m) }
-func (*UserDeleteBranchRequest) ProtoMessage() {}
-func (*UserDeleteBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{4} }
-
-func (m *UserDeleteBranchRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserDeleteBranchRequest) GetBranchName() []byte {
- if m != nil {
- return m.BranchName
- }
- return nil
-}
-
-func (m *UserDeleteBranchRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-type UserDeleteBranchResponse struct {
- PreReceiveError string `protobuf:"bytes,1,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
-}
-
-func (m *UserDeleteBranchResponse) Reset() { *m = UserDeleteBranchResponse{} }
-func (m *UserDeleteBranchResponse) String() string { return proto.CompactTextString(m) }
-func (*UserDeleteBranchResponse) ProtoMessage() {}
-func (*UserDeleteBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{5} }
-
-func (m *UserDeleteBranchResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-type UserDeleteTagRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- TagName []byte `protobuf:"bytes,2,opt,name=tag_name,json=tagName,proto3" json:"tag_name,omitempty"`
- User *User `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"`
-}
-
-func (m *UserDeleteTagRequest) Reset() { *m = UserDeleteTagRequest{} }
-func (m *UserDeleteTagRequest) String() string { return proto.CompactTextString(m) }
-func (*UserDeleteTagRequest) ProtoMessage() {}
-func (*UserDeleteTagRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{6} }
-
-func (m *UserDeleteTagRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserDeleteTagRequest) GetTagName() []byte {
- if m != nil {
- return m.TagName
- }
- return nil
-}
-
-func (m *UserDeleteTagRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-type UserDeleteTagResponse struct {
- PreReceiveError string `protobuf:"bytes,1,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
-}
-
-func (m *UserDeleteTagResponse) Reset() { *m = UserDeleteTagResponse{} }
-func (m *UserDeleteTagResponse) String() string { return proto.CompactTextString(m) }
-func (*UserDeleteTagResponse) ProtoMessage() {}
-func (*UserDeleteTagResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{7} }
-
-func (m *UserDeleteTagResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-type UserCreateTagRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- TagName []byte `protobuf:"bytes,2,opt,name=tag_name,json=tagName,proto3" json:"tag_name,omitempty"`
- User *User `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"`
- TargetRevision []byte `protobuf:"bytes,4,opt,name=target_revision,json=targetRevision,proto3" json:"target_revision,omitempty"`
- Message []byte `protobuf:"bytes,5,opt,name=message,proto3" json:"message,omitempty"`
-}
-
-func (m *UserCreateTagRequest) Reset() { *m = UserCreateTagRequest{} }
-func (m *UserCreateTagRequest) String() string { return proto.CompactTextString(m) }
-func (*UserCreateTagRequest) ProtoMessage() {}
-func (*UserCreateTagRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{8} }
-
-func (m *UserCreateTagRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserCreateTagRequest) GetTagName() []byte {
- if m != nil {
- return m.TagName
- }
- return nil
-}
-
-func (m *UserCreateTagRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserCreateTagRequest) GetTargetRevision() []byte {
- if m != nil {
- return m.TargetRevision
- }
- return nil
-}
-
-func (m *UserCreateTagRequest) GetMessage() []byte {
- if m != nil {
- return m.Message
- }
- return nil
-}
-
-type UserCreateTagResponse struct {
- Tag *Tag `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
- Exists bool `protobuf:"varint,2,opt,name=exists" json:"exists,omitempty"`
- PreReceiveError string `protobuf:"bytes,3,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
-}
-
-func (m *UserCreateTagResponse) Reset() { *m = UserCreateTagResponse{} }
-func (m *UserCreateTagResponse) String() string { return proto.CompactTextString(m) }
-func (*UserCreateTagResponse) ProtoMessage() {}
-func (*UserCreateTagResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{9} }
-
-func (m *UserCreateTagResponse) GetTag() *Tag {
- if m != nil {
- return m.Tag
- }
- return nil
-}
-
-func (m *UserCreateTagResponse) GetExists() bool {
- if m != nil {
- return m.Exists
- }
- return false
-}
-
-func (m *UserCreateTagResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-type UserMergeBranchRequest struct {
- // First message
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
- CommitId string `protobuf:"bytes,3,opt,name=commit_id,json=commitId" json:"commit_id,omitempty"`
- Branch []byte `protobuf:"bytes,4,opt,name=branch,proto3" json:"branch,omitempty"`
- Message []byte `protobuf:"bytes,5,opt,name=message,proto3" json:"message,omitempty"`
- // Second message
- // Tell the server to apply the merge to the branch
- Apply bool `protobuf:"varint,6,opt,name=apply" json:"apply,omitempty"`
-}
-
-func (m *UserMergeBranchRequest) Reset() { *m = UserMergeBranchRequest{} }
-func (m *UserMergeBranchRequest) String() string { return proto.CompactTextString(m) }
-func (*UserMergeBranchRequest) ProtoMessage() {}
-func (*UserMergeBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{10} }
-
-func (m *UserMergeBranchRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserMergeBranchRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserMergeBranchRequest) GetCommitId() string {
- if m != nil {
- return m.CommitId
- }
- return ""
-}
-
-func (m *UserMergeBranchRequest) GetBranch() []byte {
- if m != nil {
- return m.Branch
- }
- return nil
-}
-
-func (m *UserMergeBranchRequest) GetMessage() []byte {
- if m != nil {
- return m.Message
- }
- return nil
-}
-
-func (m *UserMergeBranchRequest) GetApply() bool {
- if m != nil {
- return m.Apply
- }
- return false
-}
-
-type UserMergeBranchResponse struct {
- // First message
- // The merge commit the branch will be updated to. The caller can still abort the merge.
- CommitId string `protobuf:"bytes,1,opt,name=commit_id,json=commitId" json:"commit_id,omitempty"`
- // Second message
- // If set, the merge has been applied to the branch.
- BranchUpdate *OperationBranchUpdate `protobuf:"bytes,3,opt,name=branch_update,json=branchUpdate" json:"branch_update,omitempty"`
- PreReceiveError string `protobuf:"bytes,4,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
-}
-
-func (m *UserMergeBranchResponse) Reset() { *m = UserMergeBranchResponse{} }
-func (m *UserMergeBranchResponse) String() string { return proto.CompactTextString(m) }
-func (*UserMergeBranchResponse) ProtoMessage() {}
-func (*UserMergeBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{11} }
-
-func (m *UserMergeBranchResponse) GetCommitId() string {
- if m != nil {
- return m.CommitId
- }
- return ""
-}
-
-func (m *UserMergeBranchResponse) GetBranchUpdate() *OperationBranchUpdate {
- if m != nil {
- return m.BranchUpdate
- }
- return nil
-}
-
-func (m *UserMergeBranchResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-type UserMergeToRefRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
- SourceSha string `protobuf:"bytes,3,opt,name=source_sha,json=sourceSha" json:"source_sha,omitempty"`
- Branch []byte `protobuf:"bytes,4,opt,name=branch,proto3" json:"branch,omitempty"`
- // The merge of source_sha and branch has target_ref as target.
- //
- // The target_ref is _always_ overwritten when merging source_sha
- // and branch. That is, if a second request comes in, target_ref
- // will lose its previous state and be updated to the latest merge
- // between source_sha and branch.
- TargetRef []byte `protobuf:"bytes,5,opt,name=target_ref,json=targetRef,proto3" json:"target_ref,omitempty"`
- Message []byte `protobuf:"bytes,6,opt,name=message,proto3" json:"message,omitempty"`
-}
-
-func (m *UserMergeToRefRequest) Reset() { *m = UserMergeToRefRequest{} }
-func (m *UserMergeToRefRequest) String() string { return proto.CompactTextString(m) }
-func (*UserMergeToRefRequest) ProtoMessage() {}
-func (*UserMergeToRefRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{12} }
-
-func (m *UserMergeToRefRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserMergeToRefRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserMergeToRefRequest) GetSourceSha() string {
- if m != nil {
- return m.SourceSha
- }
- return ""
-}
-
-func (m *UserMergeToRefRequest) GetBranch() []byte {
- if m != nil {
- return m.Branch
- }
- return nil
-}
-
-func (m *UserMergeToRefRequest) GetTargetRef() []byte {
- if m != nil {
- return m.TargetRef
- }
- return nil
-}
-
-func (m *UserMergeToRefRequest) GetMessage() []byte {
- if m != nil {
- return m.Message
- }
- return nil
-}
-
-type UserMergeToRefResponse struct {
- CommitId string `protobuf:"bytes,1,opt,name=commit_id,json=commitId" json:"commit_id,omitempty"`
- PreReceiveError string `protobuf:"bytes,2,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
-}
-
-func (m *UserMergeToRefResponse) Reset() { *m = UserMergeToRefResponse{} }
-func (m *UserMergeToRefResponse) String() string { return proto.CompactTextString(m) }
-func (*UserMergeToRefResponse) ProtoMessage() {}
-func (*UserMergeToRefResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{13} }
-
-func (m *UserMergeToRefResponse) GetCommitId() string {
- if m != nil {
- return m.CommitId
- }
- return ""
-}
-
-func (m *UserMergeToRefResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-type OperationBranchUpdate struct {
- // If this string is non-empty the branch has been updated.
- CommitId string `protobuf:"bytes,1,opt,name=commit_id,json=commitId" json:"commit_id,omitempty"`
- // Used for cache invalidation in GitLab
- RepoCreated bool `protobuf:"varint,2,opt,name=repo_created,json=repoCreated" json:"repo_created,omitempty"`
- // Used for cache invalidation in GitLab
- BranchCreated bool `protobuf:"varint,3,opt,name=branch_created,json=branchCreated" json:"branch_created,omitempty"`
-}
-
-func (m *OperationBranchUpdate) Reset() { *m = OperationBranchUpdate{} }
-func (m *OperationBranchUpdate) String() string { return proto.CompactTextString(m) }
-func (*OperationBranchUpdate) ProtoMessage() {}
-func (*OperationBranchUpdate) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{14} }
-
-func (m *OperationBranchUpdate) GetCommitId() string {
- if m != nil {
- return m.CommitId
- }
- return ""
-}
-
-func (m *OperationBranchUpdate) GetRepoCreated() bool {
- if m != nil {
- return m.RepoCreated
- }
- return false
-}
-
-func (m *OperationBranchUpdate) GetBranchCreated() bool {
- if m != nil {
- return m.BranchCreated
- }
- return false
-}
-
-type UserFFBranchRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
- CommitId string `protobuf:"bytes,3,opt,name=commit_id,json=commitId" json:"commit_id,omitempty"`
- Branch []byte `protobuf:"bytes,4,opt,name=branch,proto3" json:"branch,omitempty"`
-}
-
-func (m *UserFFBranchRequest) Reset() { *m = UserFFBranchRequest{} }
-func (m *UserFFBranchRequest) String() string { return proto.CompactTextString(m) }
-func (*UserFFBranchRequest) ProtoMessage() {}
-func (*UserFFBranchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{15} }
-
-func (m *UserFFBranchRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserFFBranchRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserFFBranchRequest) GetCommitId() string {
- if m != nil {
- return m.CommitId
- }
- return ""
-}
-
-func (m *UserFFBranchRequest) GetBranch() []byte {
- if m != nil {
- return m.Branch
- }
- return nil
-}
-
-type UserFFBranchResponse struct {
- BranchUpdate *OperationBranchUpdate `protobuf:"bytes,1,opt,name=branch_update,json=branchUpdate" json:"branch_update,omitempty"`
- PreReceiveError string `protobuf:"bytes,2,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
-}
-
-func (m *UserFFBranchResponse) Reset() { *m = UserFFBranchResponse{} }
-func (m *UserFFBranchResponse) String() string { return proto.CompactTextString(m) }
-func (*UserFFBranchResponse) ProtoMessage() {}
-func (*UserFFBranchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{16} }
-
-func (m *UserFFBranchResponse) GetBranchUpdate() *OperationBranchUpdate {
- if m != nil {
- return m.BranchUpdate
- }
- return nil
-}
-
-func (m *UserFFBranchResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-type UserCherryPickRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
- Commit *GitCommit `protobuf:"bytes,3,opt,name=commit" json:"commit,omitempty"`
- BranchName []byte `protobuf:"bytes,4,opt,name=branch_name,json=branchName,proto3" json:"branch_name,omitempty"`
- Message []byte `protobuf:"bytes,5,opt,name=message,proto3" json:"message,omitempty"`
- StartBranchName []byte `protobuf:"bytes,6,opt,name=start_branch_name,json=startBranchName,proto3" json:"start_branch_name,omitempty"`
- StartRepository *Repository `protobuf:"bytes,7,opt,name=start_repository,json=startRepository" json:"start_repository,omitempty"`
-}
-
-func (m *UserCherryPickRequest) Reset() { *m = UserCherryPickRequest{} }
-func (m *UserCherryPickRequest) String() string { return proto.CompactTextString(m) }
-func (*UserCherryPickRequest) ProtoMessage() {}
-func (*UserCherryPickRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{17} }
-
-func (m *UserCherryPickRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserCherryPickRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserCherryPickRequest) GetCommit() *GitCommit {
- if m != nil {
- return m.Commit
- }
- return nil
-}
-
-func (m *UserCherryPickRequest) GetBranchName() []byte {
- if m != nil {
- return m.BranchName
- }
- return nil
-}
-
-func (m *UserCherryPickRequest) GetMessage() []byte {
- if m != nil {
- return m.Message
- }
- return nil
-}
-
-func (m *UserCherryPickRequest) GetStartBranchName() []byte {
- if m != nil {
- return m.StartBranchName
- }
- return nil
-}
-
-func (m *UserCherryPickRequest) GetStartRepository() *Repository {
- if m != nil {
- return m.StartRepository
- }
- return nil
-}
-
-type UserCherryPickResponse struct {
- BranchUpdate *OperationBranchUpdate `protobuf:"bytes,1,opt,name=branch_update,json=branchUpdate" json:"branch_update,omitempty"`
- CreateTreeError string `protobuf:"bytes,2,opt,name=create_tree_error,json=createTreeError" json:"create_tree_error,omitempty"`
- CommitError string `protobuf:"bytes,3,opt,name=commit_error,json=commitError" json:"commit_error,omitempty"`
- PreReceiveError string `protobuf:"bytes,4,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
-}
-
-func (m *UserCherryPickResponse) Reset() { *m = UserCherryPickResponse{} }
-func (m *UserCherryPickResponse) String() string { return proto.CompactTextString(m) }
-func (*UserCherryPickResponse) ProtoMessage() {}
-func (*UserCherryPickResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{18} }
-
-func (m *UserCherryPickResponse) GetBranchUpdate() *OperationBranchUpdate {
- if m != nil {
- return m.BranchUpdate
- }
- return nil
-}
-
-func (m *UserCherryPickResponse) GetCreateTreeError() string {
- if m != nil {
- return m.CreateTreeError
- }
- return ""
-}
-
-func (m *UserCherryPickResponse) GetCommitError() string {
- if m != nil {
- return m.CommitError
- }
- return ""
-}
-
-func (m *UserCherryPickResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-type UserRevertRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
- Commit *GitCommit `protobuf:"bytes,3,opt,name=commit" json:"commit,omitempty"`
- BranchName []byte `protobuf:"bytes,4,opt,name=branch_name,json=branchName,proto3" json:"branch_name,omitempty"`
- Message []byte `protobuf:"bytes,5,opt,name=message,proto3" json:"message,omitempty"`
- StartBranchName []byte `protobuf:"bytes,6,opt,name=start_branch_name,json=startBranchName,proto3" json:"start_branch_name,omitempty"`
- StartRepository *Repository `protobuf:"bytes,7,opt,name=start_repository,json=startRepository" json:"start_repository,omitempty"`
-}
-
-func (m *UserRevertRequest) Reset() { *m = UserRevertRequest{} }
-func (m *UserRevertRequest) String() string { return proto.CompactTextString(m) }
-func (*UserRevertRequest) ProtoMessage() {}
-func (*UserRevertRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{19} }
-
-func (m *UserRevertRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserRevertRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserRevertRequest) GetCommit() *GitCommit {
- if m != nil {
- return m.Commit
- }
- return nil
-}
-
-func (m *UserRevertRequest) GetBranchName() []byte {
- if m != nil {
- return m.BranchName
- }
- return nil
-}
-
-func (m *UserRevertRequest) GetMessage() []byte {
- if m != nil {
- return m.Message
- }
- return nil
-}
-
-func (m *UserRevertRequest) GetStartBranchName() []byte {
- if m != nil {
- return m.StartBranchName
- }
- return nil
-}
-
-func (m *UserRevertRequest) GetStartRepository() *Repository {
- if m != nil {
- return m.StartRepository
- }
- return nil
-}
-
-type UserRevertResponse struct {
- BranchUpdate *OperationBranchUpdate `protobuf:"bytes,1,opt,name=branch_update,json=branchUpdate" json:"branch_update,omitempty"`
- CreateTreeError string `protobuf:"bytes,2,opt,name=create_tree_error,json=createTreeError" json:"create_tree_error,omitempty"`
- CommitError string `protobuf:"bytes,3,opt,name=commit_error,json=commitError" json:"commit_error,omitempty"`
- PreReceiveError string `protobuf:"bytes,4,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
-}
-
-func (m *UserRevertResponse) Reset() { *m = UserRevertResponse{} }
-func (m *UserRevertResponse) String() string { return proto.CompactTextString(m) }
-func (*UserRevertResponse) ProtoMessage() {}
-func (*UserRevertResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{20} }
-
-func (m *UserRevertResponse) GetBranchUpdate() *OperationBranchUpdate {
- if m != nil {
- return m.BranchUpdate
- }
- return nil
-}
-
-func (m *UserRevertResponse) GetCreateTreeError() string {
- if m != nil {
- return m.CreateTreeError
- }
- return ""
-}
-
-func (m *UserRevertResponse) GetCommitError() string {
- if m != nil {
- return m.CommitError
- }
- return ""
-}
-
-func (m *UserRevertResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-type UserCommitFilesActionHeader struct {
- Action UserCommitFilesActionHeader_ActionType `protobuf:"varint,1,opt,name=action,enum=gitaly.UserCommitFilesActionHeader_ActionType" json:"action,omitempty"`
- FilePath []byte `protobuf:"bytes,2,opt,name=file_path,json=filePath,proto3" json:"file_path,omitempty"`
- PreviousPath []byte `protobuf:"bytes,3,opt,name=previous_path,json=previousPath,proto3" json:"previous_path,omitempty"`
- Base64Content bool `protobuf:"varint,4,opt,name=base64_content,json=base64Content" json:"base64_content,omitempty"`
- ExecuteFilemode bool `protobuf:"varint,5,opt,name=execute_filemode,json=executeFilemode" json:"execute_filemode,omitempty"`
- // Move actions that change the file path, but not its content, should set
- // infer_content to true instead of populating the content field. Ignored for
- // other action types.
- InferContent bool `protobuf:"varint,6,opt,name=infer_content,json=inferContent" json:"infer_content,omitempty"`
-}
-
-func (m *UserCommitFilesActionHeader) Reset() { *m = UserCommitFilesActionHeader{} }
-func (m *UserCommitFilesActionHeader) String() string { return proto.CompactTextString(m) }
-func (*UserCommitFilesActionHeader) ProtoMessage() {}
-func (*UserCommitFilesActionHeader) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{21} }
-
-func (m *UserCommitFilesActionHeader) GetAction() UserCommitFilesActionHeader_ActionType {
- if m != nil {
- return m.Action
- }
- return UserCommitFilesActionHeader_CREATE
-}
-
-func (m *UserCommitFilesActionHeader) GetFilePath() []byte {
- if m != nil {
- return m.FilePath
- }
- return nil
-}
-
-func (m *UserCommitFilesActionHeader) GetPreviousPath() []byte {
- if m != nil {
- return m.PreviousPath
- }
- return nil
-}
-
-func (m *UserCommitFilesActionHeader) GetBase64Content() bool {
- if m != nil {
- return m.Base64Content
- }
- return false
-}
-
-func (m *UserCommitFilesActionHeader) GetExecuteFilemode() bool {
- if m != nil {
- return m.ExecuteFilemode
- }
- return false
-}
-
-func (m *UserCommitFilesActionHeader) GetInferContent() bool {
- if m != nil {
- return m.InferContent
- }
- return false
-}
-
-type UserCommitFilesAction struct {
- // Types that are valid to be assigned to UserCommitFilesActionPayload:
- // *UserCommitFilesAction_Header
- // *UserCommitFilesAction_Content
- UserCommitFilesActionPayload isUserCommitFilesAction_UserCommitFilesActionPayload `protobuf_oneof:"user_commit_files_action_payload"`
-}
-
-func (m *UserCommitFilesAction) Reset() { *m = UserCommitFilesAction{} }
-func (m *UserCommitFilesAction) String() string { return proto.CompactTextString(m) }
-func (*UserCommitFilesAction) ProtoMessage() {}
-func (*UserCommitFilesAction) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{22} }
-
-type isUserCommitFilesAction_UserCommitFilesActionPayload interface{ isUserCommitFilesAction_UserCommitFilesActionPayload() }
-
-type UserCommitFilesAction_Header struct {
- Header *UserCommitFilesActionHeader `protobuf:"bytes,1,opt,name=header,oneof"`
-}
-type UserCommitFilesAction_Content struct {
- Content []byte `protobuf:"bytes,2,opt,name=content,proto3,oneof"`
-}
-
-func (*UserCommitFilesAction_Header) isUserCommitFilesAction_UserCommitFilesActionPayload() {}
-func (*UserCommitFilesAction_Content) isUserCommitFilesAction_UserCommitFilesActionPayload() {}
-
-func (m *UserCommitFilesAction) GetUserCommitFilesActionPayload() isUserCommitFilesAction_UserCommitFilesActionPayload {
- if m != nil {
- return m.UserCommitFilesActionPayload
- }
- return nil
-}
-
-func (m *UserCommitFilesAction) GetHeader() *UserCommitFilesActionHeader {
- if x, ok := m.GetUserCommitFilesActionPayload().(*UserCommitFilesAction_Header); ok {
- return x.Header
- }
- return nil
-}
-
-func (m *UserCommitFilesAction) GetContent() []byte {
- if x, ok := m.GetUserCommitFilesActionPayload().(*UserCommitFilesAction_Content); ok {
- return x.Content
- }
- return nil
-}
-
-// XXX_OneofFuncs is for the internal use of the proto package.
-func (*UserCommitFilesAction) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
- return _UserCommitFilesAction_OneofMarshaler, _UserCommitFilesAction_OneofUnmarshaler, _UserCommitFilesAction_OneofSizer, []interface{}{
- (*UserCommitFilesAction_Header)(nil),
- (*UserCommitFilesAction_Content)(nil),
- }
-}
-
-func _UserCommitFilesAction_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
- m := msg.(*UserCommitFilesAction)
- // user_commit_files_action_payload
- switch x := m.UserCommitFilesActionPayload.(type) {
- case *UserCommitFilesAction_Header:
- b.EncodeVarint(1<<3 | proto.WireBytes)
- if err := b.EncodeMessage(x.Header); err != nil {
- return err
- }
- case *UserCommitFilesAction_Content:
- b.EncodeVarint(2<<3 | proto.WireBytes)
- b.EncodeRawBytes(x.Content)
- case nil:
- default:
- return fmt.Errorf("UserCommitFilesAction.UserCommitFilesActionPayload has unexpected type %T", x)
- }
- return nil
-}
-
-func _UserCommitFilesAction_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
- m := msg.(*UserCommitFilesAction)
- switch tag {
- case 1: // user_commit_files_action_payload.header
- if wire != proto.WireBytes {
- return true, proto.ErrInternalBadWireType
- }
- msg := new(UserCommitFilesActionHeader)
- err := b.DecodeMessage(msg)
- m.UserCommitFilesActionPayload = &UserCommitFilesAction_Header{msg}
- return true, err
- case 2: // user_commit_files_action_payload.content
- if wire != proto.WireBytes {
- return true, proto.ErrInternalBadWireType
- }
- x, err := b.DecodeRawBytes(true)
- m.UserCommitFilesActionPayload = &UserCommitFilesAction_Content{x}
- return true, err
- default:
- return false, nil
- }
-}
-
-func _UserCommitFilesAction_OneofSizer(msg proto.Message) (n int) {
- m := msg.(*UserCommitFilesAction)
- // user_commit_files_action_payload
- switch x := m.UserCommitFilesActionPayload.(type) {
- case *UserCommitFilesAction_Header:
- s := proto.Size(x.Header)
- n += proto.SizeVarint(1<<3 | proto.WireBytes)
- n += proto.SizeVarint(uint64(s))
- n += s
- case *UserCommitFilesAction_Content:
- n += proto.SizeVarint(2<<3 | proto.WireBytes)
- n += proto.SizeVarint(uint64(len(x.Content)))
- n += len(x.Content)
- case nil:
- default:
- panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
- }
- return n
-}
-
-type UserCommitFilesRequestHeader struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
- BranchName []byte `protobuf:"bytes,3,opt,name=branch_name,json=branchName,proto3" json:"branch_name,omitempty"`
- CommitMessage []byte `protobuf:"bytes,4,opt,name=commit_message,json=commitMessage,proto3" json:"commit_message,omitempty"`
- CommitAuthorName []byte `protobuf:"bytes,5,opt,name=commit_author_name,json=commitAuthorName,proto3" json:"commit_author_name,omitempty"`
- CommitAuthorEmail []byte `protobuf:"bytes,6,opt,name=commit_author_email,json=commitAuthorEmail,proto3" json:"commit_author_email,omitempty"`
- StartBranchName []byte `protobuf:"bytes,7,opt,name=start_branch_name,json=startBranchName,proto3" json:"start_branch_name,omitempty"`
- StartRepository *Repository `protobuf:"bytes,8,opt,name=start_repository,json=startRepository" json:"start_repository,omitempty"`
-}
-
-func (m *UserCommitFilesRequestHeader) Reset() { *m = UserCommitFilesRequestHeader{} }
-func (m *UserCommitFilesRequestHeader) String() string { return proto.CompactTextString(m) }
-func (*UserCommitFilesRequestHeader) ProtoMessage() {}
-func (*UserCommitFilesRequestHeader) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{23} }
-
-func (m *UserCommitFilesRequestHeader) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserCommitFilesRequestHeader) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserCommitFilesRequestHeader) GetBranchName() []byte {
- if m != nil {
- return m.BranchName
- }
- return nil
-}
-
-func (m *UserCommitFilesRequestHeader) GetCommitMessage() []byte {
- if m != nil {
- return m.CommitMessage
- }
- return nil
-}
-
-func (m *UserCommitFilesRequestHeader) GetCommitAuthorName() []byte {
- if m != nil {
- return m.CommitAuthorName
- }
- return nil
-}
-
-func (m *UserCommitFilesRequestHeader) GetCommitAuthorEmail() []byte {
- if m != nil {
- return m.CommitAuthorEmail
- }
- return nil
-}
-
-func (m *UserCommitFilesRequestHeader) GetStartBranchName() []byte {
- if m != nil {
- return m.StartBranchName
- }
- return nil
-}
-
-func (m *UserCommitFilesRequestHeader) GetStartRepository() *Repository {
- if m != nil {
- return m.StartRepository
- }
- return nil
-}
-
-type UserCommitFilesRequest struct {
- // Types that are valid to be assigned to UserCommitFilesRequestPayload:
- // *UserCommitFilesRequest_Header
- // *UserCommitFilesRequest_Action
- UserCommitFilesRequestPayload isUserCommitFilesRequest_UserCommitFilesRequestPayload `protobuf_oneof:"user_commit_files_request_payload"`
-}
-
-func (m *UserCommitFilesRequest) Reset() { *m = UserCommitFilesRequest{} }
-func (m *UserCommitFilesRequest) String() string { return proto.CompactTextString(m) }
-func (*UserCommitFilesRequest) ProtoMessage() {}
-func (*UserCommitFilesRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{24} }
-
-type isUserCommitFilesRequest_UserCommitFilesRequestPayload interface{ isUserCommitFilesRequest_UserCommitFilesRequestPayload() }
-
-type UserCommitFilesRequest_Header struct {
- Header *UserCommitFilesRequestHeader `protobuf:"bytes,1,opt,name=header,oneof"`
-}
-type UserCommitFilesRequest_Action struct {
- Action *UserCommitFilesAction `protobuf:"bytes,2,opt,name=action,oneof"`
-}
-
-func (*UserCommitFilesRequest_Header) isUserCommitFilesRequest_UserCommitFilesRequestPayload() {}
-func (*UserCommitFilesRequest_Action) isUserCommitFilesRequest_UserCommitFilesRequestPayload() {}
-
-func (m *UserCommitFilesRequest) GetUserCommitFilesRequestPayload() isUserCommitFilesRequest_UserCommitFilesRequestPayload {
- if m != nil {
- return m.UserCommitFilesRequestPayload
- }
- return nil
-}
-
-func (m *UserCommitFilesRequest) GetHeader() *UserCommitFilesRequestHeader {
- if x, ok := m.GetUserCommitFilesRequestPayload().(*UserCommitFilesRequest_Header); ok {
- return x.Header
- }
- return nil
-}
-
-func (m *UserCommitFilesRequest) GetAction() *UserCommitFilesAction {
- if x, ok := m.GetUserCommitFilesRequestPayload().(*UserCommitFilesRequest_Action); ok {
- return x.Action
- }
- return nil
-}
-
-// XXX_OneofFuncs is for the internal use of the proto package.
-func (*UserCommitFilesRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
- return _UserCommitFilesRequest_OneofMarshaler, _UserCommitFilesRequest_OneofUnmarshaler, _UserCommitFilesRequest_OneofSizer, []interface{}{
- (*UserCommitFilesRequest_Header)(nil),
- (*UserCommitFilesRequest_Action)(nil),
- }
-}
-
-func _UserCommitFilesRequest_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
- m := msg.(*UserCommitFilesRequest)
- // user_commit_files_request_payload
- switch x := m.UserCommitFilesRequestPayload.(type) {
- case *UserCommitFilesRequest_Header:
- b.EncodeVarint(1<<3 | proto.WireBytes)
- if err := b.EncodeMessage(x.Header); err != nil {
- return err
- }
- case *UserCommitFilesRequest_Action:
- b.EncodeVarint(2<<3 | proto.WireBytes)
- if err := b.EncodeMessage(x.Action); err != nil {
- return err
- }
- case nil:
- default:
- return fmt.Errorf("UserCommitFilesRequest.UserCommitFilesRequestPayload has unexpected type %T", x)
- }
- return nil
-}
-
-func _UserCommitFilesRequest_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
- m := msg.(*UserCommitFilesRequest)
- switch tag {
- case 1: // user_commit_files_request_payload.header
- if wire != proto.WireBytes {
- return true, proto.ErrInternalBadWireType
- }
- msg := new(UserCommitFilesRequestHeader)
- err := b.DecodeMessage(msg)
- m.UserCommitFilesRequestPayload = &UserCommitFilesRequest_Header{msg}
- return true, err
- case 2: // user_commit_files_request_payload.action
- if wire != proto.WireBytes {
- return true, proto.ErrInternalBadWireType
- }
- msg := new(UserCommitFilesAction)
- err := b.DecodeMessage(msg)
- m.UserCommitFilesRequestPayload = &UserCommitFilesRequest_Action{msg}
- return true, err
- default:
- return false, nil
- }
-}
-
-func _UserCommitFilesRequest_OneofSizer(msg proto.Message) (n int) {
- m := msg.(*UserCommitFilesRequest)
- // user_commit_files_request_payload
- switch x := m.UserCommitFilesRequestPayload.(type) {
- case *UserCommitFilesRequest_Header:
- s := proto.Size(x.Header)
- n += proto.SizeVarint(1<<3 | proto.WireBytes)
- n += proto.SizeVarint(uint64(s))
- n += s
- case *UserCommitFilesRequest_Action:
- s := proto.Size(x.Action)
- n += proto.SizeVarint(2<<3 | proto.WireBytes)
- n += proto.SizeVarint(uint64(s))
- n += s
- case nil:
- default:
- panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
- }
- return n
-}
-
-type UserCommitFilesResponse struct {
- BranchUpdate *OperationBranchUpdate `protobuf:"bytes,1,opt,name=branch_update,json=branchUpdate" json:"branch_update,omitempty"`
- IndexError string `protobuf:"bytes,2,opt,name=index_error,json=indexError" json:"index_error,omitempty"`
- PreReceiveError string `protobuf:"bytes,3,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
-}
-
-func (m *UserCommitFilesResponse) Reset() { *m = UserCommitFilesResponse{} }
-func (m *UserCommitFilesResponse) String() string { return proto.CompactTextString(m) }
-func (*UserCommitFilesResponse) ProtoMessage() {}
-func (*UserCommitFilesResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{25} }
-
-func (m *UserCommitFilesResponse) GetBranchUpdate() *OperationBranchUpdate {
- if m != nil {
- return m.BranchUpdate
- }
- return nil
-}
-
-func (m *UserCommitFilesResponse) GetIndexError() string {
- if m != nil {
- return m.IndexError
- }
- return ""
-}
-
-func (m *UserCommitFilesResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-type UserRebaseRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
- RebaseId string `protobuf:"bytes,3,opt,name=rebase_id,json=rebaseId" json:"rebase_id,omitempty"`
- Branch []byte `protobuf:"bytes,4,opt,name=branch,proto3" json:"branch,omitempty"`
- BranchSha string `protobuf:"bytes,5,opt,name=branch_sha,json=branchSha" json:"branch_sha,omitempty"`
- RemoteRepository *Repository `protobuf:"bytes,6,opt,name=remote_repository,json=remoteRepository" json:"remote_repository,omitempty"`
- RemoteBranch []byte `protobuf:"bytes,7,opt,name=remote_branch,json=remoteBranch,proto3" json:"remote_branch,omitempty"`
-}
-
-func (m *UserRebaseRequest) Reset() { *m = UserRebaseRequest{} }
-func (m *UserRebaseRequest) String() string { return proto.CompactTextString(m) }
-func (*UserRebaseRequest) ProtoMessage() {}
-func (*UserRebaseRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{26} }
-
-func (m *UserRebaseRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserRebaseRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserRebaseRequest) GetRebaseId() string {
- if m != nil {
- return m.RebaseId
- }
- return ""
-}
-
-func (m *UserRebaseRequest) GetBranch() []byte {
- if m != nil {
- return m.Branch
- }
- return nil
-}
-
-func (m *UserRebaseRequest) GetBranchSha() string {
- if m != nil {
- return m.BranchSha
- }
- return ""
-}
-
-func (m *UserRebaseRequest) GetRemoteRepository() *Repository {
- if m != nil {
- return m.RemoteRepository
- }
- return nil
-}
-
-func (m *UserRebaseRequest) GetRemoteBranch() []byte {
- if m != nil {
- return m.RemoteBranch
- }
- return nil
-}
-
-type UserRebaseResponse struct {
- RebaseSha string `protobuf:"bytes,1,opt,name=rebase_sha,json=rebaseSha" json:"rebase_sha,omitempty"`
- PreReceiveError string `protobuf:"bytes,2,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
- GitError string `protobuf:"bytes,3,opt,name=git_error,json=gitError" json:"git_error,omitempty"`
-}
-
-func (m *UserRebaseResponse) Reset() { *m = UserRebaseResponse{} }
-func (m *UserRebaseResponse) String() string { return proto.CompactTextString(m) }
-func (*UserRebaseResponse) ProtoMessage() {}
-func (*UserRebaseResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{27} }
-
-func (m *UserRebaseResponse) GetRebaseSha() string {
- if m != nil {
- return m.RebaseSha
- }
- return ""
-}
-
-func (m *UserRebaseResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-func (m *UserRebaseResponse) GetGitError() string {
- if m != nil {
- return m.GitError
- }
- return ""
-}
-
-type UserSquashRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
- SquashId string `protobuf:"bytes,3,opt,name=squash_id,json=squashId" json:"squash_id,omitempty"`
- Branch []byte `protobuf:"bytes,4,opt,name=branch,proto3" json:"branch,omitempty"`
- StartSha string `protobuf:"bytes,5,opt,name=start_sha,json=startSha" json:"start_sha,omitempty"`
- EndSha string `protobuf:"bytes,6,opt,name=end_sha,json=endSha" json:"end_sha,omitempty"`
- Author *User `protobuf:"bytes,7,opt,name=author" json:"author,omitempty"`
- CommitMessage []byte `protobuf:"bytes,8,opt,name=commit_message,json=commitMessage,proto3" json:"commit_message,omitempty"`
-}
-
-func (m *UserSquashRequest) Reset() { *m = UserSquashRequest{} }
-func (m *UserSquashRequest) String() string { return proto.CompactTextString(m) }
-func (*UserSquashRequest) ProtoMessage() {}
-func (*UserSquashRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{28} }
-
-func (m *UserSquashRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserSquashRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserSquashRequest) GetSquashId() string {
- if m != nil {
- return m.SquashId
- }
- return ""
-}
-
-func (m *UserSquashRequest) GetBranch() []byte {
- if m != nil {
- return m.Branch
- }
- return nil
-}
-
-func (m *UserSquashRequest) GetStartSha() string {
- if m != nil {
- return m.StartSha
- }
- return ""
-}
-
-func (m *UserSquashRequest) GetEndSha() string {
- if m != nil {
- return m.EndSha
- }
- return ""
-}
-
-func (m *UserSquashRequest) GetAuthor() *User {
- if m != nil {
- return m.Author
- }
- return nil
-}
-
-func (m *UserSquashRequest) GetCommitMessage() []byte {
- if m != nil {
- return m.CommitMessage
- }
- return nil
-}
-
-type UserSquashResponse struct {
- SquashSha string `protobuf:"bytes,1,opt,name=squash_sha,json=squashSha" json:"squash_sha,omitempty"`
- GitError string `protobuf:"bytes,3,opt,name=git_error,json=gitError" json:"git_error,omitempty"`
-}
-
-func (m *UserSquashResponse) Reset() { *m = UserSquashResponse{} }
-func (m *UserSquashResponse) String() string { return proto.CompactTextString(m) }
-func (*UserSquashResponse) ProtoMessage() {}
-func (*UserSquashResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{29} }
-
-func (m *UserSquashResponse) GetSquashSha() string {
- if m != nil {
- return m.SquashSha
- }
- return ""
-}
-
-func (m *UserSquashResponse) GetGitError() string {
- if m != nil {
- return m.GitError
- }
- return ""
-}
-
-type UserApplyPatchRequest struct {
- // Types that are valid to be assigned to UserApplyPatchRequestPayload:
- // *UserApplyPatchRequest_Header_
- // *UserApplyPatchRequest_Patches
- UserApplyPatchRequestPayload isUserApplyPatchRequest_UserApplyPatchRequestPayload `protobuf_oneof:"user_apply_patch_request_payload"`
-}
-
-func (m *UserApplyPatchRequest) Reset() { *m = UserApplyPatchRequest{} }
-func (m *UserApplyPatchRequest) String() string { return proto.CompactTextString(m) }
-func (*UserApplyPatchRequest) ProtoMessage() {}
-func (*UserApplyPatchRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{30} }
-
-type isUserApplyPatchRequest_UserApplyPatchRequestPayload interface{ isUserApplyPatchRequest_UserApplyPatchRequestPayload() }
-
-type UserApplyPatchRequest_Header_ struct {
- Header *UserApplyPatchRequest_Header `protobuf:"bytes,1,opt,name=header,oneof"`
-}
-type UserApplyPatchRequest_Patches struct {
- Patches []byte `protobuf:"bytes,2,opt,name=patches,proto3,oneof"`
-}
-
-func (*UserApplyPatchRequest_Header_) isUserApplyPatchRequest_UserApplyPatchRequestPayload() {}
-func (*UserApplyPatchRequest_Patches) isUserApplyPatchRequest_UserApplyPatchRequestPayload() {}
-
-func (m *UserApplyPatchRequest) GetUserApplyPatchRequestPayload() isUserApplyPatchRequest_UserApplyPatchRequestPayload {
- if m != nil {
- return m.UserApplyPatchRequestPayload
- }
- return nil
-}
-
-func (m *UserApplyPatchRequest) GetHeader() *UserApplyPatchRequest_Header {
- if x, ok := m.GetUserApplyPatchRequestPayload().(*UserApplyPatchRequest_Header_); ok {
- return x.Header
- }
- return nil
-}
-
-func (m *UserApplyPatchRequest) GetPatches() []byte {
- if x, ok := m.GetUserApplyPatchRequestPayload().(*UserApplyPatchRequest_Patches); ok {
- return x.Patches
- }
- return nil
-}
-
-// XXX_OneofFuncs is for the internal use of the proto package.
-func (*UserApplyPatchRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
- return _UserApplyPatchRequest_OneofMarshaler, _UserApplyPatchRequest_OneofUnmarshaler, _UserApplyPatchRequest_OneofSizer, []interface{}{
- (*UserApplyPatchRequest_Header_)(nil),
- (*UserApplyPatchRequest_Patches)(nil),
- }
-}
-
-func _UserApplyPatchRequest_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
- m := msg.(*UserApplyPatchRequest)
- // user_apply_patch_request_payload
- switch x := m.UserApplyPatchRequestPayload.(type) {
- case *UserApplyPatchRequest_Header_:
- b.EncodeVarint(1<<3 | proto.WireBytes)
- if err := b.EncodeMessage(x.Header); err != nil {
- return err
- }
- case *UserApplyPatchRequest_Patches:
- b.EncodeVarint(2<<3 | proto.WireBytes)
- b.EncodeRawBytes(x.Patches)
- case nil:
- default:
- return fmt.Errorf("UserApplyPatchRequest.UserApplyPatchRequestPayload has unexpected type %T", x)
- }
- return nil
-}
-
-func _UserApplyPatchRequest_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
- m := msg.(*UserApplyPatchRequest)
- switch tag {
- case 1: // user_apply_patch_request_payload.header
- if wire != proto.WireBytes {
- return true, proto.ErrInternalBadWireType
- }
- msg := new(UserApplyPatchRequest_Header)
- err := b.DecodeMessage(msg)
- m.UserApplyPatchRequestPayload = &UserApplyPatchRequest_Header_{msg}
- return true, err
- case 2: // user_apply_patch_request_payload.patches
- if wire != proto.WireBytes {
- return true, proto.ErrInternalBadWireType
- }
- x, err := b.DecodeRawBytes(true)
- m.UserApplyPatchRequestPayload = &UserApplyPatchRequest_Patches{x}
- return true, err
- default:
- return false, nil
- }
-}
-
-func _UserApplyPatchRequest_OneofSizer(msg proto.Message) (n int) {
- m := msg.(*UserApplyPatchRequest)
- // user_apply_patch_request_payload
- switch x := m.UserApplyPatchRequestPayload.(type) {
- case *UserApplyPatchRequest_Header_:
- s := proto.Size(x.Header)
- n += proto.SizeVarint(1<<3 | proto.WireBytes)
- n += proto.SizeVarint(uint64(s))
- n += s
- case *UserApplyPatchRequest_Patches:
- n += proto.SizeVarint(2<<3 | proto.WireBytes)
- n += proto.SizeVarint(uint64(len(x.Patches)))
- n += len(x.Patches)
- case nil:
- default:
- panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
- }
- return n
-}
-
-type UserApplyPatchRequest_Header struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
- TargetBranch []byte `protobuf:"bytes,3,opt,name=target_branch,json=targetBranch,proto3" json:"target_branch,omitempty"`
-}
-
-func (m *UserApplyPatchRequest_Header) Reset() { *m = UserApplyPatchRequest_Header{} }
-func (m *UserApplyPatchRequest_Header) String() string { return proto.CompactTextString(m) }
-func (*UserApplyPatchRequest_Header) ProtoMessage() {}
-func (*UserApplyPatchRequest_Header) Descriptor() ([]byte, []int) {
- return fileDescriptor8, []int{30, 0}
-}
-
-func (m *UserApplyPatchRequest_Header) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserApplyPatchRequest_Header) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserApplyPatchRequest_Header) GetTargetBranch() []byte {
- if m != nil {
- return m.TargetBranch
- }
- return nil
-}
-
-type UserApplyPatchResponse struct {
- BranchUpdate *OperationBranchUpdate `protobuf:"bytes,1,opt,name=branch_update,json=branchUpdate" json:"branch_update,omitempty"`
-}
-
-func (m *UserApplyPatchResponse) Reset() { *m = UserApplyPatchResponse{} }
-func (m *UserApplyPatchResponse) String() string { return proto.CompactTextString(m) }
-func (*UserApplyPatchResponse) ProtoMessage() {}
-func (*UserApplyPatchResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{31} }
-
-func (m *UserApplyPatchResponse) GetBranchUpdate() *OperationBranchUpdate {
- if m != nil {
- return m.BranchUpdate
- }
- return nil
-}
-
-type UserUpdateSubmoduleRequest struct {
- Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
- User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
- CommitSha string `protobuf:"bytes,3,opt,name=commit_sha,json=commitSha" json:"commit_sha,omitempty"`
- Branch []byte `protobuf:"bytes,4,opt,name=branch,proto3" json:"branch,omitempty"`
- Submodule []byte `protobuf:"bytes,5,opt,name=submodule,proto3" json:"submodule,omitempty"`
- CommitMessage []byte `protobuf:"bytes,6,opt,name=commit_message,json=commitMessage,proto3" json:"commit_message,omitempty"`
-}
-
-func (m *UserUpdateSubmoduleRequest) Reset() { *m = UserUpdateSubmoduleRequest{} }
-func (m *UserUpdateSubmoduleRequest) String() string { return proto.CompactTextString(m) }
-func (*UserUpdateSubmoduleRequest) ProtoMessage() {}
-func (*UserUpdateSubmoduleRequest) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{32} }
-
-func (m *UserUpdateSubmoduleRequest) GetRepository() *Repository {
- if m != nil {
- return m.Repository
- }
- return nil
-}
-
-func (m *UserUpdateSubmoduleRequest) GetUser() *User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (m *UserUpdateSubmoduleRequest) GetCommitSha() string {
- if m != nil {
- return m.CommitSha
- }
- return ""
-}
-
-func (m *UserUpdateSubmoduleRequest) GetBranch() []byte {
- if m != nil {
- return m.Branch
- }
- return nil
-}
-
-func (m *UserUpdateSubmoduleRequest) GetSubmodule() []byte {
- if m != nil {
- return m.Submodule
- }
- return nil
-}
-
-func (m *UserUpdateSubmoduleRequest) GetCommitMessage() []byte {
- if m != nil {
- return m.CommitMessage
- }
- return nil
-}
-
-type UserUpdateSubmoduleResponse struct {
- BranchUpdate *OperationBranchUpdate `protobuf:"bytes,1,opt,name=branch_update,json=branchUpdate" json:"branch_update,omitempty"`
- PreReceiveError string `protobuf:"bytes,2,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
- CommitError string `protobuf:"bytes,4,opt,name=commit_error,json=commitError" json:"commit_error,omitempty"`
-}
-
-func (m *UserUpdateSubmoduleResponse) Reset() { *m = UserUpdateSubmoduleResponse{} }
-func (m *UserUpdateSubmoduleResponse) String() string { return proto.CompactTextString(m) }
-func (*UserUpdateSubmoduleResponse) ProtoMessage() {}
-func (*UserUpdateSubmoduleResponse) Descriptor() ([]byte, []int) { return fileDescriptor8, []int{33} }
-
-func (m *UserUpdateSubmoduleResponse) GetBranchUpdate() *OperationBranchUpdate {
- if m != nil {
- return m.BranchUpdate
- }
- return nil
-}
-
-func (m *UserUpdateSubmoduleResponse) GetPreReceiveError() string {
- if m != nil {
- return m.PreReceiveError
- }
- return ""
-}
-
-func (m *UserUpdateSubmoduleResponse) GetCommitError() string {
- if m != nil {
- return m.CommitError
- }
- return ""
-}
-
-func init() {
- proto.RegisterType((*UserCreateBranchRequest)(nil), "gitaly.UserCreateBranchRequest")
- proto.RegisterType((*UserCreateBranchResponse)(nil), "gitaly.UserCreateBranchResponse")
- proto.RegisterType((*UserUpdateBranchRequest)(nil), "gitaly.UserUpdateBranchRequest")
- proto.RegisterType((*UserUpdateBranchResponse)(nil), "gitaly.UserUpdateBranchResponse")
- proto.RegisterType((*UserDeleteBranchRequest)(nil), "gitaly.UserDeleteBranchRequest")
- proto.RegisterType((*UserDeleteBranchResponse)(nil), "gitaly.UserDeleteBranchResponse")
- proto.RegisterType((*UserDeleteTagRequest)(nil), "gitaly.UserDeleteTagRequest")
- proto.RegisterType((*UserDeleteTagResponse)(nil), "gitaly.UserDeleteTagResponse")
- proto.RegisterType((*UserCreateTagRequest)(nil), "gitaly.UserCreateTagRequest")
- proto.RegisterType((*UserCreateTagResponse)(nil), "gitaly.UserCreateTagResponse")
- proto.RegisterType((*UserMergeBranchRequest)(nil), "gitaly.UserMergeBranchRequest")
- proto.RegisterType((*UserMergeBranchResponse)(nil), "gitaly.UserMergeBranchResponse")
- proto.RegisterType((*UserMergeToRefRequest)(nil), "gitaly.UserMergeToRefRequest")
- proto.RegisterType((*UserMergeToRefResponse)(nil), "gitaly.UserMergeToRefResponse")
- proto.RegisterType((*OperationBranchUpdate)(nil), "gitaly.OperationBranchUpdate")
- proto.RegisterType((*UserFFBranchRequest)(nil), "gitaly.UserFFBranchRequest")
- proto.RegisterType((*UserFFBranchResponse)(nil), "gitaly.UserFFBranchResponse")
- proto.RegisterType((*UserCherryPickRequest)(nil), "gitaly.UserCherryPickRequest")
- proto.RegisterType((*UserCherryPickResponse)(nil), "gitaly.UserCherryPickResponse")
- proto.RegisterType((*UserRevertRequest)(nil), "gitaly.UserRevertRequest")
- proto.RegisterType((*UserRevertResponse)(nil), "gitaly.UserRevertResponse")
- proto.RegisterType((*UserCommitFilesActionHeader)(nil), "gitaly.UserCommitFilesActionHeader")
- proto.RegisterType((*UserCommitFilesAction)(nil), "gitaly.UserCommitFilesAction")
- proto.RegisterType((*UserCommitFilesRequestHeader)(nil), "gitaly.UserCommitFilesRequestHeader")
- proto.RegisterType((*UserCommitFilesRequest)(nil), "gitaly.UserCommitFilesRequest")
- proto.RegisterType((*UserCommitFilesResponse)(nil), "gitaly.UserCommitFilesResponse")
- proto.RegisterType((*UserRebaseRequest)(nil), "gitaly.UserRebaseRequest")
- proto.RegisterType((*UserRebaseResponse)(nil), "gitaly.UserRebaseResponse")
- proto.RegisterType((*UserSquashRequest)(nil), "gitaly.UserSquashRequest")
- proto.RegisterType((*UserSquashResponse)(nil), "gitaly.UserSquashResponse")
- proto.RegisterType((*UserApplyPatchRequest)(nil), "gitaly.UserApplyPatchRequest")
- proto.RegisterType((*UserApplyPatchRequest_Header)(nil), "gitaly.UserApplyPatchRequest.Header")
- proto.RegisterType((*UserApplyPatchResponse)(nil), "gitaly.UserApplyPatchResponse")
- proto.RegisterType((*UserUpdateSubmoduleRequest)(nil), "gitaly.UserUpdateSubmoduleRequest")
- proto.RegisterType((*UserUpdateSubmoduleResponse)(nil), "gitaly.UserUpdateSubmoduleResponse")
- proto.RegisterEnum("gitaly.UserCommitFilesActionHeader_ActionType", UserCommitFilesActionHeader_ActionType_name, UserCommitFilesActionHeader_ActionType_value)
-}
-
-// Reference imports to suppress errors if they are not otherwise used.
-var _ context.Context
-var _ grpc.ClientConn
-
-// This is a compile-time assertion to ensure that this generated file
-// is compatible with the grpc package it is being compiled against.
-const _ = grpc.SupportPackageIsVersion4
-
-// Client API for OperationService service
-
-type OperationServiceClient interface {
- UserCreateBranch(ctx context.Context, in *UserCreateBranchRequest, opts ...grpc.CallOption) (*UserCreateBranchResponse, error)
- UserUpdateBranch(ctx context.Context, in *UserUpdateBranchRequest, opts ...grpc.CallOption) (*UserUpdateBranchResponse, error)
- UserDeleteBranch(ctx context.Context, in *UserDeleteBranchRequest, opts ...grpc.CallOption) (*UserDeleteBranchResponse, error)
- UserCreateTag(ctx context.Context, in *UserCreateTagRequest, opts ...grpc.CallOption) (*UserCreateTagResponse, error)
- UserDeleteTag(ctx context.Context, in *UserDeleteTagRequest, opts ...grpc.CallOption) (*UserDeleteTagResponse, error)
- UserMergeToRef(ctx context.Context, in *UserMergeToRefRequest, opts ...grpc.CallOption) (*UserMergeToRefResponse, error)
- UserMergeBranch(ctx context.Context, opts ...grpc.CallOption) (OperationService_UserMergeBranchClient, error)
- UserFFBranch(ctx context.Context, in *UserFFBranchRequest, opts ...grpc.CallOption) (*UserFFBranchResponse, error)
- UserCherryPick(ctx context.Context, in *UserCherryPickRequest, opts ...grpc.CallOption) (*UserCherryPickResponse, error)
- UserRevert(ctx context.Context, in *UserRevertRequest, opts ...grpc.CallOption) (*UserRevertResponse, error)
- UserCommitFiles(ctx context.Context, opts ...grpc.CallOption) (OperationService_UserCommitFilesClient, error)
- UserRebase(ctx context.Context, in *UserRebaseRequest, opts ...grpc.CallOption) (*UserRebaseResponse, error)
- UserSquash(ctx context.Context, in *UserSquashRequest, opts ...grpc.CallOption) (*UserSquashResponse, error)
- UserApplyPatch(ctx context.Context, opts ...grpc.CallOption) (OperationService_UserApplyPatchClient, error)
- UserUpdateSubmodule(ctx context.Context, in *UserUpdateSubmoduleRequest, opts ...grpc.CallOption) (*UserUpdateSubmoduleResponse, error)
-}
-
-type operationServiceClient struct {
- cc *grpc.ClientConn
-}
-
-func NewOperationServiceClient(cc *grpc.ClientConn) OperationServiceClient {
- return &operationServiceClient{cc}
-}
-
-func (c *operationServiceClient) UserCreateBranch(ctx context.Context, in *UserCreateBranchRequest, opts ...grpc.CallOption) (*UserCreateBranchResponse, error) {
- out := new(UserCreateBranchResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserCreateBranch", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-func (c *operationServiceClient) UserUpdateBranch(ctx context.Context, in *UserUpdateBranchRequest, opts ...grpc.CallOption) (*UserUpdateBranchResponse, error) {
- out := new(UserUpdateBranchResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserUpdateBranch", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-func (c *operationServiceClient) UserDeleteBranch(ctx context.Context, in *UserDeleteBranchRequest, opts ...grpc.CallOption) (*UserDeleteBranchResponse, error) {
- out := new(UserDeleteBranchResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserDeleteBranch", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-func (c *operationServiceClient) UserCreateTag(ctx context.Context, in *UserCreateTagRequest, opts ...grpc.CallOption) (*UserCreateTagResponse, error) {
- out := new(UserCreateTagResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserCreateTag", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-func (c *operationServiceClient) UserDeleteTag(ctx context.Context, in *UserDeleteTagRequest, opts ...grpc.CallOption) (*UserDeleteTagResponse, error) {
- out := new(UserDeleteTagResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserDeleteTag", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-func (c *operationServiceClient) UserMergeToRef(ctx context.Context, in *UserMergeToRefRequest, opts ...grpc.CallOption) (*UserMergeToRefResponse, error) {
- out := new(UserMergeToRefResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserMergeToRef", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-func (c *operationServiceClient) UserMergeBranch(ctx context.Context, opts ...grpc.CallOption) (OperationService_UserMergeBranchClient, error) {
- stream, err := grpc.NewClientStream(ctx, &_OperationService_serviceDesc.Streams[0], c.cc, "/gitaly.OperationService/UserMergeBranch", opts...)
- if err != nil {
- return nil, err
- }
- x := &operationServiceUserMergeBranchClient{stream}
- return x, nil
-}
-
-type OperationService_UserMergeBranchClient interface {
- Send(*UserMergeBranchRequest) error
- Recv() (*UserMergeBranchResponse, error)
- grpc.ClientStream
-}
-
-type operationServiceUserMergeBranchClient struct {
- grpc.ClientStream
-}
-
-func (x *operationServiceUserMergeBranchClient) Send(m *UserMergeBranchRequest) error {
- return x.ClientStream.SendMsg(m)
-}
-
-func (x *operationServiceUserMergeBranchClient) Recv() (*UserMergeBranchResponse, error) {
- m := new(UserMergeBranchResponse)
- if err := x.ClientStream.RecvMsg(m); err != nil {
- return nil, err
- }
- return m, nil
-}
-
-func (c *operationServiceClient) UserFFBranch(ctx context.Context, in *UserFFBranchRequest, opts ...grpc.CallOption) (*UserFFBranchResponse, error) {
- out := new(UserFFBranchResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserFFBranch", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-func (c *operationServiceClient) UserCherryPick(ctx context.Context, in *UserCherryPickRequest, opts ...grpc.CallOption) (*UserCherryPickResponse, error) {
- out := new(UserCherryPickResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserCherryPick", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-func (c *operationServiceClient) UserRevert(ctx context.Context, in *UserRevertRequest, opts ...grpc.CallOption) (*UserRevertResponse, error) {
- out := new(UserRevertResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserRevert", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-func (c *operationServiceClient) UserCommitFiles(ctx context.Context, opts ...grpc.CallOption) (OperationService_UserCommitFilesClient, error) {
- stream, err := grpc.NewClientStream(ctx, &_OperationService_serviceDesc.Streams[1], c.cc, "/gitaly.OperationService/UserCommitFiles", opts...)
- if err != nil {
- return nil, err
- }
- x := &operationServiceUserCommitFilesClient{stream}
- return x, nil
-}
-
-type OperationService_UserCommitFilesClient interface {
- Send(*UserCommitFilesRequest) error
- CloseAndRecv() (*UserCommitFilesResponse, error)
- grpc.ClientStream
-}
-
-type operationServiceUserCommitFilesClient struct {
- grpc.ClientStream
-}
-
-func (x *operationServiceUserCommitFilesClient) Send(m *UserCommitFilesRequest) error {
- return x.ClientStream.SendMsg(m)
-}
-
-func (x *operationServiceUserCommitFilesClient) CloseAndRecv() (*UserCommitFilesResponse, error) {
- if err := x.ClientStream.CloseSend(); err != nil {
- return nil, err
- }
- m := new(UserCommitFilesResponse)
- if err := x.ClientStream.RecvMsg(m); err != nil {
- return nil, err
- }
- return m, nil
-}
-
-func (c *operationServiceClient) UserRebase(ctx context.Context, in *UserRebaseRequest, opts ...grpc.CallOption) (*UserRebaseResponse, error) {
- out := new(UserRebaseResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserRebase", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-func (c *operationServiceClient) UserSquash(ctx context.Context, in *UserSquashRequest, opts ...grpc.CallOption) (*UserSquashResponse, error) {
- out := new(UserSquashResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserSquash", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-func (c *operationServiceClient) UserApplyPatch(ctx context.Context, opts ...grpc.CallOption) (OperationService_UserApplyPatchClient, error) {
- stream, err := grpc.NewClientStream(ctx, &_OperationService_serviceDesc.Streams[2], c.cc, "/gitaly.OperationService/UserApplyPatch", opts...)
- if err != nil {
- return nil, err
- }
- x := &operationServiceUserApplyPatchClient{stream}
- return x, nil
-}
-
-type OperationService_UserApplyPatchClient interface {
- Send(*UserApplyPatchRequest) error
- CloseAndRecv() (*UserApplyPatchResponse, error)
- grpc.ClientStream
-}
-
-type operationServiceUserApplyPatchClient struct {
- grpc.ClientStream
-}
-
-func (x *operationServiceUserApplyPatchClient) Send(m *UserApplyPatchRequest) error {
- return x.ClientStream.SendMsg(m)
-}
-
-func (x *operationServiceUserApplyPatchClient) CloseAndRecv() (*UserApplyPatchResponse, error) {
- if err := x.ClientStream.CloseSend(); err != nil {
- return nil, err
- }
- m := new(UserApplyPatchResponse)
- if err := x.ClientStream.RecvMsg(m); err != nil {
- return nil, err
- }
- return m, nil
-}
-
-func (c *operationServiceClient) UserUpdateSubmodule(ctx context.Context, in *UserUpdateSubmoduleRequest, opts ...grpc.CallOption) (*UserUpdateSubmoduleResponse, error) {
- out := new(UserUpdateSubmoduleResponse)
- err := grpc.Invoke(ctx, "/gitaly.OperationService/UserUpdateSubmodule", in, out, c.cc, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
-}
-
-// Server API for OperationService service
-
-type OperationServiceServer interface {
- UserCreateBranch(context.Context, *UserCreateBranchRequest) (*UserCreateBranchResponse, error)
- UserUpdateBranch(context.Context, *UserUpdateBranchRequest) (*UserUpdateBranchResponse, error)
- UserDeleteBranch(context.Context, *UserDeleteBranchRequest) (*UserDeleteBranchResponse, error)
- UserCreateTag(context.Context, *UserCreateTagRequest) (*UserCreateTagResponse, error)
- UserDeleteTag(context.Context, *UserDeleteTagRequest) (*UserDeleteTagResponse, error)
- UserMergeToRef(context.Context, *UserMergeToRefRequest) (*UserMergeToRefResponse, error)
- UserMergeBranch(OperationService_UserMergeBranchServer) error
- UserFFBranch(context.Context, *UserFFBranchRequest) (*UserFFBranchResponse, error)
- UserCherryPick(context.Context, *UserCherryPickRequest) (*UserCherryPickResponse, error)
- UserRevert(context.Context, *UserRevertRequest) (*UserRevertResponse, error)
- UserCommitFiles(OperationService_UserCommitFilesServer) error
- UserRebase(context.Context, *UserRebaseRequest) (*UserRebaseResponse, error)
- UserSquash(context.Context, *UserSquashRequest) (*UserSquashResponse, error)
- UserApplyPatch(OperationService_UserApplyPatchServer) error
- UserUpdateSubmodule(context.Context, *UserUpdateSubmoduleRequest) (*UserUpdateSubmoduleResponse, error)
-}
-
-func RegisterOperationServiceServer(s *grpc.Server, srv OperationServiceServer) {
- s.RegisterService(&_OperationService_serviceDesc, srv)
-}
-
-func _OperationService_UserCreateBranch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserCreateBranchRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserCreateBranch(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserCreateBranch",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserCreateBranch(ctx, req.(*UserCreateBranchRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-func _OperationService_UserUpdateBranch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserUpdateBranchRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserUpdateBranch(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserUpdateBranch",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserUpdateBranch(ctx, req.(*UserUpdateBranchRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-func _OperationService_UserDeleteBranch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserDeleteBranchRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserDeleteBranch(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserDeleteBranch",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserDeleteBranch(ctx, req.(*UserDeleteBranchRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-func _OperationService_UserCreateTag_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserCreateTagRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserCreateTag(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserCreateTag",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserCreateTag(ctx, req.(*UserCreateTagRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-func _OperationService_UserDeleteTag_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserDeleteTagRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserDeleteTag(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserDeleteTag",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserDeleteTag(ctx, req.(*UserDeleteTagRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-func _OperationService_UserMergeToRef_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserMergeToRefRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserMergeToRef(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserMergeToRef",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserMergeToRef(ctx, req.(*UserMergeToRefRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-func _OperationService_UserMergeBranch_Handler(srv interface{}, stream grpc.ServerStream) error {
- return srv.(OperationServiceServer).UserMergeBranch(&operationServiceUserMergeBranchServer{stream})
-}
-
-type OperationService_UserMergeBranchServer interface {
- Send(*UserMergeBranchResponse) error
- Recv() (*UserMergeBranchRequest, error)
- grpc.ServerStream
-}
-
-type operationServiceUserMergeBranchServer struct {
- grpc.ServerStream
-}
-
-func (x *operationServiceUserMergeBranchServer) Send(m *UserMergeBranchResponse) error {
- return x.ServerStream.SendMsg(m)
-}
-
-func (x *operationServiceUserMergeBranchServer) Recv() (*UserMergeBranchRequest, error) {
- m := new(UserMergeBranchRequest)
- if err := x.ServerStream.RecvMsg(m); err != nil {
- return nil, err
- }
- return m, nil
-}
-
-func _OperationService_UserFFBranch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserFFBranchRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserFFBranch(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserFFBranch",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserFFBranch(ctx, req.(*UserFFBranchRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-func _OperationService_UserCherryPick_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserCherryPickRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserCherryPick(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserCherryPick",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserCherryPick(ctx, req.(*UserCherryPickRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-func _OperationService_UserRevert_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserRevertRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserRevert(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserRevert",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserRevert(ctx, req.(*UserRevertRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-func _OperationService_UserCommitFiles_Handler(srv interface{}, stream grpc.ServerStream) error {
- return srv.(OperationServiceServer).UserCommitFiles(&operationServiceUserCommitFilesServer{stream})
-}
-
-type OperationService_UserCommitFilesServer interface {
- SendAndClose(*UserCommitFilesResponse) error
- Recv() (*UserCommitFilesRequest, error)
- grpc.ServerStream
-}
-
-type operationServiceUserCommitFilesServer struct {
- grpc.ServerStream
-}
-
-func (x *operationServiceUserCommitFilesServer) SendAndClose(m *UserCommitFilesResponse) error {
- return x.ServerStream.SendMsg(m)
-}
-
-func (x *operationServiceUserCommitFilesServer) Recv() (*UserCommitFilesRequest, error) {
- m := new(UserCommitFilesRequest)
- if err := x.ServerStream.RecvMsg(m); err != nil {
- return nil, err
- }
- return m, nil
-}
-
-func _OperationService_UserRebase_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserRebaseRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserRebase(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserRebase",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserRebase(ctx, req.(*UserRebaseRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-func _OperationService_UserSquash_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserSquashRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserSquash(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserSquash",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserSquash(ctx, req.(*UserSquashRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-func _OperationService_UserApplyPatch_Handler(srv interface{}, stream grpc.ServerStream) error {
- return srv.(OperationServiceServer).UserApplyPatch(&operationServiceUserApplyPatchServer{stream})
-}
-
-type OperationService_UserApplyPatchServer interface {
- SendAndClose(*UserApplyPatchResponse) error
- Recv() (*UserApplyPatchRequest, error)
- grpc.ServerStream
-}
-
-type operationServiceUserApplyPatchServer struct {
- grpc.ServerStream
-}
-
-func (x *operationServiceUserApplyPatchServer) SendAndClose(m *UserApplyPatchResponse) error {
- return x.ServerStream.SendMsg(m)
-}
-
-func (x *operationServiceUserApplyPatchServer) Recv() (*UserApplyPatchRequest, error) {
- m := new(UserApplyPatchRequest)
- if err := x.ServerStream.RecvMsg(m); err != nil {
- return nil, err
- }
- return m, nil
-}
-
-func _OperationService_UserUpdateSubmodule_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserUpdateSubmoduleRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(OperationServiceServer).UserUpdateSubmodule(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/gitaly.OperationService/UserUpdateSubmodule",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(OperationServiceServer).UserUpdateSubmodule(ctx, req.(*UserUpdateSubmoduleRequest))
- }
- return interceptor(ctx, in, info, handler)
-}
-
-var _OperationService_serviceDesc = grpc.ServiceDesc{
- ServiceName: "gitaly.OperationService",
- HandlerType: (*OperationServiceServer)(nil),
- Methods: []grpc.MethodDesc{
- {
- MethodName: "UserCreateBranch",
- Handler: _OperationService_UserCreateBranch_Handler,
- },
- {
- MethodName: "UserUpdateBranch",
- Handler: _OperationService_UserUpdateBranch_Handler,
- },
- {
- MethodName: "UserDeleteBranch",
- Handler: _OperationService_UserDeleteBranch_Handler,
- },
- {
- MethodName: "UserCreateTag",
- Handler: _OperationService_UserCreateTag_Handler,
- },
- {
- MethodName: "UserDeleteTag",
- Handler: _OperationService_UserDeleteTag_Handler,
- },
- {
- MethodName: "UserMergeToRef",
- Handler: _OperationService_UserMergeToRef_Handler,
- },
- {
- MethodName: "UserFFBranch",
- Handler: _OperationService_UserFFBranch_Handler,
- },
- {
- MethodName: "UserCherryPick",
- Handler: _OperationService_UserCherryPick_Handler,
- },
- {
- MethodName: "UserRevert",
- Handler: _OperationService_UserRevert_Handler,
- },
- {
- MethodName: "UserRebase",
- Handler: _OperationService_UserRebase_Handler,
- },
- {
- MethodName: "UserSquash",
- Handler: _OperationService_UserSquash_Handler,
- },
- {
- MethodName: "UserUpdateSubmodule",
- Handler: _OperationService_UserUpdateSubmodule_Handler,
- },
- },
- Streams: []grpc.StreamDesc{
- {
- StreamName: "UserMergeBranch",
- Handler: _OperationService_UserMergeBranch_Handler,
- ServerStreams: true,
- ClientStreams: true,
- },
- {
- StreamName: "UserCommitFiles",
- Handler: _OperationService_UserCommitFiles_Handler,
- ClientStreams: true,
- },
- {
- StreamName: "UserApplyPatch",
- Handler: _OperationService_UserApplyPatch_Handler,
- ClientStreams: true,
- },
- },
- Metadata: "operations.proto",
-}
-
-func init() { proto.RegisterFile("operations.proto", fileDescriptor8) }
-
-var fileDescriptor8 = []byte{
- // 1809 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xcd, 0x6f, 0x23, 0x4b,
- 0x11, 0xf7, 0xd8, 0xce, 0xc4, 0xa9, 0x38, 0x89, 0xd3, 0xef, 0x2b, 0xcf, 0x9b, 0x90, 0xbc, 0xc9,
- 0x7b, 0xb0, 0xbb, 0x42, 0x11, 0x0a, 0x08, 0x4e, 0x0b, 0xca, 0x87, 0x43, 0x76, 0x21, 0xbb, 0x61,
- 0x92, 0x2c, 0x1c, 0x90, 0x86, 0x89, 0xdd, 0xb1, 0x47, 0xd8, 0x9e, 0xd9, 0x9e, 0x71, 0xd8, 0x20,
- 0xc4, 0x05, 0x01, 0x57, 0x4e, 0xdc, 0x90, 0x40, 0xdc, 0x10, 0x17, 0x2e, 0x1c, 0x38, 0x20, 0xae,
- 0x70, 0xdd, 0x03, 0x27, 0xfe, 0x85, 0xbd, 0x71, 0x47, 0xdd, 0x55, 0xe3, 0x99, 0x9e, 0x19, 0x5b,
- 0xc9, 0x92, 0x68, 0x57, 0x88, 0x9b, 0xa7, 0xba, 0xba, 0xba, 0xea, 0x57, 0xd5, 0x55, 0xd5, 0x65,
- 0x68, 0xf8, 0x01, 0x17, 0x6e, 0xe4, 0xf9, 0xc3, 0x70, 0x2b, 0x10, 0x7e, 0xe4, 0x33, 0xb3, 0xeb,
- 0x45, 0x6e, 0xff, 0xaa, 0x59, 0x0f, 0x7b, 0xae, 0xe0, 0x1d, 0xa4, 0x5a, 0x7f, 0x32, 0xe0, 0xa3,
- 0xb3, 0x90, 0x8b, 0x3d, 0xc1, 0xdd, 0x88, 0xef, 0x0a, 0x77, 0xd8, 0xee, 0xd9, 0xfc, 0xc5, 0x88,
- 0x87, 0x11, 0xdb, 0x06, 0x10, 0x3c, 0xf0, 0x43, 0x2f, 0xf2, 0xc5, 0xd5, 0x8a, 0xb1, 0x61, 0xdc,
- 0x9f, 0xdf, 0x66, 0x5b, 0x28, 0x66, 0xcb, 0x1e, 0xaf, 0xd8, 0x29, 0x2e, 0xb6, 0x0e, 0xf3, 0xe7,
- 0x4a, 0x88, 0x33, 0x74, 0x07, 0x7c, 0xa5, 0xbc, 0x61, 0xdc, 0xaf, 0xdb, 0x80, 0xa4, 0xa7, 0xee,
- 0x80, 0xb3, 0x0d, 0xa8, 0x8e, 0x42, 0x2e, 0x56, 0x2a, 0x4a, 0x5c, 0x3d, 0x16, 0x27, 0x75, 0xb0,
- 0xd5, 0x8a, 0x14, 0x11, 0x46, 0xae, 0x88, 0x9c, 0xc0, 0xf7, 0x86, 0xd1, 0x4a, 0x15, 0x45, 0x28,
- 0xd2, 0xb1, 0xa4, 0x58, 0x43, 0x58, 0xc9, 0xab, 0x1c, 0x06, 0xfe, 0x30, 0xe4, 0xec, 0xf3, 0x60,
- 0xe2, 0x61, 0xa4, 0xef, 0x62, 0x7c, 0x00, 0xf1, 0xd1, 0x2a, 0x7b, 0x08, 0xcb, 0x81, 0xe0, 0x8e,
- 0xe0, 0x6d, 0xee, 0x5d, 0x72, 0x87, 0x0b, 0xe1, 0x0b, 0xa5, 0xed, 0x9c, 0xbd, 0x14, 0x08, 0x6e,
- 0x23, 0xbd, 0x25, 0xc9, 0xd6, 0xdf, 0x08, 0xa3, 0xb3, 0xa0, 0xf3, 0xae, 0x60, 0xf4, 0x21, 0x98,
- 0x43, 0xfe, 0x23, 0xc1, 0x2f, 0x09, 0x1e, 0xfa, 0x92, 0x74, 0xbf, 0xdf, 0x91, 0xf4, 0x19, 0xa4,
- 0xe3, 0x97, 0x75, 0x80, 0x90, 0xe9, 0x16, 0x10, 0x64, 0x85, 0x50, 0x18, 0xc5, 0x50, 0xfc, 0x8a,
- 0xa0, 0xd8, 0xe7, 0x7d, 0xfe, 0x6e, 0x40, 0x11, 0x9b, 0xa6, 0x6b, 0xf4, 0x06, 0xa6, 0xfd, 0xd2,
- 0x80, 0xf7, 0x13, 0x41, 0xa7, 0x6e, 0xf7, 0xbf, 0xb1, 0xeb, 0x63, 0xa8, 0x45, 0x6e, 0x37, 0x6d,
- 0xd4, 0x6c, 0xe4, 0x76, 0xaf, 0x69, 0xd1, 0x1e, 0x7c, 0x90, 0x51, 0xe4, 0x0d, 0xcc, 0xf9, 0x07,
- 0x99, 0x83, 0xb7, 0xe4, 0x2d, 0x9a, 0xc3, 0xbe, 0x00, 0x4b, 0x91, 0x2b, 0xba, 0x3c, 0x72, 0x04,
- 0xbf, 0xf4, 0x42, 0xcf, 0x1f, 0x52, 0xd0, 0x2e, 0x22, 0xd9, 0x26, 0x2a, 0x5b, 0x81, 0xd9, 0x01,
- 0x0f, 0x43, 0xb7, 0xcb, 0x29, 0x7a, 0xe3, 0x4f, 0xeb, 0xc7, 0x88, 0x48, 0xca, 0x16, 0x42, 0x64,
- 0x0d, 0x2a, 0x91, 0xdb, 0x25, 0x2b, 0xe6, 0xe3, 0xc3, 0x25, 0x87, 0xa4, 0xcb, 0xeb, 0xc0, 0x5f,
- 0x7a, 0x61, 0x14, 0x2a, 0xad, 0x6b, 0x36, 0x7d, 0x15, 0x03, 0x59, 0x29, 0x06, 0xf2, 0x95, 0x01,
- 0x1f, 0xca, 0xc3, 0x8f, 0xb8, 0xe8, 0xde, 0x42, 0xc4, 0xc7, 0x78, 0x95, 0x27, 0xe2, 0x75, 0x0f,
- 0xe6, 0xda, 0xfe, 0x60, 0xe0, 0x45, 0x8e, 0xd7, 0x21, 0xa5, 0x6a, 0x48, 0x78, 0xdc, 0x91, 0x16,
- 0x51, 0x7e, 0xa3, 0x8b, 0x4f, 0xf9, 0x6c, 0x22, 0x76, 0xec, 0x7d, 0x98, 0x71, 0x83, 0xa0, 0x7f,
- 0xb5, 0x62, 0x2a, 0x08, 0xf0, 0xc3, 0xfa, 0x23, 0x5d, 0x64, 0xcd, 0x2a, 0x02, 0x55, 0x53, 0xc0,
- 0xc8, 0x28, 0xb0, 0x0b, 0x0b, 0x74, 0x63, 0x47, 0x2a, 0x99, 0x90, 0xe3, 0xd7, 0x62, 0x43, 0x9e,
- 0xc5, 0x75, 0x07, 0x85, 0x62, 0xc6, 0xb1, 0xeb, 0xe7, 0xa9, 0xaf, 0x62, 0xf8, 0xab, 0x85, 0xf0,
- 0x3f, 0xa9, 0xd6, 0xca, 0x8d, 0x8a, 0xf5, 0x2f, 0x03, 0x23, 0x40, 0xa9, 0x7b, 0xea, 0xdb, 0xfc,
- 0xe2, 0x6e, 0x7d, 0xb0, 0x06, 0x10, 0xfa, 0x23, 0xd1, 0xe6, 0x4e, 0xd8, 0x73, 0xc9, 0x09, 0x73,
- 0x48, 0x39, 0xe9, 0xb9, 0x13, 0xbd, 0xb0, 0x06, 0x30, 0x0e, 0xf5, 0x0b, 0x72, 0xc4, 0x5c, 0x1c,
- 0xe5, 0x17, 0x69, 0x27, 0x99, 0x7a, 0x80, 0xbb, 0xa9, 0x18, 0x23, 0xf3, 0xae, 0xe3, 0x8c, 0x9b,
- 0x54, 0xb1, 0x9f, 0xc2, 0x07, 0x85, 0xbe, 0x99, 0x7e, 0xc2, 0x27, 0x50, 0x97, 0xc0, 0x39, 0x6d,
- 0x75, 0xf5, 0x3a, 0x74, 0x8f, 0xe6, 0x25, 0x0d, 0x6f, 0x63, 0x87, 0x7d, 0x06, 0x8b, 0x14, 0x11,
- 0x31, 0x53, 0x45, 0x31, 0x51, 0x9c, 0x10, 0x9b, 0xf5, 0x5b, 0x03, 0xde, 0x93, 0x36, 0x1e, 0x1c,
- 0xbc, 0xab, 0x97, 0xc8, 0xfa, 0x05, 0xe5, 0xcc, 0x44, 0x45, 0x72, 0x42, 0x2e, 0xe8, 0x8d, 0x5b,
- 0x0a, 0xfa, 0x09, 0xbe, 0xfa, 0x6b, 0x99, 0x12, 0x5e, 0x8f, 0x0b, 0x71, 0x75, 0xec, 0xb5, 0x7f,
- 0x78, 0xb7, 0x68, 0x3d, 0x00, 0x13, 0xc1, 0xa1, 0xdb, 0xbc, 0x1c, 0xf3, 0x7c, 0xd3, 0x8b, 0xf6,
- 0xd4, 0x82, 0x4d, 0x0c, 0xd9, 0x8a, 0x5d, 0xcd, 0x55, 0xec, 0xc9, 0x99, 0xe8, 0x21, 0x2c, 0x63,
- 0x63, 0x97, 0x16, 0x80, 0x17, 0x61, 0x49, 0x2d, 0xec, 0x26, 0x52, 0x1e, 0x41, 0x03, 0x79, 0x53,
- 0xd6, 0xce, 0x4e, 0xb4, 0x16, 0xb7, 0x27, 0x04, 0xeb, 0x9f, 0x94, 0xb4, 0xd3, 0x00, 0xde, 0xae,
- 0x2f, 0x31, 0xd6, 0x9d, 0x48, 0xf0, 0x8c, 0x2f, 0x71, 0xe1, 0x54, 0x70, 0xf4, 0xa5, 0xbc, 0x41,
- 0x14, 0x89, 0xe9, 0x32, 0x33, 0x8f, 0x34, 0x64, 0xb9, 0x41, 0x3e, 0xb4, 0xfe, 0x52, 0x86, 0x65,
- 0xe5, 0x39, 0x7e, 0xc9, 0xa5, 0xc9, 0xff, 0x0f, 0x8b, 0x1b, 0x84, 0xc5, 0x2b, 0x03, 0x58, 0x1a,
- 0xbc, 0xff, 0x8d, 0x90, 0xf8, 0x77, 0x19, 0xee, 0xa9, 0x60, 0x57, 0xfb, 0x0f, 0xbc, 0x3e, 0x0f,
- 0x77, 0xda, 0x52, 0xdd, 0x43, 0xee, 0x76, 0xb8, 0x60, 0x07, 0x60, 0xba, 0xea, 0x5b, 0xd9, 0xb5,
- 0xb8, 0xbd, 0x95, 0x76, 0xf5, 0x84, 0x4d, 0x5b, 0xf8, 0x71, 0x7a, 0x15, 0x70, 0x9b, 0x76, 0xcb,
- 0x9c, 0x7a, 0xe1, 0xf5, 0xb9, 0x13, 0xb8, 0x51, 0x8f, 0xda, 0xc0, 0x9a, 0x24, 0x1c, 0xbb, 0x51,
- 0x8f, 0x6d, 0xc2, 0x42, 0x20, 0xfb, 0x3b, 0x7f, 0x14, 0x22, 0x43, 0x45, 0x31, 0xd4, 0x63, 0xa2,
- 0x62, 0x92, 0xa5, 0xc2, 0x0d, 0xf9, 0x57, 0xbf, 0xe2, 0xb4, 0xfd, 0x61, 0xc4, 0xe9, 0x75, 0x27,
- 0x4b, 0x85, 0xa2, 0xee, 0x21, 0x91, 0x3d, 0x80, 0x06, 0x7f, 0xc9, 0xdb, 0xa3, 0x88, 0x3b, 0x52,
- 0xfe, 0xc0, 0xef, 0x60, 0xd0, 0xd4, 0xec, 0x25, 0xa2, 0x1f, 0x10, 0x59, 0x1e, 0xeb, 0x0d, 0x2f,
- 0xb8, 0x18, 0x0b, 0xc4, 0x2e, 0xa7, 0xae, 0x88, 0x24, 0xcf, 0x3a, 0x03, 0x48, 0xcc, 0x61, 0x00,
- 0xe6, 0x9e, 0xdd, 0xda, 0x39, 0x6d, 0x35, 0x4a, 0x6c, 0x11, 0x00, 0x7f, 0x3b, 0xfb, 0x8f, 0xed,
- 0x86, 0x21, 0xd7, 0xce, 0x8e, 0xf7, 0xe5, 0x5a, 0x99, 0xd5, 0xa0, 0x7a, 0xf4, 0xec, 0x79, 0xab,
- 0x51, 0x91, 0xd4, 0xfd, 0xd6, 0xb7, 0x5b, 0xa7, 0xad, 0x46, 0x95, 0xcd, 0xc1, 0xcc, 0xde, 0xe1,
- 0xd1, 0xb3, 0xfd, 0xc6, 0x8c, 0xf5, 0x6b, 0x6a, 0x4a, 0x72, 0x10, 0xb2, 0x47, 0x60, 0xf6, 0x14,
- 0x8c, 0x14, 0x49, 0x9b, 0xd7, 0x40, 0xfc, 0xb0, 0x64, 0xd3, 0x26, 0xd6, 0x84, 0xd9, 0xd8, 0x1c,
- 0x05, 0xf3, 0x61, 0xc9, 0x8e, 0x09, 0xbb, 0x16, 0x6c, 0xc8, 0xbb, 0xe9, 0x50, 0x00, 0x49, 0x7c,
- 0x42, 0x07, 0x1d, 0xe4, 0x04, 0xee, 0x55, 0xdf, 0x77, 0x3b, 0xd6, 0xcf, 0x2b, 0xb0, 0x9a, 0x39,
- 0x89, 0x12, 0x05, 0x45, 0xc4, 0xdd, 0xa4, 0x8b, 0x4c, 0x0e, 0xa8, 0xe4, 0x72, 0xc0, 0x67, 0xb0,
- 0x48, 0x6a, 0xc7, 0xa9, 0x00, 0xf3, 0xc4, 0x02, 0x52, 0x8f, 0x28, 0x21, 0x7c, 0x11, 0x18, 0xb1,
- 0xb9, 0xa3, 0xa8, 0xe7, 0x0b, 0x14, 0x87, 0x59, 0xa3, 0x81, 0x2b, 0x3b, 0x6a, 0x41, 0x09, 0xdd,
- 0x82, 0xf7, 0x74, 0x6e, 0x3e, 0x70, 0xbd, 0x3e, 0x25, 0x90, 0xe5, 0x34, 0x7b, 0x4b, 0x2e, 0x14,
- 0xa7, 0x9b, 0xd9, 0xeb, 0xa7, 0x9b, 0xda, 0xf5, 0xd3, 0xcd, 0x9f, 0xe3, 0x2a, 0x94, 0xf3, 0x03,
- 0xfb, 0x7a, 0x26, 0x42, 0x3e, 0x9d, 0x10, 0x21, 0x9a, 0xdf, 0x52, 0x21, 0xf2, 0xb5, 0xf1, 0x9d,
- 0x2e, 0xeb, 0xb9, 0xaa, 0x38, 0xc2, 0x4a, 0xf1, 0x25, 0xde, 0xdd, 0x84, 0x4f, 0xf2, 0xf1, 0x23,
- 0xf0, 0x94, 0x71, 0x00, 0xfd, 0x21, 0x9e, 0x0a, 0xa5, 0x15, 0xb9, 0xc5, 0x64, 0xb9, 0x0e, 0xf3,
- 0xde, 0xb0, 0xc3, 0x5f, 0x6a, 0x69, 0x12, 0x14, 0x69, 0x4a, 0xfa, 0x9b, 0xf0, 0x40, 0xfb, 0xfd,
- 0xb8, 0x22, 0xca, 0x2c, 0x72, 0xe7, 0x6d, 0xa5, 0x50, 0xc7, 0xa4, 0xda, 0x4a, 0x24, 0x4c, 0x79,
- 0x9b, 0xad, 0x01, 0x5d, 0x02, 0xf5, 0x98, 0x98, 0xc1, 0xc7, 0x04, 0x52, 0xe4, 0x63, 0xe2, 0x1b,
- 0xb0, 0x2c, 0xf8, 0xc0, 0x8f, 0x78, 0x3a, 0xca, 0xcc, 0x89, 0x0a, 0x37, 0x90, 0x39, 0xa1, 0xc8,
- 0x1c, 0x48, 0x02, 0xe8, 0x78, 0x8c, 0xe6, 0x3a, 0x12, 0xd1, 0x0d, 0xd6, 0x4f, 0xe2, 0xca, 0x87,
- 0x20, 0x8d, 0xdf, 0xcf, 0x40, 0xf6, 0x48, 0xd5, 0xb0, 0xf9, 0x27, 0x0b, 0xa5, 0x6a, 0x37, 0xe8,
- 0x59, 0x25, 0x34, 0xdd, 0x4c, 0x45, 0xab, 0x75, 0xa9, 0x9c, 0x59, 0xbf, 0x23, 0x1f, 0x9d, 0xbc,
- 0x18, 0xb9, 0xe1, 0xdd, 0xb7, 0xfe, 0xa1, 0x3a, 0x26, 0xe5, 0x23, 0x24, 0x4c, 0xf1, 0x91, 0xdc,
- 0xa4, 0x6e, 0x7a, 0xe2, 0xa2, 0x9a, 0x22, 0x48, 0x18, 0x3e, 0x82, 0x59, 0x3e, 0xec, 0xa8, 0x25,
- 0x53, 0x2d, 0x99, 0x7c, 0xd8, 0x91, 0x0b, 0x9f, 0x82, 0x89, 0x49, 0x87, 0x9a, 0x10, 0x5d, 0x1d,
- 0x5a, 0x2b, 0x48, 0x7b, 0xb5, 0x82, 0xb4, 0x67, 0x79, 0xe8, 0xa1, 0x18, 0xa2, 0xc4, 0x43, 0x64,
- 0x4d, 0xca, 0x43, 0x48, 0x91, 0x1a, 0x4c, 0x43, 0x1d, 0xdf, 0xce, 0x76, 0xde, 0x85, 0xd6, 0x6f,
- 0xe8, 0x7d, 0xb1, 0x13, 0x04, 0xfd, 0xab, 0x63, 0x37, 0x4a, 0x5e, 0x63, 0x53, 0xf3, 0x52, 0x8e,
- 0x7d, 0xab, 0xa8, 0x74, 0x05, 0x92, 0x81, 0x87, 0x49, 0xe9, 0x22, 0x42, 0xf3, 0x67, 0x06, 0x98,
- 0x77, 0x5a, 0x80, 0x36, 0x61, 0x81, 0x9e, 0xdf, 0xe4, 0x63, 0xea, 0x41, 0x90, 0x88, 0x17, 0x61,
- 0x5c, 0x40, 0xd5, 0x1c, 0xc4, 0x51, 0xba, 0xe5, 0xf2, 0xdf, 0xf7, 0x31, 0x6f, 0xa7, 0xed, 0xbd,
- 0xbd, 0xec, 0x67, 0xbd, 0x36, 0xa0, 0x99, 0x4c, 0x63, 0x4f, 0x46, 0xe7, 0x03, 0xbf, 0x33, 0xea,
- 0xf3, 0x3b, 0x9f, 0x68, 0x50, 0x10, 0xa6, 0x26, 0x1a, 0x48, 0x99, 0x36, 0xd1, 0x58, 0x85, 0xb9,
- 0x30, 0x56, 0x30, 0x1e, 0x68, 0x8c, 0x09, 0x05, 0x91, 0x6d, 0x16, 0x45, 0xf6, 0xdf, 0x0d, 0x6c,
- 0x50, 0x73, 0x06, 0xbf, 0x9d, 0xe7, 0x75, 0xae, 0xff, 0xae, 0xe6, 0xfa, 0xef, 0x27, 0xd5, 0x5a,
- 0xa5, 0x51, 0xb5, 0xf3, 0x2d, 0xfd, 0xf6, 0xeb, 0x39, 0x68, 0x8c, 0xf5, 0x39, 0xe1, 0xe2, 0xd2,
- 0x6b, 0x73, 0xf6, 0x5d, 0x68, 0x64, 0xff, 0x91, 0x60, 0xeb, 0x5a, 0x45, 0xce, 0xff, 0xbd, 0xd2,
- 0xdc, 0x98, 0xcc, 0x80, 0xb8, 0x58, 0xa5, 0x58, 0x70, 0x7a, 0x6e, 0xaf, 0x0b, 0x2e, 0xf8, 0x4f,
- 0x42, 0x17, 0x5c, 0x34, 0xf2, 0x4f, 0x04, 0xa7, 0xa7, 0xe6, 0xba, 0xe0, 0x82, 0x09, 0xbf, 0x2e,
- 0xb8, 0x68, 0xe0, 0x6e, 0x95, 0xd8, 0x53, 0x58, 0xd0, 0x46, 0xb5, 0x6c, 0x35, 0x6f, 0x66, 0x32,
- 0x8d, 0x6e, 0xae, 0x4d, 0x58, 0xcd, 0xca, 0x1b, 0x0f, 0xc3, 0x75, 0x79, 0xd9, 0x61, 0xbd, 0x2e,
- 0x2f, 0x37, 0x41, 0xb7, 0x4a, 0xec, 0x3b, 0xb0, 0xa8, 0x4f, 0xda, 0x98, 0xb6, 0x25, 0x37, 0x60,
- 0x6c, 0x7e, 0x6e, 0xd2, 0xf2, 0x58, 0xe4, 0xf7, 0x60, 0x29, 0x33, 0x4a, 0x65, 0xf9, 0x4d, 0x3a,
- 0x92, 0xeb, 0x13, 0xd7, 0x63, 0xa9, 0xf7, 0x8d, 0x2f, 0x19, 0xec, 0x5b, 0x50, 0x4f, 0xcf, 0xa3,
- 0xd8, 0xbd, 0xf4, 0xb6, 0xcc, 0x20, 0xad, 0xb9, 0x5a, 0xbc, 0x98, 0xb5, 0x3c, 0x19, 0x89, 0xe8,
- 0x96, 0xe7, 0x66, 0x4d, 0xba, 0xe5, 0xf9, 0x49, 0x8a, 0x55, 0x62, 0x2d, 0x80, 0xe4, 0x39, 0xcd,
- 0x3e, 0xd6, 0xd2, 0x4e, 0x7a, 0x3e, 0xd1, 0x6c, 0x16, 0x2d, 0x8d, 0xc5, 0x3c, 0x47, 0x00, 0x53,
- 0xdd, 0xa6, 0x0e, 0x60, 0xbe, 0x1f, 0xd6, 0x01, 0x2c, 0x68, 0x53, 0x25, 0x80, 0x89, 0x7a, 0xb2,
- 0x9f, 0xc9, 0xaa, 0x97, 0x6a, 0x16, 0xb3, 0xea, 0xa5, 0x5b, 0xa4, 0xc4, 0x4a, 0x2c, 0xcc, 0xba,
- 0x18, 0xad, 0x9f, 0xd1, 0xc5, 0xe8, 0x75, 0xdc, 0x2a, 0xb1, 0x13, 0xc4, 0x3f, 0x29, 0x2a, 0x3a,
- 0xfe, 0xb9, 0xe2, 0xaa, 0xe3, 0x9f, 0xaf, 0x45, 0xca, 0xc4, 0x1f, 0xe0, 0x50, 0x35, 0x93, 0x59,
- 0x99, 0x95, 0x4f, 0x01, 0xd9, 0x3a, 0xd3, 0xdc, 0x9c, 0xca, 0x13, 0x9f, 0x71, 0x6e, 0xaa, 0x3f,
- 0x8a, 0xbf, 0xfc, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe0, 0x59, 0x6f, 0x01, 0x52, 0x1e, 0x00,
- 0x00,
-}