Part of libcloud.dns.drivers.linode View Source View In Hierarchy
Method | list_zones | Return a list of zones. |
Method | list_records | Return a list of records for the provided zone. |
Method | get_zone | Return a Zone instance. |
Method | get_record | Return a Record instance. |
Method | create_zone | Create a new zone. |
Method | update_zone | Update an existing zone. |
Method | create_record | Create a new record. |
Method | update_record | Update an existing record. |
Method | delete_zone | Delete a zone. |
Method | delete_record | Delete a record. |
Method | _to_zones | Convert a list of items to the Zone objects. |
Method | _to_zone | Build an Zone object from the item dictionary. |
Method | _to_records | Convert a list of items to the Record objects. |
Method | _to_record | Build a Record object from the item dictionary. |
Inherited from DNSDriver:
Method | __init__ | @requires: key, secret |
Method | list_record_types | Return a list of RecordType objects supported by the provider. |
Method | _string_to_record_type | Return a string representation of a DNS record type to a libcloud RecordType ENUM. |
Inherited from BaseDriver (via DNSDriver):
Method | _ex_connection_class_kwargs | Return extra connection keyword arguments which are passed to the Connection class constructor. |
Return a list of zones. @return: A list of C{Zone} instances.
Return a list of records for the provided zone. @type zone: C{Zone} @param zone: Zone to list records for. @return: A list of C{Record} instances.
Return a Zone instance. @return: C{Zone} instance.
Return a Record instance. @return: C{Record} instance.
Create a new zone. API docs: http://www.linode.com/api/dns/domain.create
Update an existing zone. API docs: http://www.linode.com/api/dns/domain.update
Create a new record. API docs: http://www.linode.com/api/dns/domain.resource.create
Update an existing record. API docs: http://www.linode.com/api/dns/domain.resource.update
Delete a zone. Note: This will delete all the records belonging to this zone. @param zone: C{Zone} @type zone: Zone to delete.
Delete a record. @param record: C{Record} @type record: Record to delete.