Part of libcloud.compute.drivers.vcl View Source View In Hierarchy
VCL node driver @keyword host: The VCL host to which you make requests(required) @type host: C{str}
Method | __init__ | @requires: key, secret, host |
Method | create_node | Create a new VCL reservation size and name ignored, image is the id from list_image |
Method | destroy_node | End VCL reservation for the node passed in. Throws error if request fails. |
Method | list_images | List images available to the user provided credentials |
Method | list_sizes | VCL does not choosing sizes for node creation. Size of images are statically set by administrators. |
Method | list_nodes | List nodes |
Method | ex_update_node_access | Update the remote ip accessing the node. |
Method | ex_extend_request_time | Time in minutes to extend the requested node's reservation time |
Method | ex_get_request_end_time | Get the ending time of the node reservation. |
Method | _vcl_request | Undocumented |
Method | _to_image | Undocumented |
Method | _to_connect_data | Undocumented |
Method | _to_status | Undocumented |
Method | _to_nodes | Undocumented |
Inherited from NodeDriver:
Method | reboot_node | Reboot a node. |
Method | list_locations | List data centers for a provider |
Method | deploy_node | Create a new node, and start deployment. |
Method | create_volume | Create a new volume. |
Method | destroy_volume | Destroys a storage volume. |
Method | attach_volume | Attaches volume to node. |
Method | detach_volume | Detaches a volume from a node. |
Method | _wait_until_running | Block until node is fully booted and has an IP address assigned. |
Method | _ssh_client_connect | Try to connect to the remote SSH server. If a connection times out or is refused it is retried up to timeout number of seconds. |
Method | _run_deployment_script | Run the deployment script on the provided node. At this point it is assumed that SSH connection has already been established. |
Method | _get_size_price | Undocumented |
Inherited from BaseDriver (via NodeDriver):
Method | _ex_connection_class_kwargs | Return extra connection keyword arguments which are passed to the Connection class constructor. |
@requires: key, secret, host
Create a new VCL reservation size and name ignored, image is the id from list_image @inherits: L{NodeDriver.create_node} @keyword image: image is the id from list_image @type image: C{str} @keyword start: start time as unix timestamp @type start: C{str} @keyword length: length of time in minutes @type length: C{str}
End VCL reservation for the node passed in. Throws error if request fails. @param node: The node to be destroyed @type node: L{Node} @rtype: C{bool}
List images available to the user provided credentials @inherits: L{NodeDriver.list_images}
VCL does not choosing sizes for node creation. Size of images are statically set by administrators. @inherits: L{NodeDriver.list_sizes}
List nodes @param ipaddr: IP address which should be used @type ipaddr: C{str} @rtype: C{list} of L{Node}
Update the remote ip accessing the node. @param node: the reservation node to update @type node: L{Node} @param ipaddr: the ipaddr used to access the node @type ipaddr: C{str} @return: node with updated information @rtype: L{Node}
Time in minutes to extend the requested node's reservation time @param node: the reservation node to update @type node: L{Node} @param minutes: the number of mintes to update @type minutes: C{str} @return: true on success, throws error on failure @rtype: C{bool}
Get the ending time of the node reservation. @param node: the reservation node to update @type node: L{Node} @return: unix timestamp @rtype: C{int}