Under Linked service properties section property type is to be set to FileServer. This option isn't available in Data Factory while creating a new Linked Service.
⚠Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
@mukulvtilak When we create a Linked Service with type __Azure File Storage__ , it becomes of type "FileServer". The code for a sample Linked Service with Azure File Storage as source is :
{
"name": "FileServerLS",
"type": "Microsoft.DataFactory/factories/linkedservices",
"properties": {
"type": "FileServer",
"typeProperties": {
"host": "<host name>",
"userId": "<user id>",
"encryptedCredential": "****"
}
}
}
I understand that this is the same internally. My suggestion would be that maybe one can consider adding it in the documentation to avoid ambiguity. Thanks.
Sure @mukulvtilak, that makes sense. I am assigning it to the content author to check out.
@linda33wj Can you please have a look at this and do the needful ?
Sorry for the delayed response and thanks for the feedback! I have added a tip in the linked service section as suggested.