Part of libcloud.storage.drivers.cloudfiles View Source View In Hierarchy
Known subclasses: libcloud.storage.drivers.cloudfiles.CloudFilesSwiftStorageDriver, libcloud.storage.drivers.cloudfiles.CloudFilesUKStorageDriver, libcloud.storage.drivers.cloudfiles.CloudFilesUSStorageDriver
You should never create an instance of this class directly but use US/US class.
Method | __init__ | |
Method | list_containers | Return a list of containers. |
Method | list_container_objects | Return a list of objects for the given container. |
Method | get_container | Return a container instance. |
Method | get_object | Return an object instance. |
Method | get_container_cdn_url | Return a container CDN URL. |
Method | get_object_cdn_url | Return a container CDN URL. |
Method | enable_container_cdn | Undocumented |
Method | create_container | Create a new container. |
Method | delete_container | Delete a container. |
Method | download_object | Download an object to the specified destination path. |
Method | download_object_as_stream | Return a generator which yields object data. |
Method | upload_object | Upload an object. |
Method | upload_object_via_stream | Upload an object using an iterator. |
Method | delete_object | Delete an object. |
Method | ex_get_meta_data | Undocumented |
Method | ex_multipart_upload_object | Undocumented |
Method | ex_enable_static_website | Enable serving a static website. |
Method | ex_set_error_page | Set a custom error page which is displayed if file is not found and serving of a static website is enabled. |
Method | _upload_object_part | Undocumented |
Method | _upload_object_manifest | Undocumented |
Method | _get_more | Undocumented |
Method | _put_object | Undocumented |
Method | _clean_container_name | Clean container name. |
Method | _clean_object_name | Undocumented |
Method | _to_container_list | Undocumented |
Method | _to_object_list | Undocumented |
Method | _headers_to_container | Undocumented |
Method | _headers_to_object | Undocumented |
Method | _ex_connection_class_kwargs | Return extra connection keyword arguments which are passed to the Connection class constructor. |
Inherited from StorageDriver:
Method | enable_object_cdn | Undocumented |
Method | _get_object | Call passed callback and start transfer of the object' |
Method | _save_object | Save object to the provided path. |
Method | _upload_object | Helper function for setting common request headers and calling the passed in callback which uploads an object. |
Method | _upload_data | Upload data stored in a string. |
Method | _stream_data | Stream a data over an http connection. |
Method | _upload_file | Upload a file to the server. |
Method | _get_hash_function | Return instantiated hash function for the hash type supported by the provider. |
Inherited from OpenStackDriverMixin:
Method | openstack_connection_kwargs |
Parameters | key | API key or username to used (type: str) |
secret | Secret password to be used (type: str) | |
secure | Weither to use HTTPS or HTTP. Note: Some providers only support HTTPS, and it is on by default. (type: bool) | |
host | Override hostname used for connections. (type: str) | |
port | Override port used for connections. (type: int) | |
api_version | Optional API version. Only used by drivers which support multiple API versions. (type: str) | |
Unknown Field: requires | key, secret |
Returns | A list of Container instances. |
Parameters | container | Container instance (type: Container ) |
Returns | A list of Object instances. |
Parameters | container_name | Container name. (type: str ) |
Returns | Container instance. |
Parameters | container_name | Container name. (type: str ) |
object_name | Object name. (type: str ) | |
Returns | Object instance. |
Parameters | container | Container instance (type: Container ) |
Returns | A CDN URL for this container. |
Parameters | obj | Object instance (type: Object ) |
Returns | A CDN URL for this object. |
Parameters | container_name | Container name. (type: str ) |
Returns | Container instance on success. |
Parameters | container | Container instance (type: Container ) |
Returns | True on success, False otherwise. (type: bool ) |
Parameters | obj | Object instance. (type: Object ) |
destination_path | Full path to a file or a directory where the incoming file will be saved. (type: str ) | |
overwrite_existing | True to overwrite an existing file, defaults to False. (type: bool ) | |
delete_on_failure | True to delete a partially downloaded file if the download was not
successful (hash mismatch / file size). (type: bool ) | |
Returns | True if an object has been successfully downloaded, False otherwise. (type: bool ) |
Parameters | obj | Object instance (type: Object ) |
chunk_size | Optional chunk size (in bytes). (type: int ) |
Note: This will override file with a same name if it already exists.
If a provider supports it, chunked transfer encoding is used and you don't need to know in advance the amount of data to be uploaded.
Otherwise if a provider doesn't support it, iterator will be exhausted so a total size for data to be uploaded can be determined.
Note: Exhausting the iterator means that the whole data must be buffered in memory which might result in memory exhausting when uploading a very large object.
If a file is located on a disk you are advised to use upload_object function which uses fs.stat function to determine the file size and it doesn't need to buffer whole object in the memory.
Parameters | iterator | An object which implements the iterator interface. (type: object ) |
container | Destination container. (type: Container ) | |
object_name | Object name. (type: str ) | |
extra | (optional) Extra attributes (driver specific).
Note: This dictionary must contain a 'content_type' key which represents a content type of the stored object. (type:dict ) |
Parameters | obj | Object instance. (type: Object ) |
Returns | bool True on success. |
Parameters | index_file | Name of the object which becomes an index page for every sub-directory in
this container. (type: str ) |
Parameters | file_name | Name of the object which becomes the error page. (type: str ) |