-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathhaproxy-spec.yaml
1210 lines (1210 loc) · 43.9 KB
/
haproxy-spec.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
---
swagger: "2.0"
info:
title: HAProxy Data Plane API
description: |
API for editing and managing haproxy instances. Provides process information, configuration management,
haproxy stats and logs.
version: '3.1'
contact:
name: HAProxy Support
url: https://my.haproxy.com/portal/cust/login
email: [email protected]
externalDocs:
url: https://docs.haproxy.org/
description: HAProxy Documentation
definitions:
program:
$ref: "models/configuration/program.yaml#/program"
programs:
type: array
items:
$ref: "#/definitions/program"
fcgiApp:
$ref: "models/configuration/fcgi.yaml#/app"
fcgiAppBase:
$ref: "models/configuration/fcgi.yaml#/app_base"
fcgiApps:
type: array
items:
$ref: "#/definitions/fcgiApp"
fcgiSetParam:
$ref: "models/configuration/fcgi.yaml#/setParam"
fcgiPassHeader:
$ref: "models/configuration/fcgi.yaml#/passHeader"
fcgiLogStderr:
$ref: "models/configuration/fcgi.yaml#/logStderr"
bind_params:
$ref: "models/configuration/bind_params.yaml#/bind_params"
server_params:
$ref: "models/configuration/server_params.yaml#/server_params"
site:
$ref: "models/simple.yaml#/site"
sites:
title: Sites
description: |
Sites array. Sites are considered as one service and all farms connected to that service.
Farms are connected to service using use-backend and default_backend directives. Sites let you
configure simple HAProxy configurations, for more advanced options use /haproxy/configuration
endpoints.
type: array
items:
$ref: "#/definitions/site"
environment_options:
$ref: "models/configuration/global.yaml#/environment_options"
performance_options:
$ref: "models/configuration/global.yaml#/performance_options"
ssl_options:
$ref: "models/configuration/global.yaml#/ssl_options"
tune_options:
$ref: "models/configuration/global.yaml#/tune_options"
tune_quic_options:
$ref: "models/configuration/global.yaml#/tune_quic_options"
tune_vars_options:
$ref: "models/configuration/global.yaml#/tune_vars_options"
tune_zlib_options:
$ref: "models/configuration/global.yaml#/tune_zlib_options"
tune_ssl_options:
$ref: "models/configuration/global.yaml#/tune_ssl_options"
tune_lua_options:
$ref: "models/configuration/global.yaml#/tune_lua_options"
tune_buffer_options:
$ref: "models/configuration/global.yaml#/tune_buffer_options"
debug_options:
$ref: "models/configuration/global.yaml#/debug_options"
http_client_options:
$ref: "models/configuration/global.yaml#/http_client_options"
ocsp_update_options:
$ref: "models/configuration/global.yaml#/ocsp_update_options"
lua_options:
$ref: "models/configuration/global.yaml#/lua_options"
wurfl_options:
$ref: "models/configuration/global.yaml#/wurfl_options"
device_atlas_options:
$ref: "models/configuration/global.yaml#/device_atlas_options"
fifty_one_degrees_options:
$ref: "models/configuration/global.yaml#/fifty_one_degrees_options"
global:
$ref: "models/configuration/global.yaml#/global"
global_base:
$ref: "models/configuration/global.yaml#/global_base"
defaults:
$ref: "models/configuration/defaults.yaml#/defaults"
defaults_base:
$ref: "models/configuration/defaults.yaml#/defaults_base"
defaults_sections:
title: Defaults Sections
description: HAProxy defaults sections array
type: array
items:
$ref: '#/definitions/defaults'
frontend:
$ref: "models/configuration/frontend.yaml#/frontend"
frontend_base:
$ref: "models/configuration/frontend.yaml#/frontend_base"
frontends:
title: Frontends
description: HAProxy frontends array
type: array
items:
$ref: '#/definitions/frontend'
backend:
$ref: "models/configuration/backend.yaml#/backend"
backend_base:
$ref: "models/configuration/backend.yaml#/backend_base"
backends:
title: Backends
description: HAProxy backends array
type: array
items:
$ref: '#/definitions/backend'
ring:
$ref: "models/configuration/ring.yaml#/ring"
ring_base:
$ref: "models/configuration/ring.yaml#/ring_base"
rings:
title: Rings
description: HAProxy rings array
type: array
items:
$ref: '#/definitions/ring'
dgram_bind:
$ref: "models/configuration/dgram_bind.yaml#/dgram_bind"
dgram_binds:
title: Dgram Bind
description: HAProxy dgram bind array
type: array
items:
$ref: '#/definitions/dgram_bind'
log_forward:
$ref: "models/configuration/log_forward.yaml#/log_forward"
log_forward_base:
$ref: "models/configuration/log_forward.yaml#/log_forward_base"
log_forwards:
title: Log Forwards
description: HAProxy log forwards array
type: array
items:
$ref: '#/definitions/log_forward'
userlist:
$ref: "models/configuration/userlist.yaml#/userlist"
userlist_base:
$ref: "models/configuration/userlist.yaml#/userlist_base"
userlists:
title: Userlists
description: HAProxy userlists array
type: array
items:
$ref: '#/definitions/userlist'
user:
$ref: "models/configuration/userlist.yaml#/user"
users:
title: Users
description: HAProxy userlist users array
type: array
items:
$ref: '#/definitions/user'
group:
$ref: "models/configuration/userlist.yaml#/group"
groups:
title: Groups
description: HAProxy userlist groups array
type: array
items:
$ref: '#/definitions/group'
mailers_section:
$ref: "models/configuration/mailers.yaml#/mailers_section"
mailers_section_base:
$ref: "models/configuration/mailers.yaml#/mailers_section_base"
mailers_sections:
title: Mailers Sections
description: HAProxy mailers_section array
type: array
items:
$ref: "#/definitions/mailers_section"
mailer_entry:
$ref: "models/configuration/mailers.yaml#/mailer_entry"
mailer_entries:
title: Mailer Entries
description: HAProxy mailer entries
type: array
items:
$ref: "#/definitions/mailer_entry"
peer_section:
$ref: "models/configuration/peers.yaml#/peer_section"
peer_section_base:
$ref: "models/configuration/peers.yaml#/peer_section_base"
peer_sections:
title: Peer_Section
description: HAProxy peer_section array
type: array
items:
$ref: '#/definitions/peer_section'
peer_entry:
$ref: "models/configuration/peers.yaml#/peer_entry"
peer_entries:
title: Peer entries
description: HAProxy peer entries array
type: array
items:
$ref: '#/definitions/peer_entry'
http_errors_section:
$ref: "models/configuration/http_errors.yaml#/http_errors_section"
http_errors_sections:
title: http-errors sections
description: An array of HAProxy http-error sections
type: array
items:
$ref: "#/definitions/http_errors_section"
bind:
$ref: "models/configuration/bind.yaml#/bind"
binds:
title: Binds
description: HAProxy frontend binds array (corresponds to bind directives)
type: array
items:
$ref: '#/definitions/bind'
server:
$ref: "models/configuration/server.yaml#/server"
servers:
title: Servers
description: HAProxy backend servers array
type: array
items:
$ref: '#/definitions/server'
server_template:
$ref: "models/configuration/server.yaml#/server_template"
server_templates:
title: Server templates
description: HAProxy backend server templates array
type: array
items:
$ref: '#/definitions/server_template'
config_stick_table:
$ref: "models/configuration/stick.yaml#/stick_table"
http_request_rule:
$ref: "models/configuration/http/request.yaml#/http_request_rule"
http_request_rules:
title: HTTP Request Rules Array
description: HAProxy HTTP request rules array (corresponds to http-request directives)
type: array
items:
$ref: '#/definitions/http_request_rule'
http_response_rule:
$ref: "models/configuration/http/response.yaml#/http_response_rule"
http_response_rules:
title: HTTP Response Rules Array
description: HAProxy HTTP response rules array (corresponds to http-response directives)
type: array
items:
$ref: '#/definitions/http_response_rule'
http_after_response_rule:
$ref: "models/configuration/http/after_response.yaml#/http_after_response_rule"
http_after_response_rules:
title: HTTP After Response Rules Array
description: HAProxy HTTP after response rules array (corresponds to http-after-response directives)
type: array
items:
$ref: '#/definitions/http_after_response_rule'
http_error_rule:
$ref: "models/configuration/http/error.yaml#/http_error_rule"
http_error_rules:
title: HTTP Error Rules Array
description: HAProxy HTTP error rules array (corresponds to http-error directives)
type: array
items:
$ref: '#/definitions/http_error_rule'
http_check:
$ref: "models/configuration/http/check.yaml#/http_check"
http_checks:
title: HTTP Checks Array
type: array
items:
$ref: '#/definitions/http_check'
tcp_request_rule:
$ref: "models/configuration/tcp/request.yaml#/tcp_request_rule"
tcp_request_rules:
title: TCP Request Rules Array
description: HAProxy TCP request rules array (corresponds to tcp-request directive)
type: array
items:
$ref: '#/definitions/tcp_request_rule'
tcp_response_rule:
$ref: "models/configuration/tcp/response.yaml#/tcp_response_rule"
tcp_response_rules:
title: TCP Response Rules Array
description: HAProxy TCP response rules array (corresponds to tcp-response directive)
type: array
items:
$ref: '#/definitions/tcp_response_rule'
tcp_check:
$ref: "models/configuration/tcp/check.yaml#/tcp_check"
tcp_checks:
title: TCP Checks Array
type: array
items:
$ref: '#/definitions/tcp_check'
quic_initial_rule:
$ref: "models/configuration/quic/initial.yaml#/quic_initial_rule"
quic_initial_rules:
title: QUIC Initials Array
x-go-name: QUICInitialRules
type: array
items:
$ref: '#/definitions/quic_initial_rule'
backend_switching_rule:
$ref: "models/configuration/switching.yaml#/backend_switching_rule"
backend_switching_rules:
title: Backend Switching Rules Array
description: HAProxy backend switching rules array (corresponds to use_backend directives)
type: array
items:
$ref: '#/definitions/backend_switching_rule'
server_switching_rule:
$ref: "models/configuration/switching.yaml#/server_switching_rule"
server_switching_rules:
title: Server Switching Rules Array
description: HAProxy backend server switching rules array (corresponds to use-server directives)
type: array
items:
$ref: '#/definitions/server_switching_rule'
filter:
$ref: "models/configuration/filter.yaml#/filter"
filters:
title: Filters Array
description: HAProxy filters array (corresponds to filter directive)
type: array
items:
$ref: '#/definitions/filter'
stick_rule:
$ref: "models/configuration/stick.yaml#/stick_rule"
stick_rules:
title: Stick Rules Array
description: HAProxy backend stick rules array (corresponds to stick store-request, stick match, stick on, stick store-response)
type: array
items:
$ref: '#/definitions/stick_rule'
log_target:
$ref: "models/configuration/log_target.yaml#/log_target"
log_targets:
title: Log Target Array
description: HAProxy log target array (corresponds to log directives)
type: array
items:
$ref: '#/definitions/log_target'
acl:
$ref: "models/configuration/acl.yaml#/acl"
acls:
title: ACL Lines Array
description: HAProxy ACL lines array (corresponds to acl directives)
type: array
items:
$ref: '#/definitions/acl'
native_stats:
$ref: "models/stats.yaml#/native_stats"
native_stat:
$ref: "models/stats.yaml#/native"
native_stat_stats:
$ref: "models/stats.yaml#/native_stat_stats"
stats_options:
$ref: "models/configuration/misc.yaml#/stats_options"
stats_http_request:
$ref: "models/configuration/misc.yaml#/stats_http_request"
stats_auth:
$ref: "models/configuration/misc.yaml#/stats_auth"
error:
$ref: "models/errors.yaml#/error"
endpoint:
$ref: "models/general.yaml#/endpoint"
endpoints:
title: Endpoints Array
description: Collection of endpoints
type: array
items:
$ref: '#/definitions/endpoint'
process_info:
$ref: "models/runtime/process_info.yaml#/process_info"
process_info_item:
$ref: "models/runtime/process_info_item.yaml#/process_info_item"
transaction:
$ref: "models/general.yaml#/transaction"
transactions:
title: Transactions array
description: Configuration transactions array
type: array
items:
$ref: "#/definitions/transaction"
spoe_transaction:
$ref: "models/spoe-transactions.yaml#/spoe_transaction"
spoe_transactions:
title: SPOE Transactions array
description: SPOE Configuration transactions array
type: array
items:
$ref: "#/definitions/spoe_transaction"
info:
$ref: "models/general.yaml#/info"
health:
$ref: "models/general.yaml#/health"
reload:
$ref: "models/general.yaml#/reload"
reloads:
title: HAProxy Reloads Array
description: HAProxy reloads array
type: array
items:
$ref: "#/definitions/reload"
runtime_add_server:
$ref: "models/runtime/server.yaml#/add_server"
runtime_server:
$ref: "models/runtime/server.yaml#/server"
runtime_servers:
title: HAProxy Runtime Servers Array
description: HAProxy runtime servers array
type: array
items:
$ref: "#/definitions/runtime_server"
stick_table:
$ref: "models/runtime/table.yaml#/table"
stick_tables:
title: Stick Tables Array
description: Array of runtime stick tables
type: array
items:
$ref: "#/definitions/stick_table"
stick_table_entry:
$ref: "models/runtime/table_entry.yaml#/table_entry"
stick_table_entries:
title: Stick Tables Entries
description: Entries of one runtime stick table
type: array
items:
$ref: "#/definitions/stick_table_entry"
cluster_settings:
$ref: "models/cluster.yaml#/settings"
map:
$ref: "models/storage/map.yaml#/map"
maps:
title: Map Files Array
description: Array of runtime map files
type: array
items:
$ref: "#/definitions/map"
map_entry:
$ref: "models/runtime/map_entry.yaml#/map_entry"
map_entries:
title: Maps Entries
description: Entries of one runtime map
type: array
items:
$ref: "#/definitions/map_entry"
ssl_certificate:
$ref: "models/storage/ssl_certificate.yaml#/ssl_certificate"
ssl_certificates:
title: SSL Files Array
description: Array of ssl certificate files
type: array
items:
$ref: "#/definitions/ssl_certificate"
ssl_cert_entry:
$ref: "models/runtime/ssl_cert_entry.yaml#/ssl_cert_entry"
acl_file:
$ref: "models/runtime/acl_file.yaml#/acl_file"
acl_files:
title: ACL Files Array
description: Array of runtime acl files
type: array
items:
$ref: "#/definitions/acl_file"
acl_file_entry:
$ref: "models/runtime/acl_file_entry.yaml#/acl_file_entry"
acl_files_entries:
title: ACL Files Entries
description: Array of entries of one runtime acl file
type: array
items:
$ref: "#/definitions/acl_file_entry"
general_file:
$ref: "models/storage/general_file.yaml#/general_file"
general_files:
title: General Files Array
description: Array of general use files
type: array
items:
$ref: "#/definitions/general_file"
balance:
$ref: "models/configuration/misc.yaml#/balance"
hash_type:
$ref: "models/configuration/hash_type.yaml#/hash_type"
persist_rule:
$ref: "models/configuration/misc.yaml#/persist_rule"
forwardfor:
$ref: "models/configuration/misc.yaml#/forwardfor"
default_server:
$ref: "models/configuration/server.yaml#/default_server"
httpchk_params:
$ref: "models/configuration/misc.yaml#/httpchk_params"
redispatch:
$ref: "models/configuration/misc.yaml#/redispatch"
errorfile:
$ref: "models/configuration/misc.yaml#/errorfile"
errorfiles:
$ref: "models/configuration/errorfiles.yaml#/errorfiles"
cookie:
$ref: "models/configuration/misc.yaml#/cookie"
capture:
$ref: "models/configuration/capture.yaml#/capture"
captures:
title: Declare capture array
type: array
items:
$ref: "#/definitions/capture"
resolver:
$ref: "models/configuration/resolver.yaml#/resolver"
resolver_base:
$ref: "models/configuration/resolver.yaml#/resolver_base"
resolvers:
title: Resolvers
description: HAProxy resolvers array
type: array
items:
$ref: '#/definitions/resolver'
nameserver:
$ref: "models/configuration/resolver.yaml#/nameserver"
nameservers:
title: Nameservers
description: Nameservers array
type: array
items:
$ref: '#/definitions/nameserver'
cache:
$ref: "models/configuration/cache.yaml#/cache"
caches:
title: Cache Sections
description: HAProxy caches array
type: array
items:
$ref: '#/definitions/cache'
awsFilters:
$ref: "models/service-discovery.yaml#/awsFilters"
awsRegion:
$ref: "models/service-discovery.yaml#/awsRegion"
awsRegions:
title: AWS
description: AWS regions array
type: array
items:
$ref: '#/definitions/awsRegion'
consul:
$ref: "models/service-discovery.yaml#/consul"
consuls:
title: Consuls
description: Consuls array
type: array
items:
$ref: '#/definitions/consul'
monitor_uri:
$ref: "models/monitor.yaml#/monitor_uri"
monitor_fail:
$ref: "models/monitor.yaml#/monitor_fail"
originalto:
$ref: "models/configuration/misc.yaml#/originalto"
smtpchk_params:
$ref: "models/configuration/misc.yaml#/smtpchk_params"
mysql_check_params:
$ref: "models/configuration/misc.yaml#/mysql_check_params"
pgsql_check_params:
$ref: "models/configuration/misc.yaml#/pgsql_check_params"
spoe_files:
$ref: "models/spoe.yaml#/spoe_files"
spoe_scope:
$ref: "models/spoe.yaml#/spoe_scope"
spoe_scopes:
title: SPOE Scopes
description: All SPOE Scopes
type: array
items:
$ref: "#/definitions/spoe_scope"
spoe_agent:
$ref: "models/spoe.yaml#/spoe_agent"
spoe_agents:
title: SPOE Agents
description: SPOE Agents of one scope in SPOE file
type: array
items:
$ref: "#/definitions/spoe_agent"
spoe_message:
$ref: "models/spoe.yaml#/spoe_message"
spoe_messages:
title: SPOE Messages
description: SPOE Messages of one scope in SPOE file
type: array
items:
$ref: "#/definitions/spoe_message"
spoe_group:
$ref: "models/spoe.yaml#/spoe_group"
spoe_groups:
title: SPOE Groups
description: SPOE Groups of one scope in SPOE file
type: array
items:
$ref: "#/definitions/spoe_group"
return_header:
$ref: "models/configuration/http/misc.yaml#/return_header"
compression:
$ref: "models/configuration/misc.yaml#/compression"
source:
$ref: "models/configuration/source.yaml#/source"
email_alert:
$ref: "models/configuration/email_alert.yaml#/email_alert"
email_alerts:
title: Email Alerts Array
description: Email Alerts array (corresponds to email-alert directives)
type: array
items:
$ref: '#/definitions/email_alert'
errorloc:
$ref: "models/configuration/errorloc.yaml#/errorloc"
default_bind:
$ref: "models/configuration/bind.yaml#/default_bind"
table:
$ref: "models/configuration/table.yaml#/table"
tables:
title: Tables
description: HAProxy table array
type: array
items:
$ref: '#/definitions/table'
http_codes:
$ref: "models/configuration/misc.yaml#/http_codes"
crt_store:
$ref: "models/configuration/crt_store.yaml#/crt_store"
crt_stores:
description: List of Certificate Stores
type: array
items:
$ref: "#/definitions/crt_store"
crt_load:
$ref: "models/configuration/crt_store.yaml#/crt_load"
crt_loads:
description: List of certificates to load from a Certificate Store
type: array
items:
$ref: "#/definitions/crt_load"
x-omitempty: true
traces:
$ref: "models/configuration/traces.yaml#/traces"
trace_entry:
$ref: "models/configuration/traces.yaml#/trace_entry"
trace_entries:
description: list of entries in a traces section
type: array
items:
$ref: "#/definitions/trace_entry"
log_profile:
$ref: "models/configuration/log_profile.yaml#/log_profile"
log_profiles:
description: List of Logging Profiles
type: array
items:
$ref: "#/definitions/log_profile"
log_profile_step:
$ref: "models/configuration/log_profile.yaml#/log_profile_step"
log_profile_steps:
type: array
items:
$ref: "#/definitions/log_profile_step"
description: List of steps where to override the logging.
x-omitempty: true
responses:
BadRequest:
description: Bad request
headers:
Configuration-Version:
description: Configuration file version
type: string
schema:
$ref: '#/definitions/error'
NotAcceptable:
description: The specified resource cannot be handled
headers:
Configuration-Version:
description: Configuration file version
type: string
schema:
$ref: '#/definitions/error'
NotFound:
description: The specified resource was not found
headers:
Configuration-Version:
description: Configuration file version
type: string
schema:
$ref: '#/definitions/error'
AlreadyExists:
description: The specified resource already exists
headers:
Configuration-Version:
description: Configuration file version
type: string
schema:
$ref: '#/definitions/error'
DefaultError:
description: General Error
headers:
Configuration-Version:
description: Configuration file version
type: string
schema:
$ref: '#/definitions/error'
parameters:
transaction_id:
name: transaction_id
in: query
description: ID of the transaction where we want to add the operation. Cannot be used when version is specified.
type: string
required: false
x-nullable: false
version:
name: version
in: query
description: Version used for checking configuration version. Cannot be used when transaction is specified, transaction has it's own version.
type: integer
required: false
x-nullable: false
force_reload:
name: force_reload
in: query
description: If set, do a force reload, do not wait for the configured reload-delay. Cannot be used when transaction is specified, as changes in transaction are not applied directly to configuration.
type: boolean
required: false
default: false
skip_reload:
name: skip_reload
in: query
description: If set, no reload will be initiated after update
type: boolean
required: false
default: false
parent_name:
name: parent_name
in: path
description: Parent name
required: true
type: string
full_section:
name: full_section
in: query
description: Indicates if the action affects the specified child resources as well
type: boolean
required: false
default: false
securityDefinitions:
basic_auth:
type: basic
basePath: /v3
schemes:
- http
- https
consumes:
- application/json
produces:
- application/json
tags:
- name: Discovery
description: API autodiscover endpoints
- name: Information
- name: Specification
- name: Transactions
description: |
Managing transactions. Configuration changes can be grouped in the transaction. You start the
transaction with trasactions POST, and call the configuration changes you need with parameter
transaction_id. When you want to commit the transaction, you call the transactions PUT and all changes
in that transaction is committed. If you call a configuration change without the transaction_id,
transaction mechanism is implicitly called with one operation in transaction.
- name: Reloads
description: |
Checking reload success. To avoid constant reloading we reload in intervals that are configurable when
with reload-delay option. When a change to configuration is made and force_reload url query string
parameter is false we issue a request for reload, and return the reload ID in response header. You can
then use reloads endpoints to check the status of that reload ID. If force_reload is true, we override all
of this and reload immediately.
- name: Sites
description: |
Managing sites (simple configuration mode). Sites are considered as one frontend with multiple backends
connected to it via default_backend or use-backend directives.
- name: Stats
description: Stats container
- name: Global
description: Managing global configuration (advanced mode)
- name: Defaults
description: Managing defaults configuration (advanced mode)
- name: Frontend
description: Managing frontend configuration (advanced mode)
- name: Backend
description: Managing backend configurations (advanced mode)
- name: Bind
description: Managing frontend bind configurations (advanced mode)
- name: Server
description: Managing backend server configurations (advanced mode)
- name: Configuration
description: Raw HAProxy configuration management (advanced mode)
- name: TCPRequestRule
- name: HTTPCheck
- name: HTTPRequestRule
- name: HTTPResponseRule
- name: HTTPErrorRule
- name: BackendSwitchingRule
- name: ServerSwitchingRule
- name: TCPResponseRule
- name: Filter
- name: StickRule
- name: StickTable
- name: LogTarget
- name: ACL
- name: Resolver
- name: Nameserver
- name: Mailers
- name: MailerEntry
- name: Peer
- name: PeerEntry
- name: HTTPErrors
- name: Ring
- name: DgramBind
- name: LogForward
- name: Cluster
- name: Maps
- name: SpecificationOpenapiv3
- name: ServiceDiscovery
- name: Spoe
- name: SpoeTransactions
- name: Storage
- name: ServerTemplate
- name: TCPCheck
- name: Cache
- name: DeclareCapture
- name: Userlist
- name: FCGIApp
- name: ProcessManager
- name: Table
- name: CrtStore
- name: CrtLoad
- name: Traces
- name: LogProfile
security:
- basic_auth: []
paths:
/:
$ref: "paths/general.yaml#/root"
/specification:
$ref: "paths/general.yaml#/specification"
/specification_openapiv3:
$ref: "paths/general.yaml#/specification_openapiv3"
/info:
$ref: "paths/general.yaml#/info"
/health:
$ref: "paths/general.yaml#/health"
/cluster:
$ref: "paths/cluster.yaml#/cluster"
/cluster/certificate:
$ref: "paths/cluster.yaml#/certificate"
/service_discovery/aws:
$ref: "paths/service-discovery.yaml#/aws"
/service_discovery/aws/{id}:
$ref: "paths/service-discovery.yaml#/aws_one"
/service_discovery/consul:
$ref: "paths/service-discovery.yaml#/consul"
/service_discovery/consul/{id}:
$ref: "paths/service-discovery.yaml#/consul_one"
/services:
$ref: "paths/general.yaml#/services"
/services/haproxy:
$ref: "paths/general.yaml#/haproxy"
/services/haproxy/sites:
$ref: "paths/simple.yaml#/sites"
/services/haproxy/sites/{name}:
$ref: "paths/simple.yaml#/sites_one"
/services/haproxy/stats:
$ref: "paths/general.yaml#/stats"
/services/haproxy/stats/native:
$ref: "paths/stats.yaml#/native"
/services/haproxy/transactions:
$ref: "paths/general.yaml#/transactions"
/services/haproxy/transactions/{id}:
$ref: "paths/general.yaml#/transactions_one"
/services/haproxy/spoe/spoe_files/{parent_name}/transactions:
$ref: "paths/spoe-transactions.yaml#/transactions"
/services/haproxy/spoe/spoe_files/{parent_name}/transactions/{id}:
$ref: "paths/spoe-transactions.yaml#/transactions_one"
/services/haproxy/reloads:
$ref: "paths/general.yaml#/reloads"
/services/haproxy/reloads/{id}:
$ref: "paths/general.yaml#/reloads_one"
/services/haproxy/configuration:
$ref: "paths/general.yaml#/configuration"
/services/haproxy/configuration/global:
$ref: "paths/configuration/global.yaml#/global"
/services/haproxy/configuration/defaults:
$ref: "paths/configuration/defaults.yaml#/defaults"
/services/haproxy/configuration/defaults/{name}:
$ref: "paths/configuration/defaults.yaml#/defaults_one"
/services/haproxy/configuration/frontends:
$ref: "paths/configuration/frontend.yaml#/frontends"
/services/haproxy/configuration/frontends/{name}:
$ref: "paths/configuration/frontend.yaml#/frontends_one"
/services/haproxy/configuration/userlists:
$ref: "paths/configuration/userlist.yaml#/userlists"
/services/haproxy/configuration/userlists/{name}:
$ref: "paths/configuration/userlist.yaml#/userlists_one"
/services/haproxy/configuration/users:
$ref: "paths/configuration/userlist.yaml#/users"
/services/haproxy/configuration/users/{username}:
$ref: "paths/configuration/userlist.yaml#/users_one"
/services/haproxy/configuration/groups:
$ref: "paths/configuration/userlist.yaml#/groups"
/services/haproxy/configuration/groups/{name}:
$ref: "paths/configuration/userlist.yaml#/groups_one"
/services/haproxy/configuration/mailers_section:
$ref: "paths/configuration/mailers.yaml#/mailers_section"
/services/haproxy/configuration/mailers_section/{name}:
$ref: "paths/configuration/mailers.yaml#/mailers_section_one"
/services/haproxy/configuration/mailer_entries:
$ref: "paths/configuration/mailers.yaml#/mailer_entries"
/services/haproxy/configuration/mailer_entries/{name}:
$ref: "paths/configuration/mailers.yaml#/mailer_entries_one"
/services/haproxy/configuration/peer_section:
$ref: "paths/configuration/peers.yaml#/peer_section"
/services/haproxy/configuration/peer_section/{name}:
$ref: "paths/configuration/peers.yaml#/peer_section_one"
/services/haproxy/configuration/peer_entries:
$ref: "paths/configuration/peers.yaml#/peer_entries"
/services/haproxy/configuration/peer_entries/{name}:
$ref: "paths/configuration/peers.yaml#/peer_entries_one"
/services/haproxy/configuration/http_errors_sections:
$ref: "paths/configuration/http_errors.yaml#/http_errors_section"
/services/haproxy/configuration/http_errors_sections/{name}:
$ref: "paths/configuration/http_errors.yaml#/http_errors_section_one"
/services/haproxy/configuration/programs:
$ref: "paths/configuration/program.yaml#/programs"
/services/haproxy/configuration/programs/{name}:
$ref: "paths/configuration/program.yaml#/programs_one"
/services/haproxy/configuration/fcgi_apps:
$ref: "paths/configuration/fcgi-app.yaml#/apps"
/services/haproxy/configuration/fcgi_apps/{name}:
$ref: "paths/configuration/fcgi-app.yaml#/apps_one"
/services/haproxy/configuration/backends:
$ref: "paths/configuration/backend.yaml#/backends"
/services/haproxy/configuration/backends/{name}:
$ref: "paths/configuration/backend.yaml#/backends_one"
{{ range parents "server" -}}
/services/haproxy/configuration/{{ .PathParentType }}/{parent_name}/servers:
$ref: "paths/configuration/server.yaml#/servers"
{{ end -}}
{{ range parents "server" -}}
/services/haproxy/configuration/{{ .PathParentType }}/{parent_name}/servers/{name}:
$ref: "paths/configuration/server.yaml#/servers_one"
{{ end -}}
/services/haproxy/configuration/rings:
$ref: "paths/configuration/ring.yaml#/rings"
/services/haproxy/configuration/rings/{name}:
$ref: "paths/configuration/ring.yaml#/rings_one"
{{ range parents "bind" -}}
/services/haproxy/configuration/{{ .PathParentType }}/{parent_name}/binds:
$ref: "paths/configuration/bind.yaml#/binds"
{{ end -}}
{{ range parents "bind" -}}
/services/haproxy/configuration/{{ .PathParentType }}/{parent_name}/binds/{name}:
$ref: "paths/configuration/bind.yaml#/binds_one"
{{ end -}}
/services/haproxy/configuration/log_forwards/{parent_name}/dgram_binds:
$ref: "paths/configuration/dgram_bind.yaml#/dgram_binds"
/services/haproxy/configuration/log_forwards/{parent_name}/dgram_binds/{name}:
$ref: "paths/configuration/dgram_bind.yaml#/dgram_binds_one"
/services/haproxy/configuration/log_forwards:
$ref: "paths/configuration/log_forward.yaml#/log_forwards"
/services/haproxy/configuration/log_forwards/{name}:
$ref: "paths/configuration/log_forward.yaml#/log_forwards_one"
/services/haproxy/configuration/backends/{parent_name}/server_templates:
$ref: "paths/configuration/server_template.yaml#/server_templates"
/services/haproxy/configuration/backends/{parent_name}/server_templates/{prefix}:
$ref: "paths/configuration/server_template.yaml#/server_templates_one"
{{ range parents "http_check" -}}
/services/haproxy/configuration/{{ .PathParentType }}/{parent_name}/http_checks:
$ref: "paths/configuration/http/check.yaml#/http_checks"
{{ end -}}
{{ range parents "http_check" -}}
/services/haproxy/configuration/{{ .PathParentType }}/{parent_name}/http_checks/{index}:
$ref: "paths/configuration/http/check.yaml#/http_checks_one"
{{ end -}}
{{ range parents "http_request_rule" -}}
/services/haproxy/configuration/{{ .PathParentType }}/{parent_name}/http_request_rules: