Skip to content

Commit 5c4d075

Browse files
jakubnomishushakov
andauthored
Add filtering option for listing sandboxes (#532)
# Description Allow users to filter out sandbox based on metadata --------- Co-authored-by: Mish Ushakov <[email protected]>
1 parent d939c04 commit 5c4d075

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+2346
-349
lines changed

.changeset/tame-needles-fry.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@e2b/python-sdk': patch
3+
'e2b': patch
4+
---
5+
6+
Add filtering by metadata

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -292,4 +292,6 @@ cython_debug/
292292
# SDK reference artifacts
293293
sdk_ref/
294294
sdkRefRoutes.json
295-
spec/openapi_generated.yml
295+
296+
# SDK Client generated spec
297+
spec/openapi_generated.yml

apps/web/src/app/(docs)/docs/sandbox/list/page.mdx

+14-10
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,6 @@ Running sandbox template id: 3e4rngfa34txe0gxc1zf
6363

6464

6565
## Filtering sandboxes
66-
<Note>
67-
This feature is in a private beta.
68-
</Note>
6966

7067
You can filter sandboxes by specifying <Link href="/docs/sandbox/metadata">Metadata</Link> key value pairs.
7168
Specifying multiple key value pairs will return sandboxes that match all of them.
@@ -87,7 +84,9 @@ const sandbox = await Sandbox.create({
8784

8885
// List running sandboxes that has `userId` key with value `123` and `env` key with value `dev`.
8986
const runningSandboxes = await Sandbox.list({
90-
filters: { userId: '123', env: 'dev' } // $HighlightLine
87+
query: {
88+
metadata: { userId: '123', env: 'dev' }, // $HighlightLine
89+
},
9190
})
9291
```
9392
```python
@@ -96,15 +95,20 @@ from e2b_code_interpreter import Sandbox
9695
# Create sandbox with metadata.
9796
sandbox = Sandbox(
9897
metadata={
99-
"env": "dev", # $HighlightLine
100-
"app": "my-app", # $HighlightLine
101-
"user_id": "123", # $HighlightLine
98+
"env": "dev", # $HighlightLine
99+
"app": "my-app", # $HighlightLine
100+
"user_id": "123", # $HighlightLine
102101
},
103102
)
104103

105104
# List running sandboxes that has `userId` key with value `123` and `env` key with value `dev`.
106-
running_sandboxes = Sandbox.list(filters={
107-
"userId": "123", "env": "dev" # $HighlightLine
108-
})
105+
running_sandboxes = Sandbox.list(
106+
query=SandboxQuery(
107+
metadata={
108+
"userId": "123", # $HighlightLine
109+
"env": "dev", # $HighlightLine
110+
}
111+
),
112+
)
109113
```
110114
</CodeGroup>

0 commit comments

Comments
 (0)