gitaly 1.73.0 → 1.74.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f36ea91e979bfddcdd87a7051378622389b6177ab8236395ea4b13b64fc93907
4
- data.tar.gz: 9179c8c67514c6bd6eccaefe0069e0295f87863bb5c5388570088ff1484bc576
3
+ metadata.gz: 977d09e5eed242dfc059751b15ed5e13055feac11f8acaaf225afd116635592a
4
+ data.tar.gz: 48d2c6549d1ded7469755e9ecbe6856846c88350d5506200f877c682d75e72d6
5
5
  SHA512:
6
- metadata.gz: 22b86869d6effa71f271b120f0064c964586eddff5efc574d54cc09cd3c4bccf23168143f407f35c018b03ae52f08db014c7e898e92b28e1d960a73d59fa1aa9
7
- data.tar.gz: af8ef570fecfbcb4108d77e2c128b4d4ff235e703961cbd331349cb6d49727d22e5a275f48fd06d019bbe852496359ebf4803f5f162244436774d044a392393c
6
+ metadata.gz: 36b9b546d46822e7dbd835f966db6794a2675221b456c700d5a1bb449c331bf71f01668f2d223e8e572afec2cb015aeee91e30ba5546f4573273f3f275f9a1a5
7
+ data.tar.gz: b1caefd9fe4ef9753133eee28b9312c1b95f49a50746a1a4eb0e7eecf0c5f00df401fb270172a2bb728e1a4d30520d0345150fbe714b37f8a0be7ce55e8d47cc
@@ -21,6 +21,8 @@ require 'gitaly/objectpool_services_pb'
21
21
 
22
22
  require 'gitaly/operations_services_pb'
23
23
 
24
+ require 'gitaly/praefect_services_pb'
25
+
24
26
  require 'gitaly/ref_services_pb'
25
27
 
26
28
  require 'gitaly/remote_services_pb'
@@ -0,0 +1,24 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: praefect.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'shared_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_message "gitaly.ListRepositoriesRequest" do
9
+ end
10
+ add_message "gitaly.ListRepositoriesResponse" do
11
+ optional :primary, :message, 1, "gitaly.ListRepositoriesResponse.RepositoryDetails"
12
+ repeated :replicas, :message, 2, "gitaly.ListRepositoriesResponse.RepositoryDetails"
13
+ end
14
+ add_message "gitaly.ListRepositoriesResponse.RepositoryDetails" do
15
+ optional :repository, :message, 1, "gitaly.Repository"
16
+ optional :checksum, :string, 2
17
+ end
18
+ end
19
+
20
+ module Gitaly
21
+ ListRepositoriesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRepositoriesRequest").msgclass
22
+ ListRepositoriesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRepositoriesResponse").msgclass
23
+ ListRepositoriesResponse::RepositoryDetails = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRepositoriesResponse.RepositoryDetails").msgclass
24
+ end
@@ -0,0 +1,22 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: praefect.proto for package 'gitaly'
3
+
4
+ require 'grpc'
5
+ require 'praefect_pb'
6
+
7
+ module Gitaly
8
+ module InfoService
9
+ class Service
10
+
11
+ include GRPC::GenericService
12
+
13
+ self.marshal_class_method = :encode
14
+ self.unmarshal_class_method = :decode
15
+ self.service_name = 'gitaly.InfoService'
16
+
17
+ rpc :ListRepositories, ListRepositoriesRequest, stream(ListRepositoriesResponse)
18
+ end
19
+
20
+ Stub = Service.rpc_stub_class
21
+ end
22
+ end
@@ -19,10 +19,23 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
19
19
  optional :fs_type, :string, 4
20
20
  optional :filesystem_id, :string, 5
21
21
  end
22
+ add_message "gitaly.DiskStatisticsRequest" do
23
+ end
24
+ add_message "gitaly.DiskStatisticsResponse" do
25
+ repeated :storage_statuses, :message, 1, "gitaly.DiskStatisticsResponse.StorageStatus"
26
+ end
27
+ add_message "gitaly.DiskStatisticsResponse.StorageStatus" do
28
+ optional :storage_name, :string, 1
29
+ optional :available, :int64, 2
30
+ optional :used, :int64, 3
31
+ end
22
32
  end
23
33
 
24
34
  module Gitaly
25
35
  ServerInfoRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ServerInfoRequest").msgclass
26
36
  ServerInfoResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ServerInfoResponse").msgclass
27
37
  ServerInfoResponse::StorageStatus = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ServerInfoResponse.StorageStatus").msgclass
38
+ DiskStatisticsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiskStatisticsRequest").msgclass
39
+ DiskStatisticsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiskStatisticsResponse").msgclass
40
+ DiskStatisticsResponse::StorageStatus = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiskStatisticsResponse.StorageStatus").msgclass
28
41
  end
@@ -15,6 +15,7 @@ module Gitaly
15
15
  self.service_name = 'gitaly.ServerService'
16
16
 
17
17
  rpc :ServerInfo, ServerInfoRequest, ServerInfoResponse
18
+ rpc :DiskStatistics, DiskStatisticsRequest, DiskStatisticsResponse
18
19
  end
19
20
 
20
21
  Stub = Service.rpc_stub_class
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = '1.73.0'
3
+ VERSION = '1.74.0'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitaly
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.73.0
4
+ version: 1.74.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: 2019-11-20 00:00:00.000000000 Z
11
+ date: 2019-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -51,6 +51,8 @@ files:
51
51
  - ruby/proto/gitaly/objectpool_services_pb.rb
52
52
  - ruby/proto/gitaly/operations_pb.rb
53
53
  - ruby/proto/gitaly/operations_services_pb.rb
54
+ - ruby/proto/gitaly/praefect_pb.rb
55
+ - ruby/proto/gitaly/praefect_services_pb.rb
54
56
  - ruby/proto/gitaly/ref_pb.rb
55
57
  - ruby/proto/gitaly/ref_services_pb.rb
56
58
  - ruby/proto/gitaly/remote_pb.rb