Part of libcloud.dns.drivers.rackspace View Source View In Hierarchy
Known subclasses: libcloud.dns.drivers.rackspace.RackspaceUKDNSDriver, libcloud.dns.drivers.rackspace.RackspaceUSDNSDriver
Method | __init__ | @requires: key, secret |
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 en 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_connection_class_kwargs | Return extra connection keyword arguments which are passed to the Connection class constructor. |
Method | _to_zones | Undocumented |
Method | _to_zone | Undocumented |
Method | _to_records | Undocumented |
Method | _to_record | Undocumented |
Method | _to_full_record_name | Build a FQDN from a domain and record name. |
Method | _to_partial_record_name | Strip domain portion from the record name. |
Inherited from DNSDriver:
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 OpenStackDriverMixin:
Method | openstack_connection_kwargs | @rtype: C{dict} |
@requires: key, secret
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. @type domain: C{string} @param domain: Zone domain name. @type type: C{string} @param type: Zone type (master / slave). @param ttl: C{int} @param ttl: (optional) TTL for new records. @type extra: C{dict} @param extra: (optional) Extra attributes (driver specific).
Update en existing zone. @type zone: C{Zone} @param zone: Zone to update. @type domain: C{string} @param domain: Zone domain name. @type type: C{string} @param type: Zone type (master / slave). @param ttl: C{int} @param ttl: (optional) TTL for new records. @type extra: C{dict} @param extra: (optional) Extra attributes (driver specific).
Create a new record. @param name: C{string} @type name: Hostname or FQDN. @type zone: C{Zone} @param zone: Zone where the requested record is created. @type type: C{RecordType} @param type: DNS record type (A, AAAA, ...). @type data: C{str} @param data: Data for the record (depends on the record type). @type extra: C{dict} @param extra: (optional) Extra attributes (driver specific).
Update an existing record. @param record: C{Record} @type record: Record to update. @param name: C{string} @type name: Hostname or FQDN. @type type: C{RecordType} @param type: DNS record type (A, AAAA, ...). @type data: C{str} @param data: Data for the record (depends on the record type). @type extra: C{dict} @param extra: (optional) Extra attributes (driver specific).
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.
Build a FQDN from a domain and record name. @param domain: Domain name. @type domain: C{str} @param name: Record name. @type name: C{str}
Strip domain portion from the record name. @param domain: Domain name. @type domain: C{str} @param name: Full record name (fqdn). @type name: C{str}