From 9599ffe65d9dcd4b3aa780d346eccd1e760890bf Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Tue, 13 Jun 2017 15:55:33 -0400 Subject: reorganize existing documentation according to the new standard layout Move existing content around based on the doc-migration specification. Replace :doc: markup with :ref: to have sphinx keep track of where the files move and generate valid hyperlinks. Add a few toctrees and index pages for the new directories. Depends-On: Ia750cb049c0f53a234ea70ce1f2bbbb7a2aa9454 Change-Id: I253ee8f89d3ec40e39310c18bb87ed1d3d5de330 Signed-off-by: Doug Hellmann --- doc/source/cli/command-objects/object.rst | 195 ++++++++++++++++++++++++++++++ 1 file changed, 195 insertions(+) create mode 100644 doc/source/cli/command-objects/object.rst (limited to 'doc/source/cli/command-objects/object.rst') diff --git a/doc/source/cli/command-objects/object.rst b/doc/source/cli/command-objects/object.rst new file mode 100644 index 00000000..6323c4ed --- /dev/null +++ b/doc/source/cli/command-objects/object.rst @@ -0,0 +1,195 @@ +====== +object +====== + +Object Storage v1 + +object create +------------- + +Upload object to container + +.. program:: object create +.. code:: bash + + openstack object create + [--name ] + + [ ...] + +.. option:: --name + + Upload a file and rename it. Can only be used when uploading a single object + +.. describe:: + + Container for new object + +.. describe:: + + Local filename(s) to upload + +object delete +------------- + +Delete object from container + +.. program:: object delete +.. code:: bash + + openstack object delete + + [ ...] + +.. describe:: + + Delete object(s) from + +.. describe:: + + Object(s) to delete + +object list +----------- + +List objects + +.. program object list +.. code:: bash + + openstack 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 + +.. option:: --all + + List all objects in (default is 10000) + +.. describe:: + + Container to list + +object save +----------- + +Save object locally + +.. program:: object save +.. code:: bash + + openstack object save + [--file ] + + + +.. option:: --file + + Destination filename (defaults to object name) + +.. describe:: + + Download from + +.. describe:: + + Object to save + +object set +---------- + +Set object properties + +.. program:: object set +.. code:: bash + + openstack object set + [--property [...] ] + + + +.. option:: --property + + Set a property on this object (repeat option to set multiple properties) + +.. describe:: + + Modify from + +.. describe:: + + Object to modify + +object show +----------- + +Display object details + +.. program:: object show +.. code:: bash + + openstack object show + + + +.. describe:: + + Display from + +.. describe:: + + Object to display + +object unset +------------ + +Unset object properties + +.. program:: object unset +.. code:: bash + + openstack object unset + [--property ] + + + +.. option:: --property + + Property to remove from object (repeat option to remove multiple properties) + +.. describe:: + + Modify from + +.. describe:: + + Object to modify -- cgit v1.2.1