get_deployment
Retrieve deployment details by ID from Prefect's workflow automation platform to access configuration, status, and execution information for workflow management.
Instructions
Get details of a specific deployment by ID.
Args: deployment_id: The deployment UUID
Returns: Deployment details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployment_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"deployment_id": {
"title": "Deployment Id",
"type": "string"
}
},
"required": [
"deployment_id"
],
"type": "object"
}