api/types: move GraphDriverData to api/types/storage

The `GraphDriverData` type is shared between images and containers, and
putting it in either package would result in a circular import, so adding
a new package for this type.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2024-06-25 22:10:06 +02:00
parent e12b7493b9
commit da039ca918
6 changed files with 23 additions and 11 deletions

View File

@@ -4,7 +4,6 @@ set -eu
swagger generate model -f api/swagger.yaml \
-t api -m types --skip-validator -C api/swagger-gen.yaml \
-n ErrorResponse \
-n GraphDriverData \
-n IdResponse \
-n Plugin \
-n PluginDevice \
@@ -12,6 +11,10 @@ swagger generate model -f api/swagger.yaml \
-n PluginEnv \
-n PluginInterfaceType
swagger generate model -f api/swagger.yaml \
-t api -m types/storage --skip-validator -C api/swagger-gen.yaml \
-n DriverData
swagger generate model -f api/swagger.yaml \
-t api -m types/container --skip-validator -C api/swagger-gen.yaml \
-n ContainerCreateResponse \