Update api spec (#234)

* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
zoo-github-actions-auth[bot]
2024-07-09 09:46:14 -07:00
committed by GitHub
parent 244eb554ad
commit 8427b3f85d
3 changed files with 818 additions and 817 deletions

File diff suppressed because it is too large Load Diff

View File

@ -993,7 +993,7 @@ def test_get_async_operation():
] ]
] = get_async_operation.sync( ] = get_async_operation.sync(
client=client, client=client,
id="<string>", id="<uuid>",
) )
if isinstance(result, Error) or result is None: if isinstance(result, Error) or result is None:
@ -1027,7 +1027,7 @@ def test_get_async_operation():
] ]
] = get_async_operation.sync_detailed( ] = get_async_operation.sync_detailed(
client=client, client=client,
id="<string>", id="<uuid>",
) )
@ -1051,7 +1051,7 @@ async def test_get_async_operation_async():
] ]
] = await get_async_operation.asyncio( ] = await get_async_operation.asyncio(
client=client, client=client,
id="<string>", id="<uuid>",
) )
# OR run async with more info # OR run async with more info
@ -1070,7 +1070,7 @@ async def test_get_async_operation_async():
] ]
] = await get_async_operation.asyncio_detailed( ] = await get_async_operation.asyncio_detailed(
client=client, client=client,
id="<string>", id="<uuid>",
) )

View File

@ -1249,7 +1249,8 @@
"description": "The ID of the async operation.", "description": "The ID of the async operation.",
"required": true, "required": true,
"schema": { "schema": {
"type": "string" "type": "string",
"format": "uuid"
} }
} }
], ],