Brev
Official
by brevdev
create_workspace
Create a workspace from an instance type and cloud provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cloud_provider | Yes | The cloud provider for the workspace | |
instance_type | No | The instance type of the workspace | |
name | No | The name of the workspace |
Input Schema (JSON Schema)
{
"properties": {
"cloud_provider": {
"description": "The cloud provider for the workspace",
"enum": [
"aws",
"gcp",
"azure",
"crusoe",
"lambda-labs",
"fluidstack",
"launchpad",
"akash",
"gcpalpha"
]
},
"instance_type": {
"description": "The instance type of the workspace",
"type": "string"
},
"name": {
"description": "The name of the workspace",
"type": "string"
}
},
"required": [
"cloud_provider"
],
"type": "object"
}