gitaly-proto 0.104.0 → 0.105.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d2f598ec016eeab3c6fcd49febb254aee92a9e92
|
4
|
+
data.tar.gz: 93f3f46124f9baf8fdc83fd76ab381127abda227
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 432cb2c69e1547cc65e15e73f8a69f9b42168a0e3e4257b5b1def21a724c83179dab9c38602e059246198e3e8892744302c65f1323944f030668587cfb123054
|
7
|
+
data.tar.gz: 7f064c23dc38bc00ddacaa2c23d4abf915331cf7a2a554924b6e10a2c4a107f6e2eb330b4bf3e9bd0e4482345b9de40617bd8ef7acc5ca0475b11892184d346c
|
@@ -155,6 +155,26 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
155
155
|
add_message "gitaly.WriteConfigResponse" do
|
156
156
|
optional :error, :bytes, 1
|
157
157
|
end
|
158
|
+
add_message "gitaly.SetConfigRequest" do
|
159
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
160
|
+
repeated :entries, :message, 2, "gitaly.SetConfigRequest.Entry"
|
161
|
+
end
|
162
|
+
add_message "gitaly.SetConfigRequest.Entry" do
|
163
|
+
optional :key, :string, 1
|
164
|
+
oneof :value do
|
165
|
+
optional :value_str, :string, 2
|
166
|
+
optional :value_int32, :int32, 3
|
167
|
+
optional :value_bool, :bool, 4
|
168
|
+
end
|
169
|
+
end
|
170
|
+
add_message "gitaly.SetConfigResponse" do
|
171
|
+
end
|
172
|
+
add_message "gitaly.DeleteConfigRequest" do
|
173
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
174
|
+
repeated :keys, :string, 2
|
175
|
+
end
|
176
|
+
add_message "gitaly.DeleteConfigResponse" do
|
177
|
+
end
|
158
178
|
add_message "gitaly.RestoreCustomHooksRequest" do
|
159
179
|
optional :repository, :message, 1, "gitaly.Repository"
|
160
180
|
optional :data, :bytes, 2
|
@@ -291,6 +311,11 @@ module Gitaly
|
|
291
311
|
CreateBundleResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleResponse").msgclass
|
292
312
|
WriteConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteConfigRequest").msgclass
|
293
313
|
WriteConfigResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteConfigResponse").msgclass
|
314
|
+
SetConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest").msgclass
|
315
|
+
SetConfigRequest::Entry = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest.Entry").msgclass
|
316
|
+
SetConfigResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigResponse").msgclass
|
317
|
+
DeleteConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteConfigRequest").msgclass
|
318
|
+
DeleteConfigResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteConfigResponse").msgclass
|
294
319
|
RestoreCustomHooksRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksRequest").msgclass
|
295
320
|
RestoreCustomHooksResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksResponse").msgclass
|
296
321
|
BackupCustomHooksRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.BackupCustomHooksRequest").msgclass
|
@@ -35,6 +35,8 @@ module Gitaly
|
|
35
35
|
rpc :CreateBundle, CreateBundleRequest, stream(CreateBundleResponse)
|
36
36
|
rpc :CreateRepositoryFromBundle, stream(CreateRepositoryFromBundleRequest), CreateRepositoryFromBundleResponse
|
37
37
|
rpc :WriteConfig, WriteConfigRequest, WriteConfigResponse
|
38
|
+
rpc :SetConfig, SetConfigRequest, SetConfigResponse
|
39
|
+
rpc :DeleteConfig, DeleteConfigRequest, DeleteConfigResponse
|
38
40
|
rpc :FindLicense, FindLicenseRequest, FindLicenseResponse
|
39
41
|
rpc :GetInfoAttributes, GetInfoAttributesRequest, stream(GetInfoAttributesResponse)
|
40
42
|
rpc :CalculateChecksum, CalculateChecksumRequest, CalculateChecksumResponse
|
data/ruby/lib/gitaly/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly-proto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.105.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|