Linked Service JSON new vs Old - comparison




{
    "name": "AzureStorageLinkedService",
    "properties": {
        "type": "AzureStorage",
        "typeProperties": {
            "connectionString": {
                "value": "DefaultEndpointsProtocol=https;AccountName=<accountName>;AccountKey=<accountKey>;EndpointSuffix=core.windows.net",
                "type": "SecureString"
            }
        }
    }
}
---------------------- Difference in Linked Service JSON New vs Old

{
  "name": "AzureStorageLinkedService",
  "properties": {
  "type": "AzureStorage",
  "typeProperties": {
  "connectionString": "DefaultEndpointsProtocol=https;AccountName=<accountname>;AccountKey=<accountkey>"
  }
  }
 }


New properties

Comments

Popular posts from this blog

How to access output of any activity in another connected activity. - Lookup Activity