ruby/proto/gitaly/repository_services_pb.rb in gitaly-17.0.0.pre.rc2 vs ruby/proto/gitaly/repository_services_pb.rb in gitaly-17.0.2
- old
+ new
@@ -88,10 +88,12 @@
# CreateBundle creates a bundle from all refs
rpc :CreateBundle, ::Gitaly::CreateBundleRequest, stream(::Gitaly::CreateBundleResponse)
# CreateBundleFromRefList creates a bundle from a stream of ref patterns.
# When the bundle would be empty the FailedPrecondition error code is returned.
rpc :CreateBundleFromRefList, stream(::Gitaly::CreateBundleFromRefListRequest), stream(::Gitaly::CreateBundleFromRefListResponse)
+ # GenerateBundleURI generates a bundle on the server for bundle-URI use.
+ rpc :GenerateBundleURI, ::Gitaly::GenerateBundleURIRequest, ::Gitaly::GenerateBundleURIResponse
# FetchBundle fetches references from a bundle into the local repository.
# refs will be mirrored to the target repository with the refspec
# "+refs/*:refs/*" and refs that do not exist in the bundle will be removed.
rpc :FetchBundle, stream(::Gitaly::FetchBundleRequest), ::Gitaly::FetchBundleResponse
# CreateRepositoryFromBundle creates a Git repository at the specified storage and path, if it
@@ -171,12 +173,9 @@
# last 30 minutes. This is a hard requirement to avoid repository corruption.
#
# to make proper use of this RPC you thus need to call OptimizeRepository,
# wait 30 minutes, and then call PruneUnreachableObjects.
rpc :PruneUnreachableObjects, ::Gitaly::PruneUnreachableObjectsRequest, ::Gitaly::PruneUnreachableObjectsResponse
- # RemoveAll deletes all repositories on a specified storage.
- # Deprecated in favour of individually removing repositories with RemoveRepository.
- rpc :RemoveAll, ::Gitaly::RemoveAllRequest, ::Gitaly::RemoveAllResponse
# BackupRepository creates a full or incremental backup streamed directly to
# object-storage. The backup is created synchronously. The destination must
# be configured in config.backup.go_cloud_url
rpc :BackupRepository, ::Gitaly::BackupRepositoryRequest, ::Gitaly::BackupRepositoryResponse
# RestoreRepository restores a backup streamed directly from object-storage.