gitaly 13.3.0.pre.rc1 → 13.4.0.pre.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of gitaly might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/blob_pb.rb +76 -74
- data/ruby/proto/gitaly/blob_services_pb.rb +5 -5
- data/ruby/proto/gitaly/cleanup_pb.rb +16 -14
- data/ruby/proto/gitaly/cleanup_services_pb.rb +1 -1
- data/ruby/proto/gitaly/commit_pb.rb +307 -305
- data/ruby/proto/gitaly/commit_services_pb.rb +21 -21
- data/ruby/proto/gitaly/conflicts_pb.rb +45 -43
- data/ruby/proto/gitaly/conflicts_services_pb.rb +2 -2
- data/ruby/proto/gitaly/diff_pb.rb +90 -88
- data/ruby/proto/gitaly/diff_services_pb.rb +5 -5
- data/ruby/proto/gitaly/hook_pb.rb +53 -39
- data/ruby/proto/gitaly/hook_services_pb.rb +4 -3
- data/ruby/proto/gitaly/internal_pb.rb +9 -7
- data/ruby/proto/gitaly/internal_services_pb.rb +1 -1
- data/ruby/proto/gitaly/lint_pb.rb +18 -16
- data/ruby/proto/gitaly/namespace_pb.rb +35 -33
- data/ruby/proto/gitaly/namespace_services_pb.rb +4 -4
- data/ruby/proto/gitaly/objectpool_pb.rb +63 -61
- data/ruby/proto/gitaly/objectpool_services_pb.rb +8 -8
- data/ruby/proto/gitaly/operations_pb.rb +277 -275
- data/ruby/proto/gitaly/operations_services_pb.rb +15 -15
- data/ruby/proto/gitaly/praefect_pb.rb +60 -53
- data/ruby/proto/gitaly/praefect_services_pb.rb +8 -8
- data/ruby/proto/gitaly/ref_pb.rb +219 -217
- data/ruby/proto/gitaly/ref_services_pb.rb +18 -18
- data/ruby/proto/gitaly/remote_pb.rb +74 -72
- data/ruby/proto/gitaly/remote_services_pb.rb +7 -7
- data/ruby/proto/gitaly/repository-service_pb.rb +413 -409
- data/ruby/proto/gitaly/repository-service_services_pb.rb +42 -42
- data/ruby/proto/gitaly/server_pb.rb +32 -30
- data/ruby/proto/gitaly/server_services_pb.rb +2 -2
- data/ruby/proto/gitaly/shared_pb.rb +81 -79
- data/ruby/proto/gitaly/smarthttp_pb.rb +36 -34
- data/ruby/proto/gitaly/smarthttp_services_pb.rb +6 -6
- data/ruby/proto/gitaly/ssh_pb.rb +41 -39
- data/ruby/proto/gitaly/ssh_services_pb.rb +3 -3
- data/ruby/proto/gitaly/transaction_pb.rb +17 -15
- data/ruby/proto/gitaly/transaction_services_pb.rb +1 -1
- data/ruby/proto/gitaly/version.rb +4 -3
- data/ruby/proto/gitaly/wiki_pb.rb +128 -126
- data/ruby/proto/gitaly/wiki_services_pb.rb +8 -8
- metadata +5 -5
@@ -14,21 +14,21 @@ module Gitaly
|
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.OperationService'
|
16
16
|
|
17
|
-
rpc :UserCreateBranch, UserCreateBranchRequest, UserCreateBranchResponse
|
18
|
-
rpc :UserUpdateBranch, UserUpdateBranchRequest, UserUpdateBranchResponse
|
19
|
-
rpc :UserDeleteBranch, UserDeleteBranchRequest, UserDeleteBranchResponse
|
20
|
-
rpc :UserCreateTag, UserCreateTagRequest, UserCreateTagResponse
|
21
|
-
rpc :UserDeleteTag, UserDeleteTagRequest, UserDeleteTagResponse
|
22
|
-
rpc :UserMergeToRef, UserMergeToRefRequest, UserMergeToRefResponse
|
23
|
-
rpc :UserMergeBranch, stream(UserMergeBranchRequest), stream(UserMergeBranchResponse)
|
24
|
-
rpc :UserFFBranch, UserFFBranchRequest, UserFFBranchResponse
|
25
|
-
rpc :UserCherryPick, UserCherryPickRequest, UserCherryPickResponse
|
26
|
-
rpc :UserCommitFiles, stream(UserCommitFilesRequest), UserCommitFilesResponse
|
27
|
-
rpc :UserRebaseConfirmable, stream(UserRebaseConfirmableRequest), stream(UserRebaseConfirmableResponse)
|
28
|
-
rpc :UserRevert, UserRevertRequest, UserRevertResponse
|
29
|
-
rpc :UserSquash, UserSquashRequest, UserSquashResponse
|
30
|
-
rpc :UserApplyPatch, stream(UserApplyPatchRequest), UserApplyPatchResponse
|
31
|
-
rpc :UserUpdateSubmodule, UserUpdateSubmoduleRequest, UserUpdateSubmoduleResponse
|
17
|
+
rpc :UserCreateBranch, Gitaly::UserCreateBranchRequest, Gitaly::UserCreateBranchResponse
|
18
|
+
rpc :UserUpdateBranch, Gitaly::UserUpdateBranchRequest, Gitaly::UserUpdateBranchResponse
|
19
|
+
rpc :UserDeleteBranch, Gitaly::UserDeleteBranchRequest, Gitaly::UserDeleteBranchResponse
|
20
|
+
rpc :UserCreateTag, Gitaly::UserCreateTagRequest, Gitaly::UserCreateTagResponse
|
21
|
+
rpc :UserDeleteTag, Gitaly::UserDeleteTagRequest, Gitaly::UserDeleteTagResponse
|
22
|
+
rpc :UserMergeToRef, Gitaly::UserMergeToRefRequest, Gitaly::UserMergeToRefResponse
|
23
|
+
rpc :UserMergeBranch, stream(Gitaly::UserMergeBranchRequest), stream(Gitaly::UserMergeBranchResponse)
|
24
|
+
rpc :UserFFBranch, Gitaly::UserFFBranchRequest, Gitaly::UserFFBranchResponse
|
25
|
+
rpc :UserCherryPick, Gitaly::UserCherryPickRequest, Gitaly::UserCherryPickResponse
|
26
|
+
rpc :UserCommitFiles, stream(Gitaly::UserCommitFilesRequest), Gitaly::UserCommitFilesResponse
|
27
|
+
rpc :UserRebaseConfirmable, stream(Gitaly::UserRebaseConfirmableRequest), stream(Gitaly::UserRebaseConfirmableResponse)
|
28
|
+
rpc :UserRevert, Gitaly::UserRevertRequest, Gitaly::UserRevertResponse
|
29
|
+
rpc :UserSquash, Gitaly::UserSquashRequest, Gitaly::UserSquashResponse
|
30
|
+
rpc :UserApplyPatch, stream(Gitaly::UserApplyPatchRequest), Gitaly::UserApplyPatchResponse
|
31
|
+
rpc :UserUpdateSubmodule, Gitaly::UserUpdateSubmoduleRequest, Gitaly::UserUpdateSubmoduleResponse
|
32
32
|
end
|
33
33
|
|
34
34
|
Stub = Service.rpc_stub_class
|
@@ -5,62 +5,69 @@ require 'google/protobuf'
|
|
5
5
|
|
6
6
|
require 'lint_pb'
|
7
7
|
require 'shared_pb'
|
8
|
-
require 'google/protobuf/timestamp_pb'
|
9
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
9
|
+
add_file("praefect.proto", :syntax => :proto3) do
|
10
|
+
add_message "gitaly.SetAuthoritativeStorageRequest" do
|
11
|
+
optional :virtual_storage, :string, 1
|
12
|
+
optional :relative_path, :string, 2
|
13
|
+
optional :authoritative_storage, :string, 3
|
14
|
+
end
|
15
|
+
add_message "gitaly.SetAuthoritativeStorageResponse" do
|
16
|
+
end
|
17
|
+
add_message "gitaly.DatalossCheckRequest" do
|
18
|
+
optional :virtual_storage, :string, 1
|
19
|
+
optional :include_partially_replicated, :bool, 2
|
20
|
+
end
|
21
|
+
add_message "gitaly.DatalossCheckResponse" do
|
22
|
+
optional :primary, :string, 1
|
23
|
+
repeated :repositories, :message, 2, "gitaly.DatalossCheckResponse.Repository"
|
24
|
+
end
|
25
|
+
add_message "gitaly.DatalossCheckResponse.Repository" do
|
26
|
+
optional :relative_path, :string, 1
|
27
|
+
repeated :storages, :message, 2, "gitaly.DatalossCheckResponse.Repository.Storage"
|
28
|
+
optional :read_only, :bool, 3
|
29
|
+
end
|
30
|
+
add_message "gitaly.DatalossCheckResponse.Repository.Storage" do
|
31
|
+
optional :name, :string, 1
|
32
|
+
optional :behind_by, :int64, 2
|
33
|
+
end
|
34
|
+
add_message "gitaly.RepositoryReplicasRequest" do
|
35
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
36
|
+
end
|
37
|
+
add_message "gitaly.RepositoryReplicasResponse" do
|
38
|
+
optional :primary, :message, 1, "gitaly.RepositoryReplicasResponse.RepositoryDetails"
|
39
|
+
repeated :replicas, :message, 2, "gitaly.RepositoryReplicasResponse.RepositoryDetails"
|
40
|
+
end
|
41
|
+
add_message "gitaly.RepositoryReplicasResponse.RepositoryDetails" do
|
42
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
43
|
+
optional :checksum, :string, 2
|
44
|
+
end
|
45
|
+
add_message "gitaly.ConsistencyCheckRequest" do
|
46
|
+
optional :virtual_storage, :string, 1
|
47
|
+
optional :target_storage, :string, 2
|
48
|
+
optional :reference_storage, :string, 3
|
49
|
+
optional :disable_reconcilliation, :bool, 4
|
50
|
+
end
|
51
|
+
add_message "gitaly.ConsistencyCheckResponse" do
|
52
|
+
optional :repo_relative_path, :string, 1
|
53
|
+
optional :target_checksum, :string, 2
|
54
|
+
optional :reference_checksum, :string, 3
|
55
|
+
optional :repl_job_id, :uint64, 4
|
56
|
+
optional :reference_storage, :string, 5
|
57
|
+
end
|
52
58
|
end
|
53
59
|
end
|
54
60
|
|
55
61
|
module Gitaly
|
56
|
-
|
57
|
-
|
58
|
-
DatalossCheckRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckRequest").msgclass
|
59
|
-
DatalossCheckResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse").msgclass
|
60
|
-
DatalossCheckResponse::
|
61
|
-
|
62
|
-
|
63
|
-
RepositoryReplicasResponse
|
64
|
-
|
65
|
-
|
62
|
+
SetAuthoritativeStorageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetAuthoritativeStorageRequest").msgclass
|
63
|
+
SetAuthoritativeStorageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetAuthoritativeStorageResponse").msgclass
|
64
|
+
DatalossCheckRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckRequest").msgclass
|
65
|
+
DatalossCheckResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse").msgclass
|
66
|
+
DatalossCheckResponse::Repository = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse.Repository").msgclass
|
67
|
+
DatalossCheckResponse::Repository::Storage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse.Repository.Storage").msgclass
|
68
|
+
RepositoryReplicasRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasRequest").msgclass
|
69
|
+
RepositoryReplicasResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse").msgclass
|
70
|
+
RepositoryReplicasResponse::RepositoryDetails = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse.RepositoryDetails").msgclass
|
71
|
+
ConsistencyCheckRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ConsistencyCheckRequest").msgclass
|
72
|
+
ConsistencyCheckResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ConsistencyCheckResponse").msgclass
|
66
73
|
end
|
@@ -14,18 +14,18 @@ module Gitaly
|
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.PraefectInfoService'
|
16
16
|
|
17
|
-
rpc :RepositoryReplicas, RepositoryReplicasRequest, RepositoryReplicasResponse
|
17
|
+
rpc :RepositoryReplicas, Gitaly::RepositoryReplicasRequest, Gitaly::RepositoryReplicasResponse
|
18
18
|
# ConsistencyCheck will perform a consistency check on the requested
|
19
19
|
# virtual storage backend. A stream of repository statuses will be sent
|
20
20
|
# back indicating which repos are consistent with the primary and which ones
|
21
21
|
# need repair.
|
22
|
-
rpc :ConsistencyCheck, ConsistencyCheckRequest, stream(ConsistencyCheckResponse)
|
23
|
-
# DatalossCheck checks for
|
24
|
-
|
25
|
-
|
26
|
-
#
|
27
|
-
#
|
28
|
-
rpc :
|
22
|
+
rpc :ConsistencyCheck, Gitaly::ConsistencyCheckRequest, stream(Gitaly::ConsistencyCheckResponse)
|
23
|
+
# DatalossCheck checks for outdated repository replicas.
|
24
|
+
rpc :DatalossCheck, Gitaly::DatalossCheckRequest, Gitaly::DatalossCheckResponse
|
25
|
+
# SetAuthoritativeStorage sets the authoritative storage for a repository on a given virtual storage.
|
26
|
+
# This causes the current version of the repository on the authoritative storage to be considered the
|
27
|
+
# latest and overwrite any other version on the virtual storage.
|
28
|
+
rpc :SetAuthoritativeStorage, Gitaly::SetAuthoritativeStorageRequest, Gitaly::SetAuthoritativeStorageResponse
|
29
29
|
end
|
30
30
|
|
31
31
|
Stub = Service.rpc_stub_class
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -8,225 +8,227 @@ require 'shared_pb'
|
|
8
8
|
require 'blob_pb'
|
9
9
|
require 'google/protobuf/timestamp_pb'
|
10
10
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
11
|
+
add_file("ref.proto", :syntax => :proto3) do
|
12
|
+
add_message "gitaly.ListNewBlobsRequest" do
|
13
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
14
|
+
optional :commit_id, :string, 2
|
15
|
+
optional :limit, :uint32, 3
|
16
|
+
end
|
17
|
+
add_message "gitaly.ListNewBlobsResponse" do
|
18
|
+
repeated :new_blob_objects, :message, 1, "gitaly.NewBlobObject"
|
19
|
+
end
|
20
|
+
add_message "gitaly.FindDefaultBranchNameRequest" do
|
21
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
22
|
+
end
|
23
|
+
add_message "gitaly.FindDefaultBranchNameResponse" do
|
24
|
+
optional :name, :bytes, 1
|
25
|
+
end
|
26
|
+
add_message "gitaly.FindAllBranchNamesRequest" do
|
27
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
28
|
+
end
|
29
|
+
add_message "gitaly.FindAllBranchNamesResponse" do
|
30
|
+
repeated :names, :bytes, 1
|
31
|
+
end
|
32
|
+
add_message "gitaly.FindAllTagNamesRequest" do
|
33
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
34
|
+
end
|
35
|
+
add_message "gitaly.FindAllTagNamesResponse" do
|
36
|
+
repeated :names, :bytes, 1
|
37
|
+
end
|
38
|
+
add_message "gitaly.FindRefNameRequest" do
|
39
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
40
|
+
optional :commit_id, :string, 2
|
41
|
+
optional :prefix, :bytes, 3
|
42
|
+
end
|
43
|
+
add_message "gitaly.FindRefNameResponse" do
|
44
|
+
optional :name, :bytes, 1
|
45
|
+
end
|
46
|
+
add_message "gitaly.FindLocalBranchesRequest" do
|
47
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
48
|
+
optional :sort_by, :enum, 2, "gitaly.FindLocalBranchesRequest.SortBy"
|
49
|
+
optional :pagination_params, :message, 3, "gitaly.PaginationParameter"
|
50
|
+
end
|
51
|
+
add_enum "gitaly.FindLocalBranchesRequest.SortBy" do
|
52
|
+
value :NAME, 0
|
53
|
+
value :UPDATED_ASC, 1
|
54
|
+
value :UPDATED_DESC, 2
|
55
|
+
end
|
56
|
+
add_message "gitaly.FindLocalBranchesResponse" do
|
57
|
+
repeated :branches, :message, 1, "gitaly.FindLocalBranchResponse"
|
58
|
+
end
|
59
|
+
add_message "gitaly.FindLocalBranchResponse" do
|
60
|
+
optional :name, :bytes, 1
|
61
|
+
optional :commit_id, :string, 2
|
62
|
+
optional :commit_subject, :bytes, 3
|
63
|
+
optional :commit_author, :message, 4, "gitaly.FindLocalBranchCommitAuthor"
|
64
|
+
optional :commit_committer, :message, 5, "gitaly.FindLocalBranchCommitAuthor"
|
65
|
+
optional :commit, :message, 6, "gitaly.GitCommit"
|
66
|
+
end
|
67
|
+
add_message "gitaly.FindLocalBranchCommitAuthor" do
|
68
|
+
optional :name, :bytes, 1
|
69
|
+
optional :email, :bytes, 2
|
70
|
+
optional :date, :message, 3, "google.protobuf.Timestamp"
|
71
|
+
optional :timezone, :bytes, 4
|
72
|
+
end
|
73
|
+
add_message "gitaly.FindAllBranchesRequest" do
|
74
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
75
|
+
optional :merged_only, :bool, 2
|
76
|
+
repeated :merged_branches, :bytes, 3
|
77
|
+
end
|
78
|
+
add_message "gitaly.FindAllBranchesResponse" do
|
79
|
+
repeated :branches, :message, 1, "gitaly.FindAllBranchesResponse.Branch"
|
80
|
+
end
|
81
|
+
add_message "gitaly.FindAllBranchesResponse.Branch" do
|
82
|
+
optional :name, :bytes, 1
|
83
|
+
optional :target, :message, 2, "gitaly.GitCommit"
|
84
|
+
end
|
85
|
+
add_message "gitaly.FindTagRequest" do
|
86
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
87
|
+
optional :tag_name, :bytes, 2
|
88
|
+
end
|
89
|
+
add_message "gitaly.FindTagResponse" do
|
90
|
+
optional :tag, :message, 1, "gitaly.Tag"
|
91
|
+
end
|
92
|
+
add_message "gitaly.FindAllTagsRequest" do
|
93
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
94
|
+
end
|
95
|
+
add_message "gitaly.FindAllTagsResponse" do
|
96
|
+
repeated :tags, :message, 1, "gitaly.Tag"
|
97
|
+
end
|
98
|
+
add_message "gitaly.RefExistsRequest" do
|
99
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
100
|
+
optional :ref, :bytes, 2
|
101
|
+
end
|
102
|
+
add_message "gitaly.RefExistsResponse" do
|
103
|
+
optional :value, :bool, 1
|
104
|
+
end
|
105
|
+
add_message "gitaly.CreateBranchRequest" do
|
106
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
107
|
+
optional :name, :bytes, 2
|
108
|
+
optional :start_point, :bytes, 3
|
109
|
+
end
|
110
|
+
add_message "gitaly.CreateBranchResponse" do
|
111
|
+
optional :status, :enum, 1, "gitaly.CreateBranchResponse.Status"
|
112
|
+
optional :branch, :message, 2, "gitaly.Branch"
|
113
|
+
end
|
114
|
+
add_enum "gitaly.CreateBranchResponse.Status" do
|
115
|
+
value :OK, 0
|
116
|
+
value :ERR_EXISTS, 1
|
117
|
+
value :ERR_INVALID, 2
|
118
|
+
value :ERR_INVALID_START_POINT, 3
|
119
|
+
end
|
120
|
+
add_message "gitaly.DeleteBranchRequest" do
|
121
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
122
|
+
optional :name, :bytes, 2
|
123
|
+
end
|
124
|
+
add_message "gitaly.DeleteBranchResponse" do
|
125
|
+
end
|
126
|
+
add_message "gitaly.FindBranchRequest" do
|
127
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
128
|
+
optional :name, :bytes, 2
|
129
|
+
end
|
130
|
+
add_message "gitaly.FindBranchResponse" do
|
131
|
+
optional :branch, :message, 1, "gitaly.Branch"
|
132
|
+
end
|
133
|
+
add_message "gitaly.DeleteRefsRequest" do
|
134
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
135
|
+
repeated :except_with_prefix, :bytes, 2
|
136
|
+
repeated :refs, :bytes, 3
|
137
|
+
end
|
138
|
+
add_message "gitaly.DeleteRefsResponse" do
|
139
|
+
optional :git_error, :string, 1
|
140
|
+
end
|
141
|
+
add_message "gitaly.ListBranchNamesContainingCommitRequest" do
|
142
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
143
|
+
optional :commit_id, :string, 2
|
144
|
+
optional :limit, :uint32, 3
|
145
|
+
end
|
146
|
+
add_message "gitaly.ListBranchNamesContainingCommitResponse" do
|
147
|
+
repeated :branch_names, :bytes, 2
|
148
|
+
end
|
149
|
+
add_message "gitaly.ListTagNamesContainingCommitRequest" do
|
150
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
151
|
+
optional :commit_id, :string, 2
|
152
|
+
optional :limit, :uint32, 3
|
153
|
+
end
|
154
|
+
add_message "gitaly.ListTagNamesContainingCommitResponse" do
|
155
|
+
repeated :tag_names, :bytes, 2
|
156
|
+
end
|
157
|
+
add_message "gitaly.GetTagMessagesRequest" do
|
158
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
159
|
+
repeated :tag_ids, :string, 3
|
160
|
+
end
|
161
|
+
add_message "gitaly.GetTagMessagesResponse" do
|
162
|
+
optional :message, :bytes, 2
|
163
|
+
optional :tag_id, :string, 3
|
164
|
+
end
|
165
|
+
add_message "gitaly.ListNewCommitsRequest" do
|
166
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
167
|
+
optional :commit_id, :string, 2
|
168
|
+
end
|
169
|
+
add_message "gitaly.ListNewCommitsResponse" do
|
170
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
171
|
+
end
|
172
|
+
add_message "gitaly.FindAllRemoteBranchesRequest" do
|
173
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
174
|
+
optional :remote_name, :string, 2
|
175
|
+
end
|
176
|
+
add_message "gitaly.FindAllRemoteBranchesResponse" do
|
177
|
+
repeated :branches, :message, 1, "gitaly.Branch"
|
178
|
+
end
|
179
|
+
add_message "gitaly.PackRefsRequest" do
|
180
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
181
|
+
optional :all_refs, :bool, 2
|
182
|
+
end
|
183
|
+
add_message "gitaly.PackRefsResponse" do
|
184
|
+
end
|
183
185
|
end
|
184
186
|
end
|
185
187
|
|
186
188
|
module Gitaly
|
187
|
-
ListNewBlobsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewBlobsRequest").msgclass
|
188
|
-
ListNewBlobsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewBlobsResponse").msgclass
|
189
|
-
FindDefaultBranchNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindDefaultBranchNameRequest").msgclass
|
190
|
-
FindDefaultBranchNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindDefaultBranchNameResponse").msgclass
|
191
|
-
FindAllBranchNamesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchNamesRequest").msgclass
|
192
|
-
FindAllBranchNamesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchNamesResponse").msgclass
|
193
|
-
FindAllTagNamesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagNamesRequest").msgclass
|
194
|
-
FindAllTagNamesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagNamesResponse").msgclass
|
195
|
-
FindRefNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRefNameRequest").msgclass
|
196
|
-
FindRefNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRefNameResponse").msgclass
|
197
|
-
FindLocalBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest").msgclass
|
198
|
-
FindLocalBranchesRequest::SortBy = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest.SortBy").enummodule
|
199
|
-
FindLocalBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesResponse").msgclass
|
200
|
-
FindLocalBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchResponse").msgclass
|
201
|
-
FindLocalBranchCommitAuthor = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchCommitAuthor").msgclass
|
202
|
-
FindAllBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesRequest").msgclass
|
203
|
-
FindAllBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse").msgclass
|
204
|
-
FindAllBranchesResponse::Branch = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse.Branch").msgclass
|
205
|
-
FindTagRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagRequest").msgclass
|
206
|
-
FindTagResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagResponse").msgclass
|
207
|
-
FindAllTagsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest").msgclass
|
208
|
-
FindAllTagsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse").msgclass
|
209
|
-
RefExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsRequest").msgclass
|
210
|
-
RefExistsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsResponse").msgclass
|
211
|
-
CreateBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchRequest").msgclass
|
212
|
-
CreateBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchResponse").msgclass
|
213
|
-
CreateBranchResponse::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchResponse.Status").enummodule
|
214
|
-
DeleteBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteBranchRequest").msgclass
|
215
|
-
DeleteBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteBranchResponse").msgclass
|
216
|
-
FindBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchRequest").msgclass
|
217
|
-
FindBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchResponse").msgclass
|
218
|
-
DeleteRefsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsRequest").msgclass
|
219
|
-
DeleteRefsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsResponse").msgclass
|
220
|
-
ListBranchNamesContainingCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitRequest").msgclass
|
221
|
-
ListBranchNamesContainingCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitResponse").msgclass
|
222
|
-
ListTagNamesContainingCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitRequest").msgclass
|
223
|
-
ListTagNamesContainingCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitResponse").msgclass
|
224
|
-
GetTagMessagesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesRequest").msgclass
|
225
|
-
GetTagMessagesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesResponse").msgclass
|
226
|
-
ListNewCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewCommitsRequest").msgclass
|
227
|
-
ListNewCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewCommitsResponse").msgclass
|
228
|
-
FindAllRemoteBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllRemoteBranchesRequest").msgclass
|
229
|
-
FindAllRemoteBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllRemoteBranchesResponse").msgclass
|
230
|
-
PackRefsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsRequest").msgclass
|
231
|
-
PackRefsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsResponse").msgclass
|
189
|
+
ListNewBlobsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewBlobsRequest").msgclass
|
190
|
+
ListNewBlobsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewBlobsResponse").msgclass
|
191
|
+
FindDefaultBranchNameRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindDefaultBranchNameRequest").msgclass
|
192
|
+
FindDefaultBranchNameResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindDefaultBranchNameResponse").msgclass
|
193
|
+
FindAllBranchNamesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchNamesRequest").msgclass
|
194
|
+
FindAllBranchNamesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchNamesResponse").msgclass
|
195
|
+
FindAllTagNamesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagNamesRequest").msgclass
|
196
|
+
FindAllTagNamesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagNamesResponse").msgclass
|
197
|
+
FindRefNameRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRefNameRequest").msgclass
|
198
|
+
FindRefNameResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRefNameResponse").msgclass
|
199
|
+
FindLocalBranchesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest").msgclass
|
200
|
+
FindLocalBranchesRequest::SortBy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest.SortBy").enummodule
|
201
|
+
FindLocalBranchesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesResponse").msgclass
|
202
|
+
FindLocalBranchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchResponse").msgclass
|
203
|
+
FindLocalBranchCommitAuthor = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchCommitAuthor").msgclass
|
204
|
+
FindAllBranchesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesRequest").msgclass
|
205
|
+
FindAllBranchesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse").msgclass
|
206
|
+
FindAllBranchesResponse::Branch = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse.Branch").msgclass
|
207
|
+
FindTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagRequest").msgclass
|
208
|
+
FindTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagResponse").msgclass
|
209
|
+
FindAllTagsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest").msgclass
|
210
|
+
FindAllTagsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse").msgclass
|
211
|
+
RefExistsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsRequest").msgclass
|
212
|
+
RefExistsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsResponse").msgclass
|
213
|
+
CreateBranchRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchRequest").msgclass
|
214
|
+
CreateBranchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchResponse").msgclass
|
215
|
+
CreateBranchResponse::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchResponse.Status").enummodule
|
216
|
+
DeleteBranchRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteBranchRequest").msgclass
|
217
|
+
DeleteBranchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteBranchResponse").msgclass
|
218
|
+
FindBranchRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchRequest").msgclass
|
219
|
+
FindBranchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchResponse").msgclass
|
220
|
+
DeleteRefsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsRequest").msgclass
|
221
|
+
DeleteRefsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsResponse").msgclass
|
222
|
+
ListBranchNamesContainingCommitRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitRequest").msgclass
|
223
|
+
ListBranchNamesContainingCommitResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitResponse").msgclass
|
224
|
+
ListTagNamesContainingCommitRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitRequest").msgclass
|
225
|
+
ListTagNamesContainingCommitResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitResponse").msgclass
|
226
|
+
GetTagMessagesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesRequest").msgclass
|
227
|
+
GetTagMessagesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesResponse").msgclass
|
228
|
+
ListNewCommitsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewCommitsRequest").msgclass
|
229
|
+
ListNewCommitsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewCommitsResponse").msgclass
|
230
|
+
FindAllRemoteBranchesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllRemoteBranchesRequest").msgclass
|
231
|
+
FindAllRemoteBranchesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllRemoteBranchesResponse").msgclass
|
232
|
+
PackRefsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsRequest").msgclass
|
233
|
+
PackRefsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsResponse").msgclass
|
232
234
|
end
|