Add a note about retrieving object meta data in the Google Storage driver.
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/6869ebc1 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/6869ebc1 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/6869ebc1 Branch: refs/heads/trunk Commit: 6869ebc1d5db2122461fa781852931423d573965 Parents: 252c2e6 Author: Tomaz Muraus <[email protected]> Authored: Sat Sep 13 19:52:05 2014 +0200 Committer: Tomaz Muraus <[email protected]> Committed: Sat Sep 13 19:53:45 2014 +0200 ---------------------------------------------------------------------- docs/storage/drivers/google_storage.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/6869ebc1/docs/storage/drivers/google_storage.rst ---------------------------------------------------------------------- diff --git a/docs/storage/drivers/google_storage.rst b/docs/storage/drivers/google_storage.rst index 2663062..d21e95c 100644 --- a/docs/storage/drivers/google_storage.rst +++ b/docs/storage/drivers/google_storage.rst @@ -13,6 +13,19 @@ For information on how to do that, please see the `official documentation`_. If you don't do that, you will get a message that the request is missing a project id header. +Known limitations +----------------- + +1. Meta data / tags aren't returned when using list_container_objects method +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Meta data / tags associated with an object are only returned when using +:meth:`libcloud.storage.base.StorageDriver.get_object` method and not when +listing all the objects in a container using +:meth:`libcloud.storage.base.StorageDriver.list_container_objects` method. + +This is a limitation of the Google Storage API v1.0. + API Docs --------
