Switch the Python side to Swagger v2
This commit is contained in:
parent
86f400fdf5
commit
0bc1c29dff
21 changed files with 217 additions and 138 deletions
|
@ -1,3 +1,5 @@
|
|||
""" Create, list, cancel and get status/logs of repository builds. """
|
||||
|
||||
import logging
|
||||
import json
|
||||
import time
|
||||
|
@ -165,7 +167,8 @@ class RepositoryBuildList(RepositoryParamResource):
|
|||
},
|
||||
'docker_tags': {
|
||||
'type': 'array',
|
||||
'description': 'The tags to which the built images will be pushed',
|
||||
'description': 'The tags to which the built images will be pushed. ' +
|
||||
'If none specified, "latest" is used.',
|
||||
'items': {
|
||||
'type': 'string'
|
||||
},
|
||||
|
|
Reference in a new issue