summaryrefslogtreecommitdiff
path: root/doc/source/command-objects/object.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source/command-objects/object.rst')
-rw-r--r--doc/source/command-objects/object.rst140
1 files changed, 140 insertions, 0 deletions
diff --git a/doc/source/command-objects/object.rst b/doc/source/command-objects/object.rst
new file mode 100644
index 00000000..5cbc95d7
--- /dev/null
+++ b/doc/source/command-objects/object.rst
@@ -0,0 +1,140 @@
+======
+object
+======
+
+Object Store v1
+
+object create
+-------------
+
+Upload object to container
+
+.. program:: object create
+.. code:: bash
+
+ os object create
+ <container>
+ <filename> [<filename> ...]
+
+.. option:: <container>
+
+ Container for new object
+
+.. option:: <filename>
+
+ Local filename(s) to upload
+
+object delete
+-------------
+
+Delete object from container
+
+.. program:: object delete
+.. code:: bash
+
+ os object delete
+ <container>
+ <object> [<object> ...]
+
+.. option:: <container>
+
+ Delete object(s) from <container>
+
+.. option:: <object>
+
+ Object(s) to delete
+
+list object
+-----------
+
+List objects
+
+.. program object list
+.. code:: bash
+
+ os object list
+ [--prefix <prefix>]
+ [--delimiter <delimiter>]
+ [--marker <marker>]
+ [--end-marker <end-marker>]
+ [--limit <limit>]
+ [--long]
+ [--all]
+ <container>]
+
+.. option:: --prefix <prefix>
+
+ Filter list using <prefix>
+
+.. option:: --delimiter <delimiter>
+
+ Roll up items with <delimiter>
+
+.. option:: --marker <marker>
+
+ Anchor for paging
+
+.. option:: --end-marker <end-marker>
+
+ End anchor for paging
+
+.. option:: --limit <limit>
+
+ Limit number of objects returned
+
+.. option:: --long
+
+ List additional fields in output
+
+.. options:: --all
+
+ List all objects in <container> (default is 10000)
+
+.. option:: <container>
+
+ Container to list
+
+object save
+-----------
+
+Save object locally
+
+.. program:: object save
+.. code:: bash
+
+ os object save
+ [--file <filename>]
+ [<container>]
+ [<object>]
+
+.. option:: --file <filename>
+
+ Destination filename (defaults to object name)
+
+.. option:: <container>
+
+ Download <object> from <container>
+
+.. option:: <object>
+
+ Object to save
+
+object show
+-----------
+
+Show object details
+
+.. program:: object show
+.. code:: bash
+
+ os object show
+ <container>
+ <object>
+
+.. option:: <container>
+
+ Display <object> from <container>
+
+.. option:: <object>
+
+ Object to display