This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit 24f419b97e67c656a8996cd3e9868ea4aacf6d5f Author: Tio Gobin <tio.go...@outscale.com> AuthorDate: Wed Sep 2 15:10:02 2020 +0200 Added the currently implemented method in the Outscale Driver --- docs/compute/drivers/outscale.rst | 48 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/docs/compute/drivers/outscale.rst b/docs/compute/drivers/outscale.rst index f09b74f..08fdf5b 100644 --- a/docs/compute/drivers/outscale.rst +++ b/docs/compute/drivers/outscale.rst @@ -58,4 +58,50 @@ API Documentation :inherited-members: .. _`Outscale`: https://docs.outscale.com/api -.. _`Outscale Inc.`: outscale_inc.html \ No newline at end of file +.. _`Outscale Inc.`: outscale_inc.html + +Outscale Implementation of Libcloud +------------------------------ + +The Outscale driver implements the following ``NodeDriver`` functions: + +Regions +------- +* ``list_locations`` - Returns a list of ``NodeLocation`` + +Nodes +----- +* ``create_node`` - Creates a ``Node`` +* ``reboot_node`` - Reboots a ``Node`` +* ``list_nodes`` - Returns a list of ``Node`` +* ``destroy_node`` - Destroys an existing ``Node`` + +Images +------ +* ``create_images`` - Returns a ``NodeImage`` +* ``list_images`` - Returns a list of ``NodeImage`` +* ``get_image`` - Returns a ``NodeImage`` +* ``delete_image`` - Return a ``boolean`` + +Key Pairs +_________ +* ``create_key_pair`` - Returns a ``KeyPair`` +* ``list_key_pairs`` - Returns a list of ``KeyPair`` +* ``get_key_pair`` - Returns a ``KeyPair`` +* ``delete_key_pair`` - Returns a ``boolean`` + +Snapshots +--------- +* ``create_volume_snapshot`` - Returns a ``VolumeSnapshot`` +* ``list_snapshots`` - Returns a list of ``VolumeSnapshot`` +* ``destroy_volume_snapshot`` - Returns a ``boolean`` + +Volumes +------- +* ``create_volume`` - Returns a ``StorageVolume`` +* ``list_volumes`` - Returns a list of ``StorageVolume`` +* ``destroy_volume`` - Returns a ``boolean`` +* ``attach_volume`` - Return a ``boolean`` +* ``detach_volume`` - Returns a ``boolean`` + +