Documentation navigation

MultipartUploadPart

Multipart upload part metadata returned by the Storage API.

NameTypeDefinition
upload_idstringMultipart upload identifier.
keystringFinal object key for the upload.
project_idstringProject that owns the upload.
bucket_namestringBucket that contains the upload.
part_numbernumberPart number in the range `1` through `10000`.
part_sizenumberSize of this part in bytes.
etagstringAn entity tag (ETag) is an opaque identifier assigned by the storage service to this specific multipart part.
created_atstringTimestamp when the part was created.
updated_atstringTimestamp when the part was last updated.

Example

{  "upload_id": "string",  "key": "string",  "project_id": "string",  "bucket_name": "string",  "part_number": 0,  "part_size": 0,  "etag": "string",  "created_at": "string",  "updated_at": "string"}