@@ -236,6 +236,10 @@ paths:
236
236
watch_paths :
237
237
type : string
238
238
description : ' The watch paths.'
239
+ use_build_server :
240
+ type : boolean
241
+ nullable : true
242
+ description : ' Use build server.'
239
243
type : object
240
244
responses :
241
245
' 200 ' :
@@ -457,6 +461,10 @@ paths:
457
461
watch_paths :
458
462
type : string
459
463
description : ' The watch paths.'
464
+ use_build_server :
465
+ type : boolean
466
+ nullable : true
467
+ description : ' Use build server.'
460
468
type : object
461
469
responses :
462
470
' 200 ' :
@@ -678,6 +686,10 @@ paths:
678
686
watch_paths :
679
687
type : string
680
688
description : ' The watch paths.'
689
+ use_build_server :
690
+ type : boolean
691
+ nullable : true
692
+ description : ' Use build server.'
681
693
type : object
682
694
responses :
683
695
' 200 ' :
@@ -850,6 +862,10 @@ paths:
850
862
instant_deploy :
851
863
type : boolean
852
864
description : ' The flag to indicate if the application should be deployed instantly.'
865
+ use_build_server :
866
+ type : boolean
867
+ nullable : true
868
+ description : ' Use build server.'
853
869
type : object
854
870
responses :
855
871
' 200 ' :
@@ -1013,6 +1029,10 @@ paths:
1013
1029
instant_deploy :
1014
1030
type : boolean
1015
1031
description : ' The flag to indicate if the application should be deployed instantly.'
1032
+ use_build_server :
1033
+ type : boolean
1034
+ nullable : true
1035
+ description : ' Use build server.'
1016
1036
type : object
1017
1037
responses :
1018
1038
' 200 ' :
@@ -1067,6 +1087,10 @@ paths:
1067
1087
instant_deploy :
1068
1088
type : boolean
1069
1089
description : ' The flag to indicate if the application should be deployed instantly.'
1090
+ use_build_server :
1091
+ type : boolean
1092
+ nullable : true
1093
+ description : ' Use build server.'
1070
1094
type : object
1071
1095
responses :
1072
1096
' 200 ' :
@@ -1351,6 +1375,10 @@ paths:
1351
1375
watch_paths :
1352
1376
type : string
1353
1377
description : ' The watch paths.'
1378
+ use_build_server :
1379
+ type : boolean
1380
+ nullable : true
1381
+ description : ' Use build server.'
1354
1382
type : object
1355
1383
responses :
1356
1384
' 200 ' :
@@ -1738,6 +1766,52 @@ paths:
1738
1766
security :
1739
1767
-
1740
1768
bearerAuth : []
1769
+ ' /applications/{uuid}/execute ' :
1770
+ post :
1771
+ tags :
1772
+ - Applications
1773
+ summary : ' Execute Command'
1774
+ description : " Execute a command on the application's current container."
1775
+ operationId : execute-command-application
1776
+ parameters :
1777
+ -
1778
+ name : uuid
1779
+ in : path
1780
+ description : ' UUID of the application.'
1781
+ required : true
1782
+ schema :
1783
+ type : string
1784
+ format : uuid
1785
+ requestBody :
1786
+ description : ' Command to execute.'
1787
+ required : true
1788
+ content :
1789
+ application/json :
1790
+ schema :
1791
+ properties :
1792
+ command :
1793
+ type : string
1794
+ description : ' Command to execute.'
1795
+ type : object
1796
+ responses :
1797
+ ' 200 ' :
1798
+ description : " Execute a command on the application's current container."
1799
+ content :
1800
+ application/json :
1801
+ schema :
1802
+ properties :
1803
+ message : { type: string, example: 'Command executed.' }
1804
+ response : { type: string }
1805
+ type : object
1806
+ ' 401 ' :
1807
+ $ref : ' #/components/responses/401'
1808
+ ' 400 ' :
1809
+ $ref : ' #/components/responses/400'
1810
+ ' 404 ' :
1811
+ $ref : ' #/components/responses/404'
1812
+ security :
1813
+ -
1814
+ bearerAuth : []
1741
1815
/databases :
1742
1816
get :
1743
1817
tags :
@@ -4769,6 +4843,10 @@ components:
4769
4843
type : boolean
4770
4844
swarm_cluster :
4771
4845
type : string
4846
+ delete_unused_volumes :
4847
+ type : boolean
4848
+ delete_unused_networks :
4849
+ type : boolean
4772
4850
type : object
4773
4851
ServerSetting :
4774
4852
description : ' Server Settings model'
0 commit comments