@n8n-dev/n8n-nodes-hcloud 1.0.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/README.md +26 -0
- package/dist/credentials/HcloudApi.credentials.d.ts +10 -0
- package/dist/credentials/HcloudApi.credentials.js +47 -0
- package/dist/credentials/HcloudApi.credentials.js.map +1 -0
- package/dist/icons/hcloud.dark.svg +4 -0
- package/dist/icons/hcloud.svg +4 -0
- package/dist/nodes/Hcloud/Hcloud.node.d.ts +4 -0
- package/dist/nodes/Hcloud/Hcloud.node.js +194 -0
- package/dist/nodes/Hcloud/Hcloud.node.js.map +1 -0
- package/dist/nodes/Hcloud/Hcloud.node.json +20 -0
- package/dist/nodes/Hcloud/hcloud.dark.svg +4 -0
- package/dist/nodes/Hcloud/hcloud.svg +4 -0
- package/dist/nodes/Hcloud/resources/actions/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/actions/index.js +128 -0
- package/dist/nodes/Hcloud/resources/actions/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/certificates/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/certificates/index.js +1062 -0
- package/dist/nodes/Hcloud/resources/certificates/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/datacenters/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/datacenters/index.js +202 -0
- package/dist/nodes/Hcloud/resources/datacenters/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/firewalls/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/firewalls/index.js +1153 -0
- package/dist/nodes/Hcloud/resources/firewalls/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/floating-ips/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/floating-ips/index.js +1313 -0
- package/dist/nodes/Hcloud/resources/floating-ips/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/images/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/images/index.js +1036 -0
- package/dist/nodes/Hcloud/resources/images/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/index.d.ts +21 -0
- package/dist/nodes/Hcloud/resources/index.js +46 -0
- package/dist/nodes/Hcloud/resources/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/isos/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/isos/index.js +237 -0
- package/dist/nodes/Hcloud/resources/isos/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/load-balancer-types/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/load-balancer-types/index.js +177 -0
- package/dist/nodes/Hcloud/resources/load-balancer-types/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/load-balancers/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/load-balancers/index.js +2724 -0
- package/dist/nodes/Hcloud/resources/load-balancers/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/locations/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/locations/index.js +202 -0
- package/dist/nodes/Hcloud/resources/locations/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/networks/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/networks/index.js +1595 -0
- package/dist/nodes/Hcloud/resources/networks/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/placement-groups/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/placement-groups/index.js +514 -0
- package/dist/nodes/Hcloud/resources/placement-groups/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/pricing/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/pricing/index.js +53 -0
- package/dist/nodes/Hcloud/resources/pricing/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/primary-ips/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/primary-ips/index.js +1428 -0
- package/dist/nodes/Hcloud/resources/primary-ips/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/server-types/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/server-types/index.js +177 -0
- package/dist/nodes/Hcloud/resources/server-types/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/servers/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/servers/index.js +3086 -0
- package/dist/nodes/Hcloud/resources/servers/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/ssh-keys/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/ssh-keys/index.js +508 -0
- package/dist/nodes/Hcloud/resources/ssh-keys/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/storage-box-types/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/storage-box-types/index.js +177 -0
- package/dist/nodes/Hcloud/resources/storage-box-types/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/storage-boxes/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/storage-boxes/index.js +3281 -0
- package/dist/nodes/Hcloud/resources/storage-boxes/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/volumes/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/volumes/index.js +1327 -0
- package/dist/nodes/Hcloud/resources/volumes/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/zones/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/zones/index.js +3379 -0
- package/dist/nodes/Hcloud/resources/zones/index.js.map +1 -0
- package/dist/package.json +53 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +53 -0
|
@@ -0,0 +1,3379 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.zonesDescription = void 0;
|
|
4
|
+
exports.zonesDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Zones"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "List Zones",
|
|
20
|
+
"value": "List Zones",
|
|
21
|
+
"action": "List Zones",
|
|
22
|
+
"description": "Returns all Zones.\n\nUse the provided URI parameters to modify the result.\n",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/zones"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Create Zone",
|
|
32
|
+
"value": "Create Zone",
|
|
33
|
+
"action": "Create a Zone",
|
|
34
|
+
"description": "Creates a Zone.\n\nA default `SOA` and three `NS` resource records with the assigned Hetzner\nnameservers are created automatically.\n",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "POST",
|
|
38
|
+
"url": "=/zones"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "List Zone Actions",
|
|
44
|
+
"value": "List Zone Actions",
|
|
45
|
+
"action": "List Actions",
|
|
46
|
+
"description": "Returns all Zone Actions.\n\nUse the provided URI parameters to modify the result.\n",
|
|
47
|
+
"routing": {
|
|
48
|
+
"request": {
|
|
49
|
+
"method": "GET",
|
|
50
|
+
"url": "=/zones/actions"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Get Zone Action",
|
|
56
|
+
"value": "Get Zone Action",
|
|
57
|
+
"action": "Get an Action",
|
|
58
|
+
"description": "Returns a specific Action.\n",
|
|
59
|
+
"routing": {
|
|
60
|
+
"request": {
|
|
61
|
+
"method": "GET",
|
|
62
|
+
"url": "=/zones/actions/{{$parameter[\"id\"]}}"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "Delete Zone",
|
|
68
|
+
"value": "Delete Zone",
|
|
69
|
+
"action": "Delete a Zone",
|
|
70
|
+
"description": "Deletes a Zone.\n",
|
|
71
|
+
"routing": {
|
|
72
|
+
"request": {
|
|
73
|
+
"method": "DELETE",
|
|
74
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "Get Zone",
|
|
80
|
+
"value": "Get Zone",
|
|
81
|
+
"action": "Get a Zone",
|
|
82
|
+
"description": "Returns a single Zone.\n",
|
|
83
|
+
"routing": {
|
|
84
|
+
"request": {
|
|
85
|
+
"method": "GET",
|
|
86
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "Replace Zone",
|
|
92
|
+
"value": "Replace Zone",
|
|
93
|
+
"action": "Update a Zone",
|
|
94
|
+
"description": "Updates a Zone.\n\nTo modify resource record sets (RRSets), use the RRSet Actions\nendpoints.\n",
|
|
95
|
+
"routing": {
|
|
96
|
+
"request": {
|
|
97
|
+
"method": "PUT",
|
|
98
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "List Actions For Zone",
|
|
104
|
+
"value": "List Actions For Zone",
|
|
105
|
+
"action": "List Actions for a Zone",
|
|
106
|
+
"description": "Returns all Actions for a Zone.\n\nUse the provided URI parameters to modify the result.\n",
|
|
107
|
+
"routing": {
|
|
108
|
+
"request": {
|
|
109
|
+
"method": "GET",
|
|
110
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/actions"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "Change Zones Primary Nameservers",
|
|
116
|
+
"value": "Change Zones Primary Nameservers",
|
|
117
|
+
"action": "Change a Zone's Primary Nameservers",
|
|
118
|
+
"description": "Overwrites the primary nameservers of a Zone.\n\nOnly applicable for Zones in secondary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
119
|
+
"routing": {
|
|
120
|
+
"request": {
|
|
121
|
+
"method": "POST",
|
|
122
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/actions/change_primary_nameservers"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "Change Zones Protection",
|
|
128
|
+
"value": "Change Zones Protection",
|
|
129
|
+
"action": "Change a Zone's Protection",
|
|
130
|
+
"description": "Changes the protection configuration of a Zone.\n",
|
|
131
|
+
"routing": {
|
|
132
|
+
"request": {
|
|
133
|
+
"method": "POST",
|
|
134
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/actions/change_protection"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "Change Zones Default Ttl",
|
|
140
|
+
"value": "Change Zones Default Ttl",
|
|
141
|
+
"action": "Change a Zone's Default TTL",
|
|
142
|
+
"description": "Changes the default Time To Live (TTL) of a Zone.\n\nThis TTL is used for RRSets that do not explicitly define a TTL.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
143
|
+
"routing": {
|
|
144
|
+
"request": {
|
|
145
|
+
"method": "POST",
|
|
146
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/actions/change_ttl"
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "Import Zone File",
|
|
152
|
+
"value": "Import Zone File",
|
|
153
|
+
"action": "Import a Zone file",
|
|
154
|
+
"description": "Imports a zone file, replacing all resource record sets (RRSets).\n\nThe import will fail if existing RRSet are `change` protected.\n\nSee Zone file import for more details.\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
155
|
+
"routing": {
|
|
156
|
+
"request": {
|
|
157
|
+
"method": "POST",
|
|
158
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/actions/import_zonefile"
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "Get Action For Zone",
|
|
164
|
+
"value": "Get Action For Zone",
|
|
165
|
+
"action": "Get an Action for a Zone",
|
|
166
|
+
"description": "Returns a specific Action for a Zone.\n",
|
|
167
|
+
"routing": {
|
|
168
|
+
"request": {
|
|
169
|
+
"method": "GET",
|
|
170
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/actions/{{$parameter[\"action_id\"]}}"
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "List Rrsets",
|
|
176
|
+
"value": "List Rrsets",
|
|
177
|
+
"action": "List RRSets",
|
|
178
|
+
"description": "Returns all RRSets in the Zone.\n\nUse the provided URI parameters to modify the result.\n\nThe maximum value for `per_page` on this endpoint is `100` instead of `50`.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
179
|
+
"routing": {
|
|
180
|
+
"request": {
|
|
181
|
+
"method": "GET",
|
|
182
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/rrsets"
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "Create Rrset",
|
|
188
|
+
"value": "Create Rrset",
|
|
189
|
+
"action": "Create an RRSet",
|
|
190
|
+
"description": "Create an RRSet in the Zone.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
191
|
+
"routing": {
|
|
192
|
+
"request": {
|
|
193
|
+
"method": "POST",
|
|
194
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/rrsets"
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "Delete Rrset",
|
|
200
|
+
"value": "Delete Rrset",
|
|
201
|
+
"action": "Delete an RRSet",
|
|
202
|
+
"description": "Deletes an RRSet from the Zone.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
203
|
+
"routing": {
|
|
204
|
+
"request": {
|
|
205
|
+
"method": "DELETE",
|
|
206
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/rrsets/{{$parameter[\"rr_name\"]}}/{{$parameter[\"rr_type\"]}}"
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"name": "Get Rrset",
|
|
212
|
+
"value": "Get Rrset",
|
|
213
|
+
"action": "Get an RRSet",
|
|
214
|
+
"description": "Returns a single RRSet from the Zone.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
215
|
+
"routing": {
|
|
216
|
+
"request": {
|
|
217
|
+
"method": "GET",
|
|
218
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/rrsets/{{$parameter[\"rr_name\"]}}/{{$parameter[\"rr_type\"]}}"
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"name": "Replace Rrset",
|
|
224
|
+
"value": "Replace Rrset",
|
|
225
|
+
"action": "Update an RRSet",
|
|
226
|
+
"description": "Updates an RRSet in the Zone.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
227
|
+
"routing": {
|
|
228
|
+
"request": {
|
|
229
|
+
"method": "PUT",
|
|
230
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/rrsets/{{$parameter[\"rr_name\"]}}/{{$parameter[\"rr_type\"]}}"
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"name": "Add Records To Rrset",
|
|
236
|
+
"value": "Add Records To Rrset",
|
|
237
|
+
"action": "Add Records to an RRSet",
|
|
238
|
+
"description": "Adds resource records (RRs) to an RRSet in the Zone.\n\nFor convenience, the RRSet will be automatically created if it doesn't exist. Otherwise, the new\nrecords are appended to the existing RRSet.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
239
|
+
"routing": {
|
|
240
|
+
"request": {
|
|
241
|
+
"method": "POST",
|
|
242
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/rrsets/{{$parameter[\"rr_name\"]}}/{{$parameter[\"rr_type\"]}}/actions/add_records"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"name": "Change Rrsets Protection",
|
|
248
|
+
"value": "Change Rrsets Protection",
|
|
249
|
+
"action": "Change an RRSet's Protection",
|
|
250
|
+
"description": "Changes the protection of an RRSet in the Zone.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
251
|
+
"routing": {
|
|
252
|
+
"request": {
|
|
253
|
+
"method": "POST",
|
|
254
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/rrsets/{{$parameter[\"rr_name\"]}}/{{$parameter[\"rr_type\"]}}/actions/change_protection"
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"name": "Change Rrsets Ttl",
|
|
260
|
+
"value": "Change Rrsets Ttl",
|
|
261
|
+
"action": "Change an RRSet's TTL",
|
|
262
|
+
"description": "Changes the Time To Live (TTL) of an RRSet in the Zone.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
263
|
+
"routing": {
|
|
264
|
+
"request": {
|
|
265
|
+
"method": "POST",
|
|
266
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/rrsets/{{$parameter[\"rr_name\"]}}/{{$parameter[\"rr_type\"]}}/actions/change_ttl"
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"name": "Remove Records From Rrset",
|
|
272
|
+
"value": "Remove Records From Rrset",
|
|
273
|
+
"action": "Remove Records from an RRSet",
|
|
274
|
+
"description": "Removes resource records (RRs) from an existing RRSet in the Zone.\n\nFor convenience, the RRSet will be automatically deleted if it doesn't contain any RRs afterwards.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
275
|
+
"routing": {
|
|
276
|
+
"request": {
|
|
277
|
+
"method": "POST",
|
|
278
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/rrsets/{{$parameter[\"rr_name\"]}}/{{$parameter[\"rr_type\"]}}/actions/remove_records"
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"name": "Set Records Of Rrset",
|
|
284
|
+
"value": "Set Records Of Rrset",
|
|
285
|
+
"action": "Set Records of an RRSet",
|
|
286
|
+
"description": "Overwrites the resource records (RRs) of an existing RRSet in the Zone.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
287
|
+
"routing": {
|
|
288
|
+
"request": {
|
|
289
|
+
"method": "POST",
|
|
290
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/rrsets/{{$parameter[\"rr_name\"]}}/{{$parameter[\"rr_type\"]}}/actions/set_records"
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"name": "Update Records Of Rrset",
|
|
296
|
+
"value": "Update Records Of Rrset",
|
|
297
|
+
"action": "Update Records of an RRSet",
|
|
298
|
+
"description": "Updates resource records' (RRs) comments of an existing RRSet in the Zone.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
299
|
+
"routing": {
|
|
300
|
+
"request": {
|
|
301
|
+
"method": "POST",
|
|
302
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/rrsets/{{$parameter[\"rr_name\"]}}/{{$parameter[\"rr_type\"]}}/actions/update_records"
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"name": "Export Zone File",
|
|
308
|
+
"value": "Export Zone File",
|
|
309
|
+
"action": "Export a Zone file",
|
|
310
|
+
"description": "Returns a generated Zone file in BIND (RFC [1034](https://datatracker.ietf.org/doc/html/rfc1034)/[1035](https://datatracker.ietf.org/doc/html/rfc1035)) format.\n\nOnly applicable for Zones in primary mode.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `incorrect_zone_mode` | This operation is not supported for this Zone's `mode`. |\n",
|
|
311
|
+
"routing": {
|
|
312
|
+
"request": {
|
|
313
|
+
"method": "GET",
|
|
314
|
+
"url": "=/zones/{{$parameter[\"id_or_name\"]}}/zonefile"
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
"default": ""
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"displayName": "GET /zones",
|
|
323
|
+
"name": "operation",
|
|
324
|
+
"type": "notice",
|
|
325
|
+
"typeOptions": {
|
|
326
|
+
"theme": "info"
|
|
327
|
+
},
|
|
328
|
+
"default": "",
|
|
329
|
+
"displayOptions": {
|
|
330
|
+
"show": {
|
|
331
|
+
"resource": [
|
|
332
|
+
"Zones"
|
|
333
|
+
],
|
|
334
|
+
"operation": [
|
|
335
|
+
"List Zones"
|
|
336
|
+
]
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"displayName": "Name",
|
|
342
|
+
"name": "name",
|
|
343
|
+
"description": "Filter resources by their name. The response will only contain the resources\nmatching exactly the specified name.\n",
|
|
344
|
+
"default": "",
|
|
345
|
+
"type": "string",
|
|
346
|
+
"routing": {
|
|
347
|
+
"send": {
|
|
348
|
+
"type": "query",
|
|
349
|
+
"property": "name",
|
|
350
|
+
"value": "={{ $value }}",
|
|
351
|
+
"propertyInDotNotation": false
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"displayOptions": {
|
|
355
|
+
"show": {
|
|
356
|
+
"resource": [
|
|
357
|
+
"Zones"
|
|
358
|
+
],
|
|
359
|
+
"operation": [
|
|
360
|
+
"List Zones"
|
|
361
|
+
]
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"displayName": "Mode",
|
|
367
|
+
"name": "mode",
|
|
368
|
+
"description": "Filter resources by their mode. The response will only contain the resources\nmatching exactly the specified mode.\n",
|
|
369
|
+
"default": "primary",
|
|
370
|
+
"type": "options",
|
|
371
|
+
"options": [
|
|
372
|
+
{
|
|
373
|
+
"name": "Primary",
|
|
374
|
+
"value": "primary"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "Secondary",
|
|
378
|
+
"value": "secondary"
|
|
379
|
+
}
|
|
380
|
+
],
|
|
381
|
+
"routing": {
|
|
382
|
+
"send": {
|
|
383
|
+
"type": "query",
|
|
384
|
+
"property": "mode",
|
|
385
|
+
"value": "={{ $value }}",
|
|
386
|
+
"propertyInDotNotation": false
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
"displayOptions": {
|
|
390
|
+
"show": {
|
|
391
|
+
"resource": [
|
|
392
|
+
"Zones"
|
|
393
|
+
],
|
|
394
|
+
"operation": [
|
|
395
|
+
"List Zones"
|
|
396
|
+
]
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"displayName": "Label Selector",
|
|
402
|
+
"name": "label_selector",
|
|
403
|
+
"description": "Filter resources by labels. The response will only contain resources matching the\nlabel selector. For more information, see \"Label Selector\".\n",
|
|
404
|
+
"default": "",
|
|
405
|
+
"type": "string",
|
|
406
|
+
"routing": {
|
|
407
|
+
"send": {
|
|
408
|
+
"type": "query",
|
|
409
|
+
"property": "label_selector",
|
|
410
|
+
"value": "={{ $value }}",
|
|
411
|
+
"propertyInDotNotation": false
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
"displayOptions": {
|
|
415
|
+
"show": {
|
|
416
|
+
"resource": [
|
|
417
|
+
"Zones"
|
|
418
|
+
],
|
|
419
|
+
"operation": [
|
|
420
|
+
"List Zones"
|
|
421
|
+
]
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"displayName": "Sort",
|
|
427
|
+
"name": "sort",
|
|
428
|
+
"description": "Sort resources by field and direction. Can be used multiple times. For more\ninformation, see \"Sorting\".\n",
|
|
429
|
+
"default": "[\n null\n]",
|
|
430
|
+
"type": "json",
|
|
431
|
+
"routing": {
|
|
432
|
+
"send": {
|
|
433
|
+
"type": "query",
|
|
434
|
+
"property": "sort",
|
|
435
|
+
"value": "={{ $value }}",
|
|
436
|
+
"propertyInDotNotation": false
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
"displayOptions": {
|
|
440
|
+
"show": {
|
|
441
|
+
"resource": [
|
|
442
|
+
"Zones"
|
|
443
|
+
],
|
|
444
|
+
"operation": [
|
|
445
|
+
"List Zones"
|
|
446
|
+
]
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"displayName": "Page",
|
|
452
|
+
"name": "page",
|
|
453
|
+
"description": "Page number to return. For more information, see \"Pagination\".",
|
|
454
|
+
"default": 1,
|
|
455
|
+
"type": "number",
|
|
456
|
+
"routing": {
|
|
457
|
+
"send": {
|
|
458
|
+
"type": "query",
|
|
459
|
+
"property": "page",
|
|
460
|
+
"value": "={{ $value }}",
|
|
461
|
+
"propertyInDotNotation": false
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"displayOptions": {
|
|
465
|
+
"show": {
|
|
466
|
+
"resource": [
|
|
467
|
+
"Zones"
|
|
468
|
+
],
|
|
469
|
+
"operation": [
|
|
470
|
+
"List Zones"
|
|
471
|
+
]
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"displayName": "Per Page",
|
|
477
|
+
"name": "per_page",
|
|
478
|
+
"description": "Maximum number of entries returned per page. For more information, see \"Pagination\".",
|
|
479
|
+
"default": 25,
|
|
480
|
+
"type": "number",
|
|
481
|
+
"routing": {
|
|
482
|
+
"send": {
|
|
483
|
+
"type": "query",
|
|
484
|
+
"property": "per_page",
|
|
485
|
+
"value": "={{ $value }}",
|
|
486
|
+
"propertyInDotNotation": false
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
"displayOptions": {
|
|
490
|
+
"show": {
|
|
491
|
+
"resource": [
|
|
492
|
+
"Zones"
|
|
493
|
+
],
|
|
494
|
+
"operation": [
|
|
495
|
+
"List Zones"
|
|
496
|
+
]
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"displayName": "POST /zones",
|
|
502
|
+
"name": "operation",
|
|
503
|
+
"type": "notice",
|
|
504
|
+
"typeOptions": {
|
|
505
|
+
"theme": "info"
|
|
506
|
+
},
|
|
507
|
+
"default": "",
|
|
508
|
+
"displayOptions": {
|
|
509
|
+
"show": {
|
|
510
|
+
"resource": [
|
|
511
|
+
"Zones"
|
|
512
|
+
],
|
|
513
|
+
"operation": [
|
|
514
|
+
"Create Zone"
|
|
515
|
+
]
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"displayName": "Labels",
|
|
521
|
+
"name": "labels",
|
|
522
|
+
"type": "json",
|
|
523
|
+
"default": "{\n \"environment\": \"prod\",\n \"example.com/my\": \"label\",\n \"just-a-key\": \"\"\n}",
|
|
524
|
+
"description": "User-defined labels (`key/value` pairs) for the Resource.\nFor more information, see \"Labels\".\n | User-defined labels (`key/value` pairs) for the Resource.\n\nNote that the set of Labels provided in the request will overwrite the\nexisting one.\n\nFor more information, see \"Labels\".\n",
|
|
525
|
+
"routing": {
|
|
526
|
+
"send": {
|
|
527
|
+
"property": "labels",
|
|
528
|
+
"propertyInDotNotation": false,
|
|
529
|
+
"type": "body",
|
|
530
|
+
"value": "={{ JSON.parse($value) }}"
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
"displayOptions": {
|
|
534
|
+
"show": {
|
|
535
|
+
"resource": [
|
|
536
|
+
"Zones"
|
|
537
|
+
],
|
|
538
|
+
"operation": [
|
|
539
|
+
"Create Zone"
|
|
540
|
+
]
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"required": true,
|
|
546
|
+
"displayName": "Mode",
|
|
547
|
+
"name": "mode",
|
|
548
|
+
"type": "options",
|
|
549
|
+
"default": "primary",
|
|
550
|
+
"description": "Mode of the Zone.\n\nFor more information, see Zone Modes.\n",
|
|
551
|
+
"options": [
|
|
552
|
+
{
|
|
553
|
+
"name": "Primary",
|
|
554
|
+
"value": "primary"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"name": "Secondary",
|
|
558
|
+
"value": "secondary"
|
|
559
|
+
}
|
|
560
|
+
],
|
|
561
|
+
"routing": {
|
|
562
|
+
"send": {
|
|
563
|
+
"property": "mode",
|
|
564
|
+
"propertyInDotNotation": false,
|
|
565
|
+
"type": "body",
|
|
566
|
+
"value": "={{ $value }}"
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
"displayOptions": {
|
|
570
|
+
"show": {
|
|
571
|
+
"resource": [
|
|
572
|
+
"Zones"
|
|
573
|
+
],
|
|
574
|
+
"operation": [
|
|
575
|
+
"Create Zone"
|
|
576
|
+
]
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"required": true,
|
|
582
|
+
"displayName": "Name",
|
|
583
|
+
"name": "name",
|
|
584
|
+
"type": "string",
|
|
585
|
+
"default": "example.com",
|
|
586
|
+
"description": "Name of the Zone.\n\nAll names with [well-known public suffixes](https://publicsuffix.org/) (e.g. `.de`,\n`.com`, `.co.uk`) are supported. Subdomains are not supported.\n\nThe name must be in lower case and must not end with a dot.\n[Internationalized domain\nnames](https://en.wikipedia.org/wiki/Internationalized_domain_name) must be\ntranscribed to [Punycode](https://wikipedia.org/wiki/Punycode) representation with\nACE prefix, e.g. `xn--mnchen-3ya.de` (`münchen.de`).\n",
|
|
587
|
+
"routing": {
|
|
588
|
+
"send": {
|
|
589
|
+
"property": "name",
|
|
590
|
+
"propertyInDotNotation": false,
|
|
591
|
+
"type": "body",
|
|
592
|
+
"value": "={{ $value }}"
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"displayOptions": {
|
|
596
|
+
"show": {
|
|
597
|
+
"resource": [
|
|
598
|
+
"Zones"
|
|
599
|
+
],
|
|
600
|
+
"operation": [
|
|
601
|
+
"Create Zone"
|
|
602
|
+
]
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"displayName": "Primary Nameservers",
|
|
608
|
+
"name": "primary_nameservers",
|
|
609
|
+
"type": "json",
|
|
610
|
+
"default": "[\n {\n \"address\": \"198.51.100.1\",\n \"port\": 53\n },\n {\n \"address\": \"203.0.113.1\",\n \"port\": 53\n }\n]",
|
|
611
|
+
"description": "Primary nameservers of the Zone.\n\nOnly applicable for Zones in secondary mode.\nIgnored for Zones in primary mode.\n",
|
|
612
|
+
"routing": {
|
|
613
|
+
"send": {
|
|
614
|
+
"property": "primary_nameservers",
|
|
615
|
+
"propertyInDotNotation": false,
|
|
616
|
+
"type": "body",
|
|
617
|
+
"value": "={{ JSON.parse($value) }}"
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
"displayOptions": {
|
|
621
|
+
"show": {
|
|
622
|
+
"resource": [
|
|
623
|
+
"Zones"
|
|
624
|
+
],
|
|
625
|
+
"operation": [
|
|
626
|
+
"Create Zone"
|
|
627
|
+
]
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"displayName": "Rrsets",
|
|
633
|
+
"name": "rrsets",
|
|
634
|
+
"type": "json",
|
|
635
|
+
"default": "[\n {\n \"labels\": {\n \"environment\": \"prod\",\n \"example.com/my\": \"label\",\n \"just-a-key\": \"\"\n },\n \"name\": \"www\",\n \"records\": [\n {\n \"comment\": \"My web server at Hetzner Cloud.\",\n \"value\": \"198.51.100.1\"\n }\n ],\n \"ttl\": 3600,\n \"type\": \"A\"\n }\n]",
|
|
636
|
+
"description": "RRSets to be added to the Zone.\n\nOnly applicable for Zones in primary mode.\nIgnored for Zones in secondary mode.\n",
|
|
637
|
+
"routing": {
|
|
638
|
+
"send": {
|
|
639
|
+
"property": "rrsets",
|
|
640
|
+
"propertyInDotNotation": false,
|
|
641
|
+
"type": "body",
|
|
642
|
+
"value": "={{ JSON.parse($value) }}"
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
"displayOptions": {
|
|
646
|
+
"show": {
|
|
647
|
+
"resource": [
|
|
648
|
+
"Zones"
|
|
649
|
+
],
|
|
650
|
+
"operation": [
|
|
651
|
+
"Create Zone"
|
|
652
|
+
]
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"displayName": "Ttl",
|
|
658
|
+
"name": "ttl",
|
|
659
|
+
"type": "number",
|
|
660
|
+
"default": 10800,
|
|
661
|
+
"description": "Default Time To Live (TTL) of the Zone.\n\nMust be in between 60s and 2147483647s.\n\nThis TTL is used for RRSets that do not explicitly define a TTL.\n",
|
|
662
|
+
"routing": {
|
|
663
|
+
"send": {
|
|
664
|
+
"property": "ttl",
|
|
665
|
+
"propertyInDotNotation": false,
|
|
666
|
+
"type": "body",
|
|
667
|
+
"value": "={{ $value }}"
|
|
668
|
+
}
|
|
669
|
+
},
|
|
670
|
+
"displayOptions": {
|
|
671
|
+
"show": {
|
|
672
|
+
"resource": [
|
|
673
|
+
"Zones"
|
|
674
|
+
],
|
|
675
|
+
"operation": [
|
|
676
|
+
"Create Zone"
|
|
677
|
+
]
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"displayName": "Zonefile",
|
|
683
|
+
"name": "zonefile",
|
|
684
|
+
"type": "string",
|
|
685
|
+
"default": "$ORIGIN\texample.com.\n$TTL\t3600\n\n@\tIN\tSOA\thydrogen.ns.hetzner.com. dns.hetzner.com. 2024010100 86400 10800 3600000 3600\n\n@\tIN\t10800\tNS\thydrogen.ns.hetzner.com. ; Some comment.\n@\tIN\t10800\tNS\toxygen.ns.hetzner.com.\n@\tIN\t10800\tNS\thelium.ns.hetzner.de.\n",
|
|
686
|
+
"description": "Zone file to import.\n\nOnly applicable for Zones in primary mode.\nIgnored for Zones in secondary mode.\n\nIf provided, `rrsets` must be empty.\n\nSee Zone file import for more details.\n",
|
|
687
|
+
"routing": {
|
|
688
|
+
"send": {
|
|
689
|
+
"property": "zonefile",
|
|
690
|
+
"propertyInDotNotation": false,
|
|
691
|
+
"type": "body",
|
|
692
|
+
"value": "={{ $value }}"
|
|
693
|
+
}
|
|
694
|
+
},
|
|
695
|
+
"displayOptions": {
|
|
696
|
+
"show": {
|
|
697
|
+
"resource": [
|
|
698
|
+
"Zones"
|
|
699
|
+
],
|
|
700
|
+
"operation": [
|
|
701
|
+
"Create Zone"
|
|
702
|
+
]
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"displayName": "GET /zones/actions",
|
|
708
|
+
"name": "operation",
|
|
709
|
+
"type": "notice",
|
|
710
|
+
"typeOptions": {
|
|
711
|
+
"theme": "info"
|
|
712
|
+
},
|
|
713
|
+
"default": "",
|
|
714
|
+
"displayOptions": {
|
|
715
|
+
"show": {
|
|
716
|
+
"resource": [
|
|
717
|
+
"Zones"
|
|
718
|
+
],
|
|
719
|
+
"operation": [
|
|
720
|
+
"List Zone Actions"
|
|
721
|
+
]
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"displayName": "Id",
|
|
727
|
+
"name": "id",
|
|
728
|
+
"description": "Filter the actions by ID. Can be used multiple times. The response will only contain\nactions matching the specified IDs.\n",
|
|
729
|
+
"default": "[\n 42\n]",
|
|
730
|
+
"type": "json",
|
|
731
|
+
"routing": {
|
|
732
|
+
"send": {
|
|
733
|
+
"type": "query",
|
|
734
|
+
"property": "id",
|
|
735
|
+
"value": "={{ $value }}",
|
|
736
|
+
"propertyInDotNotation": false
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
"displayOptions": {
|
|
740
|
+
"show": {
|
|
741
|
+
"resource": [
|
|
742
|
+
"Zones"
|
|
743
|
+
],
|
|
744
|
+
"operation": [
|
|
745
|
+
"List Zone Actions"
|
|
746
|
+
]
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"displayName": "Sort",
|
|
752
|
+
"name": "sort",
|
|
753
|
+
"description": "Sort actions by field and direction. Can be used multiple times. For more\ninformation, see \"Sorting\".\n",
|
|
754
|
+
"default": "[\n null\n]",
|
|
755
|
+
"type": "json",
|
|
756
|
+
"routing": {
|
|
757
|
+
"send": {
|
|
758
|
+
"type": "query",
|
|
759
|
+
"property": "sort",
|
|
760
|
+
"value": "={{ $value }}",
|
|
761
|
+
"propertyInDotNotation": false
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
"displayOptions": {
|
|
765
|
+
"show": {
|
|
766
|
+
"resource": [
|
|
767
|
+
"Zones"
|
|
768
|
+
],
|
|
769
|
+
"operation": [
|
|
770
|
+
"List Zone Actions"
|
|
771
|
+
]
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"displayName": "Status",
|
|
777
|
+
"name": "status",
|
|
778
|
+
"description": "Filter the actions by status. Can be used multiple times. The response will only\ncontain actions matching the specified statuses.\n",
|
|
779
|
+
"default": "[\n null\n]",
|
|
780
|
+
"type": "json",
|
|
781
|
+
"routing": {
|
|
782
|
+
"send": {
|
|
783
|
+
"type": "query",
|
|
784
|
+
"property": "status",
|
|
785
|
+
"value": "={{ $value }}",
|
|
786
|
+
"propertyInDotNotation": false
|
|
787
|
+
}
|
|
788
|
+
},
|
|
789
|
+
"displayOptions": {
|
|
790
|
+
"show": {
|
|
791
|
+
"resource": [
|
|
792
|
+
"Zones"
|
|
793
|
+
],
|
|
794
|
+
"operation": [
|
|
795
|
+
"List Zone Actions"
|
|
796
|
+
]
|
|
797
|
+
}
|
|
798
|
+
}
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"displayName": "Page",
|
|
802
|
+
"name": "page",
|
|
803
|
+
"description": "Page number to return. For more information, see \"Pagination\".",
|
|
804
|
+
"default": 1,
|
|
805
|
+
"type": "number",
|
|
806
|
+
"routing": {
|
|
807
|
+
"send": {
|
|
808
|
+
"type": "query",
|
|
809
|
+
"property": "page",
|
|
810
|
+
"value": "={{ $value }}",
|
|
811
|
+
"propertyInDotNotation": false
|
|
812
|
+
}
|
|
813
|
+
},
|
|
814
|
+
"displayOptions": {
|
|
815
|
+
"show": {
|
|
816
|
+
"resource": [
|
|
817
|
+
"Zones"
|
|
818
|
+
],
|
|
819
|
+
"operation": [
|
|
820
|
+
"List Zone Actions"
|
|
821
|
+
]
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"displayName": "Per Page",
|
|
827
|
+
"name": "per_page",
|
|
828
|
+
"description": "Maximum number of entries returned per page. For more information, see \"Pagination\".",
|
|
829
|
+
"default": 25,
|
|
830
|
+
"type": "number",
|
|
831
|
+
"routing": {
|
|
832
|
+
"send": {
|
|
833
|
+
"type": "query",
|
|
834
|
+
"property": "per_page",
|
|
835
|
+
"value": "={{ $value }}",
|
|
836
|
+
"propertyInDotNotation": false
|
|
837
|
+
}
|
|
838
|
+
},
|
|
839
|
+
"displayOptions": {
|
|
840
|
+
"show": {
|
|
841
|
+
"resource": [
|
|
842
|
+
"Zones"
|
|
843
|
+
],
|
|
844
|
+
"operation": [
|
|
845
|
+
"List Zone Actions"
|
|
846
|
+
]
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"displayName": "GET /zones/actions/{id}",
|
|
852
|
+
"name": "operation",
|
|
853
|
+
"type": "notice",
|
|
854
|
+
"typeOptions": {
|
|
855
|
+
"theme": "info"
|
|
856
|
+
},
|
|
857
|
+
"default": "",
|
|
858
|
+
"displayOptions": {
|
|
859
|
+
"show": {
|
|
860
|
+
"resource": [
|
|
861
|
+
"Zones"
|
|
862
|
+
],
|
|
863
|
+
"operation": [
|
|
864
|
+
"Get Zone Action"
|
|
865
|
+
]
|
|
866
|
+
}
|
|
867
|
+
}
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"displayName": "Id",
|
|
871
|
+
"name": "id",
|
|
872
|
+
"required": true,
|
|
873
|
+
"description": "ID of the Action.",
|
|
874
|
+
"default": 42,
|
|
875
|
+
"type": "number",
|
|
876
|
+
"displayOptions": {
|
|
877
|
+
"show": {
|
|
878
|
+
"resource": [
|
|
879
|
+
"Zones"
|
|
880
|
+
],
|
|
881
|
+
"operation": [
|
|
882
|
+
"Get Zone Action"
|
|
883
|
+
]
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"displayName": "DELETE /zones/{id_or_name}",
|
|
889
|
+
"name": "operation",
|
|
890
|
+
"type": "notice",
|
|
891
|
+
"typeOptions": {
|
|
892
|
+
"theme": "info"
|
|
893
|
+
},
|
|
894
|
+
"default": "",
|
|
895
|
+
"displayOptions": {
|
|
896
|
+
"show": {
|
|
897
|
+
"resource": [
|
|
898
|
+
"Zones"
|
|
899
|
+
],
|
|
900
|
+
"operation": [
|
|
901
|
+
"Delete Zone"
|
|
902
|
+
]
|
|
903
|
+
}
|
|
904
|
+
}
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"displayName": "Id Or Name",
|
|
908
|
+
"name": "id_or_name",
|
|
909
|
+
"required": true,
|
|
910
|
+
"description": "ID or Name of the Zone.",
|
|
911
|
+
"default": "",
|
|
912
|
+
"type": "string",
|
|
913
|
+
"displayOptions": {
|
|
914
|
+
"show": {
|
|
915
|
+
"resource": [
|
|
916
|
+
"Zones"
|
|
917
|
+
],
|
|
918
|
+
"operation": [
|
|
919
|
+
"Delete Zone"
|
|
920
|
+
]
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"displayName": "GET /zones/{id_or_name}",
|
|
926
|
+
"name": "operation",
|
|
927
|
+
"type": "notice",
|
|
928
|
+
"typeOptions": {
|
|
929
|
+
"theme": "info"
|
|
930
|
+
},
|
|
931
|
+
"default": "",
|
|
932
|
+
"displayOptions": {
|
|
933
|
+
"show": {
|
|
934
|
+
"resource": [
|
|
935
|
+
"Zones"
|
|
936
|
+
],
|
|
937
|
+
"operation": [
|
|
938
|
+
"Get Zone"
|
|
939
|
+
]
|
|
940
|
+
}
|
|
941
|
+
}
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"displayName": "Id Or Name",
|
|
945
|
+
"name": "id_or_name",
|
|
946
|
+
"required": true,
|
|
947
|
+
"description": "ID or Name of the Zone.",
|
|
948
|
+
"default": "",
|
|
949
|
+
"type": "string",
|
|
950
|
+
"displayOptions": {
|
|
951
|
+
"show": {
|
|
952
|
+
"resource": [
|
|
953
|
+
"Zones"
|
|
954
|
+
],
|
|
955
|
+
"operation": [
|
|
956
|
+
"Get Zone"
|
|
957
|
+
]
|
|
958
|
+
}
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"displayName": "PUT /zones/{id_or_name}",
|
|
963
|
+
"name": "operation",
|
|
964
|
+
"type": "notice",
|
|
965
|
+
"typeOptions": {
|
|
966
|
+
"theme": "info"
|
|
967
|
+
},
|
|
968
|
+
"default": "",
|
|
969
|
+
"displayOptions": {
|
|
970
|
+
"show": {
|
|
971
|
+
"resource": [
|
|
972
|
+
"Zones"
|
|
973
|
+
],
|
|
974
|
+
"operation": [
|
|
975
|
+
"Replace Zone"
|
|
976
|
+
]
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"displayName": "Id Or Name",
|
|
982
|
+
"name": "id_or_name",
|
|
983
|
+
"required": true,
|
|
984
|
+
"description": "ID or Name of the Zone.",
|
|
985
|
+
"default": "",
|
|
986
|
+
"type": "string",
|
|
987
|
+
"displayOptions": {
|
|
988
|
+
"show": {
|
|
989
|
+
"resource": [
|
|
990
|
+
"Zones"
|
|
991
|
+
],
|
|
992
|
+
"operation": [
|
|
993
|
+
"Replace Zone"
|
|
994
|
+
]
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"displayName": "Labels",
|
|
1000
|
+
"name": "labels",
|
|
1001
|
+
"type": "json",
|
|
1002
|
+
"default": "{\n \"environment\": \"prod\",\n \"example.com/my\": \"label\",\n \"just-a-key\": \"\"\n}",
|
|
1003
|
+
"description": "User-defined labels (`key/value` pairs) for the Resource.\nFor more information, see \"Labels\".\n | User-defined labels (`key/value` pairs) for the Resource.\n\nNote that the set of Labels provided in the request will overwrite the\nexisting one.\n\nFor more information, see \"Labels\".\n",
|
|
1004
|
+
"routing": {
|
|
1005
|
+
"send": {
|
|
1006
|
+
"property": "labels",
|
|
1007
|
+
"propertyInDotNotation": false,
|
|
1008
|
+
"type": "body",
|
|
1009
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1010
|
+
}
|
|
1011
|
+
},
|
|
1012
|
+
"displayOptions": {
|
|
1013
|
+
"show": {
|
|
1014
|
+
"resource": [
|
|
1015
|
+
"Zones"
|
|
1016
|
+
],
|
|
1017
|
+
"operation": [
|
|
1018
|
+
"Replace Zone"
|
|
1019
|
+
]
|
|
1020
|
+
}
|
|
1021
|
+
}
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"displayName": "GET /zones/{id_or_name}/actions",
|
|
1025
|
+
"name": "operation",
|
|
1026
|
+
"type": "notice",
|
|
1027
|
+
"typeOptions": {
|
|
1028
|
+
"theme": "info"
|
|
1029
|
+
},
|
|
1030
|
+
"default": "",
|
|
1031
|
+
"displayOptions": {
|
|
1032
|
+
"show": {
|
|
1033
|
+
"resource": [
|
|
1034
|
+
"Zones"
|
|
1035
|
+
],
|
|
1036
|
+
"operation": [
|
|
1037
|
+
"List Actions For Zone"
|
|
1038
|
+
]
|
|
1039
|
+
}
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"displayName": "Id Or Name",
|
|
1044
|
+
"name": "id_or_name",
|
|
1045
|
+
"required": true,
|
|
1046
|
+
"description": "ID or Name of the Zone.",
|
|
1047
|
+
"default": "",
|
|
1048
|
+
"type": "string",
|
|
1049
|
+
"displayOptions": {
|
|
1050
|
+
"show": {
|
|
1051
|
+
"resource": [
|
|
1052
|
+
"Zones"
|
|
1053
|
+
],
|
|
1054
|
+
"operation": [
|
|
1055
|
+
"List Actions For Zone"
|
|
1056
|
+
]
|
|
1057
|
+
}
|
|
1058
|
+
}
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"displayName": "Sort",
|
|
1062
|
+
"name": "sort",
|
|
1063
|
+
"description": "Sort actions by field and direction. Can be used multiple times. For more\ninformation, see \"Sorting\".\n",
|
|
1064
|
+
"default": "[\n null\n]",
|
|
1065
|
+
"type": "json",
|
|
1066
|
+
"routing": {
|
|
1067
|
+
"send": {
|
|
1068
|
+
"type": "query",
|
|
1069
|
+
"property": "sort",
|
|
1070
|
+
"value": "={{ $value }}",
|
|
1071
|
+
"propertyInDotNotation": false
|
|
1072
|
+
}
|
|
1073
|
+
},
|
|
1074
|
+
"displayOptions": {
|
|
1075
|
+
"show": {
|
|
1076
|
+
"resource": [
|
|
1077
|
+
"Zones"
|
|
1078
|
+
],
|
|
1079
|
+
"operation": [
|
|
1080
|
+
"List Actions For Zone"
|
|
1081
|
+
]
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"displayName": "Status",
|
|
1087
|
+
"name": "status",
|
|
1088
|
+
"description": "Filter the actions by status. Can be used multiple times. The response will only\ncontain actions matching the specified statuses.\n",
|
|
1089
|
+
"default": "[\n null\n]",
|
|
1090
|
+
"type": "json",
|
|
1091
|
+
"routing": {
|
|
1092
|
+
"send": {
|
|
1093
|
+
"type": "query",
|
|
1094
|
+
"property": "status",
|
|
1095
|
+
"value": "={{ $value }}",
|
|
1096
|
+
"propertyInDotNotation": false
|
|
1097
|
+
}
|
|
1098
|
+
},
|
|
1099
|
+
"displayOptions": {
|
|
1100
|
+
"show": {
|
|
1101
|
+
"resource": [
|
|
1102
|
+
"Zones"
|
|
1103
|
+
],
|
|
1104
|
+
"operation": [
|
|
1105
|
+
"List Actions For Zone"
|
|
1106
|
+
]
|
|
1107
|
+
}
|
|
1108
|
+
}
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
"displayName": "Page",
|
|
1112
|
+
"name": "page",
|
|
1113
|
+
"description": "Page number to return. For more information, see \"Pagination\".",
|
|
1114
|
+
"default": 1,
|
|
1115
|
+
"type": "number",
|
|
1116
|
+
"routing": {
|
|
1117
|
+
"send": {
|
|
1118
|
+
"type": "query",
|
|
1119
|
+
"property": "page",
|
|
1120
|
+
"value": "={{ $value }}",
|
|
1121
|
+
"propertyInDotNotation": false
|
|
1122
|
+
}
|
|
1123
|
+
},
|
|
1124
|
+
"displayOptions": {
|
|
1125
|
+
"show": {
|
|
1126
|
+
"resource": [
|
|
1127
|
+
"Zones"
|
|
1128
|
+
],
|
|
1129
|
+
"operation": [
|
|
1130
|
+
"List Actions For Zone"
|
|
1131
|
+
]
|
|
1132
|
+
}
|
|
1133
|
+
}
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"displayName": "Per Page",
|
|
1137
|
+
"name": "per_page",
|
|
1138
|
+
"description": "Maximum number of entries returned per page. For more information, see \"Pagination\".",
|
|
1139
|
+
"default": 25,
|
|
1140
|
+
"type": "number",
|
|
1141
|
+
"routing": {
|
|
1142
|
+
"send": {
|
|
1143
|
+
"type": "query",
|
|
1144
|
+
"property": "per_page",
|
|
1145
|
+
"value": "={{ $value }}",
|
|
1146
|
+
"propertyInDotNotation": false
|
|
1147
|
+
}
|
|
1148
|
+
},
|
|
1149
|
+
"displayOptions": {
|
|
1150
|
+
"show": {
|
|
1151
|
+
"resource": [
|
|
1152
|
+
"Zones"
|
|
1153
|
+
],
|
|
1154
|
+
"operation": [
|
|
1155
|
+
"List Actions For Zone"
|
|
1156
|
+
]
|
|
1157
|
+
}
|
|
1158
|
+
}
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
"displayName": "POST /zones/{id_or_name}/actions/change_primary_nameservers",
|
|
1162
|
+
"name": "operation",
|
|
1163
|
+
"type": "notice",
|
|
1164
|
+
"typeOptions": {
|
|
1165
|
+
"theme": "info"
|
|
1166
|
+
},
|
|
1167
|
+
"default": "",
|
|
1168
|
+
"displayOptions": {
|
|
1169
|
+
"show": {
|
|
1170
|
+
"resource": [
|
|
1171
|
+
"Zones"
|
|
1172
|
+
],
|
|
1173
|
+
"operation": [
|
|
1174
|
+
"Change Zones Primary Nameservers"
|
|
1175
|
+
]
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"displayName": "Id Or Name",
|
|
1181
|
+
"name": "id_or_name",
|
|
1182
|
+
"required": true,
|
|
1183
|
+
"description": "ID or Name of the Zone.",
|
|
1184
|
+
"default": "",
|
|
1185
|
+
"type": "string",
|
|
1186
|
+
"displayOptions": {
|
|
1187
|
+
"show": {
|
|
1188
|
+
"resource": [
|
|
1189
|
+
"Zones"
|
|
1190
|
+
],
|
|
1191
|
+
"operation": [
|
|
1192
|
+
"Change Zones Primary Nameservers"
|
|
1193
|
+
]
|
|
1194
|
+
}
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"required": true,
|
|
1199
|
+
"displayName": "Primary Nameservers",
|
|
1200
|
+
"name": "primary_nameservers",
|
|
1201
|
+
"type": "json",
|
|
1202
|
+
"default": "[\n {\n \"address\": \"198.51.100.1\",\n \"port\": 53\n },\n {\n \"address\": \"203.0.113.1\",\n \"port\": 53\n }\n]",
|
|
1203
|
+
"description": "Primary nameservers of the Zone.",
|
|
1204
|
+
"routing": {
|
|
1205
|
+
"send": {
|
|
1206
|
+
"property": "primary_nameservers",
|
|
1207
|
+
"propertyInDotNotation": false,
|
|
1208
|
+
"type": "body",
|
|
1209
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1210
|
+
}
|
|
1211
|
+
},
|
|
1212
|
+
"displayOptions": {
|
|
1213
|
+
"show": {
|
|
1214
|
+
"resource": [
|
|
1215
|
+
"Zones"
|
|
1216
|
+
],
|
|
1217
|
+
"operation": [
|
|
1218
|
+
"Change Zones Primary Nameservers"
|
|
1219
|
+
]
|
|
1220
|
+
}
|
|
1221
|
+
}
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"displayName": "POST /zones/{id_or_name}/actions/change_protection",
|
|
1225
|
+
"name": "operation",
|
|
1226
|
+
"type": "notice",
|
|
1227
|
+
"typeOptions": {
|
|
1228
|
+
"theme": "info"
|
|
1229
|
+
},
|
|
1230
|
+
"default": "",
|
|
1231
|
+
"displayOptions": {
|
|
1232
|
+
"show": {
|
|
1233
|
+
"resource": [
|
|
1234
|
+
"Zones"
|
|
1235
|
+
],
|
|
1236
|
+
"operation": [
|
|
1237
|
+
"Change Zones Protection"
|
|
1238
|
+
]
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"displayName": "Id Or Name",
|
|
1244
|
+
"name": "id_or_name",
|
|
1245
|
+
"required": true,
|
|
1246
|
+
"description": "ID or Name of the Zone.",
|
|
1247
|
+
"default": "",
|
|
1248
|
+
"type": "string",
|
|
1249
|
+
"displayOptions": {
|
|
1250
|
+
"show": {
|
|
1251
|
+
"resource": [
|
|
1252
|
+
"Zones"
|
|
1253
|
+
],
|
|
1254
|
+
"operation": [
|
|
1255
|
+
"Change Zones Protection"
|
|
1256
|
+
]
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"displayName": "Delete",
|
|
1262
|
+
"name": "delete",
|
|
1263
|
+
"type": "boolean",
|
|
1264
|
+
"default": false,
|
|
1265
|
+
"description": "Prevents the Zone from being deleted.",
|
|
1266
|
+
"routing": {
|
|
1267
|
+
"send": {
|
|
1268
|
+
"property": "delete",
|
|
1269
|
+
"propertyInDotNotation": false,
|
|
1270
|
+
"type": "body",
|
|
1271
|
+
"value": "={{ $value }}"
|
|
1272
|
+
}
|
|
1273
|
+
},
|
|
1274
|
+
"displayOptions": {
|
|
1275
|
+
"show": {
|
|
1276
|
+
"resource": [
|
|
1277
|
+
"Zones"
|
|
1278
|
+
],
|
|
1279
|
+
"operation": [
|
|
1280
|
+
"Change Zones Protection"
|
|
1281
|
+
]
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"displayName": "POST /zones/{id_or_name}/actions/change_ttl",
|
|
1287
|
+
"name": "operation",
|
|
1288
|
+
"type": "notice",
|
|
1289
|
+
"typeOptions": {
|
|
1290
|
+
"theme": "info"
|
|
1291
|
+
},
|
|
1292
|
+
"default": "",
|
|
1293
|
+
"displayOptions": {
|
|
1294
|
+
"show": {
|
|
1295
|
+
"resource": [
|
|
1296
|
+
"Zones"
|
|
1297
|
+
],
|
|
1298
|
+
"operation": [
|
|
1299
|
+
"Change Zones Default Ttl"
|
|
1300
|
+
]
|
|
1301
|
+
}
|
|
1302
|
+
}
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
"displayName": "Id Or Name",
|
|
1306
|
+
"name": "id_or_name",
|
|
1307
|
+
"required": true,
|
|
1308
|
+
"description": "ID or Name of the Zone.",
|
|
1309
|
+
"default": "",
|
|
1310
|
+
"type": "string",
|
|
1311
|
+
"displayOptions": {
|
|
1312
|
+
"show": {
|
|
1313
|
+
"resource": [
|
|
1314
|
+
"Zones"
|
|
1315
|
+
],
|
|
1316
|
+
"operation": [
|
|
1317
|
+
"Change Zones Default Ttl"
|
|
1318
|
+
]
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"required": true,
|
|
1324
|
+
"displayName": "Ttl",
|
|
1325
|
+
"name": "ttl",
|
|
1326
|
+
"type": "number",
|
|
1327
|
+
"default": 10800,
|
|
1328
|
+
"description": "Default Time To Live (TTL) of the Zone.\n\nMust be in between 60s and 2147483647s.\n\nThis TTL is used for RRSets that do not explicitly define a TTL.\n",
|
|
1329
|
+
"routing": {
|
|
1330
|
+
"send": {
|
|
1331
|
+
"property": "ttl",
|
|
1332
|
+
"propertyInDotNotation": false,
|
|
1333
|
+
"type": "body",
|
|
1334
|
+
"value": "={{ $value }}"
|
|
1335
|
+
}
|
|
1336
|
+
},
|
|
1337
|
+
"displayOptions": {
|
|
1338
|
+
"show": {
|
|
1339
|
+
"resource": [
|
|
1340
|
+
"Zones"
|
|
1341
|
+
],
|
|
1342
|
+
"operation": [
|
|
1343
|
+
"Change Zones Default Ttl"
|
|
1344
|
+
]
|
|
1345
|
+
}
|
|
1346
|
+
}
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"displayName": "POST /zones/{id_or_name}/actions/import_zonefile",
|
|
1350
|
+
"name": "operation",
|
|
1351
|
+
"type": "notice",
|
|
1352
|
+
"typeOptions": {
|
|
1353
|
+
"theme": "info"
|
|
1354
|
+
},
|
|
1355
|
+
"default": "",
|
|
1356
|
+
"displayOptions": {
|
|
1357
|
+
"show": {
|
|
1358
|
+
"resource": [
|
|
1359
|
+
"Zones"
|
|
1360
|
+
],
|
|
1361
|
+
"operation": [
|
|
1362
|
+
"Import Zone File"
|
|
1363
|
+
]
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"displayName": "Id Or Name",
|
|
1369
|
+
"name": "id_or_name",
|
|
1370
|
+
"required": true,
|
|
1371
|
+
"description": "ID or Name of the Zone.",
|
|
1372
|
+
"default": "",
|
|
1373
|
+
"type": "string",
|
|
1374
|
+
"displayOptions": {
|
|
1375
|
+
"show": {
|
|
1376
|
+
"resource": [
|
|
1377
|
+
"Zones"
|
|
1378
|
+
],
|
|
1379
|
+
"operation": [
|
|
1380
|
+
"Import Zone File"
|
|
1381
|
+
]
|
|
1382
|
+
}
|
|
1383
|
+
}
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
"required": true,
|
|
1387
|
+
"displayName": "Zonefile",
|
|
1388
|
+
"name": "zonefile",
|
|
1389
|
+
"type": "string",
|
|
1390
|
+
"default": "$ORIGIN\texample.com.\n$TTL\t3600\n\n@\tIN\tSOA\thydrogen.ns.hetzner.com. dns.hetzner.com. 2024010100 86400 10800 3600000 3600\n\n@\tIN\t10800\tNS\thydrogen.ns.hetzner.com. ; Some comment.\n@\tIN\t10800\tNS\toxygen.ns.hetzner.com.\n@\tIN\t10800\tNS\thelium.ns.hetzner.de.\n",
|
|
1391
|
+
"description": "Zone file to import.\n\nSee Zone file import for more details.\n",
|
|
1392
|
+
"routing": {
|
|
1393
|
+
"send": {
|
|
1394
|
+
"property": "zonefile",
|
|
1395
|
+
"propertyInDotNotation": false,
|
|
1396
|
+
"type": "body",
|
|
1397
|
+
"value": "={{ $value }}"
|
|
1398
|
+
}
|
|
1399
|
+
},
|
|
1400
|
+
"displayOptions": {
|
|
1401
|
+
"show": {
|
|
1402
|
+
"resource": [
|
|
1403
|
+
"Zones"
|
|
1404
|
+
],
|
|
1405
|
+
"operation": [
|
|
1406
|
+
"Import Zone File"
|
|
1407
|
+
]
|
|
1408
|
+
}
|
|
1409
|
+
}
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
"displayName": "GET /zones/{id_or_name}/actions/{action_id}",
|
|
1413
|
+
"name": "operation",
|
|
1414
|
+
"type": "notice",
|
|
1415
|
+
"typeOptions": {
|
|
1416
|
+
"theme": "info"
|
|
1417
|
+
},
|
|
1418
|
+
"default": "",
|
|
1419
|
+
"displayOptions": {
|
|
1420
|
+
"show": {
|
|
1421
|
+
"resource": [
|
|
1422
|
+
"Zones"
|
|
1423
|
+
],
|
|
1424
|
+
"operation": [
|
|
1425
|
+
"Get Action For Zone"
|
|
1426
|
+
]
|
|
1427
|
+
}
|
|
1428
|
+
}
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"displayName": "Id Or Name",
|
|
1432
|
+
"name": "id_or_name",
|
|
1433
|
+
"required": true,
|
|
1434
|
+
"description": "ID or Name of the Zone.",
|
|
1435
|
+
"default": "",
|
|
1436
|
+
"type": "string",
|
|
1437
|
+
"displayOptions": {
|
|
1438
|
+
"show": {
|
|
1439
|
+
"resource": [
|
|
1440
|
+
"Zones"
|
|
1441
|
+
],
|
|
1442
|
+
"operation": [
|
|
1443
|
+
"Get Action For Zone"
|
|
1444
|
+
]
|
|
1445
|
+
}
|
|
1446
|
+
}
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
"displayName": "Action Id",
|
|
1450
|
+
"name": "action_id",
|
|
1451
|
+
"required": true,
|
|
1452
|
+
"description": "ID of the Action.",
|
|
1453
|
+
"default": 42,
|
|
1454
|
+
"type": "number",
|
|
1455
|
+
"displayOptions": {
|
|
1456
|
+
"show": {
|
|
1457
|
+
"resource": [
|
|
1458
|
+
"Zones"
|
|
1459
|
+
],
|
|
1460
|
+
"operation": [
|
|
1461
|
+
"Get Action For Zone"
|
|
1462
|
+
]
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
"displayName": "GET /zones/{id_or_name}/rrsets",
|
|
1468
|
+
"name": "operation",
|
|
1469
|
+
"type": "notice",
|
|
1470
|
+
"typeOptions": {
|
|
1471
|
+
"theme": "info"
|
|
1472
|
+
},
|
|
1473
|
+
"default": "",
|
|
1474
|
+
"displayOptions": {
|
|
1475
|
+
"show": {
|
|
1476
|
+
"resource": [
|
|
1477
|
+
"Zones"
|
|
1478
|
+
],
|
|
1479
|
+
"operation": [
|
|
1480
|
+
"List Rrsets"
|
|
1481
|
+
]
|
|
1482
|
+
}
|
|
1483
|
+
}
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"displayName": "Id Or Name",
|
|
1487
|
+
"name": "id_or_name",
|
|
1488
|
+
"required": true,
|
|
1489
|
+
"description": "ID or Name of the Zone.",
|
|
1490
|
+
"default": "",
|
|
1491
|
+
"type": "string",
|
|
1492
|
+
"displayOptions": {
|
|
1493
|
+
"show": {
|
|
1494
|
+
"resource": [
|
|
1495
|
+
"Zones"
|
|
1496
|
+
],
|
|
1497
|
+
"operation": [
|
|
1498
|
+
"List Rrsets"
|
|
1499
|
+
]
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
"displayName": "Name",
|
|
1505
|
+
"name": "name",
|
|
1506
|
+
"description": "Filter resources by their name. The response will only contain the resources\nmatching exactly the specified name.\n",
|
|
1507
|
+
"default": "",
|
|
1508
|
+
"type": "string",
|
|
1509
|
+
"routing": {
|
|
1510
|
+
"send": {
|
|
1511
|
+
"type": "query",
|
|
1512
|
+
"property": "name",
|
|
1513
|
+
"value": "={{ $value }}",
|
|
1514
|
+
"propertyInDotNotation": false
|
|
1515
|
+
}
|
|
1516
|
+
},
|
|
1517
|
+
"displayOptions": {
|
|
1518
|
+
"show": {
|
|
1519
|
+
"resource": [
|
|
1520
|
+
"Zones"
|
|
1521
|
+
],
|
|
1522
|
+
"operation": [
|
|
1523
|
+
"List Rrsets"
|
|
1524
|
+
]
|
|
1525
|
+
}
|
|
1526
|
+
}
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
"displayName": "Type",
|
|
1530
|
+
"name": "type",
|
|
1531
|
+
"description": "Filter resources by their type. Can be used multiple times. The response will only\ncontain resources matching the specified types.\n",
|
|
1532
|
+
"default": "[\n \"A\"\n]",
|
|
1533
|
+
"type": "json",
|
|
1534
|
+
"routing": {
|
|
1535
|
+
"send": {
|
|
1536
|
+
"type": "query",
|
|
1537
|
+
"property": "type",
|
|
1538
|
+
"value": "={{ $value }}",
|
|
1539
|
+
"propertyInDotNotation": false
|
|
1540
|
+
}
|
|
1541
|
+
},
|
|
1542
|
+
"displayOptions": {
|
|
1543
|
+
"show": {
|
|
1544
|
+
"resource": [
|
|
1545
|
+
"Zones"
|
|
1546
|
+
],
|
|
1547
|
+
"operation": [
|
|
1548
|
+
"List Rrsets"
|
|
1549
|
+
]
|
|
1550
|
+
}
|
|
1551
|
+
}
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
"displayName": "Label Selector",
|
|
1555
|
+
"name": "label_selector",
|
|
1556
|
+
"description": "Filter resources by labels. The response will only contain resources matching the\nlabel selector. For more information, see \"Label Selector\".\n",
|
|
1557
|
+
"default": "",
|
|
1558
|
+
"type": "string",
|
|
1559
|
+
"routing": {
|
|
1560
|
+
"send": {
|
|
1561
|
+
"type": "query",
|
|
1562
|
+
"property": "label_selector",
|
|
1563
|
+
"value": "={{ $value }}",
|
|
1564
|
+
"propertyInDotNotation": false
|
|
1565
|
+
}
|
|
1566
|
+
},
|
|
1567
|
+
"displayOptions": {
|
|
1568
|
+
"show": {
|
|
1569
|
+
"resource": [
|
|
1570
|
+
"Zones"
|
|
1571
|
+
],
|
|
1572
|
+
"operation": [
|
|
1573
|
+
"List Rrsets"
|
|
1574
|
+
]
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
"displayName": "Sort",
|
|
1580
|
+
"name": "sort",
|
|
1581
|
+
"description": "Sort resources by field and direction. Can be used multiple times. For more\ninformation, see \"Sorting\".\n",
|
|
1582
|
+
"default": "[\n null\n]",
|
|
1583
|
+
"type": "json",
|
|
1584
|
+
"routing": {
|
|
1585
|
+
"send": {
|
|
1586
|
+
"type": "query",
|
|
1587
|
+
"property": "sort",
|
|
1588
|
+
"value": "={{ $value }}",
|
|
1589
|
+
"propertyInDotNotation": false
|
|
1590
|
+
}
|
|
1591
|
+
},
|
|
1592
|
+
"displayOptions": {
|
|
1593
|
+
"show": {
|
|
1594
|
+
"resource": [
|
|
1595
|
+
"Zones"
|
|
1596
|
+
],
|
|
1597
|
+
"operation": [
|
|
1598
|
+
"List Rrsets"
|
|
1599
|
+
]
|
|
1600
|
+
}
|
|
1601
|
+
}
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"displayName": "Page",
|
|
1605
|
+
"name": "page",
|
|
1606
|
+
"description": "Page number to return. For more information, see \"Pagination\".",
|
|
1607
|
+
"default": 1,
|
|
1608
|
+
"type": "number",
|
|
1609
|
+
"routing": {
|
|
1610
|
+
"send": {
|
|
1611
|
+
"type": "query",
|
|
1612
|
+
"property": "page",
|
|
1613
|
+
"value": "={{ $value }}",
|
|
1614
|
+
"propertyInDotNotation": false
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
"displayOptions": {
|
|
1618
|
+
"show": {
|
|
1619
|
+
"resource": [
|
|
1620
|
+
"Zones"
|
|
1621
|
+
],
|
|
1622
|
+
"operation": [
|
|
1623
|
+
"List Rrsets"
|
|
1624
|
+
]
|
|
1625
|
+
}
|
|
1626
|
+
}
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
"displayName": "Per Page",
|
|
1630
|
+
"name": "per_page",
|
|
1631
|
+
"description": "Maximum number of entries returned per page. For more information, see \"Pagination\".",
|
|
1632
|
+
"default": 25,
|
|
1633
|
+
"type": "number",
|
|
1634
|
+
"routing": {
|
|
1635
|
+
"send": {
|
|
1636
|
+
"type": "query",
|
|
1637
|
+
"property": "per_page",
|
|
1638
|
+
"value": "={{ $value }}",
|
|
1639
|
+
"propertyInDotNotation": false
|
|
1640
|
+
}
|
|
1641
|
+
},
|
|
1642
|
+
"displayOptions": {
|
|
1643
|
+
"show": {
|
|
1644
|
+
"resource": [
|
|
1645
|
+
"Zones"
|
|
1646
|
+
],
|
|
1647
|
+
"operation": [
|
|
1648
|
+
"List Rrsets"
|
|
1649
|
+
]
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
"displayName": "POST /zones/{id_or_name}/rrsets",
|
|
1655
|
+
"name": "operation",
|
|
1656
|
+
"type": "notice",
|
|
1657
|
+
"typeOptions": {
|
|
1658
|
+
"theme": "info"
|
|
1659
|
+
},
|
|
1660
|
+
"default": "",
|
|
1661
|
+
"displayOptions": {
|
|
1662
|
+
"show": {
|
|
1663
|
+
"resource": [
|
|
1664
|
+
"Zones"
|
|
1665
|
+
],
|
|
1666
|
+
"operation": [
|
|
1667
|
+
"Create Rrset"
|
|
1668
|
+
]
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
"displayName": "Id Or Name",
|
|
1674
|
+
"name": "id_or_name",
|
|
1675
|
+
"required": true,
|
|
1676
|
+
"description": "ID or Name of the Zone.",
|
|
1677
|
+
"default": "",
|
|
1678
|
+
"type": "string",
|
|
1679
|
+
"displayOptions": {
|
|
1680
|
+
"show": {
|
|
1681
|
+
"resource": [
|
|
1682
|
+
"Zones"
|
|
1683
|
+
],
|
|
1684
|
+
"operation": [
|
|
1685
|
+
"Create Rrset"
|
|
1686
|
+
]
|
|
1687
|
+
}
|
|
1688
|
+
}
|
|
1689
|
+
},
|
|
1690
|
+
{
|
|
1691
|
+
"displayName": "Labels",
|
|
1692
|
+
"name": "labels",
|
|
1693
|
+
"type": "json",
|
|
1694
|
+
"default": "{\n \"environment\": \"prod\",\n \"example.com/my\": \"label\",\n \"just-a-key\": \"\"\n}",
|
|
1695
|
+
"description": "User-defined labels (`key/value` pairs) for the Resource.\nFor more information, see \"Labels\".\n | User-defined labels (`key/value` pairs) for the Resource.\n\nNote that the set of Labels provided in the request will overwrite the\nexisting one.\n\nFor more information, see \"Labels\".\n",
|
|
1696
|
+
"routing": {
|
|
1697
|
+
"send": {
|
|
1698
|
+
"property": "labels",
|
|
1699
|
+
"propertyInDotNotation": false,
|
|
1700
|
+
"type": "body",
|
|
1701
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1702
|
+
}
|
|
1703
|
+
},
|
|
1704
|
+
"displayOptions": {
|
|
1705
|
+
"show": {
|
|
1706
|
+
"resource": [
|
|
1707
|
+
"Zones"
|
|
1708
|
+
],
|
|
1709
|
+
"operation": [
|
|
1710
|
+
"Create Rrset"
|
|
1711
|
+
]
|
|
1712
|
+
}
|
|
1713
|
+
}
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
"required": true,
|
|
1717
|
+
"displayName": "Name",
|
|
1718
|
+
"name": "name",
|
|
1719
|
+
"type": "string",
|
|
1720
|
+
"default": "www",
|
|
1721
|
+
"description": "Name of the RRSet.\n\nThe name must be in lower case, and must not end with a dot or the Zone\nname. Names containing non-ASCII characters must be transcribed to\n[Punycode](https://wikipedia.org/wiki/Punycode) representation with ACE prefix, e.g.\n`xn--4bi` (✉️).\n\nFor the Zone apex, use `@`.\n",
|
|
1722
|
+
"routing": {
|
|
1723
|
+
"send": {
|
|
1724
|
+
"property": "name",
|
|
1725
|
+
"propertyInDotNotation": false,
|
|
1726
|
+
"type": "body",
|
|
1727
|
+
"value": "={{ $value }}"
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
"displayOptions": {
|
|
1731
|
+
"show": {
|
|
1732
|
+
"resource": [
|
|
1733
|
+
"Zones"
|
|
1734
|
+
],
|
|
1735
|
+
"operation": [
|
|
1736
|
+
"Create Rrset"
|
|
1737
|
+
]
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
},
|
|
1741
|
+
{
|
|
1742
|
+
"required": true,
|
|
1743
|
+
"displayName": "Records",
|
|
1744
|
+
"name": "records",
|
|
1745
|
+
"type": "json",
|
|
1746
|
+
"default": "[\n {\n \"comment\": \"My web server at Hetzner Cloud.\",\n \"value\": \"198.51.100.1\"\n }\n]",
|
|
1747
|
+
"description": "Records of the RRSet.\n\nMust not be empty and must only contain distinct record values.\nThe order of records returned in responses is not guaranteed to be consistent.\n",
|
|
1748
|
+
"routing": {
|
|
1749
|
+
"send": {
|
|
1750
|
+
"property": "records",
|
|
1751
|
+
"propertyInDotNotation": false,
|
|
1752
|
+
"type": "body",
|
|
1753
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1754
|
+
}
|
|
1755
|
+
},
|
|
1756
|
+
"displayOptions": {
|
|
1757
|
+
"show": {
|
|
1758
|
+
"resource": [
|
|
1759
|
+
"Zones"
|
|
1760
|
+
],
|
|
1761
|
+
"operation": [
|
|
1762
|
+
"Create Rrset"
|
|
1763
|
+
]
|
|
1764
|
+
}
|
|
1765
|
+
}
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"displayName": "Ttl",
|
|
1769
|
+
"name": "ttl",
|
|
1770
|
+
"type": "number",
|
|
1771
|
+
"default": 3600,
|
|
1772
|
+
"description": "Time To Live (TTL) of the RRSet.\n\nMust be in between 60s and 2147483647s.\n\nIf not set, the Zone's Default TTL is used.\n",
|
|
1773
|
+
"routing": {
|
|
1774
|
+
"send": {
|
|
1775
|
+
"property": "ttl",
|
|
1776
|
+
"propertyInDotNotation": false,
|
|
1777
|
+
"type": "body",
|
|
1778
|
+
"value": "={{ $value }}"
|
|
1779
|
+
}
|
|
1780
|
+
},
|
|
1781
|
+
"displayOptions": {
|
|
1782
|
+
"show": {
|
|
1783
|
+
"resource": [
|
|
1784
|
+
"Zones"
|
|
1785
|
+
],
|
|
1786
|
+
"operation": [
|
|
1787
|
+
"Create Rrset"
|
|
1788
|
+
]
|
|
1789
|
+
}
|
|
1790
|
+
}
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"required": true,
|
|
1794
|
+
"displayName": "Type",
|
|
1795
|
+
"name": "type",
|
|
1796
|
+
"type": "options",
|
|
1797
|
+
"default": "A",
|
|
1798
|
+
"description": "Type of the RRSet.\n",
|
|
1799
|
+
"options": [
|
|
1800
|
+
{
|
|
1801
|
+
"name": "A",
|
|
1802
|
+
"value": "A"
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
"name": "AAAA",
|
|
1806
|
+
"value": "AAAA"
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
"name": "CAA",
|
|
1810
|
+
"value": "CAA"
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
"name": "CNAME",
|
|
1814
|
+
"value": "CNAME"
|
|
1815
|
+
},
|
|
1816
|
+
{
|
|
1817
|
+
"name": "DS",
|
|
1818
|
+
"value": "DS"
|
|
1819
|
+
},
|
|
1820
|
+
{
|
|
1821
|
+
"name": "HINFO",
|
|
1822
|
+
"value": "HINFO"
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
"name": "HTTPS",
|
|
1826
|
+
"value": "HTTPS"
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"name": "MX",
|
|
1830
|
+
"value": "MX"
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"name": "NS",
|
|
1834
|
+
"value": "NS"
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
"name": "PTR",
|
|
1838
|
+
"value": "PTR"
|
|
1839
|
+
},
|
|
1840
|
+
{
|
|
1841
|
+
"name": "RP",
|
|
1842
|
+
"value": "RP"
|
|
1843
|
+
},
|
|
1844
|
+
{
|
|
1845
|
+
"name": "SOA",
|
|
1846
|
+
"value": "SOA"
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
"name": "SRV",
|
|
1850
|
+
"value": "SRV"
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
"name": "SVCB",
|
|
1854
|
+
"value": "SVCB"
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
"name": "TLSA",
|
|
1858
|
+
"value": "TLSA"
|
|
1859
|
+
},
|
|
1860
|
+
{
|
|
1861
|
+
"name": "TXT",
|
|
1862
|
+
"value": "TXT"
|
|
1863
|
+
}
|
|
1864
|
+
],
|
|
1865
|
+
"routing": {
|
|
1866
|
+
"send": {
|
|
1867
|
+
"property": "type",
|
|
1868
|
+
"propertyInDotNotation": false,
|
|
1869
|
+
"type": "body",
|
|
1870
|
+
"value": "={{ $value }}"
|
|
1871
|
+
}
|
|
1872
|
+
},
|
|
1873
|
+
"displayOptions": {
|
|
1874
|
+
"show": {
|
|
1875
|
+
"resource": [
|
|
1876
|
+
"Zones"
|
|
1877
|
+
],
|
|
1878
|
+
"operation": [
|
|
1879
|
+
"Create Rrset"
|
|
1880
|
+
]
|
|
1881
|
+
}
|
|
1882
|
+
}
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
"displayName": "DELETE /zones/{id_or_name}/rrsets/{rr_name}/{rr_type}",
|
|
1886
|
+
"name": "operation",
|
|
1887
|
+
"type": "notice",
|
|
1888
|
+
"typeOptions": {
|
|
1889
|
+
"theme": "info"
|
|
1890
|
+
},
|
|
1891
|
+
"default": "",
|
|
1892
|
+
"displayOptions": {
|
|
1893
|
+
"show": {
|
|
1894
|
+
"resource": [
|
|
1895
|
+
"Zones"
|
|
1896
|
+
],
|
|
1897
|
+
"operation": [
|
|
1898
|
+
"Delete Rrset"
|
|
1899
|
+
]
|
|
1900
|
+
}
|
|
1901
|
+
}
|
|
1902
|
+
},
|
|
1903
|
+
{
|
|
1904
|
+
"displayName": "Id Or Name",
|
|
1905
|
+
"name": "id_or_name",
|
|
1906
|
+
"required": true,
|
|
1907
|
+
"description": "ID or Name of the Zone.",
|
|
1908
|
+
"default": "",
|
|
1909
|
+
"type": "string",
|
|
1910
|
+
"displayOptions": {
|
|
1911
|
+
"show": {
|
|
1912
|
+
"resource": [
|
|
1913
|
+
"Zones"
|
|
1914
|
+
],
|
|
1915
|
+
"operation": [
|
|
1916
|
+
"Delete Rrset"
|
|
1917
|
+
]
|
|
1918
|
+
}
|
|
1919
|
+
}
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
"displayName": "Rr Name",
|
|
1923
|
+
"name": "rr_name",
|
|
1924
|
+
"required": true,
|
|
1925
|
+
"description": "Name of the RRSet.\n\nThe name must be in lower case, and must not end with a dot or the Zone\nname. Names containing non-ASCII characters must be transcribed to\n[Punycode](https://wikipedia.org/wiki/Punycode) representation with ACE prefix, e.g.\n`xn--4bi` (✉️).\n\nFor the Zone apex, use `@`.\n",
|
|
1926
|
+
"default": "www",
|
|
1927
|
+
"type": "string",
|
|
1928
|
+
"displayOptions": {
|
|
1929
|
+
"show": {
|
|
1930
|
+
"resource": [
|
|
1931
|
+
"Zones"
|
|
1932
|
+
],
|
|
1933
|
+
"operation": [
|
|
1934
|
+
"Delete Rrset"
|
|
1935
|
+
]
|
|
1936
|
+
}
|
|
1937
|
+
}
|
|
1938
|
+
},
|
|
1939
|
+
{
|
|
1940
|
+
"displayName": "Rr Type",
|
|
1941
|
+
"name": "rr_type",
|
|
1942
|
+
"required": true,
|
|
1943
|
+
"description": "Type of the RRSet.\n",
|
|
1944
|
+
"default": "A",
|
|
1945
|
+
"type": "options",
|
|
1946
|
+
"options": [
|
|
1947
|
+
{
|
|
1948
|
+
"name": "A",
|
|
1949
|
+
"value": "A"
|
|
1950
|
+
},
|
|
1951
|
+
{
|
|
1952
|
+
"name": "AAAA",
|
|
1953
|
+
"value": "AAAA"
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"name": "CAA",
|
|
1957
|
+
"value": "CAA"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"name": "CNAME",
|
|
1961
|
+
"value": "CNAME"
|
|
1962
|
+
},
|
|
1963
|
+
{
|
|
1964
|
+
"name": "DS",
|
|
1965
|
+
"value": "DS"
|
|
1966
|
+
},
|
|
1967
|
+
{
|
|
1968
|
+
"name": "HINFO",
|
|
1969
|
+
"value": "HINFO"
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"name": "HTTPS",
|
|
1973
|
+
"value": "HTTPS"
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
"name": "MX",
|
|
1977
|
+
"value": "MX"
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"name": "NS",
|
|
1981
|
+
"value": "NS"
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
"name": "PTR",
|
|
1985
|
+
"value": "PTR"
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"name": "RP",
|
|
1989
|
+
"value": "RP"
|
|
1990
|
+
},
|
|
1991
|
+
{
|
|
1992
|
+
"name": "SOA",
|
|
1993
|
+
"value": "SOA"
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"name": "SRV",
|
|
1997
|
+
"value": "SRV"
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
"name": "SVCB",
|
|
2001
|
+
"value": "SVCB"
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"name": "TLSA",
|
|
2005
|
+
"value": "TLSA"
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
"name": "TXT",
|
|
2009
|
+
"value": "TXT"
|
|
2010
|
+
}
|
|
2011
|
+
],
|
|
2012
|
+
"displayOptions": {
|
|
2013
|
+
"show": {
|
|
2014
|
+
"resource": [
|
|
2015
|
+
"Zones"
|
|
2016
|
+
],
|
|
2017
|
+
"operation": [
|
|
2018
|
+
"Delete Rrset"
|
|
2019
|
+
]
|
|
2020
|
+
}
|
|
2021
|
+
}
|
|
2022
|
+
},
|
|
2023
|
+
{
|
|
2024
|
+
"displayName": "GET /zones/{id_or_name}/rrsets/{rr_name}/{rr_type}",
|
|
2025
|
+
"name": "operation",
|
|
2026
|
+
"type": "notice",
|
|
2027
|
+
"typeOptions": {
|
|
2028
|
+
"theme": "info"
|
|
2029
|
+
},
|
|
2030
|
+
"default": "",
|
|
2031
|
+
"displayOptions": {
|
|
2032
|
+
"show": {
|
|
2033
|
+
"resource": [
|
|
2034
|
+
"Zones"
|
|
2035
|
+
],
|
|
2036
|
+
"operation": [
|
|
2037
|
+
"Get Rrset"
|
|
2038
|
+
]
|
|
2039
|
+
}
|
|
2040
|
+
}
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
"displayName": "Id Or Name",
|
|
2044
|
+
"name": "id_or_name",
|
|
2045
|
+
"required": true,
|
|
2046
|
+
"description": "ID or Name of the Zone.",
|
|
2047
|
+
"default": "",
|
|
2048
|
+
"type": "string",
|
|
2049
|
+
"displayOptions": {
|
|
2050
|
+
"show": {
|
|
2051
|
+
"resource": [
|
|
2052
|
+
"Zones"
|
|
2053
|
+
],
|
|
2054
|
+
"operation": [
|
|
2055
|
+
"Get Rrset"
|
|
2056
|
+
]
|
|
2057
|
+
}
|
|
2058
|
+
}
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
"displayName": "Rr Name",
|
|
2062
|
+
"name": "rr_name",
|
|
2063
|
+
"required": true,
|
|
2064
|
+
"description": "Name of the RRSet.\n\nThe name must be in lower case, and must not end with a dot or the Zone\nname. Names containing non-ASCII characters must be transcribed to\n[Punycode](https://wikipedia.org/wiki/Punycode) representation with ACE prefix, e.g.\n`xn--4bi` (✉️).\n\nFor the Zone apex, use `@`.\n",
|
|
2065
|
+
"default": "www",
|
|
2066
|
+
"type": "string",
|
|
2067
|
+
"displayOptions": {
|
|
2068
|
+
"show": {
|
|
2069
|
+
"resource": [
|
|
2070
|
+
"Zones"
|
|
2071
|
+
],
|
|
2072
|
+
"operation": [
|
|
2073
|
+
"Get Rrset"
|
|
2074
|
+
]
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
"displayName": "Rr Type",
|
|
2080
|
+
"name": "rr_type",
|
|
2081
|
+
"required": true,
|
|
2082
|
+
"description": "Type of the RRSet.\n",
|
|
2083
|
+
"default": "A",
|
|
2084
|
+
"type": "options",
|
|
2085
|
+
"options": [
|
|
2086
|
+
{
|
|
2087
|
+
"name": "A",
|
|
2088
|
+
"value": "A"
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
"name": "AAAA",
|
|
2092
|
+
"value": "AAAA"
|
|
2093
|
+
},
|
|
2094
|
+
{
|
|
2095
|
+
"name": "CAA",
|
|
2096
|
+
"value": "CAA"
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
"name": "CNAME",
|
|
2100
|
+
"value": "CNAME"
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
"name": "DS",
|
|
2104
|
+
"value": "DS"
|
|
2105
|
+
},
|
|
2106
|
+
{
|
|
2107
|
+
"name": "HINFO",
|
|
2108
|
+
"value": "HINFO"
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
"name": "HTTPS",
|
|
2112
|
+
"value": "HTTPS"
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
"name": "MX",
|
|
2116
|
+
"value": "MX"
|
|
2117
|
+
},
|
|
2118
|
+
{
|
|
2119
|
+
"name": "NS",
|
|
2120
|
+
"value": "NS"
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
"name": "PTR",
|
|
2124
|
+
"value": "PTR"
|
|
2125
|
+
},
|
|
2126
|
+
{
|
|
2127
|
+
"name": "RP",
|
|
2128
|
+
"value": "RP"
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"name": "SOA",
|
|
2132
|
+
"value": "SOA"
|
|
2133
|
+
},
|
|
2134
|
+
{
|
|
2135
|
+
"name": "SRV",
|
|
2136
|
+
"value": "SRV"
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
"name": "SVCB",
|
|
2140
|
+
"value": "SVCB"
|
|
2141
|
+
},
|
|
2142
|
+
{
|
|
2143
|
+
"name": "TLSA",
|
|
2144
|
+
"value": "TLSA"
|
|
2145
|
+
},
|
|
2146
|
+
{
|
|
2147
|
+
"name": "TXT",
|
|
2148
|
+
"value": "TXT"
|
|
2149
|
+
}
|
|
2150
|
+
],
|
|
2151
|
+
"displayOptions": {
|
|
2152
|
+
"show": {
|
|
2153
|
+
"resource": [
|
|
2154
|
+
"Zones"
|
|
2155
|
+
],
|
|
2156
|
+
"operation": [
|
|
2157
|
+
"Get Rrset"
|
|
2158
|
+
]
|
|
2159
|
+
}
|
|
2160
|
+
}
|
|
2161
|
+
},
|
|
2162
|
+
{
|
|
2163
|
+
"displayName": "PUT /zones/{id_or_name}/rrsets/{rr_name}/{rr_type}",
|
|
2164
|
+
"name": "operation",
|
|
2165
|
+
"type": "notice",
|
|
2166
|
+
"typeOptions": {
|
|
2167
|
+
"theme": "info"
|
|
2168
|
+
},
|
|
2169
|
+
"default": "",
|
|
2170
|
+
"displayOptions": {
|
|
2171
|
+
"show": {
|
|
2172
|
+
"resource": [
|
|
2173
|
+
"Zones"
|
|
2174
|
+
],
|
|
2175
|
+
"operation": [
|
|
2176
|
+
"Replace Rrset"
|
|
2177
|
+
]
|
|
2178
|
+
}
|
|
2179
|
+
}
|
|
2180
|
+
},
|
|
2181
|
+
{
|
|
2182
|
+
"displayName": "Id Or Name",
|
|
2183
|
+
"name": "id_or_name",
|
|
2184
|
+
"required": true,
|
|
2185
|
+
"description": "ID or Name of the Zone.",
|
|
2186
|
+
"default": "",
|
|
2187
|
+
"type": "string",
|
|
2188
|
+
"displayOptions": {
|
|
2189
|
+
"show": {
|
|
2190
|
+
"resource": [
|
|
2191
|
+
"Zones"
|
|
2192
|
+
],
|
|
2193
|
+
"operation": [
|
|
2194
|
+
"Replace Rrset"
|
|
2195
|
+
]
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
"displayName": "Rr Name",
|
|
2201
|
+
"name": "rr_name",
|
|
2202
|
+
"required": true,
|
|
2203
|
+
"description": "Name of the RRSet.\n\nThe name must be in lower case, and must not end with a dot or the Zone\nname. Names containing non-ASCII characters must be transcribed to\n[Punycode](https://wikipedia.org/wiki/Punycode) representation with ACE prefix, e.g.\n`xn--4bi` (✉️).\n\nFor the Zone apex, use `@`.\n",
|
|
2204
|
+
"default": "www",
|
|
2205
|
+
"type": "string",
|
|
2206
|
+
"displayOptions": {
|
|
2207
|
+
"show": {
|
|
2208
|
+
"resource": [
|
|
2209
|
+
"Zones"
|
|
2210
|
+
],
|
|
2211
|
+
"operation": [
|
|
2212
|
+
"Replace Rrset"
|
|
2213
|
+
]
|
|
2214
|
+
}
|
|
2215
|
+
}
|
|
2216
|
+
},
|
|
2217
|
+
{
|
|
2218
|
+
"displayName": "Rr Type",
|
|
2219
|
+
"name": "rr_type",
|
|
2220
|
+
"required": true,
|
|
2221
|
+
"description": "Type of the RRSet.\n",
|
|
2222
|
+
"default": "A",
|
|
2223
|
+
"type": "options",
|
|
2224
|
+
"options": [
|
|
2225
|
+
{
|
|
2226
|
+
"name": "A",
|
|
2227
|
+
"value": "A"
|
|
2228
|
+
},
|
|
2229
|
+
{
|
|
2230
|
+
"name": "AAAA",
|
|
2231
|
+
"value": "AAAA"
|
|
2232
|
+
},
|
|
2233
|
+
{
|
|
2234
|
+
"name": "CAA",
|
|
2235
|
+
"value": "CAA"
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
"name": "CNAME",
|
|
2239
|
+
"value": "CNAME"
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"name": "DS",
|
|
2243
|
+
"value": "DS"
|
|
2244
|
+
},
|
|
2245
|
+
{
|
|
2246
|
+
"name": "HINFO",
|
|
2247
|
+
"value": "HINFO"
|
|
2248
|
+
},
|
|
2249
|
+
{
|
|
2250
|
+
"name": "HTTPS",
|
|
2251
|
+
"value": "HTTPS"
|
|
2252
|
+
},
|
|
2253
|
+
{
|
|
2254
|
+
"name": "MX",
|
|
2255
|
+
"value": "MX"
|
|
2256
|
+
},
|
|
2257
|
+
{
|
|
2258
|
+
"name": "NS",
|
|
2259
|
+
"value": "NS"
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
"name": "PTR",
|
|
2263
|
+
"value": "PTR"
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"name": "RP",
|
|
2267
|
+
"value": "RP"
|
|
2268
|
+
},
|
|
2269
|
+
{
|
|
2270
|
+
"name": "SOA",
|
|
2271
|
+
"value": "SOA"
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
"name": "SRV",
|
|
2275
|
+
"value": "SRV"
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
"name": "SVCB",
|
|
2279
|
+
"value": "SVCB"
|
|
2280
|
+
},
|
|
2281
|
+
{
|
|
2282
|
+
"name": "TLSA",
|
|
2283
|
+
"value": "TLSA"
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
"name": "TXT",
|
|
2287
|
+
"value": "TXT"
|
|
2288
|
+
}
|
|
2289
|
+
],
|
|
2290
|
+
"displayOptions": {
|
|
2291
|
+
"show": {
|
|
2292
|
+
"resource": [
|
|
2293
|
+
"Zones"
|
|
2294
|
+
],
|
|
2295
|
+
"operation": [
|
|
2296
|
+
"Replace Rrset"
|
|
2297
|
+
]
|
|
2298
|
+
}
|
|
2299
|
+
}
|
|
2300
|
+
},
|
|
2301
|
+
{
|
|
2302
|
+
"displayName": "Labels",
|
|
2303
|
+
"name": "labels",
|
|
2304
|
+
"type": "json",
|
|
2305
|
+
"default": "{\n \"environment\": \"prod\",\n \"example.com/my\": \"label\",\n \"just-a-key\": \"\"\n}",
|
|
2306
|
+
"description": "User-defined labels (`key/value` pairs) for the Resource.\nFor more information, see \"Labels\".\n | User-defined labels (`key/value` pairs) for the Resource.\n\nNote that the set of Labels provided in the request will overwrite the\nexisting one.\n\nFor more information, see \"Labels\".\n",
|
|
2307
|
+
"routing": {
|
|
2308
|
+
"send": {
|
|
2309
|
+
"property": "labels",
|
|
2310
|
+
"propertyInDotNotation": false,
|
|
2311
|
+
"type": "body",
|
|
2312
|
+
"value": "={{ JSON.parse($value) }}"
|
|
2313
|
+
}
|
|
2314
|
+
},
|
|
2315
|
+
"displayOptions": {
|
|
2316
|
+
"show": {
|
|
2317
|
+
"resource": [
|
|
2318
|
+
"Zones"
|
|
2319
|
+
],
|
|
2320
|
+
"operation": [
|
|
2321
|
+
"Replace Rrset"
|
|
2322
|
+
]
|
|
2323
|
+
}
|
|
2324
|
+
}
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"displayName": "POST /zones/{id_or_name}/rrsets/{rr_name}/{rr_type}/actions/add_records",
|
|
2328
|
+
"name": "operation",
|
|
2329
|
+
"type": "notice",
|
|
2330
|
+
"typeOptions": {
|
|
2331
|
+
"theme": "info"
|
|
2332
|
+
},
|
|
2333
|
+
"default": "",
|
|
2334
|
+
"displayOptions": {
|
|
2335
|
+
"show": {
|
|
2336
|
+
"resource": [
|
|
2337
|
+
"Zones"
|
|
2338
|
+
],
|
|
2339
|
+
"operation": [
|
|
2340
|
+
"Add Records To Rrset"
|
|
2341
|
+
]
|
|
2342
|
+
}
|
|
2343
|
+
}
|
|
2344
|
+
},
|
|
2345
|
+
{
|
|
2346
|
+
"displayName": "Id Or Name",
|
|
2347
|
+
"name": "id_or_name",
|
|
2348
|
+
"required": true,
|
|
2349
|
+
"description": "ID or Name of the Zone.",
|
|
2350
|
+
"default": "",
|
|
2351
|
+
"type": "string",
|
|
2352
|
+
"displayOptions": {
|
|
2353
|
+
"show": {
|
|
2354
|
+
"resource": [
|
|
2355
|
+
"Zones"
|
|
2356
|
+
],
|
|
2357
|
+
"operation": [
|
|
2358
|
+
"Add Records To Rrset"
|
|
2359
|
+
]
|
|
2360
|
+
}
|
|
2361
|
+
}
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
"displayName": "Rr Name",
|
|
2365
|
+
"name": "rr_name",
|
|
2366
|
+
"required": true,
|
|
2367
|
+
"description": "Name of the RRSet.\n\nThe name must be in lower case, and must not end with a dot or the Zone\nname. Names containing non-ASCII characters must be transcribed to\n[Punycode](https://wikipedia.org/wiki/Punycode) representation with ACE prefix, e.g.\n`xn--4bi` (✉️).\n\nFor the Zone apex, use `@`.\n",
|
|
2368
|
+
"default": "www",
|
|
2369
|
+
"type": "string",
|
|
2370
|
+
"displayOptions": {
|
|
2371
|
+
"show": {
|
|
2372
|
+
"resource": [
|
|
2373
|
+
"Zones"
|
|
2374
|
+
],
|
|
2375
|
+
"operation": [
|
|
2376
|
+
"Add Records To Rrset"
|
|
2377
|
+
]
|
|
2378
|
+
}
|
|
2379
|
+
}
|
|
2380
|
+
},
|
|
2381
|
+
{
|
|
2382
|
+
"displayName": "Rr Type",
|
|
2383
|
+
"name": "rr_type",
|
|
2384
|
+
"required": true,
|
|
2385
|
+
"description": "Type of the RRSet.\n",
|
|
2386
|
+
"default": "A",
|
|
2387
|
+
"type": "options",
|
|
2388
|
+
"options": [
|
|
2389
|
+
{
|
|
2390
|
+
"name": "A",
|
|
2391
|
+
"value": "A"
|
|
2392
|
+
},
|
|
2393
|
+
{
|
|
2394
|
+
"name": "AAAA",
|
|
2395
|
+
"value": "AAAA"
|
|
2396
|
+
},
|
|
2397
|
+
{
|
|
2398
|
+
"name": "CAA",
|
|
2399
|
+
"value": "CAA"
|
|
2400
|
+
},
|
|
2401
|
+
{
|
|
2402
|
+
"name": "CNAME",
|
|
2403
|
+
"value": "CNAME"
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
"name": "DS",
|
|
2407
|
+
"value": "DS"
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
"name": "HINFO",
|
|
2411
|
+
"value": "HINFO"
|
|
2412
|
+
},
|
|
2413
|
+
{
|
|
2414
|
+
"name": "HTTPS",
|
|
2415
|
+
"value": "HTTPS"
|
|
2416
|
+
},
|
|
2417
|
+
{
|
|
2418
|
+
"name": "MX",
|
|
2419
|
+
"value": "MX"
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
"name": "NS",
|
|
2423
|
+
"value": "NS"
|
|
2424
|
+
},
|
|
2425
|
+
{
|
|
2426
|
+
"name": "PTR",
|
|
2427
|
+
"value": "PTR"
|
|
2428
|
+
},
|
|
2429
|
+
{
|
|
2430
|
+
"name": "RP",
|
|
2431
|
+
"value": "RP"
|
|
2432
|
+
},
|
|
2433
|
+
{
|
|
2434
|
+
"name": "SOA",
|
|
2435
|
+
"value": "SOA"
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
"name": "SRV",
|
|
2439
|
+
"value": "SRV"
|
|
2440
|
+
},
|
|
2441
|
+
{
|
|
2442
|
+
"name": "SVCB",
|
|
2443
|
+
"value": "SVCB"
|
|
2444
|
+
},
|
|
2445
|
+
{
|
|
2446
|
+
"name": "TLSA",
|
|
2447
|
+
"value": "TLSA"
|
|
2448
|
+
},
|
|
2449
|
+
{
|
|
2450
|
+
"name": "TXT",
|
|
2451
|
+
"value": "TXT"
|
|
2452
|
+
}
|
|
2453
|
+
],
|
|
2454
|
+
"displayOptions": {
|
|
2455
|
+
"show": {
|
|
2456
|
+
"resource": [
|
|
2457
|
+
"Zones"
|
|
2458
|
+
],
|
|
2459
|
+
"operation": [
|
|
2460
|
+
"Add Records To Rrset"
|
|
2461
|
+
]
|
|
2462
|
+
}
|
|
2463
|
+
}
|
|
2464
|
+
},
|
|
2465
|
+
{
|
|
2466
|
+
"required": true,
|
|
2467
|
+
"displayName": "Records",
|
|
2468
|
+
"name": "records",
|
|
2469
|
+
"type": "json",
|
|
2470
|
+
"default": "[\n {\n \"comment\": \"My web server at Hetzner Cloud.\",\n \"value\": \"198.51.100.1\"\n }\n]",
|
|
2471
|
+
"description": "Records to add to the RRSet.\n\nMust not be empty and must only contain distinct record values.\n",
|
|
2472
|
+
"routing": {
|
|
2473
|
+
"send": {
|
|
2474
|
+
"property": "records",
|
|
2475
|
+
"propertyInDotNotation": false,
|
|
2476
|
+
"type": "body",
|
|
2477
|
+
"value": "={{ JSON.parse($value) }}"
|
|
2478
|
+
}
|
|
2479
|
+
},
|
|
2480
|
+
"displayOptions": {
|
|
2481
|
+
"show": {
|
|
2482
|
+
"resource": [
|
|
2483
|
+
"Zones"
|
|
2484
|
+
],
|
|
2485
|
+
"operation": [
|
|
2486
|
+
"Add Records To Rrset"
|
|
2487
|
+
]
|
|
2488
|
+
}
|
|
2489
|
+
}
|
|
2490
|
+
},
|
|
2491
|
+
{
|
|
2492
|
+
"displayName": "Ttl",
|
|
2493
|
+
"name": "ttl",
|
|
2494
|
+
"type": "number",
|
|
2495
|
+
"default": 3600,
|
|
2496
|
+
"description": "Time To Live (TTL) of the RRSet.\n\nIf not set, the Zone's Default TTL is used.\nIf set, and the RRSet being updated already has a TTL, the values must be the same.\n",
|
|
2497
|
+
"routing": {
|
|
2498
|
+
"send": {
|
|
2499
|
+
"property": "ttl",
|
|
2500
|
+
"propertyInDotNotation": false,
|
|
2501
|
+
"type": "body",
|
|
2502
|
+
"value": "={{ $value }}"
|
|
2503
|
+
}
|
|
2504
|
+
},
|
|
2505
|
+
"displayOptions": {
|
|
2506
|
+
"show": {
|
|
2507
|
+
"resource": [
|
|
2508
|
+
"Zones"
|
|
2509
|
+
],
|
|
2510
|
+
"operation": [
|
|
2511
|
+
"Add Records To Rrset"
|
|
2512
|
+
]
|
|
2513
|
+
}
|
|
2514
|
+
}
|
|
2515
|
+
},
|
|
2516
|
+
{
|
|
2517
|
+
"displayName": "POST /zones/{id_or_name}/rrsets/{rr_name}/{rr_type}/actions/change_protection",
|
|
2518
|
+
"name": "operation",
|
|
2519
|
+
"type": "notice",
|
|
2520
|
+
"typeOptions": {
|
|
2521
|
+
"theme": "info"
|
|
2522
|
+
},
|
|
2523
|
+
"default": "",
|
|
2524
|
+
"displayOptions": {
|
|
2525
|
+
"show": {
|
|
2526
|
+
"resource": [
|
|
2527
|
+
"Zones"
|
|
2528
|
+
],
|
|
2529
|
+
"operation": [
|
|
2530
|
+
"Change Rrsets Protection"
|
|
2531
|
+
]
|
|
2532
|
+
}
|
|
2533
|
+
}
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
"displayName": "Id Or Name",
|
|
2537
|
+
"name": "id_or_name",
|
|
2538
|
+
"required": true,
|
|
2539
|
+
"description": "ID or Name of the Zone.",
|
|
2540
|
+
"default": "",
|
|
2541
|
+
"type": "string",
|
|
2542
|
+
"displayOptions": {
|
|
2543
|
+
"show": {
|
|
2544
|
+
"resource": [
|
|
2545
|
+
"Zones"
|
|
2546
|
+
],
|
|
2547
|
+
"operation": [
|
|
2548
|
+
"Change Rrsets Protection"
|
|
2549
|
+
]
|
|
2550
|
+
}
|
|
2551
|
+
}
|
|
2552
|
+
},
|
|
2553
|
+
{
|
|
2554
|
+
"displayName": "Rr Name",
|
|
2555
|
+
"name": "rr_name",
|
|
2556
|
+
"required": true,
|
|
2557
|
+
"description": "Name of the RRSet.\n\nThe name must be in lower case, and must not end with a dot or the Zone\nname. Names containing non-ASCII characters must be transcribed to\n[Punycode](https://wikipedia.org/wiki/Punycode) representation with ACE prefix, e.g.\n`xn--4bi` (✉️).\n\nFor the Zone apex, use `@`.\n",
|
|
2558
|
+
"default": "www",
|
|
2559
|
+
"type": "string",
|
|
2560
|
+
"displayOptions": {
|
|
2561
|
+
"show": {
|
|
2562
|
+
"resource": [
|
|
2563
|
+
"Zones"
|
|
2564
|
+
],
|
|
2565
|
+
"operation": [
|
|
2566
|
+
"Change Rrsets Protection"
|
|
2567
|
+
]
|
|
2568
|
+
}
|
|
2569
|
+
}
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
"displayName": "Rr Type",
|
|
2573
|
+
"name": "rr_type",
|
|
2574
|
+
"required": true,
|
|
2575
|
+
"description": "Type of the RRSet.\n",
|
|
2576
|
+
"default": "A",
|
|
2577
|
+
"type": "options",
|
|
2578
|
+
"options": [
|
|
2579
|
+
{
|
|
2580
|
+
"name": "A",
|
|
2581
|
+
"value": "A"
|
|
2582
|
+
},
|
|
2583
|
+
{
|
|
2584
|
+
"name": "AAAA",
|
|
2585
|
+
"value": "AAAA"
|
|
2586
|
+
},
|
|
2587
|
+
{
|
|
2588
|
+
"name": "CAA",
|
|
2589
|
+
"value": "CAA"
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
"name": "CNAME",
|
|
2593
|
+
"value": "CNAME"
|
|
2594
|
+
},
|
|
2595
|
+
{
|
|
2596
|
+
"name": "DS",
|
|
2597
|
+
"value": "DS"
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
"name": "HINFO",
|
|
2601
|
+
"value": "HINFO"
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"name": "HTTPS",
|
|
2605
|
+
"value": "HTTPS"
|
|
2606
|
+
},
|
|
2607
|
+
{
|
|
2608
|
+
"name": "MX",
|
|
2609
|
+
"value": "MX"
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
"name": "NS",
|
|
2613
|
+
"value": "NS"
|
|
2614
|
+
},
|
|
2615
|
+
{
|
|
2616
|
+
"name": "PTR",
|
|
2617
|
+
"value": "PTR"
|
|
2618
|
+
},
|
|
2619
|
+
{
|
|
2620
|
+
"name": "RP",
|
|
2621
|
+
"value": "RP"
|
|
2622
|
+
},
|
|
2623
|
+
{
|
|
2624
|
+
"name": "SOA",
|
|
2625
|
+
"value": "SOA"
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
"name": "SRV",
|
|
2629
|
+
"value": "SRV"
|
|
2630
|
+
},
|
|
2631
|
+
{
|
|
2632
|
+
"name": "SVCB",
|
|
2633
|
+
"value": "SVCB"
|
|
2634
|
+
},
|
|
2635
|
+
{
|
|
2636
|
+
"name": "TLSA",
|
|
2637
|
+
"value": "TLSA"
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
"name": "TXT",
|
|
2641
|
+
"value": "TXT"
|
|
2642
|
+
}
|
|
2643
|
+
],
|
|
2644
|
+
"displayOptions": {
|
|
2645
|
+
"show": {
|
|
2646
|
+
"resource": [
|
|
2647
|
+
"Zones"
|
|
2648
|
+
],
|
|
2649
|
+
"operation": [
|
|
2650
|
+
"Change Rrsets Protection"
|
|
2651
|
+
]
|
|
2652
|
+
}
|
|
2653
|
+
}
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
"required": true,
|
|
2657
|
+
"displayName": "Change",
|
|
2658
|
+
"name": "change",
|
|
2659
|
+
"type": "boolean",
|
|
2660
|
+
"default": false,
|
|
2661
|
+
"description": "Prevent the Resource from being changed.",
|
|
2662
|
+
"routing": {
|
|
2663
|
+
"send": {
|
|
2664
|
+
"property": "change",
|
|
2665
|
+
"propertyInDotNotation": false,
|
|
2666
|
+
"type": "body",
|
|
2667
|
+
"value": "={{ $value }}"
|
|
2668
|
+
}
|
|
2669
|
+
},
|
|
2670
|
+
"displayOptions": {
|
|
2671
|
+
"show": {
|
|
2672
|
+
"resource": [
|
|
2673
|
+
"Zones"
|
|
2674
|
+
],
|
|
2675
|
+
"operation": [
|
|
2676
|
+
"Change Rrsets Protection"
|
|
2677
|
+
]
|
|
2678
|
+
}
|
|
2679
|
+
}
|
|
2680
|
+
},
|
|
2681
|
+
{
|
|
2682
|
+
"displayName": "POST /zones/{id_or_name}/rrsets/{rr_name}/{rr_type}/actions/change_ttl",
|
|
2683
|
+
"name": "operation",
|
|
2684
|
+
"type": "notice",
|
|
2685
|
+
"typeOptions": {
|
|
2686
|
+
"theme": "info"
|
|
2687
|
+
},
|
|
2688
|
+
"default": "",
|
|
2689
|
+
"displayOptions": {
|
|
2690
|
+
"show": {
|
|
2691
|
+
"resource": [
|
|
2692
|
+
"Zones"
|
|
2693
|
+
],
|
|
2694
|
+
"operation": [
|
|
2695
|
+
"Change Rrsets Ttl"
|
|
2696
|
+
]
|
|
2697
|
+
}
|
|
2698
|
+
}
|
|
2699
|
+
},
|
|
2700
|
+
{
|
|
2701
|
+
"displayName": "Id Or Name",
|
|
2702
|
+
"name": "id_or_name",
|
|
2703
|
+
"required": true,
|
|
2704
|
+
"description": "ID or Name of the Zone.",
|
|
2705
|
+
"default": "",
|
|
2706
|
+
"type": "string",
|
|
2707
|
+
"displayOptions": {
|
|
2708
|
+
"show": {
|
|
2709
|
+
"resource": [
|
|
2710
|
+
"Zones"
|
|
2711
|
+
],
|
|
2712
|
+
"operation": [
|
|
2713
|
+
"Change Rrsets Ttl"
|
|
2714
|
+
]
|
|
2715
|
+
}
|
|
2716
|
+
}
|
|
2717
|
+
},
|
|
2718
|
+
{
|
|
2719
|
+
"displayName": "Rr Name",
|
|
2720
|
+
"name": "rr_name",
|
|
2721
|
+
"required": true,
|
|
2722
|
+
"description": "Name of the RRSet.\n\nThe name must be in lower case, and must not end with a dot or the Zone\nname. Names containing non-ASCII characters must be transcribed to\n[Punycode](https://wikipedia.org/wiki/Punycode) representation with ACE prefix, e.g.\n`xn--4bi` (✉️).\n\nFor the Zone apex, use `@`.\n",
|
|
2723
|
+
"default": "www",
|
|
2724
|
+
"type": "string",
|
|
2725
|
+
"displayOptions": {
|
|
2726
|
+
"show": {
|
|
2727
|
+
"resource": [
|
|
2728
|
+
"Zones"
|
|
2729
|
+
],
|
|
2730
|
+
"operation": [
|
|
2731
|
+
"Change Rrsets Ttl"
|
|
2732
|
+
]
|
|
2733
|
+
}
|
|
2734
|
+
}
|
|
2735
|
+
},
|
|
2736
|
+
{
|
|
2737
|
+
"displayName": "Rr Type",
|
|
2738
|
+
"name": "rr_type",
|
|
2739
|
+
"required": true,
|
|
2740
|
+
"description": "Type of the RRSet.\n",
|
|
2741
|
+
"default": "A",
|
|
2742
|
+
"type": "options",
|
|
2743
|
+
"options": [
|
|
2744
|
+
{
|
|
2745
|
+
"name": "A",
|
|
2746
|
+
"value": "A"
|
|
2747
|
+
},
|
|
2748
|
+
{
|
|
2749
|
+
"name": "AAAA",
|
|
2750
|
+
"value": "AAAA"
|
|
2751
|
+
},
|
|
2752
|
+
{
|
|
2753
|
+
"name": "CAA",
|
|
2754
|
+
"value": "CAA"
|
|
2755
|
+
},
|
|
2756
|
+
{
|
|
2757
|
+
"name": "CNAME",
|
|
2758
|
+
"value": "CNAME"
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
"name": "DS",
|
|
2762
|
+
"value": "DS"
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
"name": "HINFO",
|
|
2766
|
+
"value": "HINFO"
|
|
2767
|
+
},
|
|
2768
|
+
{
|
|
2769
|
+
"name": "HTTPS",
|
|
2770
|
+
"value": "HTTPS"
|
|
2771
|
+
},
|
|
2772
|
+
{
|
|
2773
|
+
"name": "MX",
|
|
2774
|
+
"value": "MX"
|
|
2775
|
+
},
|
|
2776
|
+
{
|
|
2777
|
+
"name": "NS",
|
|
2778
|
+
"value": "NS"
|
|
2779
|
+
},
|
|
2780
|
+
{
|
|
2781
|
+
"name": "PTR",
|
|
2782
|
+
"value": "PTR"
|
|
2783
|
+
},
|
|
2784
|
+
{
|
|
2785
|
+
"name": "RP",
|
|
2786
|
+
"value": "RP"
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
"name": "SOA",
|
|
2790
|
+
"value": "SOA"
|
|
2791
|
+
},
|
|
2792
|
+
{
|
|
2793
|
+
"name": "SRV",
|
|
2794
|
+
"value": "SRV"
|
|
2795
|
+
},
|
|
2796
|
+
{
|
|
2797
|
+
"name": "SVCB",
|
|
2798
|
+
"value": "SVCB"
|
|
2799
|
+
},
|
|
2800
|
+
{
|
|
2801
|
+
"name": "TLSA",
|
|
2802
|
+
"value": "TLSA"
|
|
2803
|
+
},
|
|
2804
|
+
{
|
|
2805
|
+
"name": "TXT",
|
|
2806
|
+
"value": "TXT"
|
|
2807
|
+
}
|
|
2808
|
+
],
|
|
2809
|
+
"displayOptions": {
|
|
2810
|
+
"show": {
|
|
2811
|
+
"resource": [
|
|
2812
|
+
"Zones"
|
|
2813
|
+
],
|
|
2814
|
+
"operation": [
|
|
2815
|
+
"Change Rrsets Ttl"
|
|
2816
|
+
]
|
|
2817
|
+
}
|
|
2818
|
+
}
|
|
2819
|
+
},
|
|
2820
|
+
{
|
|
2821
|
+
"required": true,
|
|
2822
|
+
"displayName": "Ttl",
|
|
2823
|
+
"name": "ttl",
|
|
2824
|
+
"type": "number",
|
|
2825
|
+
"default": 3600,
|
|
2826
|
+
"description": "Time To Live (TTL) of the RRSet.\n\nMust be in between 60s and 2147483647s.\n\nIf not set, the Zone's Default TTL is used.\n",
|
|
2827
|
+
"routing": {
|
|
2828
|
+
"send": {
|
|
2829
|
+
"property": "ttl",
|
|
2830
|
+
"propertyInDotNotation": false,
|
|
2831
|
+
"type": "body",
|
|
2832
|
+
"value": "={{ $value }}"
|
|
2833
|
+
}
|
|
2834
|
+
},
|
|
2835
|
+
"displayOptions": {
|
|
2836
|
+
"show": {
|
|
2837
|
+
"resource": [
|
|
2838
|
+
"Zones"
|
|
2839
|
+
],
|
|
2840
|
+
"operation": [
|
|
2841
|
+
"Change Rrsets Ttl"
|
|
2842
|
+
]
|
|
2843
|
+
}
|
|
2844
|
+
}
|
|
2845
|
+
},
|
|
2846
|
+
{
|
|
2847
|
+
"displayName": "POST /zones/{id_or_name}/rrsets/{rr_name}/{rr_type}/actions/remove_records",
|
|
2848
|
+
"name": "operation",
|
|
2849
|
+
"type": "notice",
|
|
2850
|
+
"typeOptions": {
|
|
2851
|
+
"theme": "info"
|
|
2852
|
+
},
|
|
2853
|
+
"default": "",
|
|
2854
|
+
"displayOptions": {
|
|
2855
|
+
"show": {
|
|
2856
|
+
"resource": [
|
|
2857
|
+
"Zones"
|
|
2858
|
+
],
|
|
2859
|
+
"operation": [
|
|
2860
|
+
"Remove Records From Rrset"
|
|
2861
|
+
]
|
|
2862
|
+
}
|
|
2863
|
+
}
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
"displayName": "Id Or Name",
|
|
2867
|
+
"name": "id_or_name",
|
|
2868
|
+
"required": true,
|
|
2869
|
+
"description": "ID or Name of the Zone.",
|
|
2870
|
+
"default": "",
|
|
2871
|
+
"type": "string",
|
|
2872
|
+
"displayOptions": {
|
|
2873
|
+
"show": {
|
|
2874
|
+
"resource": [
|
|
2875
|
+
"Zones"
|
|
2876
|
+
],
|
|
2877
|
+
"operation": [
|
|
2878
|
+
"Remove Records From Rrset"
|
|
2879
|
+
]
|
|
2880
|
+
}
|
|
2881
|
+
}
|
|
2882
|
+
},
|
|
2883
|
+
{
|
|
2884
|
+
"displayName": "Rr Name",
|
|
2885
|
+
"name": "rr_name",
|
|
2886
|
+
"required": true,
|
|
2887
|
+
"description": "Name of the RRSet.\n\nThe name must be in lower case, and must not end with a dot or the Zone\nname. Names containing non-ASCII characters must be transcribed to\n[Punycode](https://wikipedia.org/wiki/Punycode) representation with ACE prefix, e.g.\n`xn--4bi` (✉️).\n\nFor the Zone apex, use `@`.\n",
|
|
2888
|
+
"default": "www",
|
|
2889
|
+
"type": "string",
|
|
2890
|
+
"displayOptions": {
|
|
2891
|
+
"show": {
|
|
2892
|
+
"resource": [
|
|
2893
|
+
"Zones"
|
|
2894
|
+
],
|
|
2895
|
+
"operation": [
|
|
2896
|
+
"Remove Records From Rrset"
|
|
2897
|
+
]
|
|
2898
|
+
}
|
|
2899
|
+
}
|
|
2900
|
+
},
|
|
2901
|
+
{
|
|
2902
|
+
"displayName": "Rr Type",
|
|
2903
|
+
"name": "rr_type",
|
|
2904
|
+
"required": true,
|
|
2905
|
+
"description": "Type of the RRSet.\n",
|
|
2906
|
+
"default": "A",
|
|
2907
|
+
"type": "options",
|
|
2908
|
+
"options": [
|
|
2909
|
+
{
|
|
2910
|
+
"name": "A",
|
|
2911
|
+
"value": "A"
|
|
2912
|
+
},
|
|
2913
|
+
{
|
|
2914
|
+
"name": "AAAA",
|
|
2915
|
+
"value": "AAAA"
|
|
2916
|
+
},
|
|
2917
|
+
{
|
|
2918
|
+
"name": "CAA",
|
|
2919
|
+
"value": "CAA"
|
|
2920
|
+
},
|
|
2921
|
+
{
|
|
2922
|
+
"name": "CNAME",
|
|
2923
|
+
"value": "CNAME"
|
|
2924
|
+
},
|
|
2925
|
+
{
|
|
2926
|
+
"name": "DS",
|
|
2927
|
+
"value": "DS"
|
|
2928
|
+
},
|
|
2929
|
+
{
|
|
2930
|
+
"name": "HINFO",
|
|
2931
|
+
"value": "HINFO"
|
|
2932
|
+
},
|
|
2933
|
+
{
|
|
2934
|
+
"name": "HTTPS",
|
|
2935
|
+
"value": "HTTPS"
|
|
2936
|
+
},
|
|
2937
|
+
{
|
|
2938
|
+
"name": "MX",
|
|
2939
|
+
"value": "MX"
|
|
2940
|
+
},
|
|
2941
|
+
{
|
|
2942
|
+
"name": "NS",
|
|
2943
|
+
"value": "NS"
|
|
2944
|
+
},
|
|
2945
|
+
{
|
|
2946
|
+
"name": "PTR",
|
|
2947
|
+
"value": "PTR"
|
|
2948
|
+
},
|
|
2949
|
+
{
|
|
2950
|
+
"name": "RP",
|
|
2951
|
+
"value": "RP"
|
|
2952
|
+
},
|
|
2953
|
+
{
|
|
2954
|
+
"name": "SOA",
|
|
2955
|
+
"value": "SOA"
|
|
2956
|
+
},
|
|
2957
|
+
{
|
|
2958
|
+
"name": "SRV",
|
|
2959
|
+
"value": "SRV"
|
|
2960
|
+
},
|
|
2961
|
+
{
|
|
2962
|
+
"name": "SVCB",
|
|
2963
|
+
"value": "SVCB"
|
|
2964
|
+
},
|
|
2965
|
+
{
|
|
2966
|
+
"name": "TLSA",
|
|
2967
|
+
"value": "TLSA"
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
"name": "TXT",
|
|
2971
|
+
"value": "TXT"
|
|
2972
|
+
}
|
|
2973
|
+
],
|
|
2974
|
+
"displayOptions": {
|
|
2975
|
+
"show": {
|
|
2976
|
+
"resource": [
|
|
2977
|
+
"Zones"
|
|
2978
|
+
],
|
|
2979
|
+
"operation": [
|
|
2980
|
+
"Remove Records From Rrset"
|
|
2981
|
+
]
|
|
2982
|
+
}
|
|
2983
|
+
}
|
|
2984
|
+
},
|
|
2985
|
+
{
|
|
2986
|
+
"required": true,
|
|
2987
|
+
"displayName": "Records",
|
|
2988
|
+
"name": "records",
|
|
2989
|
+
"type": "json",
|
|
2990
|
+
"default": "[\n {\n \"comment\": \"My web server at Hetzner Cloud.\",\n \"value\": \"198.51.100.1\"\n }\n]",
|
|
2991
|
+
"description": "Records to remove from the RRSet.\n\nMust not be empty and must only contain distinct record values.\n",
|
|
2992
|
+
"routing": {
|
|
2993
|
+
"send": {
|
|
2994
|
+
"property": "records",
|
|
2995
|
+
"propertyInDotNotation": false,
|
|
2996
|
+
"type": "body",
|
|
2997
|
+
"value": "={{ JSON.parse($value) }}"
|
|
2998
|
+
}
|
|
2999
|
+
},
|
|
3000
|
+
"displayOptions": {
|
|
3001
|
+
"show": {
|
|
3002
|
+
"resource": [
|
|
3003
|
+
"Zones"
|
|
3004
|
+
],
|
|
3005
|
+
"operation": [
|
|
3006
|
+
"Remove Records From Rrset"
|
|
3007
|
+
]
|
|
3008
|
+
}
|
|
3009
|
+
}
|
|
3010
|
+
},
|
|
3011
|
+
{
|
|
3012
|
+
"displayName": "POST /zones/{id_or_name}/rrsets/{rr_name}/{rr_type}/actions/set_records",
|
|
3013
|
+
"name": "operation",
|
|
3014
|
+
"type": "notice",
|
|
3015
|
+
"typeOptions": {
|
|
3016
|
+
"theme": "info"
|
|
3017
|
+
},
|
|
3018
|
+
"default": "",
|
|
3019
|
+
"displayOptions": {
|
|
3020
|
+
"show": {
|
|
3021
|
+
"resource": [
|
|
3022
|
+
"Zones"
|
|
3023
|
+
],
|
|
3024
|
+
"operation": [
|
|
3025
|
+
"Set Records Of Rrset"
|
|
3026
|
+
]
|
|
3027
|
+
}
|
|
3028
|
+
}
|
|
3029
|
+
},
|
|
3030
|
+
{
|
|
3031
|
+
"displayName": "Id Or Name",
|
|
3032
|
+
"name": "id_or_name",
|
|
3033
|
+
"required": true,
|
|
3034
|
+
"description": "ID or Name of the Zone.",
|
|
3035
|
+
"default": "",
|
|
3036
|
+
"type": "string",
|
|
3037
|
+
"displayOptions": {
|
|
3038
|
+
"show": {
|
|
3039
|
+
"resource": [
|
|
3040
|
+
"Zones"
|
|
3041
|
+
],
|
|
3042
|
+
"operation": [
|
|
3043
|
+
"Set Records Of Rrset"
|
|
3044
|
+
]
|
|
3045
|
+
}
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
{
|
|
3049
|
+
"displayName": "Rr Name",
|
|
3050
|
+
"name": "rr_name",
|
|
3051
|
+
"required": true,
|
|
3052
|
+
"description": "Name of the RRSet.\n\nThe name must be in lower case, and must not end with a dot or the Zone\nname. Names containing non-ASCII characters must be transcribed to\n[Punycode](https://wikipedia.org/wiki/Punycode) representation with ACE prefix, e.g.\n`xn--4bi` (✉️).\n\nFor the Zone apex, use `@`.\n",
|
|
3053
|
+
"default": "www",
|
|
3054
|
+
"type": "string",
|
|
3055
|
+
"displayOptions": {
|
|
3056
|
+
"show": {
|
|
3057
|
+
"resource": [
|
|
3058
|
+
"Zones"
|
|
3059
|
+
],
|
|
3060
|
+
"operation": [
|
|
3061
|
+
"Set Records Of Rrset"
|
|
3062
|
+
]
|
|
3063
|
+
}
|
|
3064
|
+
}
|
|
3065
|
+
},
|
|
3066
|
+
{
|
|
3067
|
+
"displayName": "Rr Type",
|
|
3068
|
+
"name": "rr_type",
|
|
3069
|
+
"required": true,
|
|
3070
|
+
"description": "Type of the RRSet.\n",
|
|
3071
|
+
"default": "A",
|
|
3072
|
+
"type": "options",
|
|
3073
|
+
"options": [
|
|
3074
|
+
{
|
|
3075
|
+
"name": "A",
|
|
3076
|
+
"value": "A"
|
|
3077
|
+
},
|
|
3078
|
+
{
|
|
3079
|
+
"name": "AAAA",
|
|
3080
|
+
"value": "AAAA"
|
|
3081
|
+
},
|
|
3082
|
+
{
|
|
3083
|
+
"name": "CAA",
|
|
3084
|
+
"value": "CAA"
|
|
3085
|
+
},
|
|
3086
|
+
{
|
|
3087
|
+
"name": "CNAME",
|
|
3088
|
+
"value": "CNAME"
|
|
3089
|
+
},
|
|
3090
|
+
{
|
|
3091
|
+
"name": "DS",
|
|
3092
|
+
"value": "DS"
|
|
3093
|
+
},
|
|
3094
|
+
{
|
|
3095
|
+
"name": "HINFO",
|
|
3096
|
+
"value": "HINFO"
|
|
3097
|
+
},
|
|
3098
|
+
{
|
|
3099
|
+
"name": "HTTPS",
|
|
3100
|
+
"value": "HTTPS"
|
|
3101
|
+
},
|
|
3102
|
+
{
|
|
3103
|
+
"name": "MX",
|
|
3104
|
+
"value": "MX"
|
|
3105
|
+
},
|
|
3106
|
+
{
|
|
3107
|
+
"name": "NS",
|
|
3108
|
+
"value": "NS"
|
|
3109
|
+
},
|
|
3110
|
+
{
|
|
3111
|
+
"name": "PTR",
|
|
3112
|
+
"value": "PTR"
|
|
3113
|
+
},
|
|
3114
|
+
{
|
|
3115
|
+
"name": "RP",
|
|
3116
|
+
"value": "RP"
|
|
3117
|
+
},
|
|
3118
|
+
{
|
|
3119
|
+
"name": "SOA",
|
|
3120
|
+
"value": "SOA"
|
|
3121
|
+
},
|
|
3122
|
+
{
|
|
3123
|
+
"name": "SRV",
|
|
3124
|
+
"value": "SRV"
|
|
3125
|
+
},
|
|
3126
|
+
{
|
|
3127
|
+
"name": "SVCB",
|
|
3128
|
+
"value": "SVCB"
|
|
3129
|
+
},
|
|
3130
|
+
{
|
|
3131
|
+
"name": "TLSA",
|
|
3132
|
+
"value": "TLSA"
|
|
3133
|
+
},
|
|
3134
|
+
{
|
|
3135
|
+
"name": "TXT",
|
|
3136
|
+
"value": "TXT"
|
|
3137
|
+
}
|
|
3138
|
+
],
|
|
3139
|
+
"displayOptions": {
|
|
3140
|
+
"show": {
|
|
3141
|
+
"resource": [
|
|
3142
|
+
"Zones"
|
|
3143
|
+
],
|
|
3144
|
+
"operation": [
|
|
3145
|
+
"Set Records Of Rrset"
|
|
3146
|
+
]
|
|
3147
|
+
}
|
|
3148
|
+
}
|
|
3149
|
+
},
|
|
3150
|
+
{
|
|
3151
|
+
"required": true,
|
|
3152
|
+
"displayName": "Records",
|
|
3153
|
+
"name": "records",
|
|
3154
|
+
"type": "json",
|
|
3155
|
+
"default": "[\n {\n \"comment\": \"My web server at Hetzner Cloud.\",\n \"value\": \"198.51.100.1\"\n }\n]",
|
|
3156
|
+
"description": "Records to set in the RRSet.\n\nMust not be empty and must only contain distinct record values.\n",
|
|
3157
|
+
"routing": {
|
|
3158
|
+
"send": {
|
|
3159
|
+
"property": "records",
|
|
3160
|
+
"propertyInDotNotation": false,
|
|
3161
|
+
"type": "body",
|
|
3162
|
+
"value": "={{ JSON.parse($value) }}"
|
|
3163
|
+
}
|
|
3164
|
+
},
|
|
3165
|
+
"displayOptions": {
|
|
3166
|
+
"show": {
|
|
3167
|
+
"resource": [
|
|
3168
|
+
"Zones"
|
|
3169
|
+
],
|
|
3170
|
+
"operation": [
|
|
3171
|
+
"Set Records Of Rrset"
|
|
3172
|
+
]
|
|
3173
|
+
}
|
|
3174
|
+
}
|
|
3175
|
+
},
|
|
3176
|
+
{
|
|
3177
|
+
"displayName": "POST /zones/{id_or_name}/rrsets/{rr_name}/{rr_type}/actions/update_records",
|
|
3178
|
+
"name": "operation",
|
|
3179
|
+
"type": "notice",
|
|
3180
|
+
"typeOptions": {
|
|
3181
|
+
"theme": "info"
|
|
3182
|
+
},
|
|
3183
|
+
"default": "",
|
|
3184
|
+
"displayOptions": {
|
|
3185
|
+
"show": {
|
|
3186
|
+
"resource": [
|
|
3187
|
+
"Zones"
|
|
3188
|
+
],
|
|
3189
|
+
"operation": [
|
|
3190
|
+
"Update Records Of Rrset"
|
|
3191
|
+
]
|
|
3192
|
+
}
|
|
3193
|
+
}
|
|
3194
|
+
},
|
|
3195
|
+
{
|
|
3196
|
+
"displayName": "Id Or Name",
|
|
3197
|
+
"name": "id_or_name",
|
|
3198
|
+
"required": true,
|
|
3199
|
+
"description": "ID or Name of the Zone.",
|
|
3200
|
+
"default": "",
|
|
3201
|
+
"type": "string",
|
|
3202
|
+
"displayOptions": {
|
|
3203
|
+
"show": {
|
|
3204
|
+
"resource": [
|
|
3205
|
+
"Zones"
|
|
3206
|
+
],
|
|
3207
|
+
"operation": [
|
|
3208
|
+
"Update Records Of Rrset"
|
|
3209
|
+
]
|
|
3210
|
+
}
|
|
3211
|
+
}
|
|
3212
|
+
},
|
|
3213
|
+
{
|
|
3214
|
+
"displayName": "Rr Name",
|
|
3215
|
+
"name": "rr_name",
|
|
3216
|
+
"required": true,
|
|
3217
|
+
"description": "Name of the RRSet.\n\nThe name must be in lower case, and must not end with a dot or the Zone\nname. Names containing non-ASCII characters must be transcribed to\n[Punycode](https://wikipedia.org/wiki/Punycode) representation with ACE prefix, e.g.\n`xn--4bi` (✉️).\n\nFor the Zone apex, use `@`.\n",
|
|
3218
|
+
"default": "www",
|
|
3219
|
+
"type": "string",
|
|
3220
|
+
"displayOptions": {
|
|
3221
|
+
"show": {
|
|
3222
|
+
"resource": [
|
|
3223
|
+
"Zones"
|
|
3224
|
+
],
|
|
3225
|
+
"operation": [
|
|
3226
|
+
"Update Records Of Rrset"
|
|
3227
|
+
]
|
|
3228
|
+
}
|
|
3229
|
+
}
|
|
3230
|
+
},
|
|
3231
|
+
{
|
|
3232
|
+
"displayName": "Rr Type",
|
|
3233
|
+
"name": "rr_type",
|
|
3234
|
+
"required": true,
|
|
3235
|
+
"description": "Type of the RRSet.\n",
|
|
3236
|
+
"default": "A",
|
|
3237
|
+
"type": "options",
|
|
3238
|
+
"options": [
|
|
3239
|
+
{
|
|
3240
|
+
"name": "A",
|
|
3241
|
+
"value": "A"
|
|
3242
|
+
},
|
|
3243
|
+
{
|
|
3244
|
+
"name": "AAAA",
|
|
3245
|
+
"value": "AAAA"
|
|
3246
|
+
},
|
|
3247
|
+
{
|
|
3248
|
+
"name": "CAA",
|
|
3249
|
+
"value": "CAA"
|
|
3250
|
+
},
|
|
3251
|
+
{
|
|
3252
|
+
"name": "CNAME",
|
|
3253
|
+
"value": "CNAME"
|
|
3254
|
+
},
|
|
3255
|
+
{
|
|
3256
|
+
"name": "DS",
|
|
3257
|
+
"value": "DS"
|
|
3258
|
+
},
|
|
3259
|
+
{
|
|
3260
|
+
"name": "HINFO",
|
|
3261
|
+
"value": "HINFO"
|
|
3262
|
+
},
|
|
3263
|
+
{
|
|
3264
|
+
"name": "HTTPS",
|
|
3265
|
+
"value": "HTTPS"
|
|
3266
|
+
},
|
|
3267
|
+
{
|
|
3268
|
+
"name": "MX",
|
|
3269
|
+
"value": "MX"
|
|
3270
|
+
},
|
|
3271
|
+
{
|
|
3272
|
+
"name": "NS",
|
|
3273
|
+
"value": "NS"
|
|
3274
|
+
},
|
|
3275
|
+
{
|
|
3276
|
+
"name": "PTR",
|
|
3277
|
+
"value": "PTR"
|
|
3278
|
+
},
|
|
3279
|
+
{
|
|
3280
|
+
"name": "RP",
|
|
3281
|
+
"value": "RP"
|
|
3282
|
+
},
|
|
3283
|
+
{
|
|
3284
|
+
"name": "SOA",
|
|
3285
|
+
"value": "SOA"
|
|
3286
|
+
},
|
|
3287
|
+
{
|
|
3288
|
+
"name": "SRV",
|
|
3289
|
+
"value": "SRV"
|
|
3290
|
+
},
|
|
3291
|
+
{
|
|
3292
|
+
"name": "SVCB",
|
|
3293
|
+
"value": "SVCB"
|
|
3294
|
+
},
|
|
3295
|
+
{
|
|
3296
|
+
"name": "TLSA",
|
|
3297
|
+
"value": "TLSA"
|
|
3298
|
+
},
|
|
3299
|
+
{
|
|
3300
|
+
"name": "TXT",
|
|
3301
|
+
"value": "TXT"
|
|
3302
|
+
}
|
|
3303
|
+
],
|
|
3304
|
+
"displayOptions": {
|
|
3305
|
+
"show": {
|
|
3306
|
+
"resource": [
|
|
3307
|
+
"Zones"
|
|
3308
|
+
],
|
|
3309
|
+
"operation": [
|
|
3310
|
+
"Update Records Of Rrset"
|
|
3311
|
+
]
|
|
3312
|
+
}
|
|
3313
|
+
}
|
|
3314
|
+
},
|
|
3315
|
+
{
|
|
3316
|
+
"required": true,
|
|
3317
|
+
"displayName": "Records",
|
|
3318
|
+
"name": "records",
|
|
3319
|
+
"type": "json",
|
|
3320
|
+
"default": "[\n {\n \"comment\": \"My web server at Hetzner Cloud.\",\n \"value\": \"198.51.100.1\"\n }\n]",
|
|
3321
|
+
"description": "Records to update in the RRSet.\n\nMust not be empty and must only contain distinct record values.\n",
|
|
3322
|
+
"routing": {
|
|
3323
|
+
"send": {
|
|
3324
|
+
"property": "records",
|
|
3325
|
+
"propertyInDotNotation": false,
|
|
3326
|
+
"type": "body",
|
|
3327
|
+
"value": "={{ JSON.parse($value) }}"
|
|
3328
|
+
}
|
|
3329
|
+
},
|
|
3330
|
+
"displayOptions": {
|
|
3331
|
+
"show": {
|
|
3332
|
+
"resource": [
|
|
3333
|
+
"Zones"
|
|
3334
|
+
],
|
|
3335
|
+
"operation": [
|
|
3336
|
+
"Update Records Of Rrset"
|
|
3337
|
+
]
|
|
3338
|
+
}
|
|
3339
|
+
}
|
|
3340
|
+
},
|
|
3341
|
+
{
|
|
3342
|
+
"displayName": "GET /zones/{id_or_name}/zonefile",
|
|
3343
|
+
"name": "operation",
|
|
3344
|
+
"type": "notice",
|
|
3345
|
+
"typeOptions": {
|
|
3346
|
+
"theme": "info"
|
|
3347
|
+
},
|
|
3348
|
+
"default": "",
|
|
3349
|
+
"displayOptions": {
|
|
3350
|
+
"show": {
|
|
3351
|
+
"resource": [
|
|
3352
|
+
"Zones"
|
|
3353
|
+
],
|
|
3354
|
+
"operation": [
|
|
3355
|
+
"Export Zone File"
|
|
3356
|
+
]
|
|
3357
|
+
}
|
|
3358
|
+
}
|
|
3359
|
+
},
|
|
3360
|
+
{
|
|
3361
|
+
"displayName": "Id Or Name",
|
|
3362
|
+
"name": "id_or_name",
|
|
3363
|
+
"required": true,
|
|
3364
|
+
"description": "ID or Name of the Zone.",
|
|
3365
|
+
"default": "",
|
|
3366
|
+
"type": "string",
|
|
3367
|
+
"displayOptions": {
|
|
3368
|
+
"show": {
|
|
3369
|
+
"resource": [
|
|
3370
|
+
"Zones"
|
|
3371
|
+
],
|
|
3372
|
+
"operation": [
|
|
3373
|
+
"Export Zone File"
|
|
3374
|
+
]
|
|
3375
|
+
}
|
|
3376
|
+
}
|
|
3377
|
+
},
|
|
3378
|
+
];
|
|
3379
|
+
//# sourceMappingURL=index.js.map
|