From eb390639ab9e9dc832810f5695773a7bfabfb815 Mon Sep 17 00:00:00 2001 From: Artem Goncharov Date: Tue, 27 May 2025 15:34:50 +0200 Subject: [PATCH] fix dns qp marker parameter name Fix typo "market" where "marker" should be. Change-Id: Ic9f94727b6abb33619bde96a610fedad7cc12398 --- codegenerator/openapi/designate_schemas.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codegenerator/openapi/designate_schemas.py b/codegenerator/openapi/designate_schemas.py index d5c6523..097ceca 100644 --- a/codegenerator/openapi/designate_schemas.py +++ b/codegenerator/openapi/designate_schemas.py @@ -281,7 +281,7 @@ ZONE_SHARES_LIST_PARAMETERS: dict[str, Any] = { }, "marker": { "in": "query", - "name": "market", + "name": "marker", "description": "The ID of the last-seen item. Use the limit parameter to make an initial limited request and use the ID of the last-seen item from the response as the marker parameter value in a subsequent limited request.", "schema": {"type": "string", "format": "uuid"}, }, @@ -315,7 +315,7 @@ ZONES_LIST_PARAMETERS: dict[str, Any] = { }, "marker": { "in": "query", - "name": "market", + "name": "marker", "description": "The ID of the last-seen item. Use the limit parameter to make an initial limited request and use the ID of the last-seen item from the response as the marker parameter value in a subsequent limited request.", "schema": {"type": "string", "format": "uuid"}, }, @@ -570,7 +570,7 @@ ZONE_RECORDSETS_LIST_PARAMETERS: dict[str, Any] = { }, "marker": { "in": "query", - "name": "market", + "name": "marker", "description": "The ID of the last-seen item. Use the limit parameter to make an initial limited request and use the ID of the last-seen item from the response as the marker parameter value in a subsequent limited request.", "schema": {"type": "string", "format": "uuid"}, },