skip to Main Content

I’m creating a Data Factory configuration and a pipeline in Python.

I successfully added Azure Blob Storage and Azure Key Vault to the linked services, but got stuck on adding (serverless)Azure Synapse Analytics, as simply I was not able to find the relevant class within azure.mgmt.datafactory.models. I’m sure I’m something missing, as I could add it flawlessly through UI, so there must be a way to add it within Python?

https://learn.microsoft.com/en-us/python/api/azure-mgmt-datafactory/azure.mgmt.datafactory.models?view=azure-python

Appreciate any help, thanks!

2

Answers


  1. Chosen as BEST ANSWER

    Turned out Synapse can be linked to the Data Factory through AzureSqlDWLinkedService class


  2. Kindly refer the following documentation for step-by-step instructions for Azure Synapse Analytics linked service in Data Factory using Python

    Link

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search