-
Notifications
You must be signed in to change notification settings - Fork 337
/
Copy pathopenapi.yaml
14700 lines (13755 loc) · 555 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: Kuma API
description: Kuma API
version: v1alpha1
paths:
/:
get:
operationId: index
summary: The index endpoint
description: The index endpoint, some common metadata
tags:
- System
responses:
'200':
$ref: '#/components/responses/IndexResponse'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/Internal'
/_resources:
get:
operationId: get-resource-type-description
summary: A list of all resources that exist
description: Returns a Global Insight object
tags:
- System
responses:
'200':
$ref: '#/components/responses/ResourceTypeDescriptionListResponse'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/Internal'
/global-insight:
get:
operationId: get-global-insight
description: Returns a Global Insight object
summary: Get Global Insight
tags:
- GlobalInsight
responses:
'200':
$ref: '#/components/responses/GlobalInsightResponse'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/Internal'
/meshes/{mesh}/{resourceType}/{resourceName}/_rules:
get:
operationId: inspect-dataplanes-rules
summary: Returns rules matching this dataplane
description: Returns rules matching this dataplane
tags:
- Inspect
parameters:
- in: path
name: mesh
example: default
schema:
type: string
required: true
description: The mesh the policy is part of
- in: path
name: resourceType
example: dataplanes
required: true
schema:
type: string
enum:
- dataplanes
- meshgateways
description: The type of resource (only some resources support rules api)
- in: path
name: resourceName
example: my-dp
schema:
type: string
required: true
description: The name of the resource
responses:
'200':
$ref: '#/components/responses/InspectRulesResponse'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/Internal'
/meshes/{mesh}/dataplanes/{name}/_config:
get:
operationId: get-meshes-mesh-dataplanes-name-config
summary: Get a proxy XDS config on a CP
description: >-
Returns the configuration of the proxy
([xds](https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol)
configuration).
parameters:
- in: path
name: mesh
required: true
description: The mesh of the DPP to get the diff for.
schema:
type: string
- in: path
name: name
required: true
description: The name of the DPP within the mesh to get the diff for.
schema:
type: string
- in: query
name: shadow
description: >
When computing XDS config the CP takes into account policies with
'kuma.io/effect: shadow' label
schema:
type: boolean
default: false
- in: query
name: include
description: >
An array of extra fields to include in the response. When
`include=diff` the server computes a diff in JSONPatch format
between the current proxy XDS config and the config returned in the
'xds' field.
schema:
type: array
items:
type: string
enum:
- diff
responses:
'200':
$ref: '#/components/responses/InspectDataplanesConfigResponse'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/Internal'
/meshes/{mesh}/{policyType}/{policyName}/_resources/dataplanes:
get:
operationId: inspect-resources
summary: Returns resources matched by this policy
description: >-
Returns resources matched by this policy. In the case of `targetRef`
policies we'll match using the top level `targetRef`
tags:
- Inspect
parameters:
- in: path
name: mesh
example: default
schema:
type: string
required: true
description: The mesh the policy is part of
- in: path
name: policyType
example: meshretries
schema:
type: string
required: true
description: The type of the policy
- in: path
name: policyName
example: retry-all
schema:
type: string
required: true
description: The type of the policy
- in: query
name: size
schema:
type: integer
required: false
description: The max number of items to return
- in: query
name: offset
schema:
type: integer
required: false
description: The offset of result
- in: query
name: name
schema:
type: string
required: false
description: A sub string to filter resources by name
responses:
'200':
$ref: '#/components/responses/InspectDataplanesForPolicyResponse'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/Internal'
/meshes/{mesh}/{serviceType}/{serviceName}/_hostnames:
get:
operationId: inspect-hostnames
summary: Returns hostnames for service
description: Returns hostnames for a service
tags:
- Inspect
parameters:
- in: path
name: mesh
example: default
schema:
type: string
required: true
description: The mesh the service is part of
- in: path
name: serviceType
example: meshservices
schema:
type: string
enum:
- meshservices
- meshmultizoneservices
- meshexternalservices
required: true
description: The type of the service
- in: path
name: serviceName
example: redis
schema:
type: string
required: true
description: The name of the service
responses:
'200':
$ref: '#/components/responses/InspectHostnamesResponse'
'400':
$ref: '#/components/responses/BadRequest'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/Internal'
/meshes/{mesh}/meshaccesslogs/{name}:
get:
operationId: getMeshAccessLog
summary: Returns MeshAccessLog entity
tags:
- MeshAccessLog
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshAccessLog
responses:
'200':
$ref: '#/components/responses/MeshAccessLogItem'
'404':
$ref: '#/components/responses/NotFound'
put:
operationId: putMeshAccessLog
summary: Creates or Updates MeshAccessLog entity
tags:
- MeshAccessLog
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshAccessLog
requestBody:
description: Put request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MeshAccessLogItem'
responses:
'200':
description: Updated
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshAccessLogCreateOrUpdateSuccessResponse
'201':
description: Created
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshAccessLogCreateOrUpdateSuccessResponse
delete:
operationId: deleteMeshAccessLog
summary: Deletes MeshAccessLog entity
tags:
- MeshAccessLog
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshAccessLog
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/MeshAccessLogDeleteSuccessResponse'
description: Successful response
'404':
$ref: '#/components/responses/NotFound'
/meshes/{mesh}/meshaccesslogs:
get:
operationId: getMeshAccessLogList
summary: Returns a list of MeshAccessLog in the mesh.
tags:
- MeshAccessLog
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
responses:
'200':
$ref: '#/components/responses/MeshAccessLogList'
/meshes/{mesh}/meshcircuitbreakers/{name}:
get:
operationId: getMeshCircuitBreaker
summary: Returns MeshCircuitBreaker entity
tags:
- MeshCircuitBreaker
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshCircuitBreaker
responses:
'200':
$ref: '#/components/responses/MeshCircuitBreakerItem'
'404':
$ref: '#/components/responses/NotFound'
put:
operationId: putMeshCircuitBreaker
summary: Creates or Updates MeshCircuitBreaker entity
tags:
- MeshCircuitBreaker
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshCircuitBreaker
requestBody:
description: Put request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MeshCircuitBreakerItem'
responses:
'200':
description: Updated
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshCircuitBreakerCreateOrUpdateSuccessResponse
'201':
description: Created
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshCircuitBreakerCreateOrUpdateSuccessResponse
delete:
operationId: deleteMeshCircuitBreaker
summary: Deletes MeshCircuitBreaker entity
tags:
- MeshCircuitBreaker
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshCircuitBreaker
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/MeshCircuitBreakerDeleteSuccessResponse'
description: Successful response
'404':
$ref: '#/components/responses/NotFound'
/meshes/{mesh}/meshcircuitbreakers:
get:
operationId: getMeshCircuitBreakerList
summary: Returns a list of MeshCircuitBreaker in the mesh.
tags:
- MeshCircuitBreaker
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
responses:
'200':
$ref: '#/components/responses/MeshCircuitBreakerList'
/meshes/{mesh}/meshfaultinjections/{name}:
get:
operationId: getMeshFaultInjection
summary: Returns MeshFaultInjection entity
tags:
- MeshFaultInjection
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshFaultInjection
responses:
'200':
$ref: '#/components/responses/MeshFaultInjectionItem'
'404':
$ref: '#/components/responses/NotFound'
put:
operationId: putMeshFaultInjection
summary: Creates or Updates MeshFaultInjection entity
tags:
- MeshFaultInjection
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshFaultInjection
requestBody:
description: Put request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MeshFaultInjectionItem'
responses:
'200':
description: Updated
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshFaultInjectionCreateOrUpdateSuccessResponse
'201':
description: Created
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshFaultInjectionCreateOrUpdateSuccessResponse
delete:
operationId: deleteMeshFaultInjection
summary: Deletes MeshFaultInjection entity
tags:
- MeshFaultInjection
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshFaultInjection
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/MeshFaultInjectionDeleteSuccessResponse'
description: Successful response
'404':
$ref: '#/components/responses/NotFound'
/meshes/{mesh}/meshfaultinjections:
get:
operationId: getMeshFaultInjectionList
summary: Returns a list of MeshFaultInjection in the mesh.
tags:
- MeshFaultInjection
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
responses:
'200':
$ref: '#/components/responses/MeshFaultInjectionList'
/meshes/{mesh}/meshhealthchecks/{name}:
get:
operationId: getMeshHealthCheck
summary: Returns MeshHealthCheck entity
tags:
- MeshHealthCheck
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshHealthCheck
responses:
'200':
$ref: '#/components/responses/MeshHealthCheckItem'
'404':
$ref: '#/components/responses/NotFound'
put:
operationId: putMeshHealthCheck
summary: Creates or Updates MeshHealthCheck entity
tags:
- MeshHealthCheck
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshHealthCheck
requestBody:
description: Put request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MeshHealthCheckItem'
responses:
'200':
description: Updated
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshHealthCheckCreateOrUpdateSuccessResponse
'201':
description: Created
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshHealthCheckCreateOrUpdateSuccessResponse
delete:
operationId: deleteMeshHealthCheck
summary: Deletes MeshHealthCheck entity
tags:
- MeshHealthCheck
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshHealthCheck
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/MeshHealthCheckDeleteSuccessResponse'
description: Successful response
'404':
$ref: '#/components/responses/NotFound'
/meshes/{mesh}/meshhealthchecks:
get:
operationId: getMeshHealthCheckList
summary: Returns a list of MeshHealthCheck in the mesh.
tags:
- MeshHealthCheck
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
responses:
'200':
$ref: '#/components/responses/MeshHealthCheckList'
/meshes/{mesh}/meshhttproutes/{name}:
get:
operationId: getMeshHTTPRoute
summary: Returns MeshHTTPRoute entity
tags:
- MeshHTTPRoute
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshHTTPRoute
responses:
'200':
$ref: '#/components/responses/MeshHTTPRouteItem'
'404':
$ref: '#/components/responses/NotFound'
put:
operationId: putMeshHTTPRoute
summary: Creates or Updates MeshHTTPRoute entity
tags:
- MeshHTTPRoute
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshHTTPRoute
requestBody:
description: Put request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MeshHTTPRouteItem'
responses:
'200':
description: Updated
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshHTTPRouteCreateOrUpdateSuccessResponse
'201':
description: Created
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshHTTPRouteCreateOrUpdateSuccessResponse
delete:
operationId: deleteMeshHTTPRoute
summary: Deletes MeshHTTPRoute entity
tags:
- MeshHTTPRoute
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshHTTPRoute
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/MeshHTTPRouteDeleteSuccessResponse'
description: Successful response
'404':
$ref: '#/components/responses/NotFound'
/meshes/{mesh}/meshhttproutes:
get:
operationId: getMeshHTTPRouteList
summary: Returns a list of MeshHTTPRoute in the mesh.
tags:
- MeshHTTPRoute
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
responses:
'200':
$ref: '#/components/responses/MeshHTTPRouteList'
/meshes/{mesh}/meshloadbalancingstrategies/{name}:
get:
operationId: getMeshLoadBalancingStrategy
summary: Returns MeshLoadBalancingStrategy entity
tags:
- MeshLoadBalancingStrategy
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshLoadBalancingStrategy
responses:
'200':
$ref: '#/components/responses/MeshLoadBalancingStrategyItem'
'404':
$ref: '#/components/responses/NotFound'
put:
operationId: putMeshLoadBalancingStrategy
summary: Creates or Updates MeshLoadBalancingStrategy entity
tags:
- MeshLoadBalancingStrategy
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshLoadBalancingStrategy
requestBody:
description: Put request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MeshLoadBalancingStrategyItem'
responses:
'200':
description: Updated
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshLoadBalancingStrategyCreateOrUpdateSuccessResponse
'201':
description: Created
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshLoadBalancingStrategyCreateOrUpdateSuccessResponse
delete:
operationId: deleteMeshLoadBalancingStrategy
summary: Deletes MeshLoadBalancingStrategy entity
tags:
- MeshLoadBalancingStrategy
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshLoadBalancingStrategy
responses:
'200':
content:
application/json:
schema:
$ref: >-
#/components/schemas/MeshLoadBalancingStrategyDeleteSuccessResponse
description: Successful response
'404':
$ref: '#/components/responses/NotFound'
/meshes/{mesh}/meshloadbalancingstrategies:
get:
operationId: getMeshLoadBalancingStrategyList
summary: Returns a list of MeshLoadBalancingStrategy in the mesh.
tags:
- MeshLoadBalancingStrategy
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
responses:
'200':
$ref: '#/components/responses/MeshLoadBalancingStrategyList'
/meshes/{mesh}/meshmetrics/{name}:
get:
operationId: getMeshMetric
summary: Returns MeshMetric entity
tags:
- MeshMetric
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshMetric
responses:
'200':
$ref: '#/components/responses/MeshMetricItem'
'404':
$ref: '#/components/responses/NotFound'
put:
operationId: putMeshMetric
summary: Creates or Updates MeshMetric entity
tags:
- MeshMetric
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshMetric
requestBody:
description: Put request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MeshMetricItem'
responses:
'200':
description: Updated
content:
application/json:
schema:
$ref: '#/components/schemas/MeshMetricCreateOrUpdateSuccessResponse'
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/MeshMetricCreateOrUpdateSuccessResponse'
delete:
operationId: deleteMeshMetric
summary: Deletes MeshMetric entity
tags:
- MeshMetric
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string
required: true
description: name of the MeshMetric
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/MeshMetricDeleteSuccessResponse'
description: Successful response
'404':
$ref: '#/components/responses/NotFound'
/meshes/{mesh}/meshmetrics:
get:
operationId: getMeshMetricList
summary: Returns a list of MeshMetric in the mesh.
tags:
- MeshMetric
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
responses:
'200':
$ref: '#/components/responses/MeshMetricList'
/meshes/{mesh}/meshpassthroughs/{name}:
get:
operationId: getMeshPassthrough
summary: Returns MeshPassthrough entity
tags:
- MeshPassthrough
parameters:
- in: path
name: mesh
schema:
type: string
required: true
description: name of the mesh
- in: path
name: name
schema:
type: string