diff --git a/codegenerator/openapi/neutron.py b/codegenerator/openapi/neutron.py index dd7de41..8739545 100644 --- a/codegenerator/openapi/neutron.py +++ b/codegenerator/openapi/neutron.py @@ -929,6 +929,8 @@ class NeutronGenerator(OpenStackServerSourceBase): ) elif field == "revision_number": js_schema.update({"type": "integer"}) + elif field == "alive": + js_schema.update({"type": "boolean"}) elif field == "subnets": js_schema.update( { @@ -1140,6 +1142,8 @@ class NeutronGenerator(OpenStackServerSourceBase): ) elif resource_key == "subnetpool" and field == "ip_version": js_schema.update({"type": "integer"}) + elif resource_key == "agent" and field == "configurations": + js_schema.update({"type": "object"}) if data.get(f"allow_{method.lower()}", False): send_props[field] = js_schema