v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
Cloud

Edit Azure Data Source

Edit the metadata of an Azure data source. Metadata refers to any property of the data source that is not related to the data source's cloud data itself.

patch/v1/dataSources/azure/{azureDataSourceId}

Path parameters

azureDataSourceIdstring required

Azure data source ID

Example:azureds_34567

The ID of the Azure data source to edit

Request body

namestring

The new display name to give to the Azure data source

Example request

{
  "name": "Example Azure Data Source - Updated"
}

Response

OK. Returns the edited Azure data source.

dataSourceIdstring required

Azure data source ID

type'azure' required

Example response

{
  "dataSourceId": "azureds_34567",
  "params": {
    "name": "Example Azure Data Source",
    "importType": "adApp",
    "resourceSelection": [
      "Microsoft.Compute/virtualMachines"
    ]
  }
}