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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'proto/go/gitalypb/repository_grpc.pb.go')
-rw-r--r--proto/go/gitalypb/repository_grpc.pb.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/proto/go/gitalypb/repository_grpc.pb.go b/proto/go/gitalypb/repository_grpc.pb.go
index c31e2dacd..6dc602468 100644
--- a/proto/go/gitalypb/repository_grpc.pb.go
+++ b/proto/go/gitalypb/repository_grpc.pb.go
@@ -115,7 +115,8 @@ type RepositoryServiceClient interface {
// CalculateChecksum returns a checksum of the repository by hashing its references. Refs
// outside of well-known namespaces are not considered when computing the checksum.
CalculateChecksum(ctx context.Context, in *CalculateChecksumRequest, opts ...grpc.CallOption) (*CalculateChecksumResponse, error)
- // GetSnapshot ...
+ // GetSnapshot returns a snapshot of the repository. A snapshot comprises all Git references
+ // and objects required to recreate the state of a repository at a point in time.
GetSnapshot(ctx context.Context, in *GetSnapshotRequest, opts ...grpc.CallOption) (RepositoryService_GetSnapshotClient, error)
// CreateRepositoryFromSnapshot ...
CreateRepositoryFromSnapshot(ctx context.Context, in *CreateRepositoryFromSnapshotRequest, opts ...grpc.CallOption) (*CreateRepositoryFromSnapshotResponse, error)
@@ -1085,7 +1086,8 @@ type RepositoryServiceServer interface {
// CalculateChecksum returns a checksum of the repository by hashing its references. Refs
// outside of well-known namespaces are not considered when computing the checksum.
CalculateChecksum(context.Context, *CalculateChecksumRequest) (*CalculateChecksumResponse, error)
- // GetSnapshot ...
+ // GetSnapshot returns a snapshot of the repository. A snapshot comprises all Git references
+ // and objects required to recreate the state of a repository at a point in time.
GetSnapshot(*GetSnapshotRequest, RepositoryService_GetSnapshotServer) error
// CreateRepositoryFromSnapshot ...
CreateRepositoryFromSnapshot(context.Context, *CreateRepositoryFromSnapshotRequest) (*CreateRepositoryFromSnapshotResponse, error)