Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: ClustersClient.all
title: ClusterClient.all
icon: circle-nodes
---

```python
def ClustersClient.all(): list[Cluster]
def ClusterClient.all(): list[Cluster]
```

List all available clusters.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: ClustersClient.create
title: ClusterClient.create
icon: circle-nodes
---

```python
def ClustersClient.create(name: str): Cluster
def ClusterClient.create(name: str): Cluster
```

Create a cluster.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: ClustersClient.delete
title: ClusterClient.delete
icon: circle-nodes
---

```python
def ClustersClient.delete(cluster_or_slug: Cluster | str)
def ClusterClient.delete(cluster_or_slug: Cluster | str)
```

Delete a cluster.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: ClustersClient.find
title: ClusterClient.find
icon: circle-nodes
---

```python
def ClustersClient.find(cluster_or_slug: Cluster | str): Cluster
def ClusterClient.find(cluster_or_slug: Cluster | str): Cluster
```

Get a cluster by its slug.
Expand Down
8 changes: 4 additions & 4 deletions mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,10 @@
"api-reference/python/tilebox.workflows/TaskRunner.run_forever",
"api-reference/python/tilebox.workflows/ExecutionContext.submit_subtask",
"api-reference/python/tilebox.workflows/ExecutionContext.job_cache",
"api-reference/python/tilebox.workflows/ClustersClient.create",
"api-reference/python/tilebox.workflows/ClustersClient.find",
"api-reference/python/tilebox.workflows/ClustersClient.delete",
"api-reference/python/tilebox.workflows/ClustersClient.all",
"api-reference/python/tilebox.workflows/ClusterClient.create",
"api-reference/python/tilebox.workflows/ClusterClient.find",
"api-reference/python/tilebox.workflows/ClusterClient.delete",
"api-reference/python/tilebox.workflows/ClusterClient.all",
"api-reference/python/tilebox.workflows/JobCache.group",
"api-reference/python/tilebox.workflows/JobCache.__iter__",
"api-reference/python/tilebox.workflows/JobClient.submit",
Expand Down