Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-proto
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-proto
Commits
71379e9b
Commit
71379e9b
authored
4 weeks ago
by
Joscha Schmiedt
Browse files
Options
Downloads
Patches
Plain Diff
Fix missing comments for file transmission
parent
b1c80b28
No related branches found
No related tags found
1 merge request
!12
Extend Upload API for resumable downloads
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
proto/caosdb/file_transmission/v1alpha1/file_transmission.proto
+15
-0
15 additions, 0 deletions
...caosdb/file_transmission/v1alpha1/file_transmission.proto
with
15 additions
and
0 deletions
proto/caosdb/file_transmission/v1alpha1/file_transmission.proto
+
15
−
0
View file @
71379e9b
...
...
@@ -86,15 +86,23 @@ enum TransmissionStatus {
// TODO: This is very similar to the Hash message in the entity API. We should discuss
// if and how they can be merged.
enum
ChecksumAlgorithm
{
// The checksum algorithm is unspecified.
CHECKSUM_ALGORITHM_UNSPECIFIED
=
0
;
// The MD5 checksum algorithm.
CHECKSUM_ALGORITHM_MD5
=
1
;
// The SHA-1 checksum algorithm.
CHECKSUM_ALGORITHM_SHA1
=
2
;
// The SHA-256 checksum algorithm.
CHECKSUM_ALGORITHM_SHA256
=
3
;
// The SHA-512 checksum algorithm.
CHECKSUM_ALGORITHM_SHA512
=
4
;
}
// Checksum contains the checksum value and the algorithm used to compute it.
message
Checksum
{
// The checksum value.
string
checksum
=
1
;
// The algorithm used to compute the checksum.
ChecksumAlgorithm
checksum_algorithm
=
2
;
}
...
...
@@ -116,20 +124,25 @@ message FileInformation {
// Register a file upload for a list of files. The server will respond with a
// registration id and URLs to which the files can be uploaded.
message
RegisterFileUploadRequest
{
// Information about the files to be uploaded.
repeated
FileInformation
file_information
=
1
;
}
// The URL to which a file should be uploaded using the given LinkAhead
// UploadProtocolVersion.
message
UploadLocation
{
// The URL to which the file should be uploaded.
string
url
=
1
;
}
// The version of the LinkAhead upload protocol. This is currently identical to
// the TUS protocol version.
message
UploadProtocolVersion
{
// The major version number of the upload protocol.
int32
major
=
1
;
// The minor version number of the upload protocol.
int32
minor
=
2
;
// The patch version number of the upload protocol.
int32
patch
=
3
;
}
...
...
@@ -142,7 +155,9 @@ message RegisterFileUploadResponse {
string
registration_id
=
2
;
// The server's transmission settings for the upload.
FileTransmissionSettings
upload_settings
=
4
;
// The version of the LinkAhead upload protocol.
UploadProtocolVersion
version
=
5
;
// The locations where the files should be uploaded.
repeated
UploadLocation
locations
=
6
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment