Cloud
Create Azure Data Source
Create a new data source from Azure data. Returns a jobId that can be used to check the status of the operation through the Get "Create Azure Data Source" Job Status endpoint.
post/v1/dataSources/azure
Request body
Example request
{
"name": "Example Azure Data Source",
"azureCredentialId": "azure_34567",
"tenantId": "de991a0e-5765-429a-bc8e-1a053bb61911",
"subscriptionIds": [
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
],
"resourceSelection": [
"Microsoft.Compute/virtualMachines",
"Microsoft.Storage/storageAccounts"
]
}Response
Accepted. Occurs when the creation job has been queued.
Example response
{
"jobId": "jobr_2f5e5b82-6f1d-4c9f-932a-14e43cf30454"
}