Documentation navigation

StorageObject

Object metadata record returned by the Storage API.

NameTypeDefinition
keystringObject key inside the bucket.
bucket_namestringBucket that contains the object.
content_typestringMIME type stored with the object.
content_lengthnumberObject size in bytes.
etagstringAn entity tag (ETag) is an opaque identifier assigned by the storage service to this specific object version.
cache_controlstringCache-Control value stored with the object.
attributesJsonObjectUser-defined object metadata.
created_atstringTimestamp when the object was created.
updated_atstringTimestamp 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"}