list_deployment_targets
Retrieve deployment targets (machines) from a specified space with optional filtering by name, roles, health status, and other parameters to identify available infrastructure for deployments.
Instructions
List deployment targets (machines) in a space
This tool lists all deployment targets in a given space. The space name is required. You can optionally filter by various parameters like name, roles, health status, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commStyles | No | ||
deploymentId | No | ||
deploymentTargetTypes | No | ||
environmentIds | No | ||
healthStatuses | No | Possible values: Healthy, Unhealthy, Unavailable, Unknown, HasWarnings | |
ids | No | ||
isDisabled | No | ||
name | No | ||
partialName | No | ||
roles | No | A list of roles / target tags to filter by. | |
shellNames | No | ||
skip | No | ||
spaceName | Yes | ||
take | No | ||
tenantIds | No | ||
tenantTags | No | ||
thumbprint | No |
Input Schema (JSON Schema)
{
"properties": {
"commStyles": {
"items": {
"type": "string"
},
"type": "array"
},
"deploymentId": {
"type": "string"
},
"deploymentTargetTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"environmentIds": {
"items": {
"type": "string"
},
"type": "array"
},
"healthStatuses": {
"description": "Possible values: Healthy, Unhealthy, Unavailable, Unknown, HasWarnings",
"items": {
"type": "string"
},
"type": "array"
},
"ids": {
"items": {
"type": "string"
},
"type": "array"
},
"isDisabled": {
"type": "boolean"
},
"name": {
"type": "string"
},
"partialName": {
"type": "string"
},
"roles": {
"description": "A list of roles / target tags to filter by.",
"items": {
"type": "string"
},
"type": "array"
},
"shellNames": {
"items": {
"type": "string"
},
"type": "array"
},
"skip": {
"type": "number"
},
"spaceName": {
"type": "string"
},
"take": {
"type": "number"
},
"tenantIds": {
"items": {
"type": "string"
},
"type": "array"
},
"tenantTags": {
"items": {
"type": "string"
},
"type": "array"
},
"thumbprint": {
"type": "string"
}
},
"required": [
"spaceName"
],
"type": "object"
}