Part of libcloud.interface View Source View In Hierarchy
Known implementations: libcloud.base.Node
Attribute | uuid | Unique identifier |
Attribute | id | Unique ID provided by the provider (i-abcd1234, etc) |
Attribute | name | Hostname or similar identifier |
Attribute | state | A standard Node state as provided by NodeState |
Attribute | public_ip | List of Public IPs of the Node |
Attribute | private_ip | List of Private IPs of the Node |
Attribute | driver | The NodeDriver that belongs to this Node |
Attribute | extra | Dict containing provider specific data |
Method | get_uuid | Provides a system wide unique ID for the node |
Method | destroy | Call `self.driver.destroy_node(self)`. A convenience method. |
Method | reboot | Call `self.driver.reboot_node(self)`. A convenience method. |