API validation: Use cinder_host for services checks

Apply the new cinder_host validation spec to the
host field in the enable_and_disable, failover_host,
and freeze_and_thaw API calls.

Related-Bug: #1904892
Change-Id: I593ff70172de0d5b42d483d0c4bd2a463001155f
This commit is contained in:
Eric Harney 2021-02-24 16:31:58 -05:00 committed by Luigi Toscano
parent a66f688992
commit 8da91b74d9
1 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ enable_and_disable = {
'type': 'object',
'properties': {
'binary': {'type': 'string', 'minLength': 1, 'maxLength': 255},
'host': parameter_types.hostname,
'host': parameter_types.cinder_host,
'cluster': parameter_types.nullable_string,
'service': {'type': 'string', 'minLength': 1, 'maxLength': 255},
},
@ -67,7 +67,7 @@ freeze_and_thaw = {
'type': 'object',
'properties': {
'cluster': parameter_types.nullable_string,
'host': parameter_types.hostname,
'host': parameter_types.cinder_host,
},
'additionalProperties': False,
}
@ -76,7 +76,7 @@ freeze_and_thaw = {
failover_host = {
'type': 'object',
'properties': {
'host': parameter_types.hostname,
'host': parameter_types.cinder_host,
'backend_id': parameter_types.nullable_string,
'cluster': parameter_types.nullable_string,
},