Skip to content

Commit d18398e

Browse files
I have generated the latest API!
1 parent 55c0d64 commit d18398e

26 files changed

+2244
-326
lines changed

docs/pagination.rst

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,40 @@ Ml API
231231
Orgs API
232232
--------
233233

234+
**list_org_datasets**
235+
List every dataset that belongs to the caller's organization.
236+
237+
Returns: ``SyncPageIterator[OrgDataset]``
238+
239+
Example:
240+
241+
.. code-block:: python
242+
243+
# Sync
244+
for item in client.orgs.list_org_datasets():
245+
print(item)
246+
247+
# Async
248+
async for item in client.orgs.list_org_datasets():
249+
print(item)
250+
251+
**list_org_dataset_conversions**
252+
List the file conversions that have been processed for a given dataset owned by the caller's org.
253+
254+
Returns: ``SyncPageIterator[OrgDatasetFileConversionSummary]``
255+
256+
Example:
257+
258+
.. code-block:: python
259+
260+
# Sync
261+
for item in client.orgs.list_org_dataset_conversions():
262+
print(item)
263+
264+
# Async
265+
async for item in client.orgs.list_org_dataset_conversions():
266+
print(item)
267+
234268
**list_org_members**
235269
List members of your org.
236270

kittycad.py.patch.json

Lines changed: 117 additions & 5 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)