2016-10-04 15:28:23 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
swagger generate model -f api/swagger.yaml \
|
|
|
|
-t api -m types --skip-validator \
|
|
|
|
-n Volume \
|
|
|
|
-n Port \
|
2016-10-05 20:25:09 +00:00
|
|
|
-n ImageSummary \
|
2016-10-06 16:40:38 +00:00
|
|
|
-n Plugin -n PluginDevice -n PluginMount -n PluginEnv -n PluginInterfaceType \
|
|
|
|
-n ErrorResponse
|
2016-10-04 15:40:17 +00:00
|
|
|
|
|
|
|
swagger generate operation -f api/swagger.yaml \
|
|
|
|
-t api -s server -a types -m types \
|
|
|
|
-T api/templates --skip-responses --skip-parameters --skip-validator \
|
2016-10-06 16:57:17 +00:00
|
|
|
-n VolumesList \
|
|
|
|
-n VolumesCreate
|