
The openstack doc standard location is 'user', so go with that. Incorporate pages from the shade and occ docs into the appropriate places in the user index file. This still leaves user/logging and user/guide/logging which need to be rationalized. That will come in the next commit, as it also needs to actually rationalize the logging helper functions. Remove the Makefile, as it's not used by things. Change-Id: I26f36370ef9651f4bcaa7dee3b903309463d9592
51 lines
1.9 KiB
ReStructuredText
51 lines
1.9 KiB
ReStructuredText
Object Store API
|
|
================
|
|
|
|
For details on how to use this API, see :doc:`/user/guides/object_store`
|
|
|
|
.. automodule:: openstack.object_store.v1._proxy
|
|
|
|
The Object Store Class
|
|
----------------------
|
|
|
|
The Object Store high-level interface is exposed as the ``object_store``
|
|
object on :class:`~openstack.connection.Connection` objects.
|
|
|
|
Account Operations
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
.. autoclass:: openstack.object_store.v1._proxy.Proxy
|
|
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.get_account_metadata
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.set_account_metadata
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.delete_account_metadata
|
|
|
|
Container Operations
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
.. autoclass:: openstack.object_store.v1._proxy.Proxy
|
|
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.create_container
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.delete_container
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.containers
|
|
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.get_container_metadata
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.set_container_metadata
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.delete_container_metadata
|
|
|
|
Object Operations
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
.. autoclass:: openstack.object_store.v1._proxy.Proxy
|
|
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.upload_object
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.download_object
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.copy_object
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.delete_object
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.get_object
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.objects
|
|
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.get_object_metadata
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.set_object_metadata
|
|
.. automethod:: openstack.object_store.v1._proxy.Proxy.delete_object_metadata
|