get_deployment_target
Retrieve detailed information about a specific deployment target using its ID and space name to inspect machine configurations and deployment resources.
Instructions
Get a specific deployment target (machine) by ID
This tool retrieves detailed information about a specific deployment target using its ID. The space name and target ID are both required.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
spaceName | Yes | ||
targetId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"spaceName": {
"type": "string"
},
"targetId": {
"type": "string"
}
},
"required": [
"spaceName",
"targetId"
],
"type": "object"
}