@opusdns/api 1.97.0 → 1.98.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/openapi.yaml +24 -19
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -14990,7 +14990,7 @@ info:
|
|
|
14990
14990
|
\n\n"
|
|
14991
14991
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
14992
14992
|
title: OpusDNS API
|
|
14993
|
-
version: 2026-08-04-
|
|
14993
|
+
version: 2026-08-04-135216
|
|
14994
14994
|
x-logo:
|
|
14995
14995
|
altText: OpusDNS API Reference
|
|
14996
14996
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -32147,24 +32147,29 @@ tags:
|
|
|
32147
32147
|
\ DNSKEY, DS, and the NS rrset at the zone apex are system-managed by OpusDNS:\
|
|
32148
32148
|
\ a payload rrset or patch op targeting one \u2014 upsert **or** remove \u2014\
|
|
32149
32149
|
\ is rejected with a `409` protected-rrset error (these rrsets are reported with\
|
|
32150
|
-
\ `\"protected\": true` in zone responses).
|
|
32151
|
-
\
|
|
32152
|
-
\
|
|
32153
|
-
\
|
|
32154
|
-
\
|
|
32155
|
-
\
|
|
32156
|
-
\
|
|
32157
|
-
\
|
|
32158
|
-
\n### `
|
|
32159
|
-
\
|
|
32160
|
-
|
|
32161
|
-
\
|
|
32162
|
-
\
|
|
32163
|
-
\
|
|
32164
|
-
\
|
|
32165
|
-
\
|
|
32166
|
-
\
|
|
32167
|
-
\
|
|
32150
|
+
\ `\"protected\": true` in zone responses). To change the nameservers a domain\
|
|
32151
|
+
\ delegates to, update the nameservers on the domain instead.\n\nNS rrsets **below**\
|
|
32152
|
+
\ the apex delegate a subdomain to other nameservers and are managed like any\
|
|
32153
|
+
\ other record type, on all three endpoints and at zone creation. Two caveats:\
|
|
32154
|
+
\ records (including domain/email forwards and parking) at or below a delegated\
|
|
32155
|
+
\ name stop resolving publicly, because the delegated nameservers are authoritative\
|
|
32156
|
+
\ for that subtree; and delegations from DNSSEC-signed zones are *insecure* delegations\
|
|
32157
|
+
\ \u2014 child DS records are not supported, so the delegated subtree is not covered\
|
|
32158
|
+
\ by the parent's chain of trust.\n\n### `PUT /v1/dns/{zone_name}/rrsets` \u2014\
|
|
32159
|
+
\ Replace all rrsets\n\nSupply the complete set of rrsets the zone should contain.\
|
|
32160
|
+
\ Any existing user-managed rrset **not** in the request is removed. System-managed\
|
|
32161
|
+
\ rrsets cannot be set or removed via this endpoint; omit them from the payload.\n\
|
|
32162
|
+
\nUse this when you have authoritative, end-state data for a zone and want to\
|
|
32163
|
+
\ reset it to that state.\n\n### `PATCH /v1/dns/{zone_name}/rrsets` \u2014 Upsert\
|
|
32164
|
+
\ or remove whole rrsets\n\nSubmit an `ops[]` array where each op targets an rrset\
|
|
32165
|
+
\ by `(name, type)`:\n\n- `op: \"upsert\"` \u2014 create or **replace** the rrset\
|
|
32166
|
+
\ at `(name, type)` with the records you provide. Any records that previously\
|
|
32167
|
+
\ existed at that `(name, type)` are discarded.\n- `op: \"remove\"` \u2014 delete\
|
|
32168
|
+
\ the entire rrset at `(name, type)` (pass `records: []`).\n\n```json\n{\n \"\
|
|
32169
|
+
ops\": [\n {\n \"op\": \"upsert\",\n \"rrset\": {\n \"name\"\
|
|
32170
|
+
: \"www\",\n \"type\": \"A\",\n \"ttl\": 300,\n \"records\"\
|
|
32171
|
+
: [\n {\"rdata\": \"203.0.113.10\"},\n {\"rdata\": \"203.0.113.11\"\
|
|
32172
|
+
}\n ]\n }\n },\n {\n \"op\": \"remove\",\n \"rrset\"\
|
|
32168
32173
|
: {\"name\": \"old\", \"type\": \"CNAME\", \"ttl\": 300, \"records\": []}\n \
|
|
32169
32174
|
\ }\n ]\n}\n```\n\nUse this when you want to define the complete set of records\
|
|
32170
32175
|
\ for a given `(name, type)` \u2014 e.g., \"`www` should have exactly these two\
|