MultipartUploadPart
Multipart upload part metadata returned by the Storage API.
| Name | Type | Definition |
|---|---|---|
upload_id | string | Multipart upload identifier. |
key | string | Final object key for the upload. |
project_id | string | Project that owns the upload. |
bucket_name | string | Bucket that contains the upload. |
part_number | number | Part number in the range `1` through `10000`. |
part_size | number | Size of this part in bytes. |
etag | string | An entity tag (ETag) is an opaque identifier assigned by the storage service to this specific multipart part. |
created_at | string | Timestamp when the part was created. |
updated_at | string | Timestamp 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"}