Open ShingoHanai opened 2 years ago
route to CXP team
@ShingoHanai I could see the same behavior and checking internally on the same. I will get back to you.
Thanks Saurabh
@SaurabhSharma-MSFT Thanks for your quick check. Can you share ETA to fix it?
Thanks Shingo Hanai
@ShingoHanai I do not have any ETA as products team needs to look into this issue.
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @antcp, @AzureAppServiceCLI.
Author: | ShingoHanai |
---|---|
Assignees: | SaurabhSharma-MSFT |
Labels: | `Service Attention`, `App Services`, `Logic App`, `customer-reported`, `Auto-Assign` |
Milestone: | - |
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @Azure/azure-logicapps-team.
Author: | ShingoHanai |
---|---|
Assignees: | SaurabhSharma-MSFT |
Labels: | `Service Attention`, `Logic App`, `customer-reported`, `Auto-Assign` |
Milestone: | - |
I have recently reproduced this event with other subscriptions. Is there any progress here?
Best Regards,
Describe the bug After executing following cmd, parameters property including API connection resource id in Logic App code would be removed. --- az logic workflow update --resource-group "{Resource Group}" --name "{Workflow Name}" --state "{Enabled or Disabled}" ---
To Reproduce I reproduced via latest az logic app module.
My Repro
Cmd az logic workflow update --resource-group "logicapps" --name "array" --state "Enabled"
Code before executing the cmd
{ "definition": { "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", "actions": { "Get_blobcontent(V2)": { "inputs": { "host": { "connection": { "name": "@parameters('$connections')['azureblob_2']['connectionId']" } }, "method": "get", "path": "/v2/datasets/@{encodeURIComponent(encodeURIComponent('AccountNameFromSettings'))}/files/@{encodeURIComponent(encodeURIComponent('JTJmdGVzdCUyZmFhYS50eHQ='))}/content", "queries": { "inferContentType": true } }, "metadata": { "JTJmdGVzdCUyZmFhYS50eHQ=": "/test/aaa.txt" }, "runAfter": {}, "type": "ApiConnection" } }, "contentVersion": "1.0.0.0", "outputs": {}, "parameters": { "$connections": { "defaultValue": {}, "type": "Object" } }, "triggers": { "Recurrence": { "evaluatedRecurrence": { "frequency": "Month", "interval": 3 }, "recurrence": { "frequency": "Month", "interval": 3 }, "type": "Recurrence" } } }, "parameters": { "$connections": { "value": { "azureblob_2": { "connectionId": "/subscriptions/subscriptionId/resourceGroups/logicapps/providers/Microsoft.Web/connections/azureblob-5", "connectionName": "azureblob-5", "id": "/subscriptions/subscriptionId/providers/Microsoft.Web/locations/japaneast/managedApis/azureblob" } } } } }
{ "definition": { "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", "actions": { "Get_blobcontent(V2)": { "inputs": { "host": { "connection": { "name": "@parameters('$connections')['azureblob_2']['connectionId']" } }, "method": "get", "path": "/v2/datasets/@{encodeURIComponent(encodeURIComponent('AccountNameFromSettings'))}/files/@{encodeURIComponent(encodeURIComponent('JTJmdGVzdCUyZmFhYS50eHQ='))}/content", "queries": { "inferContentType": true } }, "metadata": { "JTJmdGVzdCUyZmFhYS50eHQ=": "/test/aaa.txt" }, "runAfter": {}, "type": "ApiConnection" } }, "contentVersion": "1.0.0.0", "outputs": {}, "parameters": { "$connections": { "defaultValue": {}, "type": "Object" } }, "triggers": { "Recurrence": { "evaluatedRecurrence": { "frequency": "Month", "interval": 3 }, "recurrence": { "frequency": "Month", "interval": 3 }, "type": "Recurrence" } } }, "parameters": {} }
Expected behavior There expected to be no change parameters property in Logic App code.
Environment summary All Consumption Logic App has API connection.
Additional context The parameters property has data of API connection. This impact is very large.