Dynamically changing the connection string for Tablestorage or blob storage in Azure data factory. Currently, I could see such option for database related dataset? How to achie
In the New Linked service Azure table storage and Click on Advanced and check Specify Dynamic contents in JSON format adf
Copy the below JSON to make it Table Storage Parameterize :
{
"name": "Table",
"type": "Microsoft.DataFactory/factories/linkedservices",
"properties": {
"type": "AzureTableStorage",
"typeProperties": {
"sasUri": {
"type": "SecureString",
"value": "@{linkedService().sasUriParam}"
}
},
"parameters": {
"sasUriParam": {
"type": "String"
}
},
"annotations": []
}
}