Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"parameters": {
"api-version": "2019-05-01",
"resourceGroupName": "testResourceGroup",
"subscriptionId": "<Azure-subscription-ID>",
"integrationAccountName": "testIntegrationAccount",
"mapName": "testMap",
"map": {
"properties": {
"mapType": "Xslt",
"contentLink": {
"uri": "<blob-SAS-URL-for-map>"
},
"contentType": "application/xml",
"metadata": {}
},
"location": "westus"
}
},
"responses": {
"200": {
"body": {
"properties": {
"mapType": "Xslt",
"contentLink": {
"uri": "<URI>",
"contentVersion": "\"0x8D9EB9F6691E7A2\"",
"contentSize": 7888419,
"contentHash": {
"algorithm": "md5",
"value": "GxQRrFCYoyH58kMyu34ISg=="
}
},
"createdTime": "2022-02-09T07:40:10.2863459Z",
"changedTime": "2022-02-09T07:40:10.2906473Z",
"metadata": {}
},
"id": "/subscriptions/<Azure-subscription-ID>/resourceGroups/refresh/providers/Microsoft.Logic/integrationAccounts/testIntegrationAccount/maps/testMap",
"name": "testMap",
"type": "Microsoft.Logic/integrationAccounts/maps"
}
},
"201": {
"body": {
"properties": {
"mapType": "Xslt",
"contentLink": {
"uri": "<Uri>",
"contentVersion": "\"0x8D9EB9F6691E7A2\"",
"contentSize": 7888419,
"contentHash": {
"algorithm": "md5",
"value": "GxQRrFCYoyH58kMyu34ISg=="
}
},
"createdTime": "2022-02-09T07:40:10.2863459Z",
"changedTime": "2022-02-09T07:40:10.2906473Z",
"metadata": {}
},
"id": "/subscriptions/<Azure-subscription-ID>/resourceGroups/refresh/providers/Microsoft.Logic/integrationAccounts/testIntegrationAccount/maps/testMap",
"name": "testMap",
"type": "Microsoft.Logic/integrationAccounts/maps"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4284,10 +4284,13 @@
"IntegrationAccountMaps"
],
"operationId": "IntegrationAccountMaps_CreateOrUpdate",
"description": "Creates or updates an integration account map.",
"description": "Creates or updates an integration account map. If the map is larger than 4 MB, you need to store the map in an Azure blob and use the blob's Shared Access Signature (SAS) URL as the 'contentLink' property value.",
"x-ms-examples": {
"Create or update a map": {
"$ref": "./examples/IntegrationAccountMaps_CreateOrUpdate.json"
},
"Create or update a map larger than 4 MB": {
"$ref": "./examples/IntegrationAccountLargeMaps_CreateOrUpdate.json"
}
},
"parameters": [
Expand Down