Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
xuehongg authored Mar 2, 2022
1 parent ad0891b commit 0cbbd66
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 1 deletion.
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

0 comments on commit 0cbbd66

Please sign in to comment.