Deploy Target
Deploy Target lets you spin up Compute instances on dedicated hypervisors.
Other Operations
get-deploy-target
Retrieve Deploy Target details
GET /deploy-target/{id}Path parameters
| Name | In | Description |
|---|---|---|
id | path |
Responses
Status: 200 - 200
Content-Type: application/json
| Property | Type | Description |
|---|---|---|
description | string | Deploy Target description |
id | string | Deploy Target ID |
name | string | Deploy Target name |
type | string | Deploy Target type Allowed values: edge, dedicated. |
Example output
{
"description": "string",
"id": "string",
"name": "string",
"type": "edge"
}SDK reference for get-deploy-target: golang | Python | Java
CLI: exo api get-deploy-target
list-deploy-targets
List Deploy Targets
GET /deploy-targetResponses
Status: 200 - 200
Content-Type: application/json
| Property | Type | Description |
|---|---|---|
deploy-targets | array[object] | schema details |
Example output
{
"deploy-targets": [
{
"description": "string",
"id": "string",
"name": "string",
"type": "edge"
}
]
}SDK reference for list-deploy-targets: golang | Python | Java
CLI: exo api list-deploy-targets
Last updated on