gitaly 12.10.0 → 13.0.0.pre.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of gitaly might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly.rb +2 -0
- data/ruby/proto/gitaly/blob_pb.rb +74 -76
- data/ruby/proto/gitaly/cleanup_pb.rb +14 -16
- data/ruby/proto/gitaly/commit_pb.rb +293 -295
- data/ruby/proto/gitaly/conflicts_pb.rb +43 -45
- data/ruby/proto/gitaly/diff_pb.rb +87 -89
- data/ruby/proto/gitaly/hook_pb.rb +38 -40
- data/ruby/proto/gitaly/internal_pb.rb +7 -9
- data/ruby/proto/gitaly/lint_pb.rb +16 -18
- data/ruby/proto/gitaly/namespace_pb.rb +33 -35
- data/ruby/proto/gitaly/objectpool_pb.rb +61 -63
- data/ruby/proto/gitaly/operations_pb.rb +273 -275
- data/ruby/proto/gitaly/praefect_pb.rb +35 -37
- data/ruby/proto/gitaly/ref_pb.rb +216 -218
- data/ruby/proto/gitaly/remote_pb.rb +71 -72
- data/ruby/proto/gitaly/repository-service_pb.rb +393 -395
- data/ruby/proto/gitaly/server_pb.rb +29 -31
- data/ruby/proto/gitaly/shared_pb.rb +70 -72
- data/ruby/proto/gitaly/smarthttp_pb.rb +34 -36
- data/ruby/proto/gitaly/ssh_pb.rb +39 -41
- data/ruby/proto/gitaly/transaction_pb.rb +45 -0
- data/ruby/proto/gitaly/transaction_services_pb.rb +24 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- data/ruby/proto/gitaly/wiki_pb.rb +126 -128
- metadata +7 -5
@@ -6,80 +6,79 @@ require 'google/protobuf'
|
|
6
6
|
require 'lint_pb'
|
7
7
|
require 'shared_pb'
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
end
|
9
|
+
add_message "gitaly.AddRemoteRequest" do
|
10
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
11
|
+
optional :name, :string, 2
|
12
|
+
optional :url, :string, 3
|
13
|
+
repeated :mirror_refmaps, :string, 5
|
14
|
+
end
|
15
|
+
add_message "gitaly.AddRemoteResponse" do
|
16
|
+
end
|
17
|
+
add_message "gitaly.RemoveRemoteRequest" do
|
18
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
19
|
+
optional :name, :string, 2
|
20
|
+
end
|
21
|
+
add_message "gitaly.RemoveRemoteResponse" do
|
22
|
+
optional :result, :bool, 1
|
23
|
+
end
|
24
|
+
add_message "gitaly.FetchInternalRemoteRequest" do
|
25
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
26
|
+
optional :remote_repository, :message, 2, "gitaly.Repository"
|
27
|
+
end
|
28
|
+
add_message "gitaly.FetchInternalRemoteResponse" do
|
29
|
+
optional :result, :bool, 1
|
30
|
+
end
|
31
|
+
add_message "gitaly.UpdateRemoteMirrorRequest" do
|
32
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
33
|
+
optional :ref_name, :string, 2
|
34
|
+
repeated :only_branches_matching, :bytes, 3
|
35
|
+
optional :ssh_key, :string, 4
|
36
|
+
optional :known_hosts, :string, 5
|
37
|
+
optional :keep_divergent_refs, :bool, 6
|
38
|
+
end
|
39
|
+
add_message "gitaly.UpdateRemoteMirrorResponse" do
|
40
|
+
repeated :divergent_refs, :bytes, 1
|
41
|
+
end
|
42
|
+
add_message "gitaly.FindRemoteRepositoryRequest" do
|
43
|
+
optional :remote, :string, 1
|
44
|
+
end
|
45
|
+
add_message "gitaly.FindRemoteRepositoryResponse" do
|
46
|
+
optional :exists, :bool, 1
|
47
|
+
end
|
48
|
+
add_message "gitaly.FindRemoteRootRefRequest" do
|
49
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
50
|
+
optional :remote, :string, 2
|
51
|
+
end
|
52
|
+
add_message "gitaly.FindRemoteRootRefResponse" do
|
53
|
+
optional :ref, :string, 1
|
54
|
+
end
|
55
|
+
add_message "gitaly.ListRemotesRequest" do
|
56
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
57
|
+
end
|
58
|
+
add_message "gitaly.ListRemotesResponse" do
|
59
|
+
repeated :remotes, :message, 1, "gitaly.ListRemotesResponse.Remote"
|
60
|
+
end
|
61
|
+
add_message "gitaly.ListRemotesResponse.Remote" do
|
62
|
+
optional :name, :string, 1
|
63
|
+
optional :fetch_url, :string, 2
|
64
|
+
optional :push_url, :string, 3
|
66
65
|
end
|
67
66
|
end
|
68
67
|
|
69
68
|
module Gitaly
|
70
|
-
AddRemoteRequest =
|
71
|
-
AddRemoteResponse =
|
72
|
-
RemoveRemoteRequest =
|
73
|
-
RemoveRemoteResponse =
|
74
|
-
FetchInternalRemoteRequest =
|
75
|
-
FetchInternalRemoteResponse =
|
76
|
-
UpdateRemoteMirrorRequest =
|
77
|
-
UpdateRemoteMirrorResponse =
|
78
|
-
FindRemoteRepositoryRequest =
|
79
|
-
FindRemoteRepositoryResponse =
|
80
|
-
FindRemoteRootRefRequest =
|
81
|
-
FindRemoteRootRefResponse =
|
82
|
-
ListRemotesRequest =
|
83
|
-
ListRemotesResponse =
|
84
|
-
ListRemotesResponse::Remote =
|
69
|
+
AddRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddRemoteRequest").msgclass
|
70
|
+
AddRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddRemoteResponse").msgclass
|
71
|
+
RemoveRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRemoteRequest").msgclass
|
72
|
+
RemoveRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRemoteResponse").msgclass
|
73
|
+
FetchInternalRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteRequest").msgclass
|
74
|
+
FetchInternalRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteResponse").msgclass
|
75
|
+
UpdateRemoteMirrorRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorRequest").msgclass
|
76
|
+
UpdateRemoteMirrorResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorResponse").msgclass
|
77
|
+
FindRemoteRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRepositoryRequest").msgclass
|
78
|
+
FindRemoteRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRepositoryResponse").msgclass
|
79
|
+
FindRemoteRootRefRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRootRefRequest").msgclass
|
80
|
+
FindRemoteRootRefResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRootRefResponse").msgclass
|
81
|
+
ListRemotesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRemotesRequest").msgclass
|
82
|
+
ListRemotesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRemotesResponse").msgclass
|
83
|
+
ListRemotesResponse::Remote = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRemotesResponse.Remote").msgclass
|
85
84
|
end
|
@@ -6,404 +6,402 @@ require 'google/protobuf'
|
|
6
6
|
require 'lint_pb'
|
7
7
|
require 'shared_pb'
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
optional :value_bool, :bool, 4
|
163
|
-
end
|
164
|
-
end
|
165
|
-
add_message "gitaly.SetConfigResponse" do
|
166
|
-
end
|
167
|
-
add_message "gitaly.DeleteConfigRequest" do
|
168
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
169
|
-
repeated :keys, :string, 2
|
170
|
-
end
|
171
|
-
add_message "gitaly.DeleteConfigResponse" do
|
172
|
-
end
|
173
|
-
add_message "gitaly.RestoreCustomHooksRequest" do
|
174
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
175
|
-
optional :data, :bytes, 2
|
176
|
-
end
|
177
|
-
add_message "gitaly.RestoreCustomHooksResponse" do
|
178
|
-
end
|
179
|
-
add_message "gitaly.BackupCustomHooksRequest" do
|
180
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
181
|
-
end
|
182
|
-
add_message "gitaly.BackupCustomHooksResponse" do
|
183
|
-
optional :data, :bytes, 1
|
184
|
-
end
|
185
|
-
add_message "gitaly.CreateRepositoryFromBundleRequest" do
|
186
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
187
|
-
optional :data, :bytes, 2
|
188
|
-
end
|
189
|
-
add_message "gitaly.CreateRepositoryFromBundleResponse" do
|
190
|
-
end
|
191
|
-
add_message "gitaly.FindLicenseRequest" do
|
192
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
193
|
-
end
|
194
|
-
add_message "gitaly.FindLicenseResponse" do
|
195
|
-
optional :license_short_name, :string, 1
|
196
|
-
end
|
197
|
-
add_message "gitaly.GetInfoAttributesRequest" do
|
198
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
199
|
-
end
|
200
|
-
add_message "gitaly.GetInfoAttributesResponse" do
|
201
|
-
optional :attributes, :bytes, 1
|
202
|
-
end
|
203
|
-
add_message "gitaly.CalculateChecksumRequest" do
|
204
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
205
|
-
end
|
206
|
-
add_message "gitaly.CalculateChecksumResponse" do
|
207
|
-
optional :checksum, :string, 1
|
208
|
-
end
|
209
|
-
add_message "gitaly.GetSnapshotRequest" do
|
210
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
211
|
-
end
|
212
|
-
add_message "gitaly.GetSnapshotResponse" do
|
213
|
-
optional :data, :bytes, 1
|
214
|
-
end
|
215
|
-
add_message "gitaly.CreateRepositoryFromSnapshotRequest" do
|
216
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
217
|
-
optional :http_url, :string, 2
|
218
|
-
optional :http_auth, :string, 3
|
219
|
-
end
|
220
|
-
add_message "gitaly.CreateRepositoryFromSnapshotResponse" do
|
221
|
-
end
|
222
|
-
add_message "gitaly.GetRawChangesRequest" do
|
223
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
224
|
-
optional :from_revision, :string, 2
|
225
|
-
optional :to_revision, :string, 3
|
226
|
-
end
|
227
|
-
add_message "gitaly.GetRawChangesResponse" do
|
228
|
-
repeated :raw_changes, :message, 1, "gitaly.GetRawChangesResponse.RawChange"
|
229
|
-
end
|
230
|
-
add_message "gitaly.GetRawChangesResponse.RawChange" do
|
231
|
-
optional :blob_id, :string, 1
|
232
|
-
optional :size, :int64, 2
|
233
|
-
optional :new_path, :string, 3
|
234
|
-
optional :old_path, :string, 4
|
235
|
-
optional :operation, :enum, 5, "gitaly.GetRawChangesResponse.RawChange.Operation"
|
236
|
-
optional :raw_operation, :string, 6
|
237
|
-
optional :old_mode, :int32, 7
|
238
|
-
optional :new_mode, :int32, 8
|
239
|
-
optional :new_path_bytes, :bytes, 9
|
240
|
-
optional :old_path_bytes, :bytes, 10
|
241
|
-
end
|
242
|
-
add_enum "gitaly.GetRawChangesResponse.RawChange.Operation" do
|
243
|
-
value :UNKNOWN, 0
|
244
|
-
value :ADDED, 1
|
245
|
-
value :COPIED, 2
|
246
|
-
value :DELETED, 3
|
247
|
-
value :MODIFIED, 4
|
248
|
-
value :RENAMED, 5
|
249
|
-
value :TYPE_CHANGED, 6
|
250
|
-
end
|
251
|
-
add_message "gitaly.SearchFilesByNameRequest" do
|
252
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
253
|
-
optional :query, :string, 2
|
254
|
-
optional :ref, :bytes, 3
|
255
|
-
end
|
256
|
-
add_message "gitaly.SearchFilesByNameResponse" do
|
257
|
-
repeated :files, :bytes, 1
|
258
|
-
end
|
259
|
-
add_message "gitaly.SearchFilesByContentRequest" do
|
260
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
261
|
-
optional :query, :string, 2
|
262
|
-
optional :ref, :bytes, 3
|
263
|
-
optional :chunked_response, :bool, 4
|
264
|
-
end
|
265
|
-
add_message "gitaly.SearchFilesByContentResponse" do
|
266
|
-
repeated :matches, :bytes, 1
|
267
|
-
optional :match_data, :bytes, 2
|
268
|
-
optional :end_of_match, :bool, 3
|
269
|
-
end
|
270
|
-
add_message "gitaly.Remote" do
|
271
|
-
optional :url, :string, 1
|
272
|
-
optional :name, :string, 2
|
273
|
-
optional :http_authorization_header, :string, 3
|
274
|
-
repeated :mirror_refmaps, :string, 4
|
275
|
-
end
|
276
|
-
add_message "gitaly.FetchHTTPRemoteRequest" do
|
277
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
278
|
-
optional :remote, :message, 2, "gitaly.Remote"
|
279
|
-
optional :timeout, :int32, 3
|
280
|
-
end
|
281
|
-
add_message "gitaly.FetchHTTPRemoteResponse" do
|
282
|
-
end
|
283
|
-
add_message "gitaly.GetObjectDirectorySizeRequest" do
|
284
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
285
|
-
end
|
286
|
-
add_message "gitaly.GetObjectDirectorySizeResponse" do
|
287
|
-
optional :size, :int64, 1
|
288
|
-
end
|
289
|
-
add_message "gitaly.CloneFromPoolRequest" do
|
290
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
291
|
-
optional :pool, :message, 2, "gitaly.ObjectPool"
|
292
|
-
optional :remote, :message, 3, "gitaly.Remote"
|
293
|
-
end
|
294
|
-
add_message "gitaly.CloneFromPoolResponse" do
|
295
|
-
end
|
296
|
-
add_message "gitaly.CloneFromPoolInternalRequest" do
|
297
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
298
|
-
optional :pool, :message, 2, "gitaly.ObjectPool"
|
299
|
-
optional :source_repository, :message, 3, "gitaly.Repository"
|
300
|
-
end
|
301
|
-
add_message "gitaly.CloneFromPoolInternalResponse" do
|
302
|
-
end
|
303
|
-
add_message "gitaly.RemoveRepositoryRequest" do
|
304
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
305
|
-
end
|
306
|
-
add_message "gitaly.RemoveRepositoryResponse" do
|
307
|
-
end
|
308
|
-
add_message "gitaly.RenameRepositoryRequest" do
|
309
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
310
|
-
optional :relative_path, :string, 2
|
311
|
-
end
|
312
|
-
add_message "gitaly.RenameRepositoryResponse" do
|
313
|
-
end
|
314
|
-
add_message "gitaly.ReplicateRepositoryRequest" do
|
315
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
316
|
-
optional :source, :message, 2, "gitaly.Repository"
|
317
|
-
end
|
318
|
-
add_message "gitaly.ReplicateRepositoryResponse" do
|
9
|
+
add_message "gitaly.RepositoryExistsRequest" do
|
10
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
11
|
+
end
|
12
|
+
add_message "gitaly.RepositoryExistsResponse" do
|
13
|
+
optional :exists, :bool, 1
|
14
|
+
end
|
15
|
+
add_message "gitaly.RepackIncrementalRequest" do
|
16
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
17
|
+
end
|
18
|
+
add_message "gitaly.RepackIncrementalResponse" do
|
19
|
+
end
|
20
|
+
add_message "gitaly.RepackFullRequest" do
|
21
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
22
|
+
optional :create_bitmap, :bool, 2
|
23
|
+
end
|
24
|
+
add_message "gitaly.RepackFullResponse" do
|
25
|
+
end
|
26
|
+
add_message "gitaly.GarbageCollectRequest" do
|
27
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
28
|
+
optional :create_bitmap, :bool, 2
|
29
|
+
end
|
30
|
+
add_message "gitaly.GarbageCollectResponse" do
|
31
|
+
end
|
32
|
+
add_message "gitaly.CleanupRequest" do
|
33
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
34
|
+
end
|
35
|
+
add_message "gitaly.CleanupResponse" do
|
36
|
+
end
|
37
|
+
add_message "gitaly.RepositorySizeRequest" do
|
38
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
39
|
+
end
|
40
|
+
add_message "gitaly.RepositorySizeResponse" do
|
41
|
+
optional :size, :int64, 1
|
42
|
+
end
|
43
|
+
add_message "gitaly.ApplyGitattributesRequest" do
|
44
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
45
|
+
optional :revision, :bytes, 2
|
46
|
+
end
|
47
|
+
add_message "gitaly.ApplyGitattributesResponse" do
|
48
|
+
end
|
49
|
+
add_message "gitaly.FetchRemoteRequest" do
|
50
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
51
|
+
optional :remote, :string, 2
|
52
|
+
optional :force, :bool, 3
|
53
|
+
optional :no_tags, :bool, 4
|
54
|
+
optional :timeout, :int32, 5
|
55
|
+
optional :ssh_key, :string, 6
|
56
|
+
optional :known_hosts, :string, 7
|
57
|
+
optional :no_prune, :bool, 9
|
58
|
+
optional :remote_params, :message, 10, "gitaly.Remote"
|
59
|
+
end
|
60
|
+
add_message "gitaly.FetchRemoteResponse" do
|
61
|
+
end
|
62
|
+
add_message "gitaly.CreateRepositoryRequest" do
|
63
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
64
|
+
end
|
65
|
+
add_message "gitaly.CreateRepositoryResponse" do
|
66
|
+
end
|
67
|
+
add_message "gitaly.GetArchiveRequest" do
|
68
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
69
|
+
optional :commit_id, :string, 2
|
70
|
+
optional :prefix, :string, 3
|
71
|
+
optional :format, :enum, 4, "gitaly.GetArchiveRequest.Format"
|
72
|
+
optional :path, :bytes, 5
|
73
|
+
end
|
74
|
+
add_enum "gitaly.GetArchiveRequest.Format" do
|
75
|
+
value :ZIP, 0
|
76
|
+
value :TAR, 1
|
77
|
+
value :TAR_GZ, 2
|
78
|
+
value :TAR_BZ2, 3
|
79
|
+
end
|
80
|
+
add_message "gitaly.GetArchiveResponse" do
|
81
|
+
optional :data, :bytes, 1
|
82
|
+
end
|
83
|
+
add_message "gitaly.HasLocalBranchesRequest" do
|
84
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
85
|
+
end
|
86
|
+
add_message "gitaly.HasLocalBranchesResponse" do
|
87
|
+
optional :value, :bool, 1
|
88
|
+
end
|
89
|
+
add_message "gitaly.FetchSourceBranchRequest" do
|
90
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
91
|
+
optional :source_repository, :message, 2, "gitaly.Repository"
|
92
|
+
optional :source_branch, :bytes, 3
|
93
|
+
optional :target_ref, :bytes, 4
|
94
|
+
end
|
95
|
+
add_message "gitaly.FetchSourceBranchResponse" do
|
96
|
+
optional :result, :bool, 1
|
97
|
+
end
|
98
|
+
add_message "gitaly.FsckRequest" do
|
99
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
100
|
+
end
|
101
|
+
add_message "gitaly.FsckResponse" do
|
102
|
+
optional :error, :bytes, 1
|
103
|
+
end
|
104
|
+
add_message "gitaly.WriteRefRequest" do
|
105
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
106
|
+
optional :ref, :bytes, 2
|
107
|
+
optional :revision, :bytes, 3
|
108
|
+
optional :old_revision, :bytes, 4
|
109
|
+
optional :force, :bool, 5
|
110
|
+
end
|
111
|
+
add_message "gitaly.WriteRefResponse" do
|
112
|
+
end
|
113
|
+
add_message "gitaly.FindMergeBaseRequest" do
|
114
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
115
|
+
repeated :revisions, :bytes, 2
|
116
|
+
end
|
117
|
+
add_message "gitaly.FindMergeBaseResponse" do
|
118
|
+
optional :base, :string, 1
|
119
|
+
end
|
120
|
+
add_message "gitaly.CreateForkRequest" do
|
121
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
122
|
+
optional :source_repository, :message, 2, "gitaly.Repository"
|
123
|
+
end
|
124
|
+
add_message "gitaly.CreateForkResponse" do
|
125
|
+
end
|
126
|
+
add_message "gitaly.IsRebaseInProgressRequest" do
|
127
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
128
|
+
optional :rebase_id, :string, 2
|
129
|
+
end
|
130
|
+
add_message "gitaly.IsRebaseInProgressResponse" do
|
131
|
+
optional :in_progress, :bool, 1
|
132
|
+
end
|
133
|
+
add_message "gitaly.IsSquashInProgressRequest" do
|
134
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
135
|
+
optional :squash_id, :string, 2
|
136
|
+
end
|
137
|
+
add_message "gitaly.IsSquashInProgressResponse" do
|
138
|
+
optional :in_progress, :bool, 1
|
139
|
+
end
|
140
|
+
add_message "gitaly.CreateRepositoryFromURLRequest" do
|
141
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
142
|
+
optional :url, :string, 2
|
143
|
+
end
|
144
|
+
add_message "gitaly.CreateRepositoryFromURLResponse" do
|
145
|
+
end
|
146
|
+
add_message "gitaly.CreateBundleRequest" do
|
147
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
148
|
+
end
|
149
|
+
add_message "gitaly.CreateBundleResponse" do
|
150
|
+
optional :data, :bytes, 1
|
151
|
+
end
|
152
|
+
add_message "gitaly.SetConfigRequest" do
|
153
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
154
|
+
repeated :entries, :message, 2, "gitaly.SetConfigRequest.Entry"
|
155
|
+
end
|
156
|
+
add_message "gitaly.SetConfigRequest.Entry" do
|
157
|
+
optional :key, :string, 1
|
158
|
+
oneof :value do
|
159
|
+
optional :value_str, :string, 2
|
160
|
+
optional :value_int32, :int32, 3
|
161
|
+
optional :value_bool, :bool, 4
|
319
162
|
end
|
320
163
|
end
|
164
|
+
add_message "gitaly.SetConfigResponse" do
|
165
|
+
end
|
166
|
+
add_message "gitaly.DeleteConfigRequest" do
|
167
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
168
|
+
repeated :keys, :string, 2
|
169
|
+
end
|
170
|
+
add_message "gitaly.DeleteConfigResponse" do
|
171
|
+
end
|
172
|
+
add_message "gitaly.RestoreCustomHooksRequest" do
|
173
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
174
|
+
optional :data, :bytes, 2
|
175
|
+
end
|
176
|
+
add_message "gitaly.RestoreCustomHooksResponse" do
|
177
|
+
end
|
178
|
+
add_message "gitaly.BackupCustomHooksRequest" do
|
179
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
180
|
+
end
|
181
|
+
add_message "gitaly.BackupCustomHooksResponse" do
|
182
|
+
optional :data, :bytes, 1
|
183
|
+
end
|
184
|
+
add_message "gitaly.CreateRepositoryFromBundleRequest" do
|
185
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
186
|
+
optional :data, :bytes, 2
|
187
|
+
end
|
188
|
+
add_message "gitaly.CreateRepositoryFromBundleResponse" do
|
189
|
+
end
|
190
|
+
add_message "gitaly.FindLicenseRequest" do
|
191
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
192
|
+
end
|
193
|
+
add_message "gitaly.FindLicenseResponse" do
|
194
|
+
optional :license_short_name, :string, 1
|
195
|
+
end
|
196
|
+
add_message "gitaly.GetInfoAttributesRequest" do
|
197
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
198
|
+
end
|
199
|
+
add_message "gitaly.GetInfoAttributesResponse" do
|
200
|
+
optional :attributes, :bytes, 1
|
201
|
+
end
|
202
|
+
add_message "gitaly.CalculateChecksumRequest" do
|
203
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
204
|
+
end
|
205
|
+
add_message "gitaly.CalculateChecksumResponse" do
|
206
|
+
optional :checksum, :string, 1
|
207
|
+
end
|
208
|
+
add_message "gitaly.GetSnapshotRequest" do
|
209
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
210
|
+
end
|
211
|
+
add_message "gitaly.GetSnapshotResponse" do
|
212
|
+
optional :data, :bytes, 1
|
213
|
+
end
|
214
|
+
add_message "gitaly.CreateRepositoryFromSnapshotRequest" do
|
215
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
216
|
+
optional :http_url, :string, 2
|
217
|
+
optional :http_auth, :string, 3
|
218
|
+
end
|
219
|
+
add_message "gitaly.CreateRepositoryFromSnapshotResponse" do
|
220
|
+
end
|
221
|
+
add_message "gitaly.GetRawChangesRequest" do
|
222
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
223
|
+
optional :from_revision, :string, 2
|
224
|
+
optional :to_revision, :string, 3
|
225
|
+
end
|
226
|
+
add_message "gitaly.GetRawChangesResponse" do
|
227
|
+
repeated :raw_changes, :message, 1, "gitaly.GetRawChangesResponse.RawChange"
|
228
|
+
end
|
229
|
+
add_message "gitaly.GetRawChangesResponse.RawChange" do
|
230
|
+
optional :blob_id, :string, 1
|
231
|
+
optional :size, :int64, 2
|
232
|
+
optional :new_path, :string, 3
|
233
|
+
optional :old_path, :string, 4
|
234
|
+
optional :operation, :enum, 5, "gitaly.GetRawChangesResponse.RawChange.Operation"
|
235
|
+
optional :raw_operation, :string, 6
|
236
|
+
optional :old_mode, :int32, 7
|
237
|
+
optional :new_mode, :int32, 8
|
238
|
+
optional :new_path_bytes, :bytes, 9
|
239
|
+
optional :old_path_bytes, :bytes, 10
|
240
|
+
end
|
241
|
+
add_enum "gitaly.GetRawChangesResponse.RawChange.Operation" do
|
242
|
+
value :UNKNOWN, 0
|
243
|
+
value :ADDED, 1
|
244
|
+
value :COPIED, 2
|
245
|
+
value :DELETED, 3
|
246
|
+
value :MODIFIED, 4
|
247
|
+
value :RENAMED, 5
|
248
|
+
value :TYPE_CHANGED, 6
|
249
|
+
end
|
250
|
+
add_message "gitaly.SearchFilesByNameRequest" do
|
251
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
252
|
+
optional :query, :string, 2
|
253
|
+
optional :ref, :bytes, 3
|
254
|
+
end
|
255
|
+
add_message "gitaly.SearchFilesByNameResponse" do
|
256
|
+
repeated :files, :bytes, 1
|
257
|
+
end
|
258
|
+
add_message "gitaly.SearchFilesByContentRequest" do
|
259
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
260
|
+
optional :query, :string, 2
|
261
|
+
optional :ref, :bytes, 3
|
262
|
+
optional :chunked_response, :bool, 4
|
263
|
+
end
|
264
|
+
add_message "gitaly.SearchFilesByContentResponse" do
|
265
|
+
repeated :matches, :bytes, 1
|
266
|
+
optional :match_data, :bytes, 2
|
267
|
+
optional :end_of_match, :bool, 3
|
268
|
+
end
|
269
|
+
add_message "gitaly.Remote" do
|
270
|
+
optional :url, :string, 1
|
271
|
+
optional :name, :string, 2
|
272
|
+
optional :http_authorization_header, :string, 3
|
273
|
+
repeated :mirror_refmaps, :string, 4
|
274
|
+
end
|
275
|
+
add_message "gitaly.FetchHTTPRemoteRequest" do
|
276
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
277
|
+
optional :remote, :message, 2, "gitaly.Remote"
|
278
|
+
optional :timeout, :int32, 3
|
279
|
+
end
|
280
|
+
add_message "gitaly.FetchHTTPRemoteResponse" do
|
281
|
+
end
|
282
|
+
add_message "gitaly.GetObjectDirectorySizeRequest" do
|
283
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
284
|
+
end
|
285
|
+
add_message "gitaly.GetObjectDirectorySizeResponse" do
|
286
|
+
optional :size, :int64, 1
|
287
|
+
end
|
288
|
+
add_message "gitaly.CloneFromPoolRequest" do
|
289
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
290
|
+
optional :pool, :message, 2, "gitaly.ObjectPool"
|
291
|
+
optional :remote, :message, 3, "gitaly.Remote"
|
292
|
+
end
|
293
|
+
add_message "gitaly.CloneFromPoolResponse" do
|
294
|
+
end
|
295
|
+
add_message "gitaly.CloneFromPoolInternalRequest" do
|
296
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
297
|
+
optional :pool, :message, 2, "gitaly.ObjectPool"
|
298
|
+
optional :source_repository, :message, 3, "gitaly.Repository"
|
299
|
+
end
|
300
|
+
add_message "gitaly.CloneFromPoolInternalResponse" do
|
301
|
+
end
|
302
|
+
add_message "gitaly.RemoveRepositoryRequest" do
|
303
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
304
|
+
end
|
305
|
+
add_message "gitaly.RemoveRepositoryResponse" do
|
306
|
+
end
|
307
|
+
add_message "gitaly.RenameRepositoryRequest" do
|
308
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
309
|
+
optional :relative_path, :string, 2
|
310
|
+
end
|
311
|
+
add_message "gitaly.RenameRepositoryResponse" do
|
312
|
+
end
|
313
|
+
add_message "gitaly.ReplicateRepositoryRequest" do
|
314
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
315
|
+
optional :source, :message, 2, "gitaly.Repository"
|
316
|
+
end
|
317
|
+
add_message "gitaly.ReplicateRepositoryResponse" do
|
318
|
+
end
|
321
319
|
end
|
322
320
|
|
323
321
|
module Gitaly
|
324
|
-
RepositoryExistsRequest =
|
325
|
-
RepositoryExistsResponse =
|
326
|
-
RepackIncrementalRequest =
|
327
|
-
RepackIncrementalResponse =
|
328
|
-
RepackFullRequest =
|
329
|
-
RepackFullResponse =
|
330
|
-
GarbageCollectRequest =
|
331
|
-
GarbageCollectResponse =
|
332
|
-
CleanupRequest =
|
333
|
-
CleanupResponse =
|
334
|
-
RepositorySizeRequest =
|
335
|
-
RepositorySizeResponse =
|
336
|
-
ApplyGitattributesRequest =
|
337
|
-
ApplyGitattributesResponse =
|
338
|
-
FetchRemoteRequest =
|
339
|
-
FetchRemoteResponse =
|
340
|
-
CreateRepositoryRequest =
|
341
|
-
CreateRepositoryResponse =
|
342
|
-
GetArchiveRequest =
|
343
|
-
GetArchiveRequest::Format =
|
344
|
-
GetArchiveResponse =
|
345
|
-
HasLocalBranchesRequest =
|
346
|
-
HasLocalBranchesResponse =
|
347
|
-
FetchSourceBranchRequest =
|
348
|
-
FetchSourceBranchResponse =
|
349
|
-
FsckRequest =
|
350
|
-
FsckResponse =
|
351
|
-
WriteRefRequest =
|
352
|
-
WriteRefResponse =
|
353
|
-
FindMergeBaseRequest =
|
354
|
-
FindMergeBaseResponse =
|
355
|
-
CreateForkRequest =
|
356
|
-
CreateForkResponse =
|
357
|
-
IsRebaseInProgressRequest =
|
358
|
-
IsRebaseInProgressResponse =
|
359
|
-
IsSquashInProgressRequest =
|
360
|
-
IsSquashInProgressResponse =
|
361
|
-
CreateRepositoryFromURLRequest =
|
362
|
-
CreateRepositoryFromURLResponse =
|
363
|
-
CreateBundleRequest =
|
364
|
-
CreateBundleResponse =
|
365
|
-
SetConfigRequest =
|
366
|
-
SetConfigRequest::Entry =
|
367
|
-
SetConfigResponse =
|
368
|
-
DeleteConfigRequest =
|
369
|
-
DeleteConfigResponse =
|
370
|
-
RestoreCustomHooksRequest =
|
371
|
-
RestoreCustomHooksResponse =
|
372
|
-
BackupCustomHooksRequest =
|
373
|
-
BackupCustomHooksResponse =
|
374
|
-
CreateRepositoryFromBundleRequest =
|
375
|
-
CreateRepositoryFromBundleResponse =
|
376
|
-
FindLicenseRequest =
|
377
|
-
FindLicenseResponse =
|
378
|
-
GetInfoAttributesRequest =
|
379
|
-
GetInfoAttributesResponse =
|
380
|
-
CalculateChecksumRequest =
|
381
|
-
CalculateChecksumResponse =
|
382
|
-
GetSnapshotRequest =
|
383
|
-
GetSnapshotResponse =
|
384
|
-
CreateRepositoryFromSnapshotRequest =
|
385
|
-
CreateRepositoryFromSnapshotResponse =
|
386
|
-
GetRawChangesRequest =
|
387
|
-
GetRawChangesResponse =
|
388
|
-
GetRawChangesResponse::RawChange =
|
389
|
-
GetRawChangesResponse::RawChange::Operation =
|
390
|
-
SearchFilesByNameRequest =
|
391
|
-
SearchFilesByNameResponse =
|
392
|
-
SearchFilesByContentRequest =
|
393
|
-
SearchFilesByContentResponse =
|
394
|
-
Remote =
|
395
|
-
FetchHTTPRemoteRequest =
|
396
|
-
FetchHTTPRemoteResponse =
|
397
|
-
GetObjectDirectorySizeRequest =
|
398
|
-
GetObjectDirectorySizeResponse =
|
399
|
-
CloneFromPoolRequest =
|
400
|
-
CloneFromPoolResponse =
|
401
|
-
CloneFromPoolInternalRequest =
|
402
|
-
CloneFromPoolInternalResponse =
|
403
|
-
RemoveRepositoryRequest =
|
404
|
-
RemoveRepositoryResponse =
|
405
|
-
RenameRepositoryRequest =
|
406
|
-
RenameRepositoryResponse =
|
407
|
-
ReplicateRepositoryRequest =
|
408
|
-
ReplicateRepositoryResponse =
|
322
|
+
RepositoryExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryExistsRequest").msgclass
|
323
|
+
RepositoryExistsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryExistsResponse").msgclass
|
324
|
+
RepackIncrementalRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackIncrementalRequest").msgclass
|
325
|
+
RepackIncrementalResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackIncrementalResponse").msgclass
|
326
|
+
RepackFullRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullRequest").msgclass
|
327
|
+
RepackFullResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullResponse").msgclass
|
328
|
+
GarbageCollectRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectRequest").msgclass
|
329
|
+
GarbageCollectResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectResponse").msgclass
|
330
|
+
CleanupRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupRequest").msgclass
|
331
|
+
CleanupResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupResponse").msgclass
|
332
|
+
RepositorySizeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeRequest").msgclass
|
333
|
+
RepositorySizeResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeResponse").msgclass
|
334
|
+
ApplyGitattributesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesRequest").msgclass
|
335
|
+
ApplyGitattributesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesResponse").msgclass
|
336
|
+
FetchRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchRemoteRequest").msgclass
|
337
|
+
FetchRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchRemoteResponse").msgclass
|
338
|
+
CreateRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryRequest").msgclass
|
339
|
+
CreateRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryResponse").msgclass
|
340
|
+
GetArchiveRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetArchiveRequest").msgclass
|
341
|
+
GetArchiveRequest::Format = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetArchiveRequest.Format").enummodule
|
342
|
+
GetArchiveResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetArchiveResponse").msgclass
|
343
|
+
HasLocalBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.HasLocalBranchesRequest").msgclass
|
344
|
+
HasLocalBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.HasLocalBranchesResponse").msgclass
|
345
|
+
FetchSourceBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchSourceBranchRequest").msgclass
|
346
|
+
FetchSourceBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchSourceBranchResponse").msgclass
|
347
|
+
FsckRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FsckRequest").msgclass
|
348
|
+
FsckResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FsckResponse").msgclass
|
349
|
+
WriteRefRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteRefRequest").msgclass
|
350
|
+
WriteRefResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteRefResponse").msgclass
|
351
|
+
FindMergeBaseRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindMergeBaseRequest").msgclass
|
352
|
+
FindMergeBaseResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindMergeBaseResponse").msgclass
|
353
|
+
CreateForkRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateForkRequest").msgclass
|
354
|
+
CreateForkResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateForkResponse").msgclass
|
355
|
+
IsRebaseInProgressRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsRebaseInProgressRequest").msgclass
|
356
|
+
IsRebaseInProgressResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsRebaseInProgressResponse").msgclass
|
357
|
+
IsSquashInProgressRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsSquashInProgressRequest").msgclass
|
358
|
+
IsSquashInProgressResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsSquashInProgressResponse").msgclass
|
359
|
+
CreateRepositoryFromURLRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromURLRequest").msgclass
|
360
|
+
CreateRepositoryFromURLResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromURLResponse").msgclass
|
361
|
+
CreateBundleRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleRequest").msgclass
|
362
|
+
CreateBundleResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleResponse").msgclass
|
363
|
+
SetConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest").msgclass
|
364
|
+
SetConfigRequest::Entry = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest.Entry").msgclass
|
365
|
+
SetConfigResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigResponse").msgclass
|
366
|
+
DeleteConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteConfigRequest").msgclass
|
367
|
+
DeleteConfigResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteConfigResponse").msgclass
|
368
|
+
RestoreCustomHooksRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksRequest").msgclass
|
369
|
+
RestoreCustomHooksResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksResponse").msgclass
|
370
|
+
BackupCustomHooksRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.BackupCustomHooksRequest").msgclass
|
371
|
+
BackupCustomHooksResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.BackupCustomHooksResponse").msgclass
|
372
|
+
CreateRepositoryFromBundleRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromBundleRequest").msgclass
|
373
|
+
CreateRepositoryFromBundleResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromBundleResponse").msgclass
|
374
|
+
FindLicenseRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLicenseRequest").msgclass
|
375
|
+
FindLicenseResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLicenseResponse").msgclass
|
376
|
+
GetInfoAttributesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetInfoAttributesRequest").msgclass
|
377
|
+
GetInfoAttributesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetInfoAttributesResponse").msgclass
|
378
|
+
CalculateChecksumRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CalculateChecksumRequest").msgclass
|
379
|
+
CalculateChecksumResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CalculateChecksumResponse").msgclass
|
380
|
+
GetSnapshotRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetSnapshotRequest").msgclass
|
381
|
+
GetSnapshotResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetSnapshotResponse").msgclass
|
382
|
+
CreateRepositoryFromSnapshotRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromSnapshotRequest").msgclass
|
383
|
+
CreateRepositoryFromSnapshotResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromSnapshotResponse").msgclass
|
384
|
+
GetRawChangesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesRequest").msgclass
|
385
|
+
GetRawChangesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse").msgclass
|
386
|
+
GetRawChangesResponse::RawChange = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse.RawChange").msgclass
|
387
|
+
GetRawChangesResponse::RawChange::Operation = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse.RawChange.Operation").enummodule
|
388
|
+
SearchFilesByNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByNameRequest").msgclass
|
389
|
+
SearchFilesByNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByNameResponse").msgclass
|
390
|
+
SearchFilesByContentRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentRequest").msgclass
|
391
|
+
SearchFilesByContentResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentResponse").msgclass
|
392
|
+
Remote = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Remote").msgclass
|
393
|
+
FetchHTTPRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHTTPRemoteRequest").msgclass
|
394
|
+
FetchHTTPRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHTTPRemoteResponse").msgclass
|
395
|
+
GetObjectDirectorySizeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetObjectDirectorySizeRequest").msgclass
|
396
|
+
GetObjectDirectorySizeResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetObjectDirectorySizeResponse").msgclass
|
397
|
+
CloneFromPoolRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolRequest").msgclass
|
398
|
+
CloneFromPoolResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolResponse").msgclass
|
399
|
+
CloneFromPoolInternalRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolInternalRequest").msgclass
|
400
|
+
CloneFromPoolInternalResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolInternalResponse").msgclass
|
401
|
+
RemoveRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRepositoryRequest").msgclass
|
402
|
+
RemoveRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRepositoryResponse").msgclass
|
403
|
+
RenameRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RenameRepositoryRequest").msgclass
|
404
|
+
RenameRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RenameRepositoryResponse").msgclass
|
405
|
+
ReplicateRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReplicateRepositoryRequest").msgclass
|
406
|
+
ReplicateRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReplicateRepositoryResponse").msgclass
|
409
407
|
end
|