gitaly-proto 0.31.0 → 0.32.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: 19c23b2faf745e617fb7cb1ef63cd58305a308f0
4
- data.tar.gz: 2916ed1ec330d0b67823648effba89c6f7bbfdc7
3
+ metadata.gz: e63089089b6326c4ce396dff1e42efe3d5012b5e
4
+ data.tar.gz: 7b22b7680149adf9b4d489893c25f18c8749c73b
5
5
  SHA512:
6
- metadata.gz: 7f4cb0c6f25aea0d5f9ac4b5f88402a6b723a6a1aafaa5eed8e634d5aa5563690fb47e41de4964c16dd424da3adabc64808d3b002a24afee871e5d3cc8adc87a
7
- data.tar.gz: ce825559eb1ac04574efa794b7823098fec21f387cb1e241de7118c20b3d12c29806084ac1f0d414084f2b4add2df63badd130539f468ce3a801df75333d5f69
6
+ metadata.gz: c7da5c67a3abfa12dfdb061912c38a9e8ddb23b12bb7209c41183d86774d93962e44460470f2c269164d4e9a13f3fb4c16042204913b6f80e324297c275e079b
7
+ data.tar.gz: 11e8c250d4c9c6fecfa0c9bdef6aaf3ad63714e81c7f9318bcb82b446e022685e96adaca6f8544ca9178e0bb1ce958d8489606300c4b75f0bed75bcb37c2eaa3
@@ -11,6 +11,8 @@ require 'gitaly/deprecated-services_services_pb'
11
11
 
12
12
  require 'gitaly/diff_services_pb'
13
13
 
14
+ require 'gitaly/namespace_services_pb'
15
+
14
16
  require 'gitaly/notifications_services_pb'
15
17
 
16
18
  require 'gitaly/ref_services_pb'
@@ -0,0 +1,44 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: namespace.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_message "gitaly.AddNamespaceRequest" do
8
+ optional :storage_name, :string, 1
9
+ optional :name, :string, 2
10
+ end
11
+ add_message "gitaly.RemoveNamespaceRequest" do
12
+ optional :storage_name, :string, 1
13
+ optional :name, :string, 2
14
+ end
15
+ add_message "gitaly.RenameNamespaceRequest" do
16
+ optional :storage_name, :string, 1
17
+ optional :from, :string, 2
18
+ optional :to, :string, 3
19
+ end
20
+ add_message "gitaly.NamespaceExistsRequest" do
21
+ optional :storage_name, :string, 1
22
+ optional :name, :string, 2
23
+ end
24
+ add_message "gitaly.NamespaceExistsResponse" do
25
+ optional :exists, :bool, 1
26
+ end
27
+ add_message "gitaly.AddNamespaceResponse" do
28
+ end
29
+ add_message "gitaly.RemoveNamespaceResponse" do
30
+ end
31
+ add_message "gitaly.RenameNamespaceResponse" do
32
+ end
33
+ end
34
+
35
+ module Gitaly
36
+ AddNamespaceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddNamespaceRequest").msgclass
37
+ RemoveNamespaceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveNamespaceRequest").msgclass
38
+ RenameNamespaceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RenameNamespaceRequest").msgclass
39
+ NamespaceExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NamespaceExistsRequest").msgclass
40
+ NamespaceExistsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NamespaceExistsResponse").msgclass
41
+ AddNamespaceResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddNamespaceResponse").msgclass
42
+ RemoveNamespaceResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveNamespaceResponse").msgclass
43
+ RenameNamespaceResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RenameNamespaceResponse").msgclass
44
+ end
@@ -0,0 +1,25 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: namespace.proto for package 'gitaly'
3
+
4
+ require 'grpc'
5
+ require 'namespace_pb'
6
+
7
+ module Gitaly
8
+ module NamespaceService
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.NamespaceService'
16
+
17
+ rpc :AddNamespace, AddNamespaceRequest, AddNamespaceResponse
18
+ rpc :RemoveNamespace, RemoveNamespaceRequest, RemoveNamespaceResponse
19
+ rpc :RenameNamespace, RenameNamespaceRequest, RenameNamespaceResponse
20
+ rpc :NamespaceExists, NamespaceExistsRequest, NamespaceExistsResponse
21
+ end
22
+
23
+ Stub = Service.rpc_stub_class
24
+ end
25
+ end
@@ -85,6 +85,34 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
85
85
  add_message "gitaly.RefExistsResponse" do
86
86
  optional :value, :bool, 1
87
87
  end
88
+ add_message "gitaly.CreateBranchRequest" do
89
+ optional :repository, :message, 1, "gitaly.Repository"
90
+ optional :name, :bytes, 2
91
+ optional :start_point, :bytes, 3
92
+ end
93
+ add_message "gitaly.CreateBranchResponse" do
94
+ optional :status, :enum, 1, "gitaly.CreateBranchResponse.Status"
95
+ optional :branch, :message, 2, "gitaly.Branch"
96
+ end
97
+ add_enum "gitaly.CreateBranchResponse.Status" do
98
+ value :OK, 0
99
+ value :ERR_EXISTS, 1
100
+ value :ERR_INVALID, 2
101
+ value :ERR_INVALID_START_POINT, 3
102
+ end
103
+ add_message "gitaly.DeleteBranchRequest" do
104
+ optional :repository, :message, 1, "gitaly.Repository"
105
+ optional :name, :bytes, 2
106
+ end
107
+ add_message "gitaly.DeleteBranchResponse" do
108
+ end
109
+ add_message "gitaly.FindBranchRequest" do
110
+ optional :repository, :message, 1, "gitaly.Repository"
111
+ optional :name, :bytes, 2
112
+ end
113
+ add_message "gitaly.FindBranchResponse" do
114
+ optional :branch, :message, 1, "gitaly.Branch"
115
+ end
88
116
  end
89
117
 
90
118
  module Gitaly
@@ -109,4 +137,11 @@ module Gitaly
109
137
  FindAllTagsResponse::Tag = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse.Tag").msgclass
110
138
  RefExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsRequest").msgclass
111
139
  RefExistsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsResponse").msgclass
140
+ CreateBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchRequest").msgclass
141
+ CreateBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchResponse").msgclass
142
+ CreateBranchResponse::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchResponse.Status").enummodule
143
+ DeleteBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteBranchRequest").msgclass
144
+ DeleteBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteBranchResponse").msgclass
145
+ FindBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchRequest").msgclass
146
+ FindBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchResponse").msgclass
112
147
  end
@@ -24,6 +24,9 @@ module Gitaly
24
24
  rpc :FindAllBranches, FindAllBranchesRequest, stream(FindAllBranchesResponse)
25
25
  rpc :FindAllTags, FindAllTagsRequest, stream(FindAllTagsResponse)
26
26
  rpc :RefExists, RefExistsRequest, RefExistsResponse
27
+ rpc :CreateBranch, CreateBranchRequest, CreateBranchResponse
28
+ rpc :DeleteBranch, DeleteBranchRequest, DeleteBranchResponse
29
+ rpc :FindBranch, FindBranchRequest, FindBranchResponse
27
30
  end
28
31
 
29
32
  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 = "0.31.0"
3
+ VERSION = "0.32.0"
4
4
  end
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.31.0
4
+ version: 0.32.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: 2017-08-24 00:00:00.000000000 Z
11
+ date: 2017-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -57,6 +57,8 @@ files:
57
57
  - ruby/lib/gitaly/deprecated-services_services_pb.rb
58
58
  - ruby/lib/gitaly/diff_pb.rb
59
59
  - ruby/lib/gitaly/diff_services_pb.rb
60
+ - ruby/lib/gitaly/namespace_pb.rb
61
+ - ruby/lib/gitaly/namespace_services_pb.rb
60
62
  - ruby/lib/gitaly/notifications_pb.rb
61
63
  - ruby/lib/gitaly/notifications_services_pb.rb
62
64
  - ruby/lib/gitaly/ref_pb.rb