Part of libcloud.compute.drivers.softlayer View Source View In Hierarchy
SoftLayer node driver Extra node attributes: - password: root password - hourlyRecurringFee: hourly price (if applicable) - recurringFee : flat rate (if applicable) - recurringMonths : The number of months in which the recurringFee will be incurred.
Method | __init__ | @keyword key: API key or username to used @type key: str |
Method | destroy_node | Destroy a node. |
Method | create_node | Create a new SoftLayer node |
Method | list_images | List images on a provider @return: C{list} of L{NodeImage} objects |
Method | list_sizes | List sizes on a provider @return: C{list} of L{NodeSize} objects |
Method | list_locations | List data centers for a provider @return: C{list} of L{NodeLocation} objects |
Method | list_nodes | List all nodes @return: C{list} of L{Node} objects |
Method | reboot_node | Reboot a node. @return: C{bool} True if the reboot was successful, otherwise False |
Method | _to_node | Undocumented |
Method | _to_nodes | Undocumented |
Method | _get_order_information | Undocumented |
Method | _to_image | Undocumented |
Method | _to_size | Undocumented |
Method | _to_loc | Undocumented |
Inherited from NodeDriver:
Method | deploy_node | Create a new node, and start deployment. |
Method | _get_size_price | Undocumented |
@keyword key: API key or username to used @type key: str @keyword secret: Secret password to be used @type secret: str @keyword secure: Weither to use HTTPS or HTTP. Note: Some providers only support HTTPS, and it is on by default. @type secure: bool @keyword host: Override hostname used for connections. @type host: str @keyword port: Override port used for connections. @type port: int
Destroy a node. Depending upon the provider, this may destroy all data associated with the node, including backups. @return: C{bool} True if the destroy was successful, otherwise False
Create a new SoftLayer node See L{NodeDriver.create_node} for more keyword args. @keyword ex_domain: e.g. libcloud.org @type ex_domain: C{string}
List images on a provider @return: C{list} of L{NodeImage} objects
List sizes on a provider @return: C{list} of L{NodeSize} objects
List data centers for a provider @return: C{list} of L{NodeLocation} objects
Reboot a node. @return: C{bool} True if the reboot was successful, otherwise False