-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathopenapi.yml
627 lines (611 loc) · 17.3 KB
/
openapi.yml
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
openapi: 3.0.0
info:
version: '1.0.0'
title: AtlanticWave SDX API spec
description: AtlanticWave SDX API specification for Topology and Provisioning
servers:
- url: /api/kytos/sdx
paths:
/l2vpn/1.0/:
get:
summary: List/Retrieve multiple SDX L2VPNs
description: List all active SDX L2VPN stored
operationId: list_active_l2vpn
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
items:
$ref: '#/components/schemas/L2VPN'
post:
summary: Creates a new L2VPN PTP
operationId: create_l2vpn_ptp
requestBody:
description: Creates a new L2VPN PTP based on the endpoints and
constraints given.
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/NewL2VPN'
responses:
'201':
description: L2VPN Service Created
content:
application/json:
schema:
type: object
properties:
service_id:
type: string
format: uuid
'400':
description: Request does not have a valid JSON or body is incomplete/incorrect
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
description: Not Authorized
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'402':
description: Request not compatible (For instance, when a L2VPN P2MP is requested but only L2VPN P2P is supported)
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'409':
description: L2VPN Service already exists
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'410':
description: Can't fulfill the strict QoS requirements
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'411':
description: Scheduling not possible
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'422':
description: Attribute not supported by the SDX-LC/OXPO
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/l2vpn/1.0/archived:
get:
summary: List/Retrieve multiple archived SDX L2VPNs
description: List archived SDX L2VPN stored
operationId: list_archived_l2vpn
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
items:
$ref: '#/components/schemas/L2VPN'
/l2vpn/1.0/{service_id}:
get:
summary: List/Retrieve one SDX L2VPN
description: Get the details of a single SDX L2VPN
operationId: get_l2vpn
parameters:
- name: service_id
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/L2VPN'
'401':
description: Not Authorized
'404':
description: Service ID not found
patch:
summary: Edit/Change a SDX L2VPN
description: Edit/Change a SDX L2VPN based on payload.
operationId: update_l2vpn
parameters:
- name: service_id
in: path
required: true
schema:
type: string
format: uuid
requestBody:
description: Update a SDX L2VPN based on the service_id and payload given
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/NewL2VPN'
responses:
'201':
description: L2VPN Service Modified
'400':
description: Request does not have a valid JSON or body is incomplete
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'401':
description: Not Authorized
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'402':
description: Request not compatible (For instance, when a L2VPN P2MP is requested but only L2VPN P2P is supported)
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'404':
description: L2VPN Service ID not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'409':
description: Conflicts with a different L2VPN
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'410':
description: Can't fulfill the strict QoS requirements
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'411':
description: Scheduling not possible
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
delete:
summary: Delete a SDX L2VPN
description: Delete a SDX L2VPN
operationId: delete_l2vpn
parameters:
- name: service_id
in: path
required: true
schema:
type: string
format: uuid
responses:
'201':
description: L2VPN Deleted
'401':
description: Not Authorized
'404':
description: L2VPN Service ID provided does not exist
/topology/2.0.0/:
get:
summary: Retrieve SDX Topology accordingly to Topology Data Model Spec 2.0.0
description: Get SDX Topology
operationId: get_topology
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
items:
$ref: '#/components/schemas/Topology'
'424':
description: Failed to convert kytos topology
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
post:
summary: Send the topology to SDX-LC
description: Trigger a operation to send SDX Topology to SDX-LC
operationId: send_topology_to_sdxlc
responses:
'200':
description: OK
'424':
description: Failed to send topology to SDX-LC
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
schemas:
NewL2VPN: # Can be referenced via '#/components/schemas/NewL2VPN'
type: object
required:
- name
- endpoints
properties:
name:
type: string
maxLength: 50
endpoints:
type: array
minItems: 2
items:
$ref: '#/components/schemas/Endpoint'
description:
type: string
maxLength: 255
state:
type: string
enum:
- enabled # the L2VPN is in administrative enable mode
- disabled # the L2VPN is in administrative disable mode
notifications:
type: array
maxItems: 10
items:
type: object
properties:
email:
type: string
format: email
additionalProperties: false
required:
- email
example:
email: [email protected]
scheduling:
type: object
properties:
start_time:
type: string
end_time:
type: string
additionalProperties: false
qos_metrics:
type: object
properties:
min_bw:
type: object
properties:
value:
type: integer
minimum: 0
maximum: 100
strict:
type: boolean
additionalProperties: false
max_delay:
type: object
properties:
value:
type: integer
minimum: 0
maximum: 1000
strict:
type: boolean
additionalProperties: false
max_number_oxps:
type: object
properties:
value:
type: integer
minimum: 0
maximum: 100
strict:
type: boolean
additionalProperties: false
additionalProperties: false
Endpoint: # Can be referenced via '#/components/schemas/Endpoint'
type: object
required:
- port_id
- vlan
properties:
port_id:
type: string
pattern: '^urn:sdx:port:[A-Za-z0-9_,./-]*:[A-Za-z0-9_.,/-]*:[A-Za-z0-9_.,/-]*$'
vlan:
type: string
pattern: '^(any|untagged|all|[0-9]+:[0-9]+|[0-9]+)$'
additionalProperties: false
L2VPN: # Can be referenced via '#/components/schemas/L2VPN'
allOf:
- $ref: '#/components/schemas/NewL2VPN'
properties:
service_id:
type: string
format: uuid
ownership:
type: string
creation_date:
type: string
format: date-time
archived_date:
type: string
format: date-time
status:
type: string
enum:
- up # the L2VPN is operational
- down # the L2VPN is not operational due to topology issues/lack of path or endpoints being down
- error # when there is an error with the L2VPN
- under provisioning # when the L2VPN is still being provisioned by the OXPs
- maintenance # when the L2VPN is being affected by a network maintenance
counters_location:
type: string
last_modified:
type: string
format: date-time
current_path:
type: array
items:
type: string
oxp_service_ids:
type: object
additionalProperties:
type: array
items:
type: string
Error: # Can be referenced via '#/components/schemas/Error'
type: object
properties:
description:
type: string
Topology: # Can be referenced via '#/components/schemas/Topology'
type: object
required:
- name
- id
- version
- model_version
- timestamp
- nodes
- links
additionalProperties: false
properties:
name:
type: string
maxLength: 30
pattern: '^[A-Za-z0-9_,./-]*$'
id:
type: string
pattern: '^urn:sdx:topology:[A-Za-z0-9_.:-]*$'
version:
type: integer
format: int64
minimum: 1
model_version:
type: string
timestamp:
type: string
pattern: '^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$'
nodes:
type: array
minItems: 1
items:
$ref: '#/components/schemas/Node'
links:
type: array
items:
$ref: '#/components/schemas/Link'
services:
type: array
items:
type: string
enum: ['l2vpn-ptp', 'l2vpn-ptmp']
Node: # Can be referenced via '#/components/schemas/Node'
type: object
required:
- id
- name
- location
- ports
additionalProperties: false
properties:
id:
type: string
pattern: '^urn:sdx:node:[A-Za-z0-9_,./-]*:[A-Za-z0-9.,_/-]*$'
name:
type: string
maxLength: 30
pattern: '^[A-Za-z0-9.,_/-]*$'
location:
$ref: '#/components/schemas/Location'
ports:
type: array
minItems: 1
items:
$ref: '#/components/schemas/Port'
status:
type: string
enum:
- up # the node is operational
- down # the node is not operational
- error # there is an error with the node
state:
type: string
enum:
- enabled # the node is in administrative enabled mode
- disabled # the node is in administrative disabled mode
- maintenance # the node is under maintenance (not available for use)
Port: # Can be referenced via '#/components/schemas/Port'
type: object
required:
- id
- name
- node
- type
- status
- state
additionalProperties: false
properties:
id:
type: string
pattern: '^urn:sdx:port:[A-Za-z0-9_,./-]*:[A-Za-z0-9_.,/-]*:[A-Za-z0-9_.,/-]*$'
name:
type: string
maxLength: 30
pattern: '^[A-Za-z0-9_.,/-]*$'
node:
type: string
pattern: '^urn:sdx:node:[A-Za-z0-9_.,/-]*:[A-Za-z0-9_.,/-]*$'
type:
type: string
enum: ['100FE','1GE','10GE','25GE','40GE','50GE','100GE','400GE','Other']
mtu:
type: integer
format: int32
minimum: 1500
maximum: 10000
default: 1500
nni:
type: string
pattern: '^(urn:sdx:(port:[A-Za-z0-9_,./-]*|link):[A-Za-z0-9_.,/-]*:[A-Za-z0-9_.,/-]*)?$'
status:
type: string
enum: ['up', 'down', 'error']
state:
type: string
enum: ['enabled', 'disabled', 'maintenance']
services:
items:
type: object
properties:
l2vpn-ptp:
type: object
properties:
vlan_range:
type: array
items:
type: array
items:
type: integer
minItems: 2
maxItems: 2
l2vpn-ptmp:
type: object
properties:
vlan_range:
type: array
items:
type: array
items:
type: integer
minItems: 2
maxItems: 2
private:
type: array
items:
type: string
enum: ['mtu', 'status', 'state', 'services']
Location: # Can be referenced via '#/components/schemas/Location'
type: object
required:
- address
- latitude
- longitude
- iso3166_2_lvl4
properties:
address:
type: string
maxLength: 255
latitude:
type: number
minimum: -90.0
maximum: 90.0
longitude:
type: number
minimum: -90.0
maximum: 90.0
iso3166_2_lvl4:
type: string
minLength: 5
maxLength: 5
pattern: '^[A-Z]{2}-[a-zA-Z0-9]{1,3}$'
private:
type: array
items:
type: string
enum: ['address', 'latitude', 'longitude', 'iso3166_2_lvl4']
Link: # Can be referenced via '#/components/schemas/Link'
type: object
required:
- id
- name
- ports
- bandwidth
- status
- state
additionalProperties: false
properties:
id:
type: string
pattern: '^urn:sdx:link:[A-Za-z0-9_,./-]*:[A-Za-z0-9_.,/-]*$'
name:
type: string
maxLength: 30
pattern: '^[A-Za-z0-9_.,/-]*$'
ports:
type: array
minItems: 2
maxItems: 2
items:
type: string
pattern: '^urn:sdx:port:[A-Za-z0-9_,./-]*:[A-Za-z0-9_.,/-]*:[A-Za-z0-9_.,/-]*$'
type:
type: string
enum: ['intra']
bandwidth:
type: number
format: float
minimum: 0
residual_bandwidth:
type: number
format: float
minimum: 0
maximum: 100
latency:
type: number
format: float
minimum: 0
packet_loss:
type: number
format: float
minimum: 0
maximum: 100
availability:
type: number
format: float
minimum: 0
maximum: 100
status:
type: string
enum: ['up','down','error']
state:
type: string
enum: ['enabled','disabled','maintenance']
private:
type: array
items:
type: string
enum: ['residual_bandwidth', 'latency', 'packet_loss']