Part of libcloud.compute.drivers.gogrid View Source View In Hierarchy
Method | list_images | List images on a provider @return: list of NodeImage
objects |
Method | list_nodes | List all nodes @return: list of Node objects |
Method | reboot_node | Reboot a node. @return: bool True if the reboot was
successful, otherwise False |
Method | destroy_node | Destroy a node. |
Method | list_sizes | List sizes on a provider @return: list of NodeSize
objects |
Method | list_locations | List data centers for a provider @return: list of NodeLocation
objects |
Method | ex_create_node_nowait | Don't block until GoGrid allocates id for a node but return right away with id == None. |
Method | create_node | Create a new GoGird node |
Method | ex_save_image | Create an image for node. |
Method | ex_edit_node | Change attributes of a node. |
Method | ex_edit_image | Edit metadata of a server image. |
Method | ex_list_ips | Return list of IP addresses assigned to the account. |
Method | _get_state | Undocumented |
Method | _get_ip | Undocumented |
Method | _get_id | Undocumented |
Method | _to_node | Undocumented |
Method | _to_image | Undocumented |
Method | _to_images | Undocumented |
Method | _to_location | Undocumented |
Method | _to_locations | Undocumented |
Method | _server_list | Undocumented |
Method | _password_list | Undocumented |
Method | _server_power | Undocumented |
Method | _server_delete | Undocumented |
Method | _get_first_ip | Undocumented |
Inherited from BaseGoGridDriver:
Method | _to_ip | Undocumented |
Method | _to_ips | Undocumented |
Inherited from NodeDriver:
Method | __init__ | |
Method | deploy_node | Create a new node, and start deployment. |
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. |
Returns | list of NodeImage
objects |
Returns | bool True if the reboot was successful, otherwise False |
Depending upon the provider, this may destroy all data associated with the node, including backups.
Returns | bool True if the destroy was successful, otherwise False |
Returns | list of NodeSize
objects |
Returns | list of NodeLocation
objects |
The existance of this method is explained by the fact that GoGrid assigns id to a node only few minutes after creation.
See NodeDriver.create_node
for more keyword args.
Parameters | ex_description | Description of a Node (type: string ) |
ex_ip | Public IP address to use for a Node. If not specified, first available IP
address will be picked (type: string ) |
Please refer to GoGrid documentation to get info how prepare a node for image creation:
http://wiki.gogrid.com/wiki/index.php/MyGSI
Parameters | node | node to use as a base for image (type: Node ) |
name | name for new image (type: string ) |
Parameters | image | image to be edited (type: NodeImage ) |
public | should be the image public? (type: bool ) | |
ex_description | description of the image (optional) (type: string ) | |
name | name of the image @type name string |
Parameters | public | set to True to list only public IPs or False to list only private IPs. Set
to None or not specify at all not to filter by type (type: bool ) |
assigned | set to True to list only addresses assigned to servers, False to list
unassigned addresses and set to None or don't set at all not no filter by
state (type: bool ) | |
location | filter IP addresses by location (type: NodeLocation ) | |
Returns | list of GoGridIpAddress es |