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 \
|
|
|
|
-n ErrorResponse
|
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 \
|
|
|
|
-n VolumesCreate
|