Part of libcloud.dns.drivers.zerigo View Source View In Hierarchy
Method | list_record_types | Return a list of RecordType objects supported by the provider. |
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 | ex_get_zone_by_domain | Retrieve a zone object by the domain name. |
Method | ex_force_slave_axfr | Force a zone transfer. |
Method | _to_zone_elem | Undocumented |
Method | _to_record_elem | Undocumented |
Method | _to_zones | Undocumented |
Method | _to_zone | Undocumented |
Method | _to_records | Undocumented |
Method | _to_record | Undocumented |
Method | _get_more | Undocumented |
Inherited from DNSDriver:
Method | __init__ | |
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. |
Returns | A list of RecordType instances. |
Returns | A list of Zone instances. |
Parameters | zone | Zone to list records for. (type: Zone ) |
Returns | A list of Record instances. |
Returns | Zone instance. |
Returns | Record instance. |
Provider API docs: https://www.zerigo.com/docs/apis/dns/1.1/zones/create
Provider API docs: https://www.zerigo.com/docs/apis/dns/1.1/zones/update
Provider API docs: https://www.zerigo.com/docs/apis/dns/1.1/hosts/create
Parameters | record | Record (type: Record to update.) |
name | string (type: Hostname or FQDN.) | |
type | DNS record type (A, AAAA, ...). (type: RecordType ) | |
data | Data for the record (depends on the record type). (type: str ) | |
extra | (optional) Extra attributes (driver specific). (type: dict ) |
Note: This will delete all the records belonging to this zone.
Parameters | zone | Zone (type: Zone to delete.) |
Parameters | record | Record (type: Record to delete.) |