tigris objects | Tigris Object Storage Documentation

On this page

Low-level object operations for listing, downloading, uploading, and deleting individual objects in a bucket.

Alias: o

Usage

tigris objects <operation> [flags]
t3 o <operation> [flags]

Commands

Command Description
list List objects in a bucket, optionally filtered by a key prefix
list-versions List object versions and delete markers (requires bucket versioning)
get Download an object by key
put Upload a local file as an object
delete Delete one or more objects by key
set-access Set the access level (public or private) on an existing object
info Show metadata for an object (content type, size, modified date)
restore Restore an archived object (e.g. GLACIER tier) for a number of days
restore-info Show the restore state of an archived object

tigris objects set is deprecated. Use set-access to change ACLs and tigris mv to rename objects.

Examples

tigris objects list my-bucket
tigris objects list-versions my-bucket
tigris objects get my-bucket report.pdf --output ./report.pdf
tigris objects put my-bucket report.pdf ./report.pdf
tigris objects delete my-bucket report.pdf
tigris objects set-access my-bucket report.pdf public
tigris objects info my-bucket report.pdf
tigris objects restore my-bucket archived.bin --days 3
tigris objects restore-info my-bucket archived.bin