From d5caa6a26baf2fccbf276080fef60c81ed4beae3 Mon Sep 17 00:00:00 2001 From: Dean Troyer Date: Tue, 23 Dec 2014 17:04:12 -0600 Subject: Command object docs: container, object Change-Id: Ie3df543a28cbee0cc809310a05f431c97b2c7e70 --- doc/source/command-objects/object.rst | 140 ++++++++++++++++++++++++++++++++++ 1 file changed, 140 insertions(+) create mode 100644 doc/source/command-objects/object.rst (limited to 'doc/source/command-objects/object.rst') 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 + + [ ...] + +.. option:: + + Container for new object + +.. option:: + + Local filename(s) to upload + +object delete +------------- + +Delete object from container + +.. program:: object delete +.. code:: bash + + os object delete + + [ ...] + +.. option:: + + Delete object(s) from + +.. option:: + + Object(s) to delete + +list object +----------- + +List objects + +.. program object list +.. code:: bash + + os object list + [--prefix ] + [--delimiter ] + [--marker ] + [--end-marker ] + [--limit ] + [--long] + [--all] + ] + +.. option:: --prefix + + Filter list using + +.. option:: --delimiter + + Roll up items with + +.. option:: --marker + + Anchor for paging + +.. option:: --end-marker + + End anchor for paging + +.. option:: --limit + + Limit number of objects returned + +.. option:: --long + + List additional fields in output + +.. options:: --all + + List all objects in (default is 10000) + +.. option:: + + Container to list + +object save +----------- + +Save object locally + +.. program:: object save +.. code:: bash + + os object save + [--file ] + [] + [] + +.. option:: --file + + Destination filename (defaults to object name) + +.. option:: + + Download from + +.. option:: + + Object to save + +object show +----------- + +Show object details + +.. program:: object show +.. code:: bash + + os object show + + + +.. option:: + + Display from + +.. option:: + + Object to display -- cgit v1.2.1