Skip to content
Merged
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
13 changes: 13 additions & 0 deletions .speakeasy/in.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6561,6 +6561,8 @@ components:
example:
type: 'container_auto'
properties:
file_ids:
$ref: '#/components/schemas/ContainerFileIds'
network_policy:
$ref: '#/components/schemas/ContainerNetworkPolicy'
type:
Expand Down Expand Up @@ -6612,6 +6614,15 @@ components:
- 'path'
- 'source'
type: 'object'
ContainerFileIds:
description: 'Workspace file ids (or_file_…) to attach into the container before the first command runs. Each file is copied to the container home as a writable copy named {last 8 characters of the file id}-{base filename} (a file stored as data/report.csv with id or_file_…NR6q4V8w attaches to ~/NR6q4V8w-report.csv), so same-named files never collide; the source document is never modified. Unknown, foreign, or malformed ids fail the request with a 400 before any command executes. Max 20 ids.'
example:
- 'or_file_011CNha8iCJcU1wXNR6q4V8w'
items:
minLength: 1
type: 'string'
maxItems: 20
type: 'array'
ContainerFileListResponse:
properties:
data:
Expand Down Expand Up @@ -6697,6 +6708,8 @@ components:
minLength: 1
pattern: '^[\w-]+$'
type: 'string'
file_ids:
$ref: '#/components/schemas/ContainerFileIds'
network_policy:
$ref: '#/components/schemas/ContainerNetworkPolicy'
type:
Expand Down
Loading