2016-10-04 15:28:23 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
swagger generate model -f api/swagger.yaml \
|
2016-10-14 20:20:13 +00:00
|
|
|
-t api -m types --skip-validator -C api/swagger-gen.yaml \
|
2016-10-04 15:28:23 +00:00
|
|
|
-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 \
|
2016-10-18 22:56:45 +00:00
|
|
|
-n ErrorResponse \
|
2016-11-15 02:08:24 +00:00
|
|
|
-n IdResponse \
|
|
|
|
-n ServiceUpdateResponse
|
2016-10-04 15:40:17 +00:00
|
|
|
|
|
|
|
swagger generate operation -f api/swagger.yaml \
|
2016-10-14 20:20:13 +00:00
|
|
|
-t api -a types -m types -C api/swagger-gen.yaml \
|
2016-10-04 15:40:17 +00:00
|
|
|
-T api/templates --skip-responses --skip-parameters --skip-validator \
|
2016-10-06 16:57:17 +00:00
|
|
|
-n VolumesList \
|
2016-10-14 20:28:47 +00:00
|
|
|
-n VolumesCreate \
|
2016-10-19 00:35:45 +00:00
|
|
|
-n ContainerCreate \
|
2016-10-19 00:52:46 +00:00
|
|
|
-n ContainerUpdate \
|
2016-10-20 22:56:27 +00:00
|
|
|
-n Authenticate \
|
|
|
|
-n ContainerWait
|