forked from aziontech/azionapi-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidns.yaml
582 lines (546 loc) · 14.8 KB
/
idns.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
openapi: 3.0.0
info:
title: Intelligent DNS
version: 3.0.0
description: Azion Intelligent DNS API
license:
name: MIT
url: https://github.com/aziontech/azionapi-openapi/blob/main/LICENSE.md
servers:
- url: https://api.azionapi.net
tags:
- name: Zones
description: Intelligent DNS hosted zones
- name: Records
description: Intelligent DNS zone records
- name: DNSSEC
description: Options for the Domain Name System Security Extensions
components:
schemas:
Zone:
type: object
properties:
id:
type: integer
description: Hosted zone id
name:
type: string
description: Hosted zone name
domain:
type: string
description: Hosted zone domain
is_active:
type: boolean
description: If hosted zone is active
retry:
type: integer
nullable: true
nx_ttl:
type: integer
nullable: true
soa_ttl:
type: integer
nullable: true
refresh:
type: integer
nullable: true
expiry:
type: integer
nullable: true
nameservers:
type: array
description: List of nameservers
nullable: true
items:
type: string
GetZonesResponse:
type: object
description: Object returned by get zones
properties:
schema_version:
type: integer
description: The schema version
count:
type: integer
description: Number of records
total_pages:
type: integer
description: The total pages
links:
type: object
properties:
previous:
type: string
nullable: true
next:
type: string
nullable: true
results:
type: array
description: Hosted zones collection
items:
$ref: '#/components/schemas/Zone'
GetZoneResponse:
type: object
description: Object returned by get zone
properties:
schema_version:
type: integer
description: The schema version
results:
$ref: '#/components/schemas/Zone'
PostOrPutZoneResponse:
type: object
description: Object returned by create or update zone
properties:
schema_version:
type: integer
description: The schema version
results:
type: array
description: The created hosted zone
items:
$ref: '#/components/schemas/Zone'
RecordGet:
type: object
properties:
record_id:
type: integer
entry:
type: string
description:
type: string
answers_list:
type: array
items:
type: string
policy:
type: string
weight:
type: integer
record_type:
type: string
ttl:
type: integer
RecordPostOrPut:
type: object
properties:
id:
type: integer
entry:
type: string
description:
type: string
answers_list:
type: array
items:
type: string
policy:
type: string
weight:
type: integer
record_type:
type: string
ttl:
type: integer
GetRecordsResponse:
type: object
description: Object returned by get zone record
properties:
schema_version:
type: integer
description: The schema version
count:
type: integer
description: Number of records
total_pages:
type: integer
description: The total pages
links:
type: object
properties:
previous:
type: string
nullable: true
next:
type: string
nullable: true
results:
type: object
properties:
zone_id:
type: integer
zone_domain:
type: string
records:
type: array
description: Zone records collection
items:
$ref: '#/components/schemas/RecordGet'
PostOrPutRecordResponse:
type: object
description: Object returned by create or update zone record
properties:
schema_version:
type: integer
description: The schema version
results:
$ref: '#/components/schemas/RecordPostOrPut'
DnsSec:
type: object
properties:
is_enabled:
type: boolean
status:
type: string
enum: [unconfigured, waiting, ready]
delegation_signer:
type: object
properties:
digest_type:
type: object
properties:
id:
type: integer
slug:
type: string
algorithm_type:
type: object
properties:
id:
type: integer
slug:
type: string
digest:
type: string
key_tag:
type: integer
minimum: 1
maximum: 65535
GetOrPatchDnsSecResponse:
type: object
description: Object returned by get zone DNSSEC
properties:
schema_version:
type: integer
description: The schema version
results:
$ref: '#/components/schemas/DnsSec'
ErrorsResponse:
type: object
properties:
errors:
type: array
items:
type: string
ErrorResponse:
type: object
properties:
detail:
type: string
parameters:
ZoneId:
name: zone_id
in: path
required: true
schema:
type: integer
minimum: 1
description: The hosted zone id
RecordId:
name: record_id
in: path
required: true
schema:
type: integer
minimum: 1
description: The zone record id
securitySchemes:
tokenAuth:
in: header
type: apiKey
name: Authorization
description: |
You must inform a token to auth.
Usage format: `Token <TOKEN>`
security:
- tokenAuth: []
paths:
/intelligent_dns:
get:
summary: Get a collection of Intelligent DNS zones
tags: [Zones]
operationId: getZones
responses:
'200':
description: Zones collection retrieved
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/GetZonesResponse'
'400':
description: Error
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/ErrorsResponse'
post:
summary: Add a new Intelligent DNS zone
tags: [Zones]
operationId: postZone
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Zone'
example:
name: New Intelligent DNS zone
domain: new.domain.com
is_active: true
responses:
'201':
description: Zone added
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/PostOrPutZoneResponse'
'400':
description: Error
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/ErrorsResponse'
/intelligent_dns/{zone_id}:
parameters:
- $ref: '#/components/parameters/ZoneId'
get:
summary: Get an Intelligent DNS hosted zone
tags: [Zones]
operationId: getZone
responses:
'200':
description: Zone retrieved
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/GetZoneResponse'
'404':
description: Zone not found
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/ErrorResponse'
put:
summary: Update an Intelligent DNS hosted zone
tags: [Zones]
operationId: putZone
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Zone'
example:
name: Update Intelligent DNS zone
domain: other.domain.com
is_active: true
responses:
'201':
description: Zone updated
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/PostOrPutZoneResponse'
'400':
description: Zone update error
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/ErrorsResponse'
delete:
summary: Remove an Intelligent DNS hosted zone
tags: [Zones]
operationId: deleteZone
responses:
'204':
description: Zone removed
content:
application/json; version=3:
schema:
type: string
nullable: true
'404':
description: Zone not found
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/ErrorResponse'
# NOTE: Although the PATCH method exists in the Azion's API,
# the server does not implement it. Leaving here for
# future reference.
#
# patch:
# summary: Change an Intelligent DNS hosted zone
# requestBody:
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Zone'
# example:
# name: Change Intelligent DNS zone
# domain: new.domain.com
# is_active: false
# responses:
# '201':
# description: Zone changed
# content:
# application/json; version=3:
# schema:
# $ref: '#/components/schemas/PostOrPutZoneResponse'
# '400':
# description: Zone change error
# content:
# application/json; version=3:
# schema:
# $ref: '#/components/schemas/ErrorsResponse'
/intelligent_dns/{zone_id}/records:
parameters:
- $ref: '#/components/parameters/ZoneId'
get:
summary: Get a collection of Intelligent DNS zone records
tags: [Records]
operationId: getZoneRecords
responses:
'200':
description: Zones collection retrieved
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/GetRecordsResponse'
'400':
description: Error
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/ErrorsResponse'
post:
summary: Create a new Intelligent DNS zone record
tags: [Records]
operationId: postZoneRecord
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/RecordPostOrPut'
example:
record_type: A
entry: site
description: Site record
ttl: 3600
answers_list: [1.2.3.4, 5.6.7.8]
responses:
'201':
description: Record added
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/PostOrPutRecordResponse'
'400':
description: Error
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/ErrorsResponse'
/intelligent_dns/{zone_id}/records/{record_id}:
parameters:
- $ref: '#/components/parameters/ZoneId'
- $ref: '#/components/parameters/RecordId'
put:
summary: Update an Intelligent DNS zone record
tags: [Records]
operationId: putZoneRecord
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/RecordPostOrPut'
example:
record_type: A
entry: site
description: Site record
ttl: 3600
answers_list: [1.2.3.4, 5.6.7.8, 1.1.2.2]
responses:
'200':
description: Record updated
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/PostOrPutRecordResponse'
'400':
description: Record update error
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/ErrorsResponse'
delete:
summary: Remove an Intelligent DNS zone record
tags: [Records]
operationId: deleteZoneRecord
responses:
'204':
description: Record removed
content:
application/json; version=3:
schema:
type: string
nullable: true
'404':
description: Record not found
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/ErrorResponse'
/intelligent_dns/{zone_id}/dnssec:
parameters:
- $ref: '#/components/parameters/ZoneId'
get:
summary: Retrieve the DNSSEC zone status
tags: [DNSSEC]
operationId: getZoneDnsSec
responses:
'200':
description: DNSSEC status retrieved
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/GetOrPatchDnsSecResponse'
'400':
description: Error
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/ErrorsResponse'
patch:
summary: Update the DNSSEC zone
tags: [DNSSEC]
operationId: putZoneDnsSec
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DnsSec'
example:
is_enabled: true
responses:
'201':
description: Zone updated
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/GetOrPatchDnsSecResponse'
'400':
description: Zone update error
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/ErrorsResponse'