1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

feat: support the new DNS API (#703)

Add support for the new [DNS
API](https://docs.hetzner.cloud/reference/cloud#dns).

The DNS API is currently in **beta**.

See the [DNS API beta
changelog](https://docs.hetzner.cloud/changelog#2025-10-07-dns-beta) for
more details.
This commit is contained in:
Jonas L. 2025-10-07 11:04:00 +02:00 committed by GitHub
parent b8bec66906
commit adddef5fc0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
34 changed files with 2482 additions and 0 deletions

View file

@ -32,3 +32,10 @@ def experimental_warning_function(product: str, maturity: str, url: str):
module.warn(message)
return fn
dns_experimental_warning = experimental_warning_function(
"DNS API",
"in beta",
"https://docs.hetzner.cloud/changelog#2025-10-07-dns-beta",
)