In Object Storage, you work with files and folders called objects and place them in containers called buckets. This guide will help you manage objects in buckets.Documentation Index
Fetch the complete documentation index at: https://docs.nebius.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- Web console
- AWS CLI
Make sure you are in a group that has at least the
editor role within your tenant; for example, the default editors group. You can check this in the Administration → IAM section of the web console.Object naming requirements
Each Object Storage object has a key — object ID in astring format. This key can contain prefixes — they act similar to directories, organizing objects into groups.
To avoid issues with your objects, follow these requirements:
- Object keys can be up to 1024 bytes long, case sensitive.
- Use UTF-8 alphanumeric characters, slashes (
/) and certain special characters.
How to view objects
- Web console
- AWS CLI
- In the sidebar, go to
Storage → Object Storage.
- Select the bucket to view the objects in. The page shows a table with the following columns: Key, Size, Storage class and Last modified.
- To see the contents of a folder, click the folder name in the Key column.
How to verify object integrity
The web console does not show checksum metadata. Use the AWS CLI to upload objects with a checksum and to retrieve the checksum of stored objects.
HeadObject or GetObject requests. If the checksums don’t match, the upload fails with an error.
Both simple and multipart uploads support integrity checks. If no checksum is sent with the upload, Object Storage still calculates and stores one for the object, but this checksum is not validated during the upload.
The AWS CLI v2 automatically calculates and sends a checksum on every upload, using CRC64NVME by default, and verifies the checksum on every download. You only need to specify --checksum-algorithm if you want to use a different algorithm.
Supported checksum algorithms
CRC64NVME(default)CRC32CRC32CSHA1SHA256
Uploading an object with a checksum
To use a specific checksum algorithm, set the--checksum-algorithm parameter:
Retrieving the checksum of an object
To retrieve the stored checksum of an existing object, use thehead-object command with the --checksum-mode parameter set to ENABLED:
How to rename an object
Renaming objects is not supported in the web console.
-
Copy the object in question with a new name. You can also update an object’s prefix:
-
Remove the old copy of the renamed object:
How to delete objects
Deleting a single object
- Web console
- AWS CLI
- In the sidebar, go to
Storage → Object Storage.
- Select the bucket that contains the object.
- Next to the object, click
→ Delete.
- In the Delete object window, type the object name in the confirmation field and click Delete object.
Deleting multiple objects
- Web console
- AWS CLI
- In the sidebar, go to
Storage → Object Storage.
- Select the bucket that contains the objects.
- In the Select column, select the checkbox next to each object to delete. To select all the objects in the bucket, use the checkbox in the column header.
- In the banner that appears at the bottom of the page, click
Delete.
- In the Delete objects window, type the bucket name in the confirmation field and click Delete objects.