Browse Source

added HetznerClient docstring

pull/691/head
Ricard Bejarano 5 years ago
parent
commit
c8e91c1e11
No known key found for this signature in database GPG Key ID: 98E8072CB960073F
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      octodns/provider/hetzner.py

+ 9
- 0
octodns/provider/hetzner.py View File

@ -16,6 +16,15 @@ class HetznerClientNotFound(HetznerClientException):
class HetznerClient(object):
'''
Hetzner DNS Public API v1 client class.
Zone and Record resources are (almost) fully supported, even if unnecessary
to future-proof this client. Bulk Record create/update is not supported.
No support for Primary Servers.
'''
BASE_URL = 'https://dns.hetzner.com/api/v1'
def __init__(self, token):


Loading…
Cancel
Save