For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
LoginGet Started
DocsAPI ReferenceChangelog
DocsAPI ReferenceChangelog
    • Home
  • Getting Started
  • Infrastructure
    • GPU VMs
    • Cloud VMs
    • Object Storage
      • Core Concepts
      • Upload Your First Object
      • Buckets
      • Objects
        • Object Locking
        • Presigned URLs
      • Mount a Bucket as a Filesystem
      • Metrics
      • API Tokens
      • Static Site Hosting
      • CDN integration
      • Pricing
      • Limits
    • Block Storage
  • Network & Security
    • Load Balancer
    • DNS
    • CDN
    • Firewalls
    • SSL Certificates
  • Tools
    • Backups
    • Snapshots
    • ISOs
    • SSH Keys
    • API Tokens
    • Secret Manager
    • Container Registry
  • Platform Fundamentals
    • Projects and tenancy model
    • IAM
    • Networking overview
    • Billing and usage
    • Limits and quotas
    • SLA and reliability
  • Tutorials
    • Deploy a web app
    • Host a static website with object storage
    • Run an AI model on a GPU VM
    • Set up a load-balanced architecture
    • Backup and disaster recovery
    • Multi-region deployment
  • Migration Guides
    • Migrate from AWS
    • Migrate from GCP
    • Migrate from Vultr and Linode
    • Move S3 workloads to IBEE Object Storage
    • VM image migration
  • Reference
    • Pricing
    • Regions
    • Limits
    • Error codes
    • Service level agreement
  • Support
    • Contact Support
    • Create a request
    • Troubleshooting guides
    • Visit ibee.ai
LogoLogo
LoginGet Started
On this page
  • What you can do with objects
  • Object basics
  • Upload from the portal
  • Object list columns
  • Download
  • Delete
  • Object detail page
  • Upload from an S3-compatible client
  • Folder structure
  • Troubleshooting
  • Related
InfrastructureObject Storage

Objects

Was this page helpful?
Edit this page
Previous

Object Locking

Next
Built with

An object is a single file plus its metadata, stored in a bucket. Each object is identified by its key — the path-like name within the bucket.

What you can do with objects

Object Locking

Mark objects immutable for compliance or ransomware protection.

Presigned URLs

Generate time-limited URLs for upload or download — no shared credentials.

Object basics

PropertyDetail
KeyThe object’s name within the bucket. Up to 1,024 bytes, UTF-8.
SizeUp to 5 TiB per object. See Limits.
TypeMIME type set on upload (e.g. image/jpeg, application/pdf).
Storage classStandard.
MetadataSystem metadata (size, last-modified, ETag) plus optional custom headers.

Upload from the portal

You can upload, download, and delete objects directly from the IBEE Cloud portal.

1

1. Open a bucket

Go to portal.ibee.ai/a/{project_id}/cloud-storage/object-storage and click a bucket name from the list.

2

2. Upload

The Objects tab has two action buttons in the top right: Create Folder and Upload.

Click Upload. A drag-and-drop area appears.

IBEE Object Storage upload interfaceIBEE Object Storage upload interface

Choose one of:

  • Drag and drop files onto the upload area.
  • Click Select Files to browse and select files from your device.
3

3. Confirm

Uploaded files appear in the objects list with their Type, Storage Class, Size, and Modified date.

Object list columns

ColumnDescription
OBJECTSObject or folder name
TYPEMIME type (e.g. image/jpeg, image/png, application/octet-stream) or Folder
STORAGE CLASSStorage class (e.g. Standard)
SIZEObject size — shown as – for folders
MODIFIEDLast modified date and time
ACTIONSDownload + delete for objects; open link + delete for folders

Download

Click the download icon next to the object in the list. Or click the object name to open its detail page and click Download in the top right.

Delete

Click the delete icon next to the object in the list. Or open the detail page and click Delete.

All objects must be deleted before a bucket can be deleted. See Buckets → Delete a bucket.

Object detail page

Click an object name to open its detail page at portal.ibee.ai/a/{project_id}/cloud-storage/object-storage/{bucket}/{object_name}.

The Object Details card shows:

FieldDescription
NameObject name
SizeObject size
TypeMIME type of the object (e.g. image/jpeg)
ModifiedLast modified date and time
AccessPublic (with green dot) or Private

Image files are previewed inline under the Object Preview section.

Available actions in the top-right: Download, Delete.

Upload from an S3-compatible client

Use the project’s S3 endpoint and an API token with Object Read & Write or Admin Read & Write scope.

$# Single file
$aws --endpoint-url https://{project_id}.blob.ibeestorage.com \
> s3 cp report.pdf s3://my-bucket/reports/2026-05.pdf
$
$# Whole directory
$aws --endpoint-url https://{project_id}.blob.ibeestorage.com \
> s3 sync ./build/ s3://my-bucket/site/
$
$# List
$aws --endpoint-url https://{project_id}.blob.ibeestorage.com \
> s3 ls s3://my-bucket/reports/
$
$# Delete
$aws --endpoint-url https://{project_id}.blob.ibeestorage.com \
> s3 rm s3://my-bucket/reports/2026-05.pdf

Files larger than 100 MB are automatically uploaded as multipart by the AWS CLI and SDK. See Limits for size and rate caps.

Folder structure

Object Storage has no real folder hierarchy — only keys with / separators. The portal renders prefixes as folders. Use prefixes for logical grouping (e.g. logs/2026/05/, users/123/avatar.png) and pair with Lifecycle rules scoped by prefix to manage retention per “folder”.

Troubleshooting

Upload button not visible Ensure you are on the Objects tab inside a bucket, not on the main Object Storage list page.

File not appearing after upload Refresh the page. If the file still does not appear, try uploading again.

Cannot delete bucket All objects must be deleted from the bucket before the bucket itself can be deleted.

Related

  • Buckets
  • Locking
  • Presigned URLs
  • Mount as filesystem