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-04 11:28:23 -04:00
|
|
|
-n Volume \
|
|
|
|
-n Port \
|
2016-10-05 16:25:09 -04:00
|
|
|
-n ImageSummary \
|
2016-10-06 12:40:38 -04:00
|
|
|
-n Plugin -n PluginDevice -n PluginMount -n PluginEnv -n PluginInterfaceType \
|
2016-10-18 18:56:45 -04:00
|
|
|
-n ErrorResponse \
|
2016-11-14 21:08:24 -05:00
|
|
|
-n IdResponse \
|
|
|
|
-n ServiceUpdateResponse
|
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-10-06 12:57:17 -04:00
|
|
|
-n VolumesList \
|
2016-10-14 16:28:47 -04:00
|
|
|
-n VolumesCreate \
|
2016-10-18 20:35:45 -04:00
|
|
|
-n ContainerCreate \
|
2016-10-18 20:52:46 -04:00
|
|
|
-n ContainerUpdate \
|
2016-10-20 18:56:27 -04:00
|
|
|
-n Authenticate \
|
|
|
|
-n ContainerWait
|