Welcome to mirror list, hosted at ThFree Co, Russian Federation.

repository-service_services_pb.rb « gitaly « proto « ruby - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 613774d7ed0b7ed92463454d67114a5cbf70988a (plain)
1
2
3
4
5
6
7
8
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
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# Source: repository-service.proto for package 'gitaly'

require 'grpc'
require 'repository-service_pb'

module Gitaly
  module RepositoryService
    class Service

      include GRPC::GenericService

      self.marshal_class_method = :encode
      self.unmarshal_class_method = :decode
      self.service_name = 'gitaly.RepositoryService'

      rpc :RepositoryExists, RepositoryExistsRequest, RepositoryExistsResponse
      rpc :RepackIncremental, RepackIncrementalRequest, RepackIncrementalResponse
      rpc :RepackFull, RepackFullRequest, RepackFullResponse
      rpc :GarbageCollect, GarbageCollectRequest, GarbageCollectResponse
      rpc :RepositorySize, RepositorySizeRequest, RepositorySizeResponse
      rpc :ApplyGitattributes, ApplyGitattributesRequest, ApplyGitattributesResponse
      rpc :FetchRemote, FetchRemoteRequest, FetchRemoteResponse
      rpc :CreateRepository, CreateRepositoryRequest, CreateRepositoryResponse
      rpc :GetArchive, GetArchiveRequest, stream(GetArchiveResponse)
      rpc :HasLocalBranches, HasLocalBranchesRequest, HasLocalBranchesResponse
      rpc :FetchSourceBranch, FetchSourceBranchRequest, FetchSourceBranchResponse
      rpc :Fsck, FsckRequest, FsckResponse
      rpc :WriteRef, WriteRefRequest, WriteRefResponse
      rpc :FindMergeBase, FindMergeBaseRequest, FindMergeBaseResponse
      rpc :CreateFork, CreateForkRequest, CreateForkResponse
      rpc :IsRebaseInProgress, IsRebaseInProgressRequest, IsRebaseInProgressResponse
      rpc :IsSquashInProgress, IsSquashInProgressRequest, IsSquashInProgressResponse
      rpc :CreateRepositoryFromURL, CreateRepositoryFromURLRequest, CreateRepositoryFromURLResponse
      rpc :CreateBundle, CreateBundleRequest, stream(CreateBundleResponse)
      rpc :CreateRepositoryFromBundle, stream(CreateRepositoryFromBundleRequest), CreateRepositoryFromBundleResponse
      rpc :SetConfig, SetConfigRequest, SetConfigResponse
      rpc :DeleteConfig, DeleteConfigRequest, DeleteConfigResponse
      rpc :FindLicense, FindLicenseRequest, FindLicenseResponse
      rpc :GetInfoAttributes, GetInfoAttributesRequest, stream(GetInfoAttributesResponse)
      rpc :CalculateChecksum, CalculateChecksumRequest, CalculateChecksumResponse
      rpc :Cleanup, CleanupRequest, CleanupResponse
      rpc :GetSnapshot, GetSnapshotRequest, stream(GetSnapshotResponse)
      rpc :CreateRepositoryFromSnapshot, CreateRepositoryFromSnapshotRequest, CreateRepositoryFromSnapshotResponse
      rpc :GetRawChanges, GetRawChangesRequest, stream(GetRawChangesResponse)
      rpc :SearchFilesByContent, SearchFilesByContentRequest, stream(SearchFilesByContentResponse)
      rpc :SearchFilesByName, SearchFilesByNameRequest, stream(SearchFilesByNameResponse)
      rpc :RestoreCustomHooks, stream(RestoreCustomHooksRequest), RestoreCustomHooksResponse
      rpc :BackupCustomHooks, BackupCustomHooksRequest, stream(BackupCustomHooksResponse)
      rpc :FetchHTTPRemote, FetchHTTPRemoteRequest, FetchHTTPRemoteResponse
      rpc :GetObjectDirectorySize, GetObjectDirectorySizeRequest, GetObjectDirectorySizeResponse
      rpc :CloneFromPool, CloneFromPoolRequest, CloneFromPoolResponse
      rpc :CloneFromPoolInternal, CloneFromPoolInternalRequest, CloneFromPoolInternalResponse
      rpc :RemoveRepository, RemoveRepositoryRequest, RemoveRepositoryResponse
      rpc :RenameRepository, RenameRepositoryRequest, RenameRepositoryResponse
      rpc :ReplicateRepository, ReplicateRepositoryRequest, ReplicateRepositoryResponse
      rpc :OptimizeRepository, OptimizeRepositoryRequest, OptimizeRepositoryResponse
      rpc :CreateBackup, CreateBackupRequest, CreateBackupResponse
      rpc :RestoreFromBackup, RestoreFromBackupRequest, RestoreFromBackupResponse
    end

    Stub = Service.rpc_stub_class
  end
end