StorageObject
Object metadata record returned by the Storage API.
| Name | Type | Definition |
|---|---|---|
key | string | Object key inside the bucket. |
bucket_name | string | Bucket that contains the object. |
content_type | string | MIME type stored with the object. |
content_length | number | Object size in bytes. |
etag | string | An entity tag (ETag) is an opaque identifier assigned by the storage service to this specific object version. |
cache_control | string | Cache-Control value stored with the object. |
attributes | JsonObject | User-defined object metadata. |
created_at | string | Timestamp when the object was created. |
updated_at | string | Timestamp when the object was last updated. |
Example
{ "key": "string", "bucket_name": "string", "content_type": "string", "content_length": 0, "etag": "string", "cache_control": "string", "attributes": {}, "created_at": "string", "updated_at": "string"}