Merge "Improve the validation of 'nets' parameter"
This commit is contained in:
commit
22180be2d5
@ -120,7 +120,31 @@ hints = {
|
||||
}
|
||||
|
||||
nets = {
|
||||
'type': ['array', 'null']
|
||||
'type': ['array', 'null'],
|
||||
'items': {
|
||||
'type': 'object',
|
||||
'properties': {
|
||||
'network': {
|
||||
'type': ['string'],
|
||||
'minLength': 1,
|
||||
'maxLength': 255,
|
||||
},
|
||||
'v4-fixed-ip': {
|
||||
'type': ['string'],
|
||||
'format': 'ipv4'
|
||||
},
|
||||
'v6-fixed-ip': {
|
||||
'type': ['string'],
|
||||
'format': 'ipv6'
|
||||
},
|
||||
'port': {
|
||||
'type': ['string'],
|
||||
'maxLength': 255,
|
||||
'minLength': 1,
|
||||
}
|
||||
},
|
||||
'additionalProperties': False
|
||||
}
|
||||
}
|
||||
|
||||
availability_zone = {
|
||||
|
Loading…
Reference in New Issue
Block a user