find_path
Discover connection paths between Azure resources to analyze network connectivity and troubleshoot infrastructure relationships.
Instructions
Find connection path between two Azure resources
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sourceId | Yes | Source resource ID | |
targetId | Yes | Target resource ID |
Input Schema (JSON Schema)
{
"properties": {
"sourceId": {
"description": "Source resource ID",
"type": "string"
},
"targetId": {
"description": "Target resource ID",
"type": "string"
}
},
"required": [
"sourceId",
"targetId"
],
"type": "object"
}