forked from open-traffic-generator/models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
12910 lines (12885 loc) · 401 KB
/
openapi.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
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: Open Traffic Generator API
description: |-
The Open Traffic Generator API is the set of core models and APIs.
Contributions can be made in the following ways:
- [open an issue](https://github.com/open-traffic-generator/models/issues) in the models repository
- [fork the models repository](https://github.com/open-traffic-generator/models) and submit a PR
version: 0.6.6
contact:
url: https://github.com/open-traffic-generator/models
license:
name: MIT
url: https://opensource.org/licenses/MIT
x-model-guide: https://github.com/open-traffic-generator/models/blob/master/MODEL-GUIDE.md
servers:
- url: /
paths:
/config:
post:
tags:
- Configuration
operationId: set_config
description: |-
Sets configuration resources on the traffic generator.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Config'
responses:
'200':
$ref: '#/components/responses/Success'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
get:
tags:
- Configuration
operationId: get_config
responses:
'200':
description: |-
Config response from the traffic generator
content:
application/json:
schema:
$ref: '#/components/schemas/Config'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/control/transmit:
post:
tags:
- Control
operationId: set_transmit_state
description: |-
Updates the state of configuration resources on the traffic generator.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Transmit.State'
responses:
'200':
$ref: '#/components/responses/Success'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/control/link:
post:
tags:
- Control
operationId: set_link_state
description: |-
Updates the state of configuration resources on the traffic generator.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Link.State'
responses:
'200':
$ref: '#/components/responses/Success'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/control/capture:
post:
tags:
- Control
operationId: set_capture_state
description: |-
Updates the state of configuration resources on the traffic generator.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Capture.State'
responses:
'200':
$ref: '#/components/responses/Success'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/control/flows:
post:
tags:
- Control
operationId: update_flows
description: |-
Updates flow properties without disruption of transmit state.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Flows.Update'
responses:
'200':
description: |-
Response with updated Config from the traffic generator
content:
application/json:
schema:
$ref: '#/components/schemas/Config'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/control/routes:
post:
tags:
- Control
operationId: set_route_state
description: |-
Updates the state of configuration resources on the traffic generator.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Route.State'
responses:
'200':
$ref: '#/components/responses/Success'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/control/ping:
post:
tags:
- Control
operationId: send_ping
description: |-
API to send an IPv4 and/or IPv6 ICMP Echo Request(s) between endpoints. For each endpoint 1 ping packet will be sent and API shall wait for ping response to either be successful or timeout. The API wait timeout for each request is 300ms.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Ping.Request'
responses:
'200':
description: |-
Responses for Ping
content:
application/json:
schema:
$ref: '#/components/schemas/Ping.Response'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/control/protocols:
post:
tags:
- Control
operationId: set_protocol_state
description: |-
Sets all configured protocols to `start` or `stop` state.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Protocol.State'
responses:
'200':
$ref: '#/components/responses/Success'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/results/metrics:
description: |-
Metrics API
post:
tags:
- Metrics
operationId: get_metrics
requestBody:
description: |-
Request to traffic generator for metrics of choice
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Metrics.Request'
responses:
'200':
description: |-
Response from traffic generator for chosen metrics
content:
application/json:
schema:
$ref: '#/components/schemas/Metrics.Response'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/results/state:
post:
tags:
- Metrics
operationId: get_state_metrics
responses:
'200':
description: |-
List of states
content:
application/json:
schema:
$ref: '#/components/schemas/State.Metrics'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/results/capture:
description: |-
Capture results API
post:
tags:
- Metrics
operationId: get_capture
requestBody:
description: |-
Capture results request to the traffic generator.
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Capture.Request'
responses:
'200':
description: "Capture results response from the traffic generator. "
content:
application/octet-stream:
schema:
type: string
format: binary
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
components:
responses:
Success:
description: "The request has succeeded with no application content but the\
\ server \nmay return a list of detailed warnings."
content:
application/json:
schema:
$ref: '#/components/schemas/Response.Warning'
BadRequest:
description: "This indicates that the server cannot or will not process the\
\ request \ndue to something that is perceived to be a client error.\nAdditional\
\ details are in the errors."
content:
application/json:
schema:
$ref: '#/components/schemas/Response.Error'
InternalServerError:
description: "This indicates that the server encountered an unexpected condition\
\ that \nprevented it from fulfilling the request.\nAdditional details are\
\ in the errors."
content:
application/json:
schema:
$ref: '#/components/schemas/Response.Error'
schemas:
Config:
description: |-
A container for all models that are part of the configuration.
type: object
properties:
ports:
description: |-
The ports that will be configured on the traffic generator.
type: array
items:
$ref: '#/components/schemas/Port'
lags:
description: |-
The LAGs that will be configured on the traffic generator.
type: array
items:
$ref: '#/components/schemas/Lag'
layer1:
description: |-
The layer1 settings that will be configured on the traffic generator.
type: array
items:
$ref: '#/components/schemas/Layer1'
captures:
description: |-
The capture settings that will be configured on the traffic generator.
type: array
items:
$ref: '#/components/schemas/Capture'
devices:
description: "The emulated devices that will be configured on the traffic\
\ generator.\nEach device contains configurations for network interfaces\
\ and \nprotocols running on top of those interfaces."
type: array
items:
$ref: '#/components/schemas/Device'
flows:
description: |-
The flows that will be configured on the traffic generator.
type: array
items:
$ref: '#/components/schemas/Flow'
events:
$ref: '#/components/schemas/Event'
options:
$ref: '#/components/schemas/Config.Options'
Config.Options:
description: |-
Global configuration options.
type: object
properties:
port_options:
$ref: '#/components/schemas/Port.Options'
Port:
description: |-
An abstract test port.
type: object
properties:
location:
description: |-
The location of a test port. It is the endpoint where packets will emit from.
Test port locations can be the following:
- physical appliance with multiple ports
- physical chassis with multiple cards and ports
- local interface
- virtual machine, docker container, kubernetes cluster
The test port location format is implementation specific. Use the /results/capabilities API to determine what formats an implementation supports for the location property.
Get the configured location state by using the /results/port API.
type: string
name:
description: |-
Globally unique name of an object. It also serves as the primary key for arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Port.Options:
description: "Common port options that apply to all configured Port objects. "
type: object
properties:
location_preemption:
description: |-
Preempt all the test port locations as defined by the Port.Port.properties.location. If the test ports defined by their location values are in use and this value is true, the test ports will be preempted.
type: boolean
default: false
Lag:
description: |-
The container for multiple LAG ports
type: object
properties:
ports:
type: array
items:
$ref: '#/components/schemas/Lag.Port'
name:
description: |-
Globally unique name of an object. It also serves as the primary key for arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Lag.Port:
description: |-
The container for a port's ethernet interface and LAG protocol settings
type: object
required:
- port_name
- protocol
- ethernet
properties:
port_name:
description: "The name of a port object that will be part of the LAG. \n\
\nx-constraint:\n- /components/schemas/Port/properties/name\n"
type: string
x-constraint:
- /components/schemas/Port/properties/name
protocol:
$ref: '#/components/schemas/Lag.Protocol'
ethernet:
$ref: '#/components/schemas/Device.EthernetBase'
Lag.Protocol:
type: object
properties:
choice:
description: |-
The type of LAG protocol.
type: string
enum:
- lacp
- static
default: lacp
lacp:
$ref: '#/components/schemas/Lag.Lacp'
static:
$ref: '#/components/schemas/Lag.Static'
Lag.Static:
description: |-
The container for static link aggregation protocol settings.
type: object
properties:
lag_id:
description: |-
The static lag id
type: integer
minimum: 0
maximum: 65535
default: 0
Lag.Lacp:
description: |-
The container for link aggregation control protocol settings.
type: object
properties:
actor_key:
description: |-
The actor key
type: integer
minimum: 0
maximum: 65535
default: 0
actor_port_number:
description: |-
The actor port number
type: integer
minimum: 0
maximum: 65535
default: 0
actor_port_priority:
description: |-
The actor port priority
type: integer
minimum: 0
maximum: 65535
default: 1
actor_system_id:
description: |-
The actor system id
type: string
format: mac
default: 00:00:00:00:00:00
actor_system_priority:
description: |-
The actor system priority
type: integer
minimum: 0
maximum: 65535
default: 0
lacpdu_periodic_time_interval:
x-constants:
fast: 1
slow: 30
auto: 0
description: |-
This field defines how frequently LACPDUs are sent to the link partner
type: integer
minimum: 0
maximum: 65535
default: 0
lacpdu_timeout:
x-constants:
short: 3
long: 90
auto: 0
description: |-
This timer is used to detect whether received protocol information has expired
type: integer
minimum: 0
maximum: 65535
default: 0
actor_activity:
description: |-
Sets the value of LACP actor activity as either passive or active
Passive indicates the port's preference for not transmitting LACPDUs unless its partner's control is Active
Active indicates the port's preference to participate in the protocol regardless of the partner's control value
type: string
enum:
- passive
- active
default: active
Device.EthernetBase:
description: |-
Base Ethernet interface.
type: object
required:
- mac
- name
properties:
mac:
description: |-
Media Access Control address.
type: string
format: mac
mtu:
description: |-
Maximum Transmission Unit.
type: integer
minimum: 0
maximum: 65535
default: 1500
vlans:
description: |-
List of VLANs
type: array
items:
$ref: '#/components/schemas/Device.Vlan'
name:
description: |-
Globally unique name of an object. It also serves as the primary key for arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
Device.Ethernet:
description: |-
An Ethernet interface with IPv4 and IPv6 addresses.
Base Ethernet interface.
type: object
required:
- port_name
- mac
- name
properties:
port_name:
description: |
The unique name of a Port or a LAG that will emulate this interface.
x-constraint:
- /components/schemas/Port/properties/name
- /components/schemas/Lag/properties/name
type: string
x-constraint:
- /components/schemas/Port/properties/name
- /components/schemas/Lag/properties/name
ipv4_addresses:
description: "List of IPv4 addresses and their gateways. "
type: array
items:
$ref: '#/components/schemas/Device.Ipv4'
ipv6_addresses:
description: |-
List of global IPv6 addresses and their gateways.
The Link Local IPv6 address will be automatically generated.
type: array
items:
$ref: '#/components/schemas/Device.Ipv6'
mac:
description: |-
Media Access Control address.
type: string
format: mac
mtu:
description: |-
Maximum Transmission Unit.
type: integer
minimum: 0
maximum: 65535
default: 1500
vlans:
description: |-
List of VLANs
type: array
items:
$ref: '#/components/schemas/Device.Vlan'
name:
description: |-
Globally unique name of an object. It also serves as the primary key for arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
Device.Vlan:
description: |-
Emulated VLAN protocol.
type: object
properties:
tpid:
description: |-
Tag protocol identifier
type: string
enum:
- x8100
- x88A8
- x9100
- x9200
- x9300
default: x8100
priority:
description: |-
Priority code point
type: integer
minimum: 0
maximum: 3
default: 0
id:
description: |-
VLAN identifier
type: integer
minimum: 0
maximum: 4095
default: 1
name:
description: |-
Globally unique name of an object. It also serves as the primary key for arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
required:
- name
Device.Ipv4:
description: |-
An IPv4 interface with gateway
A base IPv4 interface.
type: object
required:
- gateway
- address
- name
properties:
gateway:
description: |-
The IPv4 address of the gateway
type: string
format: ipv4
address:
description: |-
The IPv4 address
type: string
format: ipv4
prefix:
description: |-
The prefix of the IPv4 address.
type: integer
minimum: 1
maximum: 32
default: 24
name:
description: |-
Globally unique name of an object. It also serves as the primary key for arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
Device.Ipv4Loopback:
description: |-
An IPv4 Loopback interface.
type: object
required:
- eth_name
- name
properties:
eth_name:
description: |
The unique name of the Ethernet interface behind which this Loopback interface will be created.
x-constraint:
- /components/schemas/Device.Ethernet/properties/name
type: string
x-constraint:
- /components/schemas/Device.Ethernet/properties/name
address:
description: |-
The IPv4 Loopback address with prefix length of 32.
type: string
format: ipv4
default: 0.0.0.0
name:
description: |-
Globally unique name of an object. It also serves as the primary key for arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
Device.Ipv6:
description: |-
Status: under-review
An IPv6 interface with gateway.
A base IPv6 interface.
type: object
required:
- gateway
- address
- name
properties:
gateway:
description: |-
The IPv6 gateway address.
type: string
format: ipv6
default: ::0
address:
description: |-
The IPv6 address.
type: string
format: ipv6
prefix:
description: |-
The network prefix.
type: integer
minimum: 1
maximum: 128
default: 64
name:
description: |-
Globally unique name of an object. It also serves as the primary key for arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
x-status: under-review
Device.Ipv6Loopback:
description: |-
An IPv6 Loopback interface
type: object
required:
- eth_name
- name
properties:
eth_name:
description: "The unique name of the Ethernet interface behind which this\
\ Loopback \n interface will be created.\n\nx-constraint:\n- /components/schemas/Device.Ethernet/properties/name\n"
type: string
x-constraint:
- /components/schemas/Device.Ethernet/properties/name
address:
description: |-
The IPv6 Loopback address with prefix length of 128.
type: string
format: ipv6
default: ::0
name:
description: |-
Globally unique name of an object. It also serves as the primary key for arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
Layer1:
description: |-
A container for layer1 settings.
type: object
required:
- port_names
- name
properties:
port_names:
description: "A list of unique names of port objects that will share the\n\
choice settings. \n\nx-constraint:\n- /components/schemas/Port/properties/name\n"
type: array
items:
type: string
x-constraint:
- /components/schemas/Port/properties/name
speed:
description: |-
Set the speed if supported.
type: string
enum:
- speed_10_fd_mbps
- speed_10_hd_mbps
- speed_100_fd_mbps
- speed_100_hd_mbps
- speed_1_gbps
- speed_10_gbps
- speed_25_gbps
- speed_40_gbps
- speed_100_gbps
- speed_200_gbps
- speed_400_gbps
default: speed_10_gbps
media:
description: |-
Set the type of media interface if supported.
type: string
enum:
- copper
- fiber
- sgmii
promiscuous:
description: |-
Enable promiscuous mode if supported.
type: boolean
default: true
mtu:
description: |-
Set the maximum transmission unit size if supported.
type: integer
default: 1500
ieee_media_defaults:
description: |-
Set to true to override the auto_negotiate, link_training
and rs_fec settings for gigabit ethernet interfaces.
type: boolean
default: true
auto_negotiate:
description: |-
Enable/disable auto negotiation.
type: boolean
default: true
auto_negotiation:
$ref: '#/components/schemas/Layer1.AutoNegotiation'
flow_control:
$ref: '#/components/schemas/Layer1.FlowControl'
name:
description: |-
Globally unique name of an object. It also serves as the primary key for arrays of objects.
type: string
pattern: ^[\sa-zA-Z0-9-_()><\[\]]+$
Layer1.AutoNegotiation:
description: |-
Configuration for auto negotiation settings
type: object
properties:
advertise_1000_mbps:
description: |-
If auto_negotiate is true and the interface supports this option
then this speed will be advertised.
type: boolean
default: true
advertise_100_fd_mbps:
description: |-
If auto_negotiate is true and the interface supports this option
then this speed will be advertised.
type: boolean
default: true
advertise_100_hd_mbps:
description: |-
If auto_negotiate is true and the interface supports this option
then this speed will be advertised.
type: boolean
default: true
advertise_10_fd_mbps:
description: |-
If auto_negotiate is true and the interface supports this option
then this speed will be advertised.
type: boolean
default: true
advertise_10_hd_mbps:
description: |-
If auto_negotiate is true and the interface supports this option
then this speed will be advertised.
type: boolean
default: true
link_training:
description: |-
Enable/disable gigabit ethernet link training.
type: boolean
default: false
rs_fec:
description: |-
Enable/disable gigabit ethernet reed solomon forward error correction (RS FEC).
type: boolean
default: false
Layer1.FlowControl:
description: |-
A container for layer1 receive flow control settings.
To enable flow control settings on ports this object must be a valid
object not a null value.
type: object
properties:
directed_address:
description: |-
The 48bit mac address that the layer1 port names will listen on
for a directed pause.
type: string
format: mac
default: 01:80:C2:00:00:01
choice:
description: |-
The type of priority flow control.
type: string
enum:
- ieee_802_1qbb
- ieee_802_3x
default: ieee_802_1qbb
ieee_802_1qbb:
$ref: '#/components/schemas/Layer1.Ieee8021qbb'
ieee_802_3x:
$ref: '#/components/schemas/Layer1.Ieee8023x'
Layer1.Ieee8023x:
description: |-
A container for ieee 802.3x rx pause settings
type: object
Layer1.Ieee8021qbb:
description: "These settings enhance the existing 802.3x pause priority capabilities\
\ \nto enable flow control based on 802.1p priorities (classes of service). "
type: object
properties:
pfc_delay:
description: "The upper limit on the transmit time of a queue after receiving\
\ a \nmessage to pause a specified priority.\nA value of 0 or null indicates\
\ that pfc delay will not be enabled. "
type: integer
default: 0
pfc_class_0:
description: |-
The valid values are null, 0 - 7.
A null value indicates there is no setting for this pfc class.
type: integer
default: 0
pfc_class_1:
description: |-
The valid values are null, 0 - 7.
A null value indicates there is no setting for this pfc class.
type: integer
default: 1
pfc_class_2:
description: |-
The valid values are null, 0 - 7.
A null value indicates there is no setting for this pfc class.
type: integer
default: 2
pfc_class_3:
description: |-
The valid values are null, 0 - 7.
A null value indicates there is no setting for this pfc class.
type: integer
default: 3
pfc_class_4:
description: |-
The valid values are null, 0 - 7.
A null value indicates there is no setting for this pfc class.
type: integer
default: 4
pfc_class_5:
description: |-
The valid values are null, 0 - 7.
A null value indicates there is no setting for this pfc class.
type: integer
default: 5
pfc_class_6:
description: |-
The valid values are null, 0 - 7.
A null value indicates there is no setting for this pfc class.
type: integer
default: 6
pfc_class_7:
description: |-
The valid values are null, 0 - 7.
A null value indicates there is no setting for this pfc class.
type: integer
default: 7
Capture:
x-status: under-review
description: |-
Status: under-review
Configuration for capture settings.
type: object
required:
- port_names
- name
properties:
port_names:
description: |
The unique names of ports that the capture settings will apply to. Port_names cannot be duplicated between capture objects.
x-constraint:
- /components/schemas/Port/properties/name
type: array
items:
type: string
x-constraint:
- /components/schemas/Port/properties/name
filters:
description: |-
A list of filters to apply to the capturing ports. If no filters are specified then all packets will be captured. A capture can have multiple filters. The number of filters supported is determined by the implementation which can be retrieved using the capabilities API.
When multiple filters are specified the capture implementation must && (and) all the filters.
type: array
items:
$ref: '#/components/schemas/Capture.Filter'
overwrite:
description: |-