You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/sdks/tigris/client-uploads.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,12 +36,12 @@ import { upload } from "@tigrisdata/storage/client";
36
36
| url | Yes | The URL to backend endpoint where Storage SDK is running on server. |
37
37
| access | No | The access level for the object. Possible values are `public` and `private`. |
38
38
| addRandomSuffix | No | Whether to add a random suffix to the object name. Default is `false`. |
39
+
| concurrency | No | Maximum number of concurrent part uploads for multipart uploads. Default is `4`. |
39
40
| contentType | No | The content type of the object. |
40
41
| contentDisposition | No | The content disposition of the object. Possible values are `inline` and `attachment`. Default is `inline`. Use `attachment` for downloadable files. |
41
42
| multipart | No | Pass `multipart: true` when uploading large objects. It will split the object into multiple parts and upload them in parallel. |
42
43
| partSize | No | The size of the part to upload. Default is `5 * 1024 * 1024` (5 MiB). |
43
44
| onUploadProgress | No | Callback to track upload progress: `onUploadProgress({loaded: number, total: number, percentage: number})`. |
44
-
| config | No | A configuration object to override the [default configuration](/docs/sdks/tigris/using-sdk#authentication). |
45
45
46
46
In case of successful upload, the `data` property will be set to the upload and
0 commit comments