diff --git a/space/proto/space.proto b/space/proto/space.proto index 9ed54fb..7ae2165 100644 --- a/space/proto/space.proto +++ b/space/proto/space.proto @@ -15,7 +15,7 @@ service Space { rpc Upload(UploadRequest) returns (UploadResponse) {} } -// Create an object. Returns error if object with this name already exists. If you want to update an existing object use the `Update` endpoint +// Create an object. Returns error if object with this name already exists. Max object size of 10MB, see Upload endpoint for larger objects. If you want to update an existing object use the `Update` endpoint // You need to send the request as a multipart/form-data rather than the usual application/json // with each parameter as a form field. message CreateRequest { @@ -136,7 +136,7 @@ message DownloadResponse { string url = 2; } -// Upload a large object. Returns a time limited presigned URL to be used for uploading the object +// Upload a large object (> 10MB). Returns a time limited presigned URL to be used for uploading the object message UploadRequest { string name = 1; // is this object public or private