For an ADF Linked Service JSON definition how can I add the equivalent of a WInSCP AddRawSettings("FtpHost", "0") session option please?

GB
6
Reputation points
Hello, How may I find the ADF Linked Service JSON definition such that it might explain how to add the equivalent of a WInSCP AddRawSettings("FtpHost", "0")
session option please to the following code?
Please assume I know very little, many thanks
{
"name": "FtpServer",
"properties": {
"annotations": [],
"type": "FtpServer",
"typeProperties": {
"host": "xxxx.xxxxxx.co.uk",
"port": 21,
"enableSsl": true,
"enableServerCertificateValidation": true,
"authenticationType": "Basic",
"userName": "anonymous",
"password": {
"type": "AzureKeyVaultSecret",
"store": {
"referenceName": "AzureKeyVault1xx_kv_ls",
"type": "LinkedServiceReference"
},
"secretName": xxxxxxxx/29a2dbb11319452f829a4d35b78b9b76
}
},
"connectVia": {
"referenceName": "IR-xx",
"type": "IntegrationRuntimeReference"
}
}
}
Sign in to answer