Merge "Add volume type name and description check when update volume type"

This commit is contained in:
Zuul 2019-10-16 13:51:49 +00:00 committed by Gerrit Code Review
commit b8198de09a
2 changed files with 6 additions and 1 deletions

View File

@ -44,7 +44,7 @@ update = {
'volume_type': {
'type': 'object',
'properties': {
'name': parameter_types.name_allow_zero_min_length,
'name': parameter_types.update_name,
'description': parameter_types.description,
'is_public': parameter_types.boolean,
},

View File

@ -125,6 +125,11 @@ name = {
}
update_name = {
'type': ['string', 'null'], 'minLength': 1, 'maxLength': 255
}
description = {
'type': ['string', 'null'], 'minLength': 0, 'maxLength': 255,
'pattern': valid_description_regex,