Cloud
Create Model from Azure Data Source
Create a new model containing the visualization of data from an Azure data source. Returns a jobId that can be used to retrieve the status from the Get "Create Model from Azure Data Source" Job Status endpoint.
post/v1/documents/cloud/azure
Request body
Example request
{
"title": "Azure Infrastructure Diagram",
"dataSources": [
{
"dataSourceId": "azureds_34567",
"filter": {
"azureTags": [
{
"key": "Environment",
"value": "Production"
}
],
"includeUntaggedResources": true,
"resourceGroups": [
"Some-Azure-Resource::Some-Azure-Server"
]
}
}
],
"autosync": true,
"viewTemplates": [
"virtual-network-topology",
"resources"
]
}Response
Accepted. Occurs when the model creation job has been queued.
Example response
{
"jobId": "jobr_2f5e5b82-6f1d-4c9f-932a-14e43cf30454"
}