Object Storage · Objects
Docs / Object Storage

Objects

Upload, browse, download, and delete files from the console's Files tab, or use any S3-compatible SDK or CLI.

A bucket's Files tab is a full file browser: drag and drop to upload, click through folders (simulated from / in object keys — S3-compatible storage has no real folders), download, and delete — all without leaving the console.

Upload

Drag files onto the drop zone, or click Browse files to pick them from a dialog. Each file uploads with its own progress bar; uploads go straight from your browser to storage, so speed depends on your own connection, not the console.

Bucket Files tab with a drag-and-drop upload zone and a list of existing files with size and date
The Files tab — drag and drop to upload, and every existing object listed with its size and last-modified date.
Note
The bucket must be Active to upload, download, or delete objects — a bucket still in Creating or paused in Suspended rejects object operations until it settles.

Download and delete

Click an object's Download icon to fetch it — the console generates a short-lived, secure link and opens it in a new tab. Delete a single object with its row's delete icon, or select several with the checkboxes and use Delete selected to remove them in one step.

Using the API or CLI instead

Everything the console's Files tab does is also available through the S3-compatible API with an access key — useful for scripting, CI pipelines, or backup jobs. Each bucket's Connect tab shows the exact endpoint, region, and bucket name to fill into these:

Bucket Connect tab showing ready-to-copy AWS CLI, boto3, rclone, and AWS SDK for JavaScript snippets
The Connect tab pre-fills your bucket's real endpoint, region, and name into copy-paste snippets for the AWS CLI, boto3, rclone, and the JS SDK.
AWS CLI
 
rclone
 
Python — boto3
 
Base: https://api.cloud.nevtan.com/api/v1
GET/storage/buckets/{id}/objectsList objects (and simulated folders) in a bucket
POST/storage/buckets/{id}/objects/presign-putGet a short-lived upload link for a given key
GET/storage/buckets/{id}/objects/presign-getGet a short-lived download link for a given key
DELETE/storage/buckets/{id}/objectsDelete one or more objects by key
Tip
There's no fixed object-size limit enforced by the console — very large files are best uploaded through the API/CLI path above rather than a browser tab, since a browser upload depends entirely on your own connection staying open for the whole transfer.