-
Notifications
You must be signed in to change notification settings - Fork 263
/
Copy pathTS29556_Neasdf_DNSContext.yaml
729 lines (688 loc) · 22.5 KB
/
TS29556_Neasdf_DNSContext.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
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
openapi: 3.0.0
info:
version: '1.1.0-alpha.5'
title: 'Neasdf_DNSContext'
description: |
EASDF DNS Context Service.
© 2024, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
externalDocs:
description: 3GPP TS 29.556 V18.5.0; 5G System; Edge Application Server Discovery Services; Stage3
url: https://www.3gpp.org/ftp/Specs/archive/29_series/29.556/
servers:
- url: '{apiRoot}/neasdf-dnscontext/v1'
variables:
apiRoot:
default: https://example.com
description: apiRoot as defined in clause 4.4 of 3GPP TS 29.501.
security:
- {}
- oAuth2ClientCredentials:
- neasdf-dnscontext
paths:
/dns-contexts:
post:
summary: Create
tags:
- DNS contexts collection
operationId: CreateDnsContext
requestBody:
description: representation of the DNS context to be created in the EASDF
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DnsContextCreateData'
callbacks:
dnsContextNotification:
'{$request.body#/notifyUri}':
post:
requestBody: # contents of the DNS context Notify request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DnsContextNotification'
responses:
'204':
description: successful notification
'307':
$ref: 'TS29571_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29571_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'502':
$ref: 'TS29571_CommonData.yaml#/components/responses/502'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29571_CommonData.yaml#/components/responses/default'
responses:
'201':
description: successful creation of a DNS context
content:
application/json:
schema:
$ref: '#/components/schemas/DnsContextCreatedData'
headers:
Location:
description: >
'Contains the URI of the newly created resource, according to the structure:
{apiRoot}/neasdf-dnscontext/<apiVersion>/dns-contexts/{dnsContextId}'
required: true
schema:
type: string
'307':
$ref: 'TS29571_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29571_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29571_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'502':
$ref: 'TS29571_CommonData.yaml#/components/responses/502'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29571_CommonData.yaml#/components/responses/default'
/dns-contexts/{dnsContextId}:
delete:
summary: Delete the DNS Context
tags:
- Individual DNS context
operationId: DeleteDnsContext
parameters:
- name: dnsContextId
in: path
description: DNS context Identifier
required: true
schema:
type: string
responses:
'204':
description: successful deletion of an SM context
'307':
$ref: 'TS29571_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29571_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29571_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'502':
$ref: 'TS29571_CommonData.yaml#/components/responses/502'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29571_CommonData.yaml#/components/responses/default'
patch:
summary: Updates the DNS context
operationId: UpdateDnsContext
tags:
- Individual DNS context
parameters:
- name: dnsContextId
in: path
description: DNS context Identifier
required: true
schema:
type: string
- name: Content-Encoding
in: header
description: Content-Encoding, described in IETF RFC 7231
schema:
type: string
requestBody:
content:
application/json-patch+json:
schema:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PatchItem'
required: true
responses:
'200':
description: Partial update of the DNS context
content:
application/json:
schema:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PatchResult'
'204':
description: Successful update of the DNS context
headers:
Accept-Encoding:
description: Accept-Encoding, described in IETF RFC 7694
schema:
type: string
'307':
$ref: 'TS29571_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29571_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29571_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'501':
$ref: 'TS29571_CommonData.yaml#/components/responses/501'
'502':
$ref: 'TS29571_CommonData.yaml#/components/responses/502'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29571_CommonData.yaml#/components/responses/default'
put:
summary: Updates the DNS context (complete replacement)
operationId: ReplaceDnsContext
tags:
- Individual DNS context
parameters:
- name: dnsContextId
in: path
description: DNS context Identifier
required: true
schema:
type: string
- name: Content-Encoding
in: header
description: Content-Encoding, described in IETF RFC 7231
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DnsContextCreateData'
responses:
'204':
description: Successful update of the DNS context
headers:
Accept-Encoding:
description: Accept-Encoding, described in IETF RFC 7694
schema:
type: string
'307':
$ref: 'TS29571_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29571_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29571_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'501':
$ref: 'TS29571_CommonData.yaml#/components/responses/501'
'502':
$ref: 'TS29571_CommonData.yaml#/components/responses/502'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29571_CommonData.yaml#/components/responses/default'
components:
securitySchemes:
oAuth2ClientCredentials:
type: oauth2
flows:
clientCredentials:
tokenUrl: '{nrfApiRoot}/oauth2/token'
scopes:
neasdf-dnscontext: Access to the neasdf-dnscontext API
schemas:
#
# STRUCTURED DATA TYPES
#
DnsContextCreateData:
description: Data within Create request
type: object
properties:
ueIpv4Addr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv4Addr'
ueIpv6Prefix:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv6Prefix'
dnn:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Dnn'
sNssai:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Snssai'
hplmnId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PlmnId'
n6RoutingInfo:
$ref: '#/components/schemas/N6RoutingInfo'
dnsRules:
description: map of DNS message handling rules where a valid JSON string serves as key
type: object
additionalProperties:
$ref: '#/components/schemas/DnsRule'
minProperties: 1
notifyUri:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
required:
- dnn
- sNssai
- dnsRules
anyOf:
- required: [ ueIpv4Addr ]
- required: [ ueIpv6Prefix ]
DnsContextCreatedData:
description: Data within Create response
type: object
properties:
easdfIpv4Addr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv4Addr'
easdfIpv6Addr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv6Addr'
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
anyOf:
- required: [ easdfIpv4Addr ]
- required: [ easdfIpv6Addr ]
DnsRule:
description: DNS message handling rule
type: object
properties:
dnsRuleId:
type: string
label:
type: string
precedence:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uint32'
dnsQueryMdtList:
description: >
map of DNS query message detection templates where a valid JSON string serves as key
type: object
additionalProperties:
$ref: '#/components/schemas/DnsQueryMdt'
minProperties: 1
baseDnsQueryMdtList:
type: array
items:
$ref: '#/components/schemas/BaselineDnsQueryMdtInfo'
minItems: 1
dnsRspMdtList:
description: >
map of DNS response message detection templates where a valid JSON string serves as key
type: object
additionalProperties:
$ref: '#/components/schemas/DnsRspMdt'
minProperties: 1
baseDnsRspMdtList:
type: array
items:
$ref: '#/components/schemas/BaselineDnsRspMdtInfo'
minItems: 1
dnsMsgId:
type: string
actionList:
description: map of actions where a valid JSON string serves as key
type: object
additionalProperties:
$ref: '#/components/schemas/Action'
minProperties: 1
required:
- actionList
allOf:
- not:
required: [ dnsQueryMdtList, dnsRspMdtList ]
- not:
required: [ dnsQueryMdtList, baseDnsRspMdtList ]
- not:
required: [ baseDnsQueryMdtList, dnsRspMdtList ]
- not:
required: [ baseDnsQueryMdtList, baseDnsRspMdtList ]
DnsQueryMdt:
description: DNS Query message detection template
type: object
properties:
mdtId:
type: string
label:
type: string
sourceIpv4Addr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv4Addr'
sourceIpv6Prefix:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv6Prefix'
fqdnPatternList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/FqdnPatternMatchingRule'
minItems: 1
required:
- mdtId
DnsRspMdt:
description: DNS Response message detection template
type: object
properties:
mdtId:
type: string
label:
type: string
fqdnPatternList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/FqdnPatternMatchingRule'
minItems: 1
easIpv4AddrRanges:
type: array
items:
$ref: '#/components/schemas/Ipv4AddressRange'
minItems: 1
easIpv6PrefixRanges:
type: array
items:
$ref: '#/components/schemas/Ipv6PrefixRange'
minItems: 1
dnsServerSrcAddrList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/IpAddr'
minItems: 1
required:
- mdtId
Ipv4AddressRange:
description: Range of IPv4 addresses
type: object
properties:
start:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv4Addr'
end:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv4Addr'
required:
- start
- end
Ipv6PrefixRange:
description: Range of IPv6 prefixes
type: object
properties:
start:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv6Prefix'
end:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv6Prefix'
required:
- start
- end
Action:
description: Action to apply to DNS messages matching a message detection template
type: object
properties:
applyAction:
$ref: '#/components/schemas/ApplyAction'
fwdParas:
$ref: '#/components/schemas/ForwardingParameters'
reportingOnceInd:
type: boolean
default: false
resetReportingOnceInd:
type: boolean
default: false
respParas:
$ref: '#/components/schemas/RespondParameters'
required:
- applyAction
DnsContextNotification:
description: Data within DNS Context Notify
type: object
properties:
eventreportList:
type: array
items:
$ref: '#/components/schemas/DnsContextEventReport'
minItems: 1
ForwardingParameters:
description: Forwarding instructions
type: object
properties:
ecsOptionInfo:
$ref: '#/components/schemas/EcsOptionInfo'
dnsServerAddressInfo:
$ref: '#/components/schemas/DnsServerAddressInfo'
EcsOptionInfo:
description: ECS Option Information
type: object
properties:
ecsOption:
$ref: '#/components/schemas/EcsOption'
baseDnsAitId:
$ref: '#/components/schemas/BaselineDnsAitId'
oneOf:
- required: [ ecsOption ]
- required: [ baseDnsAitId ]
DnsServerAddressInfo:
description: DNS Server Address Information
type: object
properties:
dnsServerAddressList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/IpAddr'
minItems: 1
baseDnsAitId:
$ref: '#/components/schemas/BaselineDnsAitId'
oneOf:
- required: [ dnsServerAddressList ]
- required: [ baseDnsAitId ]
BaselineDnsMdtId:
description: Baseline DNS Message Detection Template Identifier
type: object
properties:
baseDnsPatternUri:
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
mdtId:
type: string
required:
- baseDnsPatternUri
- mdtId
BaselineDnsAitId:
description: Baseline DNS Action Information Template Identifier
type: object
properties:
baseDnsPatternUri:
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
aitId:
type: string
required:
- baseDnsPatternUri
- aitId
EcsOption:
description: ECS Option Information
type: object
properties:
sourcePrefixLength:
type: integer
minimum: 0
maximum: 128
scopePrefixLength:
type: integer
minimum: 0
maximum: 128
ipAddr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/IpAddr'
required:
- sourcePrefixLength
- ipAddr
DnsContextEventReport:
description: DNS context event report
type: object
properties:
timestamp:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime'
dnsRuleId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uint32'
dnsQueryReport:
$ref: '#/components/schemas/DnsQueryReport'
dnsRspReport:
$ref: '#/components/schemas/DnsRspReport'
dnsMsgId:
type: string
required:
- timestamp
DnsQueryReport:
description: DNS Query Event Report
type: object
properties:
fqdn:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Fqdn'
DnsRspReport:
description: DNS Response Event Report
type: object
properties:
fqdn:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Fqdn'
easIpv4Addresses:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv4Addr'
minItems: 1
easIpv6Addresses:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv6Addr'
minItems: 1
ecsOption:
$ref: '#/components/schemas/EcsOption'
BaselineDnsQueryMdtInfo:
description: Baseline DNS Query MDT Information
type: object
properties:
sourceIpv4Addr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv4Addr'
sourceIpv6Prefix:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv6Prefix'
baseDnsMdtList:
type: array
items:
$ref: '#/components/schemas/BaselineDnsMdtId'
minItems: 1
required:
- baseDnsMdtList
BaselineDnsRspMdtInfo:
description: Baseline DNS Response MDT Information
type: object
properties:
baseDnsMdtList:
type: array
items:
$ref: '#/components/schemas/BaselineDnsMdtId'
minItems: 1
required:
- baseDnsMdtList
RespondParameters:
description: Respond instructions
type: object
properties:
easIpv4Addresses:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv4Addr'
minItems: 1
easIpv6Addresses:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv6Addr'
minItems: 1
N6RoutingInfo:
description: N6 traffic routing information
type: object
properties:
ipv4Address:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv4Addr'
ipv6Address:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv6Addr'
portNumber:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
#
# SIMPLE DATA TYPES
#
#
# ENUMERATIONS
#
ApplyAction:
anyOf:
- type: string
enum:
- BUFFER
- REPORT
- FORWARD
- DISCARD
- RESPOND
- SEND_ANOTHER_DNS_QUERY
- type: string
description: >
This string provides forward-compatibility with future
extensions to the enumeration but is not used to encode
content defined in the present version of this API.
description: >
Action to apply to the DNS packet