2016-10-04 11:28:23 -04:00
|
|
|
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
swagger generate model -f api/swagger.yaml \
|
2016-10-14 16:20:13 -04:00
|
|
|
-t api -m types --skip-validator -C api/swagger-gen.yaml \
|
2016-10-18 18:56:45 -04:00
|
|
|
-n ErrorResponse \
|
2016-11-14 14:26:04 -05:00
|
|
|
-n GraphDriverData \
|
2016-11-14 21:08:24 -05:00
|
|
|
-n IdResponse \
|
2016-11-10 11:27:56 -05:00
|
|
|
-n ImageDeleteResponseItem \
|
|
|
|
-n ImageSummary \
|
|
|
|
-n Plugin -n PluginDevice -n PluginMount -n PluginEnv -n PluginInterfaceType \
|
|
|
|
-n Port \
|
|
|
|
-n ServiceUpdateResponse \
|
|
|
|
-n Volume
|
2016-10-04 11:40:17 -04:00
|
|
|
|
|
|
|
swagger generate operation -f api/swagger.yaml \
|
2016-10-14 16:20:13 -04:00
|
|
|
-t api -a types -m types -C api/swagger-gen.yaml \
|
2016-10-04 11:40:17 -04:00
|
|
|
-T api/templates --skip-responses --skip-parameters --skip-validator \
|
2016-11-09 16:32:53 -05:00
|
|
|
-n Authenticate \
|
2016-11-09 16:15:32 -05:00
|
|
|
-n ContainerChanges \
|
2016-10-18 20:35:45 -04:00
|
|
|
-n ContainerCreate \
|
2016-11-14 14:50:16 -05:00
|
|
|
-n ContainerTop \
|
2016-10-18 20:52:46 -04:00
|
|
|
-n ContainerUpdate \
|
2016-11-09 16:32:53 -05:00
|
|
|
-n ContainerWait \
|
|
|
|
-n ImageHistory \
|
2018-05-14 11:03:48 -04:00
|
|
|
-n VolumeCreate \
|
|
|
|
-n VolumeList
|