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

View File

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