From ba36f841c08ce7e9495d66f2c8632c72be35d638 Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Tue, 22 Dec 2015 10:50:57 -0800 Subject: [PATCH 01/19] New-AzureLogicApp PowerShell command with unittest and scenario test with Installer and PowerShell help included. --- setup/azurecmdfiles.wxi | 12936 ++++++++-------- .../LogicApp/.nuget/packages.config | 4 + .../LogicApp/AzureRM.LogicApp.psd1 | 88 + .../Commands.LogicApp.Test.csproj | 231 + .../Commands.LogicApp.Test/MSSharedLibKey.snk | Bin 0 -> 160 bytes .../Properties/AssemblyInfo.cs | 50 + .../TestSimpleWorkflowActionDefinition.json | 45 + .../TestSimpleWorkflowDefinition.json | 27 + .../TestSimpleWorkflowParameter.json | 5 + .../TestSimpleWorkflowTriggerDefinition.json | 27 + .../ScenarioTests/Common.ps1 | 71 + .../ScenarioTests/WorkflowController.cs | 236 + .../ScenarioTests/WorkflowTests.cs | 128 + .../ScenarioTests/WorkflowTests.ps1 | 232 + ...estNewLogicAppUsingDefinitionFilePath.json | 227 + .../TestNewLogicAppUsingDefinitionObject.json | 227 + ...UsingDefinitionObjectAndParameterFile.json | 227 + ...NewLogicAppUsingDefinitionWithActions.json | 227 + ...ewLogicAppUsingDefinitionWithTriggers.json | 227 + ...ogicAppUsingInputParameterAsHashTable.json | 227 + ...wLogicAppUsingInputfromWorkflowObject.json | 290 + ...NewLogicAppUsingResourcegroupPipeline.json | 227 + .../TestNewLogicAppUsingSkuPipeline.json | 227 + .../TestNewLogicAppWithPlanId.json | 227 + .../UnitTests/CreateLogicAppTests.cs | 71 + .../UnitTests/LogicAppUnitTestBase.cs | 55 + .../Commands.LogicApp.Test/app.config | 11 + .../Commands.LogicApp.Test/packages.config | 28 + .../Cmdlets/NewAzureLogicAppCommand.cs | 235 + .../Commands.LogicApp.csproj | 185 + .../Commands.LogicApp/MSSharedLibKey.snk | Bin 0 -> 160 bytes ....Azure.Commands.LogicApp.dll-help.Help.xml | 717 + ...soft.Azure.Commands.LogicApp.dll-help.psd1 | 85 + .../Properties/AssemblyInfo.cs | 39 + .../Properties/Resource.Designer.cs | 90 + .../Properties/Resource.resx | 129 + .../Commands.LogicApp/Utilities/Constants.cs | 25 + .../Utilities/LogicAppBaseCmdlet.cs | 50 + .../Utilities/LogicAppClient.cs | 87 + .../Utilities/ParameterSet.cs | 36 + .../Commands.LogicApp/packages.config | 19 + src/ResourceManager/LogicApp/LogicApp.sln | 80 + src/ResourceManager/LogicApp/NuGet.Config | 6 + 43 files changed, 11958 insertions(+), 6403 deletions(-) create mode 100644 src/ResourceManager/LogicApp/.nuget/packages.config create mode 100644 src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/MSSharedLibKey.snk create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowActionDefinition.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowDefinition.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowParameter.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowTriggerDefinition.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/Common.ps1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/app.config create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/MSSharedLibKey.snk create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.Help.xml create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.psd1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/packages.config create mode 100644 src/ResourceManager/LogicApp/LogicApp.sln create mode 100644 src/ResourceManager/LogicApp/NuGet.Config diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 5a3141a3d528..eead2cd2b528 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -1,6417 +1,6547 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ResourceManager/LogicApp/.nuget/packages.config b/src/ResourceManager/LogicApp/.nuget/packages.config new file mode 100644 index 000000000000..091917678945 --- /dev/null +++ b/src/ResourceManager/LogicApp/.nuget/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 b/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 new file mode 100644 index 000000000000..2a05e5609ebf --- /dev/null +++ b/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 @@ -0,0 +1,88 @@ +# +# Module manifest for module 'Microsoft.Azure.Commands.LogicApp' +# +# Generated by: Microsoft Corporation +# +# Generated on: 10/22/2015 +# + +@{ + +# Version number of this module. +ModuleVersion = '0.10.0' + +# ID used to uniquely identify this module +GUID = '8A7D44BB-E747-4265-8F22-B3937961D709' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = 'Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = 'Microsoft Azure PowerShell - LogicApp cmdlets for Azure Resource Manager' + +# Minimum version of the Windows PowerShell engine required by this module +PowerShellVersion = '3.0' + +# Name of the Windows PowerShell host required by this module +PowerShellHostName = '' + +# Minimum version of the Windows PowerShell host required by this module +PowerShellHostVersion = '' + +# Minimum version of the .NET Framework required by this module +DotNetFrameworkVersion = '4.0' + +# Minimum version of the common language runtime (CLR) required by this module +CLRVersion='4.0' + +# Processor architecture (None, X86, Amd64, IA64) required by this module +ProcessorArchitecture = 'None' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @( @{ ModuleName = 'AzureRM.Profile'; ModuleVersion = '1.0.1'} ) + +# Assemblies that must be loaded prior to importing this module +RequiredAssemblies = @() + +# Script files (.ps1) that are run in the caller's environment prior to importing this module +ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +FormatsToProcess = @() + +# Modules to import as nested modules of the module specified in ModuleToProcess +NestedModules = @( + '.\Microsoft.Azure.Commands.LogicApp.dll' +) + +# Functions to export from this module +FunctionsToExport = '*' + +# Cmdlets to export from this module +CmdletsToExport = '*' + +# Variables to export from this module +VariablesToExport = '*' + +# Aliases to export from this module +AliasesToExport = @() + +# List of all modules packaged with this module +ModuleList = @() + +# List of all files packaged with this module +FileList = @() + +# Private data to pass to the module specified in ModuleToProcess +PrivateData = '' + +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj new file mode 100644 index 000000000000..61abd6c016c5 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj @@ -0,0 +1,231 @@ + + + + + + Debug + AnyCPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107} + Library + Properties + Microsoft.Azure.Commands.LogicApp.Test + Microsoft.Azure.Commands.LogicApp.Test + v4.5 + 512 + {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 10.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages + False + ..\ + true + a5adf578 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + false + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + false + + + + False + ..\..\..\packages\Hyak.Common.1.0.3\lib\net45\Hyak.Common.dll + + + False + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll + + + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.4.1-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + True + + + False + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + True + + + False + ..\..\..\packages\Microsoft.Azure.Gallery.2.6.2-preview\lib\net40\Microsoft.Azure.Gallery.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.Logic.0.1.0-preview\lib\net45\Microsoft.Azure.Management.Logic.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.11-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + + False + ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5799.28345-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll + + + False + ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.6.0-preview\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll + + + False + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + + False + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.4.1\lib\dotnet\Microsoft.Rest.ClientRuntime.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll + + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.1.2.1-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.TestFramework.1.2.0-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll + + + ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll + True + + + ..\..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll + + + False + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + + + + + + + + 3.5 + + + False + + + ..\..\..\packages\xunit.1.9.2\lib\net20\xunit.dll + True + + + ..\..\..\packages\xunit.extensions.1.9.2\lib\net20\xunit.extensions.dll + True + + + + + + + + + + + + PreserveNewest + + + + Designer + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + + + {3436a126-edc9-4060-8952-9a1be34cdd95} + Commands.ScenarioTests.ResourceManager.Common + + + {ffe4e475-b32c-4f89-9d52-f7cebf709c74} + Commands.LogicApp + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/MSSharedLibKey.snk b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/MSSharedLibKey.snk new file mode 100644 index 0000000000000000000000000000000000000000..695f1b38774e839e5b90059bfb7f32df1dff4223 GIT binary patch literal 160 zcmV;R0AK$ABme*efB*oL000060ssI2Bme+XQ$aBR1ONa50098C{E+7Ye`kjtcRG*W zi8#m|)B?I?xgZ^2Sw5D;l4TxtPwG;3)3^j?qDHjEteSTF{rM+4WI`v zCD?tsZ^;k+S&r1&HRMb=j738S=;J$tCKNrc$@P|lZ +function Get-ResourceGroupName +{ + return getAssetName +} + +<# +.SYNOPSIS +Gets valid resource name +#> +function Get-ResourceName +{ + return getAssetName +} + +<# +.SYNOPSIS +Gets the default location for a provider +#> +function Get-ProviderLocation($provider) +{ + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + $namespace = $provider.Split("/")[0] + if($provider.Contains("/")) + { + $type = $provider.Substring($namespace.Length + 1) + $location = Get-AzureRmResourceProvider -ProviderNamespace $namespace | where {$_.ResourceTypes[0].ResourceTypeName -eq $type} + + if ($location -eq $null) + { + return "West US" + } else + { + return $location.Locations[0] + } + } + + return "West US" + } + + return "WestUS" +} + +<# +.SYNOPSIS +Creates a resource group to use in tests +#> +function TestSetup-CreateResourceGroup +{ + $resourceGroupName = getAssetName + $rglocation = Get-ProviderLocation "North Europe" + $resourceGroup = New-AzureRmResourceGroup -Name $resourceGroupName -location $rglocation -Force + return $resourceGroup +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs new file mode 100644 index 000000000000..1220b219a311 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs @@ -0,0 +1,236 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Common.Authentication; + using Microsoft.Azure.Gallery; + using Microsoft.Azure.Management.Authorization; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Subscriptions; + using Microsoft.Azure.Test.HttpRecorder; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using LegacyTest = Microsoft.Azure.Test; + using TestEnvironmentFactory = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestEnvironmentFactory; + using TestUtilities = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities; + + /// + /// Test controller for the logic app scenario testing + /// + public class WorkflowController + { + /// + /// CSM test factory + /// + private LegacyTest.CSMTestEnvironmentFactory csmTestFactory; + + /// + /// EnvironmentSetupHelper instance + /// + private EnvironmentSetupHelper helper; + + /// + /// Authorization Api Version + /// + private const string AuthorizationApiVersion = "2014-07-01-preview"; + + /// + /// Gets or sets the ResourceManagementClient + /// + public ResourceManagementClient ResourceManagementClient { get; private set; } + + /// + /// Gets or sets the SubscriptionClient + /// + public SubscriptionClient SubscriptionClient { get; private set; } + + /// + /// Gets or sets the LogicManagementClient + /// + public LogicManagementClient LogicManagementClient { get; private set; } + + /// + /// Gets or sets the AuthorizationManagementClient + /// + public AuthorizationManagementClient AuthorizationManagementClient { get; private set; } + + /// + /// Gets or sets the GalleryClient + /// + public GalleryClient GalleryClient { get; private set; } + + /// + /// Create a new instance of workflow controller. + /// + public static WorkflowController NewInstance + { + get { return new WorkflowController(); } + } + + /// + /// Initiliazes the workflow controller + /// + public WorkflowController() + { + helper = new EnvironmentSetupHelper(); + } + + /// + /// Runs the PowerShell test + /// + /// script to be executed + public void RunPowerShellTest(params string[] scripts) + { + var callingClassType = TestUtilities.GetCallingClass(2); + var mockName = TestUtilities.GetCurrentMethodName(2); + + RunPsTestWorkflow( + () => scripts, + // no custom initializer + null, + // no custom cleanup + null, + callingClassType, + mockName); + } + + /// + /// Runs the PowerShell test under mock undo context based on the test mode setting (Record|Playback) + /// + /// Script builder delegate + /// initialize action + /// cleanup action + /// Calling class type + /// Mock Name + public void RunPsTestWorkflow( + Func scriptBuilder, + Action initialize, + Action cleanup, + string callingClassType, + string mockName) + { + Dictionary d = new Dictionary(); + d.Add("Microsoft.Authorization", AuthorizationApiVersion); + HttpMockServer.Matcher = new PermissiveRecordMatcherWithApiExclusion(false, d); + + using (MockContext context = MockContext.Start(callingClassType, mockName)) + { + this.csmTestFactory = new LegacyTest.CSMTestEnvironmentFactory(); + if (initialize != null) + { + initialize(this.csmTestFactory); + } + SetupManagementClients(context); + helper.SetupEnvironment(AzureModule.AzureResourceManager); + + var callingClassName = callingClassType + .Split(new[] {"."}, StringSplitOptions.RemoveEmptyEntries) + .Last(); + helper.SetupModules(AzureModule.AzureResourceManager, + "ScenarioTests\\Common.ps1", + "ScenarioTests\\" + callingClassName + ".ps1", + helper.RMProfileModule, + helper.RMResourceModule, + helper.GetRMModulePath(@"AzureRM.LogicApp.psd1")); + + try + { + if (scriptBuilder != null) + { + var psScripts = scriptBuilder(); + + if (psScripts != null) + { + helper.RunPowerShellTest(psScripts); + } + } + } + finally + { + if (cleanup != null) + { + cleanup(); + } + } + } + } + + /// + /// Set up mock clients + /// + /// + private void SetupManagementClients(MockContext context) + { + ResourceManagementClient = GetResourceManagementClient(); + SubscriptionClient = GetSubscriptionClient(); + AuthorizationManagementClient = GetAuthorizationManagementClient(); + GalleryClient = GetGalleryClient(); + LogicManagementClient = GetLogicManagementClient(context); + helper.SetupManagementClients(ResourceManagementClient, + SubscriptionClient, + AuthorizationManagementClient, + GalleryClient, + LogicManagementClient + ); + } + + /// + /// Create an AuthorizationManagementClient instance based on mode setting + /// + /// AuthorizationManagementClient instance + private AuthorizationManagementClient GetAuthorizationManagementClient() + { + return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory); + } + + /// + /// Creates a ResourceManagementClient instance + /// + /// ResourceManagementClient instance + private ResourceManagementClient GetResourceManagementClient() + { + return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory); + } + + /// + /// Creates LogicManagementClient instance based on mode setting + /// + /// Mock undocontext + /// LogicManagementClient instance + private LogicManagementClient GetLogicManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private SubscriptionClient GetSubscriptionClient() + { + return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory); + } + + /// + /// Creates a Gallery Client based on mode setting + /// + /// GalleryClient instamce + private GalleryClient GetGalleryClient() + { + return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory); + } + } +} + diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs new file mode 100644 index 000000000000..16abcdd542f1 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs @@ -0,0 +1,128 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests +{ + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; + using Xunit; + + /// + /// Scenario tests for the Create logic app command + /// + public class WorkflowTests : RMTestBase + { + + /// + /// Test New-AzurelogicApp command with Definition file and parameter file. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewLogicAppUsingDefinitionFilePath() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionFilePath"); + } + + /// + /// Test New-AzurelogicApp command with Definition and parameter object as parameter. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewLogicAppUsingDefinitionObject() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionObject"); + } + + /// + /// Test New-AzurelogicApp command with Definition object and parameter file as parameter. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewLogicAppUsingDefinitionObjectAndParameterFile() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionObjectAndParameterFile"); + } + + /// + /// Test New-AzurelogicApp command with pipe input from resource group. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewLogicAppUsingResourcegroupPipeline() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingResourcegroupPipeline"); + } + + /// + /// Test New-AzurelogicApp command with plan id. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewLogicAppWithPlanId() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppWithPlanId"); + } + + /// + /// Test New-AzurelogicApp command with pipe input for SKU parameters. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewLogicAppUsingSkuPipeline() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingSkuPipeline"); + } + + /// + /// Test New-AzurelogicApp command with workflow object for parameters and definition input. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewLogicAppUsingInputfromWorkflowObject() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingInputfromWorkflowObject"); + } + + /// + /// Test New-AzurelogicApp command with parameters parameter as Hashtable + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewLogicAppUsingInputParameterAsHashTable() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingInputParameterAsHashTable"); + } + + /// + /// Test New-AzurelogicApp command with workflow definition with triggers + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewLogicAppUsingDefinitionWithTriggers() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionWithTriggers"); + } + + /// + /// Test New-AzurelogicApp command with workflow definition with actions + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewLogicAppUsingDefinitionWithActions() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionWithActions"); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 new file mode 100644 index 000000000000..c8692387485e --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 @@ -0,0 +1,232 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test New-AzureLogicApp with physical file paths +#> +function Test-NewLogicAppUsingDefinitionFilePath +{ + $endpointName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Location "westus" -State "Enabled" -PlanName "StandardServicePlan" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath -SkuName "Standard" + + Assert-NotNull $workflow + Assert-AreEqual $workflowName $workflow.Name + Assert-NotNull $workflow.Definition + Assert-NotNull $workflow.Parameters +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with object type parameters +#> +function Test-NewLogicAppUsingDefinitionObject +{ + $endpointName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + + $definition = [IO.File]::ReadAllText("Resources\TestSimpleWorkflowDefinition.json") + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Location "westus" -State "Enabled" -SkuName "Standard" -PlanName "StandardServicePlan" -Definition $definition -ParameterFilePath $parameterFilePath + + Assert-NotNull $workflow + Assert-AreEqual $workflowName $workflow.Name + Assert-NotNull $workflow.Definition + Assert-NotNull $workflow.Parameters +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with Definition file and object parameters +#> +function Test-NewLogicAppUsingDefinitionObjectAndParameterFile +{ + $endpointName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + + $definition = [IO.File]::ReadAllText("Resources\TestSimpleWorkflowDefinition.json") + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Location "westus" -State "Enabled" -SkuName "Standard" -PlanName "StandardServicePlan" -Definition $definition -ParameterFilePath $parameterFilePath + + Assert-NotNull $workflow + Assert-AreEqual $workflowName $workflow.Name + Assert-NotNull $workflow.Definition + Assert-NotNull $workflow.Parameters +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with Pipeline Input from ResourceGroupObject +#> +function Test-NewLogicAppUsingResourcegroupPipeline +{ + $endpointName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -State "Enabled" -SkuName "Standard" -PlanName "StandardServicePlan" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + + Assert-NotNull $workflow + Assert-AreEqual $workflowName $workflow.Name + Assert-NotNull $workflow.Definition + Assert-NotNull $workflow.Parameters +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with SKU Plan ID +#> +function Test-NewLogicAppWithPlanId +{ + $endpointName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + + $resourceGroupName = $resourceGroup.ResourceGroupName + $planId = "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/$resourceGroupName/providers/Microsoft.Web/serverfarms/StandardServicePlan" + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -State "Enabled" -SkuName "Standard" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath -PlanId $planId -PlanName "StandardServicePlan" + + Assert-NotNull $workflow + Assert-NotNull $workflow.Definition + Assert-NotNull $workflow.Parameters + Assert-AreEqual $workflowName $workflow.Name +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with Pipeline Input from Sku +#> +function Test-NewLogicAppUsingSkuPipeline +{ + $endpointName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + $planId = "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/$resourceGroupName/providers/Microsoft.Web/serverfarms/StandardServicePlan" + + #Custom Sku Object + $SkuObject = [PSCustomObject]@{ + SkuName = 'Standard' + PlanName = 'StandardServicePlan' + PlanId = $planId + } + + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + + $workflow = $SkuObject | New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + + Assert-NotNull $workflow + Assert-NotNull $workflow.Definition + Assert-NotNull $workflow.Parameters + Assert-AreEqual $workflowName $workflow.Name + Assert-AreEqual "Enabled" $workflow.State +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with workflow object +#> +function Test-NewLogicAppUsingInputfromWorkflowObject +{ + $endpointName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath -PlanName "StandardServicePlan" -SkuName "Standard" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -Definition $workflow.Definition -Parameters $workflow.Parameters -PlanName "StandardServicePlan" -SkuName "Standard" + + Assert-NotNull $workflow + Assert-NotNull $workflow.Definition + Assert-NotNull $workflow.Parameters + Assert-AreEqual $workflowName $workflow.Name + Assert-AreEqual "Enabled" $workflow.State +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with Parameter as hash table +#> +function Test-NewLogicAppUsingInputParameterAsHashTable +{ + $endpointName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameters = @{destinationUri="http://requestb.in/1kj7g8e1"} + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -Parameters $parameters -PlanName "StandardServicePlan" -SkuName "Standard" + + Assert-NotNull $workflow + Assert-NotNull $workflow.Parameters +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with only definition +#> +function Test-NewLogicAppUsingDefinitionWithTriggers +{ + $endpointName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -PlanName "StandardServicePlan" -SkuName "Standard" + + Assert-NotNull $workflow +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with only definition +#> +function Test-NewLogicAppUsingDefinitionWithActions +{ + $endpointName = getAssetname + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + + $definitionFilePath = "Resources\TestSimpleWorkflowActionDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -PlanName "StandardServicePlan" -SkuName "Standard" + + Assert-NotNull $workflow +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json new file mode 100644 index 000000000000..b8ad149e0e32 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json @@ -0,0 +1,227 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8625?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "bc4d46bc-4190-4af8-9caf-afdab204c9ef" + ], + "x-ms-correlation-request-id": [ + "bc4d46bc-4190-4af8-9caf-afdab204c9ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232412Z:bc4d46bc-4190-4af8-9caf-afdab204c9ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:24:11 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8625?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625\",\r\n \"name\": \"onesdk8625\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "5b311c96-0966-4288-a64e-ec09c94082e5" + ], + "x-ms-correlation-request-id": [ + "5b311c96-0966-4288-a64e-ec09c94082e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232412Z:5b311c96-0966-4288-a64e-ec09c94082e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:24:11 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg2MjUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "e39eb02f-9259-4f9c-99aa-e2453120498b" + ], + "x-ms-correlation-request-id": [ + "e39eb02f-9259-4f9c-99aa-e2453120498b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232412Z:e39eb02f-9259-4f9c-99aa-e2453120498b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:24:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625/providers/Microsoft.Logic/workflows/onesdk9425?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTQyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "34bf76c8-97b0-4c0c-915b-c4f210738150" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:24:13.6995949Z\",\r\n \"changedTime\": \"2015-12-21T23:24:13.6995949Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508666319807560\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8625/providers/Microsoft.Logic/workflows/onesdk9425\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625/providers/Microsoft.Logic/workflows/onesdk9425\",\r\n \"name\": \"onesdk9425\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:67267556-726b-4daa-ae8f-681b5284c139" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "9143cc6a-14c8-4d5d-ac7c-e1abf8ff2324" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232413Z:9143cc6a-14c8-4d5d-ac7c-e1abf8ff2324" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:24:13 GMT" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-NewLogicAppUsingDefinitionFilePath": [ + "onesdk7954", + "onesdk8625", + "onesdk9425" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json new file mode 100644 index 000000000000..df40d73fa1db --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json @@ -0,0 +1,227 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk690?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "31dbc7c2-bcd3-478e-9ba6-d15b1a04f316" + ], + "x-ms-correlation-request-id": [ + "31dbc7c2-bcd3-478e-9ba6-d15b1a04f316" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232702Z:31dbc7c2-bcd3-478e-9ba6-d15b1a04f316" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:27:02 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk690?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690\",\r\n \"name\": \"onesdk690\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "d2583195-6ca0-45e5-a4b7-3231b7560d4e" + ], + "x-ms-correlation-request-id": [ + "d2583195-6ca0-45e5-a4b7-3231b7560d4e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232703Z:d2583195-6ca0-45e5-a4b7-3231b7560d4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:27:02 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5MC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "aa240d55-183b-4ec6-9a17-4bba2a7bf421" + ], + "x-ms-correlation-request-id": [ + "aa240d55-183b-4ec6-9a17-4bba2a7bf421" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232703Z:aa240d55-183b-4ec6-9a17-4bba2a7bf421" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:27:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690/providers/Microsoft.Logic/workflows/onesdk1839?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGsxODM5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1178" + ], + "x-ms-client-request-id": [ + "3e8cc810-dd9f-4b07-9631-a6e7ad151576" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:27:04.0869476Z\",\r\n \"changedTime\": \"2015-12-21T23:27:04.0869476Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508664615375054\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk690/providers/Microsoft.Logic/workflows/onesdk1839\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690/providers/Microsoft.Logic/workflows/onesdk1839\",\r\n \"name\": \"onesdk1839\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:84705bcf-69f6-4462-a0af-70875e677e81" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f28c1059-6c8c-4bb3-9557-9ed925c46213" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232704Z:f28c1059-6c8c-4bb3-9557-9ed925c46213" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:27:03 GMT" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-NewLogicAppUsingDefinitionObject": [ + "onesdk1624", + "onesdk690", + "onesdk1839" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json new file mode 100644 index 000000000000..f56943de1a88 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json @@ -0,0 +1,227 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2887?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI4ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "e5060622-5c08-4068-9d7e-e230e3d85334" + ], + "x-ms-correlation-request-id": [ + "e5060622-5c08-4068-9d7e-e230e3d85334" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232634Z:e5060622-5c08-4068-9d7e-e230e3d85334" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:26:34 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2887?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI4ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887\",\r\n \"name\": \"onesdk2887\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "7d1ddc1f-d53b-4ca1-bd19-11fbcc558771" + ], + "x-ms-correlation-request-id": [ + "7d1ddc1f-d53b-4ca1-bd19-11fbcc558771" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232635Z:7d1ddc1f-d53b-4ca1-bd19-11fbcc558771" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:26:34 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI4ODcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "cde1dd61-abee-47e2-ac7d-fed0dd3c9ba3" + ], + "x-ms-correlation-request-id": [ + "cde1dd61-abee-47e2-ac7d-fed0dd3c9ba3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232635Z:cde1dd61-abee-47e2-ac7d-fed0dd3c9ba3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:26:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887/providers/Microsoft.Logic/workflows/onesdk1156?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE1Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "d9ee3a0c-2bad-47e6-9c60-5be0a65c54d3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:26:36.6147353Z\",\r\n \"changedTime\": \"2015-12-21T23:26:36.6147353Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508664890610660\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2887/providers/Microsoft.Logic/workflows/onesdk1156\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887/providers/Microsoft.Logic/workflows/onesdk1156\",\r\n \"name\": \"onesdk1156\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:5f3ab0bb-d6aa-4302-8b87-7a3013f3cfbb" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "40e80c07-1de4-44c3-b9d5-6fd2cbc7375b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232636Z:40e80c07-1de4-44c3-b9d5-6fd2cbc7375b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:26:36 GMT" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-NewLogicAppUsingDefinitionObjectAndParameterFile": [ + "onesdk370", + "onesdk2887", + "onesdk1156" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json new file mode 100644 index 000000000000..188d7a369b82 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json @@ -0,0 +1,227 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5094?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "f9a66be1-0c2d-4b18-9ecc-2e77cfcbcbc5" + ], + "x-ms-correlation-request-id": [ + "f9a66be1-0c2d-4b18-9ecc-2e77cfcbcbc5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232344Z:f9a66be1-0c2d-4b18-9ecc-2e77cfcbcbc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:23:44 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5094?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094\",\r\n \"name\": \"onesdk5094\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ef2beff9-7455-48e1-bcdd-2dfd22422cdc" + ], + "x-ms-correlation-request-id": [ + "ef2beff9-7455-48e1-bcdd-2dfd22422cdc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232345Z:ef2beff9-7455-48e1-bcdd-2dfd22422cdc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:23:45 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "73598df0-df66-41f9-a0b7-dbfc1e751fbe" + ], + "x-ms-correlation-request-id": [ + "73598df0-df66-41f9-a0b7-dbfc1e751fbe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232345Z:73598df0-df66-41f9-a0b7-dbfc1e751fbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:23:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094/providers/Microsoft.Logic/workflows/onesdk2926?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjkyNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1627" + ], + "x-ms-client-request-id": [ + "990e7b0b-5347-4499-99dd-43c8c63a8b97" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:23:46.9313867Z\",\r\n \"changedTime\": \"2015-12-21T23:23:46.9313867Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508666586173266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5094/providers/Microsoft.Logic/workflows/onesdk2926\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094/providers/Microsoft.Logic/workflows/onesdk2926\",\r\n \"name\": \"onesdk2926\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:ca552b14-46fb-4f66-8ad1-d7c257f5d5ba" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "cedd916a-56a9-452e-ab1b-7531d29f6e45" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232347Z:cedd916a-56a9-452e-ab1b-7531d29f6e45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:23:46 GMT" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-NewLogicAppUsingDefinitionWithActions": [ + "onesdk5248", + "onesdk5094", + "onesdk2926" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json new file mode 100644 index 000000000000..d3d288e038e6 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json @@ -0,0 +1,227 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8078?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "48fd172c-dfec-459e-9dad-22984b9a6790" + ], + "x-ms-correlation-request-id": [ + "48fd172c-dfec-459e-9dad-22984b9a6790" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232509Z:48fd172c-dfec-459e-9dad-22984b9a6790" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:25:09 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8078?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078\",\r\n \"name\": \"onesdk8078\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "930e3b70-de35-4329-952a-a3557bfaebf2" + ], + "x-ms-correlation-request-id": [ + "930e3b70-de35-4329-952a-a3557bfaebf2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232510Z:930e3b70-de35-4329-952a-a3557bfaebf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:25:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNzgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "79332827-770f-485f-b84b-afc268ca9c5a" + ], + "x-ms-correlation-request-id": [ + "79332827-770f-485f-b84b-afc268ca9c5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232510Z:79332827-770f-485f-b84b-afc268ca9c5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:25:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078/providers/Microsoft.Logic/workflows/onesdk9975?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTk3NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "980" + ], + "x-ms-client-request-id": [ + "219d152f-867e-4e37-b5c0-5d20b7d7eac6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:25:11.6926478Z\",\r\n \"changedTime\": \"2015-12-21T23:25:11.6926478Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508665739893348\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8078/providers/Microsoft.Logic/workflows/onesdk9975\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078/providers/Microsoft.Logic/workflows/onesdk9975\",\r\n \"name\": \"onesdk9975\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:fde281f4-2041-430e-85aa-5371332d329a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "5f394b24-52a1-419f-8d6b-bfd8f3ad7f69" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232512Z:5f394b24-52a1-419f-8d6b-bfd8f3ad7f69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:25:12 GMT" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-NewLogicAppUsingDefinitionWithTriggers": [ + "onesdk990", + "onesdk8078", + "onesdk9975" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json new file mode 100644 index 000000000000..38228ff25706 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json @@ -0,0 +1,227 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9517?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk1MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "3c0ed2c2-50b7-4db8-acf4-f3d1d252340c" + ], + "x-ms-correlation-request-id": [ + "3c0ed2c2-50b7-4db8-acf4-f3d1d252340c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232539Z:3c0ed2c2-50b7-4db8-acf4-f3d1d252340c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:25:38 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9517?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk1MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517\",\r\n \"name\": \"onesdk9517\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "32882b93-a1aa-4a51-a0f1-13ceb544f903" + ], + "x-ms-correlation-request-id": [ + "32882b93-a1aa-4a51-a0f1-13ceb544f903" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232539Z:32882b93-a1aa-4a51-a0f1-13ceb544f903" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:25:39 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1MTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "26bacee4-abef-42f5-88d5-365cd766e7a1" + ], + "x-ms-correlation-request-id": [ + "26bacee4-abef-42f5-88d5-365cd766e7a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232539Z:26bacee4-abef-42f5-88d5-365cd766e7a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:25:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517/providers/Microsoft.Logic/workflows/onesdk257?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU3P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "8cb09fe5-99e3-48b3-96b6-7a9776b01137" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:25:40.8766386Z\",\r\n \"changedTime\": \"2015-12-21T23:25:40.8766386Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508665447673018\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9517/providers/Microsoft.Logic/workflows/onesdk257\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517/providers/Microsoft.Logic/workflows/onesdk257\",\r\n \"name\": \"onesdk257\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:07723f40-5882-4194-8cf8-fd738884dd37" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "770f1878-365d-45aa-a498-7f737c895a15" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232541Z:770f1878-365d-45aa-a498-7f737c895a15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:25:40 GMT" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-NewLogicAppUsingInputParameterAsHashTable": [ + "onesdk6053", + "onesdk9517", + "onesdk257" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json new file mode 100644 index 000000000000..520ba8e98a3c --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json @@ -0,0 +1,290 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9874?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "def1785a-84d9-44d0-812f-b85536f97342" + ], + "x-ms-correlation-request-id": [ + "def1785a-84d9-44d0-812f-b85536f97342" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232608Z:def1785a-84d9-44d0-812f-b85536f97342" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:26:07 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9874?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874\",\r\n \"name\": \"onesdk9874\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "59b8d841-c52f-458f-9c3b-67c0804c4850" + ], + "x-ms-correlation-request-id": [ + "59b8d841-c52f-458f-9c3b-67c0804c4850" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232608Z:59b8d841-c52f-458f-9c3b-67c0804c4850" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:26:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4NzQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "6af89ec9-6c85-40c7-a57c-5dbbd8e19d2c" + ], + "x-ms-correlation-request-id": [ + "6af89ec9-6c85-40c7-a57c-5dbbd8e19d2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232609Z:6af89ec9-6c85-40c7-a57c-5dbbd8e19d2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:26:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODAwMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "c4b66eef-6603-4b4a-bb3e-37c21ea8a029" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:26:09.7872802Z\",\r\n \"changedTime\": \"2015-12-21T23:26:09.7872802Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508665157279593\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000\",\r\n \"name\": \"onesdk8000\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:0f8bb30d-40e3-4fbd-bd9e-9aeb12769a06" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "11262ffd-399a-44e7-8e9a-ef6f81f968c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232610Z:11262ffd-399a-44e7-8e9a-ef6f81f968c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:26:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODAwMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "476d8cf7-87fb-4670-8067-49727aea539b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:26:10.3577193Z\",\r\n \"changedTime\": \"2015-12-21T23:26:10.3584496Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508665151647511\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000\",\r\n \"name\": \"onesdk8000\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:cd87e24d-479e-4992-9a9b-ee6ca0741132" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "3dbcb6f5-33f2-4b5c-b42d-80ba3df478a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232610Z:3dbcb6f5-33f2-4b5c-b42d-80ba3df478a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:26:09 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-NewLogicAppUsingInputfromWorkflowObject": [ + "onesdk2681", + "onesdk9874", + "onesdk8000" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json new file mode 100644 index 000000000000..a444a6ac792f --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json @@ -0,0 +1,227 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2599?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1OTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "f83992cd-7dfa-4d96-aab9-a2b0b3d3ed51" + ], + "x-ms-correlation-request-id": [ + "f83992cd-7dfa-4d96-aab9-a2b0b3d3ed51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232728Z:f83992cd-7dfa-4d96-aab9-a2b0b3d3ed51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:27:28 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2599?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1OTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599\",\r\n \"name\": \"onesdk2599\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "1b561385-a0d4-4c25-b935-aea3f9f20590" + ], + "x-ms-correlation-request-id": [ + "1b561385-a0d4-4c25-b935-aea3f9f20590" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232729Z:1b561385-a0d4-4c25-b935-aea3f9f20590" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:27:29 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1OTkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "bd838d4a-96c6-4b89-8e3d-bc693c9e625f" + ], + "x-ms-correlation-request-id": [ + "bd838d4a-96c6-4b89-8e3d-bc693c9e625f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232729Z:bd838d4a-96c6-4b89-8e3d-bc693c9e625f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:27:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599/providers/Microsoft.Logic/workflows/onesdk358?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "ab77e83f-5605-4f7b-8801-971907c2ce12" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:27:30.5165485Z\",\r\n \"changedTime\": \"2015-12-21T23:27:30.5165485Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508664350710527\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2599/providers/Microsoft.Logic/workflows/onesdk358\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599/providers/Microsoft.Logic/workflows/onesdk358\",\r\n \"name\": \"onesdk358\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:85a0ee46-015f-4a1c-8a12-e19ccd1f5643" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c206d6eb-09c5-4902-a0e7-a797e12c432a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232730Z:c206d6eb-09c5-4902-a0e7-a797e12c432a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:27:30 GMT" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-NewLogicAppUsingResourcegroupPipeline": [ + "onesdk1745", + "onesdk2599", + "onesdk358" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json new file mode 100644 index 000000000000..91d46d81ef73 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json @@ -0,0 +1,227 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7433?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc0MzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "e7b4bccc-f8a1-4551-a813-b23c47454c6f" + ], + "x-ms-correlation-request-id": [ + "e7b4bccc-f8a1-4551-a813-b23c47454c6f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232440Z:e7b4bccc-f8a1-4551-a813-b23c47454c6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:24:39 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7433?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc0MzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433\",\r\n \"name\": \"onesdk7433\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "b0568d8a-7889-4ec1-a48b-326b35bdc868" + ], + "x-ms-correlation-request-id": [ + "b0568d8a-7889-4ec1-a48b-326b35bdc868" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232441Z:b0568d8a-7889-4ec1-a48b-326b35bdc868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:24:40 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc0MzMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "4716a115-7a54-40c6-8d25-5ad48b67c3c3" + ], + "x-ms-correlation-request-id": [ + "4716a115-7a54-40c6-8d25-5ad48b67c3c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232441Z:4716a115-7a54-40c6-8d25-5ad48b67c3c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:24:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433/providers/Microsoft.Logic/workflows/onesdk2072?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjA3Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "3a16f7d5-9d3c-41b4-ad66-935323c7592d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:24:42.0642922Z\",\r\n \"changedTime\": \"2015-12-21T23:24:42.0642922Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508666035645871\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7433/providers/Microsoft.Logic/workflows/onesdk2072\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433/providers/Microsoft.Logic/workflows/onesdk2072\",\r\n \"name\": \"onesdk2072\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:8a2ac53b-7a30-4205-be44-e38ede6917de" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "cee5e4e8-98e6-41c2-b07c-46f65ec12f68" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232442Z:cee5e4e8-98e6-41c2-b07c-46f65ec12f68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:24:41 GMT" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-NewLogicAppUsingSkuPipeline": [ + "onesdk7245", + "onesdk7433", + "onesdk2072" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json new file mode 100644 index 000000000000..a7f8f5676969 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json @@ -0,0 +1,227 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9870?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "c21966c2-c711-496c-8230-f601841ac02f" + ], + "x-ms-correlation-request-id": [ + "c21966c2-c711-496c-8230-f601841ac02f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232316Z:c21966c2-c711-496c-8230-f601841ac02f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:23:15 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9870?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870\",\r\n \"name\": \"onesdk9870\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "5d47dca5-be24-4277-a6c3-9f23830885c5" + ], + "x-ms-correlation-request-id": [ + "5d47dca5-be24-4277-a6c3-9f23830885c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232317Z:5d47dca5-be24-4277-a6c3-9f23830885c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:23:16 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4NzAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-request-id": [ + "f123b4c8-ca78-4dc3-904c-537a7a6d2ca9" + ], + "x-ms-correlation-request-id": [ + "f123b4c8-ca78-4dc3-904c-537a7a6d2ca9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232317Z:f123b4c8-ca78-4dc3-904c-537a7a6d2ca9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:23:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870/providers/Microsoft.Logic/workflows/onesdk2888?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjg4OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "cc0564d9-f03b-45d4-8315-00e20a857651" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:23:19.2919373Z\",\r\n \"changedTime\": \"2015-12-21T23:23:19.2919373Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508666863208837\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9870/providers/Microsoft.Logic/workflows/onesdk2888\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870/providers/Microsoft.Logic/workflows/onesdk2888\",\r\n \"name\": \"onesdk2888\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:7e5ff2e3-838a-42ae-ae8d-d38d9ff43cba" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "badf1fbb-c006-4905-906c-841aaa8b669a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151221T232319Z:badf1fbb-c006-4905-906c-841aaa8b669a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 21 Dec 2015 23:23:19 GMT" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-NewLogicAppWithPlanId": [ + "onesdk2763", + "onesdk9870", + "onesdk2888" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs new file mode 100644 index 000000000000..f80ba900aadd --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Test.UnitTests +{ + using System.Management.Automation; + using Xunit; + using Microsoft.Azure.Commands.LogicApp.Cmdlets; + using Microsoft.WindowsAzure.Commands.ScenarioTest; + + /// + /// Unit test for the Create Logic app command. + /// + public class CreateLogicAppTests : LogicAppUnitTestBase + { + + public CreateLogicAppTests() + { + } + + /// + /// This verifies the exception thrown by the commandlet when non-existing definition file is provided as input + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewAzureLogicApp_ThrowsExceptionWithNonexistingDefinitionFile() + { + var cmdlet = new NewAzureLogicAppCommand + { + Name = Name, + DefinitionFilePath = DefinitionFilePath, + ResourceGroupName = ResourceGroupName, + Location = Location, + SkuName = SkuName + }; + + var exception = Assert.Throws(() => cmdlet.ExecuteCmdlet()); + Assert.Equal("File LogicAppDefinition.json does not exist.", exception.Message); + } + + /// + /// This verifies the exception thrown by the commandlet when non-existing parameter file is provided as input + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewAzureLogicApp_ThrowsExceptionWithNonexistingParameterFile() + { + var cmdlet = new NewAzureLogicAppCommand + { + Name = Name, + ParameterFilePath = ParameterFilePath, + ResourceGroupName = ResourceGroupName, + Location = Location, + SkuName = SkuName + }; + var exception = Assert.Throws(() => cmdlet.ExecuteCmdlet()); + Assert.Equal("File LogicAppParameter.json does not exist.", exception.Message); + } + } +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs new file mode 100644 index 000000000000..1275ce903f48 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs @@ -0,0 +1,55 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Test.UnitTests +{ + using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; + + /// + /// Base class for the Logic app command tests + /// + public class LogicAppUnitTestBase : RMTestBase + { + /// + /// Name of the workflow used for testing. + /// + protected const string Name = "TestWorkflow"; + + /// + /// Definition file name present in Resource folder + /// + protected const string DefinitionFilePath = @"LogicAppDefinition.json"; + + /// + /// Parameter file name present in Resource folder + /// + protected const string ParameterFilePath = @"LogicAppParameter.json"; + + /// + /// Name of the resource group used for testing + /// + protected const string ResourceGroupName = "TestResourceGroup"; + + /// + /// Default azure data center location used for testing + /// + protected const string Location = "westus"; + + /// + /// Default Sku name used for testing + /// + protected const string SkuName = "Standard"; + + } +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/app.config b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/app.config new file mode 100644 index 000000000000..0462850462f9 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config new file mode 100644 index 000000000000..f0f4f8c4f66e --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs new file mode 100644 index 000000000000..47350209de7d --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs @@ -0,0 +1,235 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using System; + using System.Collections.Generic; + using System.IO; + using System.Globalization; + using System.Management.Automation; + using Microsoft.Azure.Commands.LogicApp.Utilities; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.WindowsAzure.Commands.Utilities.Common; + using Newtonsoft.Json.Linq; + using Newtonsoft.Json; + using System.Collections; + + /// + /// Creates a new LogicApp workflow + /// + [Cmdlet(VerbsCommon.New, "AzureLogicApp"), OutputType(typeof (object))] + public class NewAzureLogicAppCommand : LogicAppBaseCmdlet + { + #region private Variables + + /// + /// Default value for the workflow status parameter + /// + private string _status = Constants.StatusEnabled; + + #endregion private Variables + + #region Input Paramters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The location of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Location { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The Plan name.", ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string PlanName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The state of the workflow.")] + [ValidateSet(Constants.StatusEnabled, Constants.StatusDisabled, IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string State + { + get { return this._status; } + set { this._status = value; } + } + + [Parameter(Mandatory = false, HelpMessage = "The URI link to the workflow definition.", ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] + [ValidateNotNullOrEmpty] + public string DefinitionLinkUri { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The content version of the definition link.", ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] + [ValidateNotNullOrEmpty] + public string DefinitionLinkContentVersion { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The definition of the workflow.", ParameterSetName = ParameterSet.LogicAppWithDefinition)] + [ValidateNotNullOrEmpty] + public object Definition { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The physical file path of the workflow definition.", ParameterSetName = ParameterSet.LogicAppWithDefinitionFile)] + [ValidateNotNullOrEmpty] + public string DefinitionFilePath { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters link Uri.")] + [ValidateNotNullOrEmpty] + public string ParameterLinkUri { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters link Uri content version.")] + [ValidateNotNullOrEmpty] + public string ParameterLinkContentVersion { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters parameter for the logic app.")] + [ValidateNotNullOrEmpty] + public object Parameters { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameter file path.")] + [ValidateNotNullOrEmpty] + public string ParameterFilePath { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The SKU name.", ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string SkuName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The Plan Id.", ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string PlanId { get; set; } + + #endregion Input Parameters + + /// + /// Execute the create new workflow command + /// + public override void ExecuteCmdlet() + { + //Validate the input for the definition object and set it from file if file path is specified + this.ValidateAndSetWorkflowDefinition(); + + //Validate the input for the parameter object and set it from file or input object. + this.ValidateAndSetWorkflowParamters(); + + // if SKU planId is not provided then planId is derived using resourcegroup name and the plan name. + if (string.IsNullOrEmpty(this.PlanId) && !string.IsNullOrEmpty(this.PlanName) && + !string.IsNullOrEmpty(this.ResourceGroupName)) + { + this.PlanId = string.Format(CultureInfo.InvariantCulture, + Properties.Resource.ApplicationServicePlanIdFormat, + LogicAppClient.LogicManagementClient.SubscriptionId, this.ResourceGroupName, this.PlanName); + } + + //Call LogicAppClient to create the workflow. + this.WriteObject(LogicAppClient.CreateWorkflow(this.ResourceGroupName, this.Name, new Workflow + { + Location = this.Location, + Definition = this.Definition, + Parameters = this.Parameters as Dictionary, + DefinitionLink = string.IsNullOrEmpty(this.DefinitionLinkUri) + ? null + : new ContentLink + { + Uri = this.DefinitionLinkUri, + ContentVersion = this.DefinitionLinkContentVersion + }, + ParametersLink = string.IsNullOrEmpty(this.ParameterLinkUri) + ? null + : new ContentLink + { + Uri = this.ParameterLinkUri, + ContentVersion = this.ParameterLinkContentVersion + }, + State = (WorkflowState) Enum.Parse(typeof (WorkflowState), this.State), + Sku = new Sku + { + Name = (SkuName)Enum.Parse(typeof(SkuName), this.SkuName), + Plan = new ResourceReference + { + Id = this.PlanId + } + } + }), true); + } + + /// + /// Validate and set the value of definition object from the file. + /// + private void ValidateAndSetWorkflowDefinition() + { + if (!string.IsNullOrEmpty(this.DefinitionFilePath)) + { + var fileDefinitionName = this.TryResolvePath(this.DefinitionFilePath); + + if (!(new FileInfo(fileDefinitionName)).Exists) + { + throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, Properties.Resource.FileDoesNotExist, fileDefinitionName)); + } + + this.Definition = JToken.Parse(File.ReadAllText(fileDefinitionName)); + } + else if (this.Definition != null) + { + this.Definition = JToken.Parse(this.Definition.ToString()); + } + } + + /// + /// Validate and Set the parameter collection from file or Custom objects. + /// + private void ValidateAndSetWorkflowParamters() + { + if (!string.IsNullOrEmpty(this.ParameterFilePath)) + { + var fileParameterName = this.TryResolvePath(this.ParameterFilePath); + + if (!(new FileInfo(fileParameterName)).Exists) + { + throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, Properties.Resource.FileDoesNotExist, fileParameterName)); + } + + var inputParametersObject = JObject.Parse(File.ReadAllText(fileParameterName)); + var values = JsonConvert.DeserializeObject>(inputParametersObject.ToString()); + + var inputParameters = new Dictionary(); + + foreach (var parameter in values) + { + var workflowParameter = JsonConvert.DeserializeObject(parameter.Value.ToString()); + inputParameters.Add(parameter.Key, workflowParameter); + } + + this.Parameters = inputParameters; + } else if (this.Parameters is Hashtable) + { + var collection = this.Parameters as Hashtable; + var inputParameters = new Dictionary(); + + foreach (var key in collection.Keys) + { + inputParameters.Add(key.ToString(), new WorkflowParameter + { + Value = collection[key].ToString() + }); + } + this.Parameters = inputParameters; + } + else if (this.Parameters is Dictionary) + { + this.Parameters = this.Parameters as Dictionary; + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj new file mode 100644 index 000000000000..024f8620ab1c --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj @@ -0,0 +1,185 @@ + + + + + Debug + AnyCPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74} + Library + Properties + Microsoft.Azure.Commands.LogicApp + Microsoft.Azure.Commands.LogicApp + v4.5 + 512 + + ..\..\..\ + true + + + true + full + false + ..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.LogicApp + DEBUG;TRACE + prompt + 4 + true + false + false + + + true + MSSharedLibKey.snk + true + ..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.LogicApp + TRACE + true + pdbonly + AnyCPU + bin\Release\Microsoft.Azure.Commands.LogicApp.dll.CodeAnalysisLog.xml + true + GlobalSuppressions.cs + prompt + MinimumRecommendedRules.ruleset + ;$(ProgramFiles)\Microsoft Visual Studio 12.0\Team Tools\Static Analysis Tools\Rule Sets + ;$(ProgramFiles)\Microsoft Visual Studio 12.0\Team Tools\Static Analysis Tools\FxCop\Rules + true + false + + + true + + + + False + ..\..\..\packages\Hyak.Common.1.0.2\lib\net45\Hyak.Common.dll + + + False + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll + + + False + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.4.1-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.Logic.0.1.0-preview\lib\net45\Microsoft.Azure.Management.Logic.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.11-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + + False + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.4.1\lib\dotnet\Microsoft.Rest.ClientRuntime.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.11.0\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll + + + False + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll + + + False + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + + + + + + + + + + + + + + + + True + True + Resource.resx + + + Code + + + Code + + + + + + + AzureRM.LogicApp.psd1 + PreserveNewest + + + + Designer + + + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + + + {e1f5201d-6067-430e-b303-4e367652991b} + Commands.Resources + + + + + + + + ResXFileCodeGenerator + Resource.Designer.cs + + + + + + + + Designer + PreserveNewest + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/MSSharedLibKey.snk b/src/ResourceManager/LogicApp/Commands.LogicApp/MSSharedLibKey.snk new file mode 100644 index 0000000000000000000000000000000000000000..695f1b38774e839e5b90059bfb7f32df1dff4223 GIT binary patch literal 160 zcmV;R0AK$ABme*efB*oL000060ssI2Bme+XQ$aBR1ONa50098C{E+7Ye`kjtcRG*W zi8#m|)B?I?xgZ^2Sw5D;l4TxtPwG;3)3^j?qDHjEteSTF{rM+4WI`v zCD?tsZ^;k+S&r1&HRMb=j738S=;J$tCKNrc$@P|lZ + + + + New-AzureLogicApp + + Creates a new logic app in the azure resource group. + + + + + New + AzureLogicApp + + + + This is the Description section + The New-AzureLogicApp cmdlet creates an azure logic app and returns an object that represents the worflow. Use this cmdlet to create a new logic app. A logic app is a collection of actions or triggers defined in workflow definition language. You can create a logic app with a name, location, logic app definition, resource group name (existing), app service plan name (existing), and a SKU name. Howerver, typically, you use a workflow template for definition and parameters which is JSON-based model. To create a logic app, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the workflow template parameters, use a JSON-formatted parameter file (ParameterFilePath parameter) or a hash table of parameter names and values (Parameters parameter) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter values that you specify at the command line take precedence over template parameter values in a template parameter object or file. + + + + New-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. You can use -ResourceGroupName. + + String + + + Location + + Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. + + String + + + Name + + Specifies the name of the logic app. This parameter is required. If a logic app with that name already exists, the command updates the existing logic app without prompt. + + String + + + PlanName + + Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. + + String + + + State + + Specifies a state of the logic app. Expected values e.g. Enabled, Disabled + + String + + + DefinitionLinkUri + + Specifies Definition link Uri of the logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App + + String + + + Parameters + + Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + File name containing a JSON workflow parameters. + + + String + + + SkuName + + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium + + String + + + PlanId + + Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + New-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. You can use -ResourceGroupName. + + String + + + Location + + Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. + + String + + + Name + + Specifies the name of the logic app. This parameter is required. If a logic app with that name already exists, the command updates the existing logic app without prompt. + + String + + + PlanName + + Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. + + String + + + State + + Specifies a state of the logic app. Expected values e.g. Enabled, Disabled + + String + + + Definition + + Definition of the Logic app. Expected type object or string in Json format. + + Object + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App + + String + + + Parameters + + Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + File name containing a JSON workflow parameters. + + + String + + + SkuName + + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium + + String + + + PlanId + + Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + New-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. You can use -ResourceGroupName. + + String + + + Location + + Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. + + String + + + Name + + Specifies the name of the logic app. This parameter is required. If a logic app with that name already exists, the command updates the existing logic app without prompt. + + String + + + PlanName + + Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. + + String + + + State + + Specifies a state of the logic app. Expected values e.g. Enabled, Disabled + + String + + + DefinitionFilePath + + File name containing a JSON workflow definition to be created. + + + String + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App + + String + + + Parameters + + Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + File name containing a JSON workflow parameters. + + + String + + + SkuName + + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium + + String + + + PlanId + + Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. You can use -ResourceGroupName. + + String + + String + + + + + + Location + + Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. + + String + + String + + + + + + Name + + Specifies the name of the logic app. This parameter is required. If a logic app with that name already exists, the command updates the existing logic app without prompt. + + String + + String + + + + + + PlanName + + Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. + + String + + String + + + + + + State + + Specifies a state of the logic app. Expected values e.g. Enabled, Disabled + + String + + String + + + Enabled + + + DefinitionLinkUri + + Specifies Definition link Uri of the logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + String + + + + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + String + + + + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + String + + + + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App + + String + + String + + + + + + Parameters + + Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + Object + + + + + + ParameterFilePath + + File name containing a JSON workflow parameters. + + + String + + String + + + + + + SkuName + + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium + + String + + String + + + + + + PlanId + + Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + Definition + + Definition of the Logic app. Expected type object or string in Json format. + + Object + + Object + + + + + + DefinitionFilePath + + File name containing a JSON workflow definition to be created. + + + String + + String + + + + + + + + + None + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.Workflow + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Create a logic app with definition and parameter template file path -------------------------- + + PS C:\> + + PS C:\>New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -PlanName "ServicePlanName" -SkuName "Standard" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" + + This command creates a new Logic app in the targeted resource group. + + + CreatedTime : 12/17/2015 6:05:59 AM +ChangedTime : 12/17/2015 6:05:59 AM +State : Enabled +Version : 08587512745264684633 +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/<Name>/providers/Microsoft.Logic/workflows/<Name> +Sku : Microsoft.Azure.Management.Logic.Models.Sku +DefinitionLink : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLink : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +Id : /subscriptions/<ID>/resourceGroups/<Name>/providers/Micros + oft.Logic/workflows/<Name> +Name : <Name> +Type : Microsoft.Logic/workflows +Location : <Location> +Tags : + + + + + + + + + + + -------------------------- Example 2 : Create a logic app with definition and parameter objects -------------------------- + + PS C:\> + + New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -PlanName "ServicePlanName" -SkuName "Standard" -Definition [IO.File]::ReadAllText("d:\Workflows\Definition.json") -Parameters @{name1="value1", name2="value2"} + + This command creates a new Logic app in the targeted resource group. + + + CreatedTime : 12/17/2015 6:05:59 AM +ChangedTime : 12/17/2015 6:05:59 AM +State : Enabled +Version : 08587512745264684633 +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/<Name>/providers/Microsoft.Logic/workflows/<Name> +Sku : Microsoft.Azure.Management.Logic.Models.Sku +DefinitionLink : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLink : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +Id : /subscriptions/<ID>/resourceGroups/<Name>/providers/Micros + oft.Logic/workflows/<Name> +Name : <Name> +Type : Microsoft.Logic/workflows +Location : "westus" +Tags : + + + + + + + + + + + -------------------------- Example 3 : Create Logic app using ResourceGroup pipe input -------------------------- + + PS C:\> + + Get-AzureRmResourceGroup -ResourceGroupName "ResourceGroup1" | New-AzureLogicApp -Name "LogicApp1" -State "Enabled" -SkuName "Standard" -PlanName "ServicePlanName" -DefinitionFilePath "d:\Workflow\Definition.json" -ParameterFilePath "d:\Workflow\Parameters.json" + + This command creates a new logic app in the targeted resource group using the pipe input from the resource group object. + + + DefinitionLink : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLink : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +Id : /subscriptions/<ID>/resourceGroups/<Name>/providers/Micros + oft.Logic/workflows/<Name> +Name : <Name> +Type : Microsoft.Logic/workflows +Location : "westus" +Tags : + + + + + + + + + + + -------------------------- Example 4 : Create Logic app using existing logic app -------------------------- + + PS C:\> + + New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -PlanName "ServicePlanName" -SkuName "Standard" -Definition $workflow.Definition -Parameters $workflow.Parameters + + This command creates a new Logic app in the targeted resource group. In this example, definition and parameters of existing logic is used to create new Logic App. + + + CreatedTime : 12/17/2015 6:05:59 AM +ChangedTime : 12/17/2015 6:05:59 AM +State : Enabled +Version : 08587512745264684633 +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/<Name>/providers/Microsoft.Logic/workflows/<Name> +Sku : Microsoft.Azure.Management.Logic.Models.Sku +DefinitionLink : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLink : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +Id : /subscriptions/<ID>/resourceGroups/<Name>/providers/Micros + oft.Logic/workflows/<Name> +Name : <Name> +Type : Microsoft.Logic/workflows +Location : "westus" +Tags : + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.psd1 b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.psd1 new file mode 100644 index 000000000000..e8ae99c36f0f --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.psd1 @@ -0,0 +1,85 @@ +# +# Module manifest for module 'Azure' +# +# Generated by: Microsoft Corporation +# +# Generated on: 5/23/2012 +# + +@{ + +# Version number of this module. +ModuleVersion = '0.9.10' + +# ID used to uniquely identify this module +GUID = '929A5C9C-AB3F-4E46-A1B9-F185CAB5B479' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = 'Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = '' + +# Minimum version of the Windows PowerShell engine required by this module +PowerShellVersion = '3.0' + +# Name of the Windows PowerShell host required by this module +PowerShellHostName = '' + +# Minimum version of the Windows PowerShell host required by this module +PowerShellHostVersion = '' + +# Minimum version of the .NET Framework required by this module +DotNetFrameworkVersion = '4.0' + +# Minimum version of the common language runtime (CLR) required by this module +CLRVersion='4.0' + +# Processor architecture (None, X86, Amd64, IA64) required by this module +ProcessorArchitecture = 'None' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @() + +# Assemblies that must be loaded prior to importing this module +RequiredAssemblies = @() + +# Script files (.ps1) that are run in the caller's environment prior to importing this module +ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +FormatsToProcess = @() + +# Modules to import as nested modules of the module specified in ModuleToProcess +NestedModules = '..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.LogicApp\Microsoft.Azure.Commands.LogicApp.dll' +# Functions to export from this module +FunctionsToExport = '*' + +# Cmdlets to export from this module +CmdletsToExport = '*' + +# Variables to export from this module +VariablesToExport = '*' + +# Aliases to export from this module +AliasesToExport = @() + +# List of all modules packaged with this module +ModuleList = @() + +# List of all files packaged with this module +FileList = @() + +# Private data to pass to the module specified in ModuleToProcess +PrivateData = '' + +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..e5552af75c32 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs @@ -0,0 +1,39 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Microsoft Azure Powershell - LogicApp")] +[assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)] +[assembly: AssemblyProduct(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyProduct)] +[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] + +[assembly: ComVisible(false)] +[assembly: CLSCompliant(false)] + +[assembly: Guid("e50b915e-1c94-4cd1-bbea-72ff2246d237")] +[assembly: AssemblyVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyVersion)] +[assembly: AssemblyFileVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyFileVersion)] + +#if SIGN +//[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.LogicApp.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] +#else +//[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.LogicApp.Test")] +#endif \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs new file mode 100644 index 000000000000..7f121ba2cd08 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs @@ -0,0 +1,90 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.LogicApp.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resource { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resource() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.LogicApp.Properties.Resource", typeof(Resource).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Web/serverfarms/{2}. + /// + internal static string ApplicationServicePlanIdFormat { + get { + return ResourceManager.GetString("ApplicationServicePlanIdFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File {0} does not exist.. + /// + internal static string FileDoesNotExist { + get { + return ResourceManager.GetString("FileDoesNotExist", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} needs to be specified.. + /// + internal static string ParameterNeedsToBeSpecified { + get { + return ResourceManager.GetString("ParameterNeedsToBeSpecified", resourceCulture); + } + } + } +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx new file mode 100644 index 000000000000..38d8a33ffbaa --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Web/serverfarms/{2} + + + File {0} does not exist. + + + {0} needs to be specified. + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs new file mode 100644 index 000000000000..898890cfdee0 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs @@ -0,0 +1,25 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + /// + /// Constant class + /// + public class Constants + { + public const string StatusEnabled = "Enabled"; + public const string StatusDisabled = "Disabled"; + } +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs new file mode 100644 index 000000000000..10483f97aabd --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs @@ -0,0 +1,50 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using ResourceManager.Common; + using Microsoft.WindowsAzure.Commands.Utilities.Common; + using Microsoft.Azure.Management.Logic; + + public abstract class LogicAppBaseCmdlet : AzureRMCmdlet + { + /// + /// LogicApp client + /// + private LogicAppClient _logicAppClient = null; + + /// + /// Gets or sets the LogicApp client used in the PowerShell commands. + /// + public LogicAppClient LogicAppClient + { + get + { + this._logicAppClient = new LogicAppClient(DefaultProfile.Context) + { + VerboseLogger = WriteVerboseWithTimestamp, + ErrorLogger = WriteErrorWithTimestamp + }; + + return _logicAppClient; + } + + set + { + this._logicAppClient = value; + } + } + } +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs new file mode 100644 index 000000000000..7f5b396e34e7 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs @@ -0,0 +1,87 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Globalization; + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using System; + using System.Collections.Generic; + using System.Linq; + using System.Text; + using System.Threading.Tasks; + using Microsoft.Azure.Common.Authentication; + using Microsoft.Azure.Common.Authentication.Models; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + + /// + /// LogicApp client class + /// + public class LogicAppClient + { + /// + /// Gets or sets the Verbose Logger + /// + public Action VerboseLogger { get; set; } + + /// + /// Gets or sets the Error Logger + /// + public Action ErrorLogger { get; set; } + + /// + /// Creates new LogicManagement client instance. + /// + /// The Azure context instance + public LogicAppClient(AzureContext context) + { + this.LogicManagementClient = AzureSession.ClientFactory.CreateArmClient(context, AzureEnvironment.Endpoint.ResourceManager); + this.LogicManagementClient.SubscriptionId = context.Subscription.Id.ToString(); + } + + /// + /// Creates new LogicManagement client instance. + /// + public LogicAppClient() + { + } + + /// + /// Creates new LogicManagement client instance. + /// + /// client reference + public LogicAppClient(ILogicManagementClient client) + { + this.LogicManagementClient = client; + } + + /// + /// Gets or sets the Logic client instance + /// + public ILogicManagementClient LogicManagementClient { get; set; } + + /// + /// Creates a workflow in the azure resource group + /// + /// Name of the resource group + /// Workflow name + /// Workflow object + /// Newly created workflow object + public Workflow CreateWorkflow(string resourceGroupName, string workflowName, Workflow workflow) + { + return this.LogicManagementClient.Workflows.CreateOrUpdate(resourceGroupName, workflowName, workflow); + } + } +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs new file mode 100644 index 000000000000..c3692725315e --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs @@ -0,0 +1,36 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + internal static class ParameterSet + { + + /// + /// Parameter set top create Logic app with definition object + /// + public const string LogicAppWithDefinition = "LogicAppWithDefinitionParameterSet"; + + /// + /// Parameter set top create Logic app with definition link + /// + public const string LogicAppWithDefinitionLink = "LogicAppWithDefinitionLinkParameterSet"; + + /// + /// Parameter set top create Logic app with definition file + /// + public const string LogicAppWithDefinitionFile = "LogicAppWithDefinitionFileParameterSet"; + + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/packages.config b/src/ResourceManager/LogicApp/Commands.LogicApp/packages.config new file mode 100644 index 000000000000..e767c8060454 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/packages.config @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/LogicApp.sln b/src/ResourceManager/LogicApp/LogicApp.sln new file mode 100644 index 000000000000..97fc1d8da769 --- /dev/null +++ b/src/ResourceManager/LogicApp/LogicApp.sln @@ -0,0 +1,80 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.40629.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{95C16AED-FD57-42A0-86C3-2CF4300A4817}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManager.Common", "..\Common\Commands.ResourceManager.Common\Commands.ResourceManager.Common.csproj", "{3819D8A7-C62C-4C47-8DDD-0332D9CE1252}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Resources", "..\Resources\Commands.Resources\Commands.Resources.csproj", "{E1F5201D-6067-430E-B303-4E367652991B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Resources.Rest", "..\Resources\Commands.ResourceManager\Cmdlets\Commands.Resources.Rest.csproj", "{8058D403-06E3-4BED-8924-D166CE303961}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ScenarioTests.ResourceManager.Common", "..\Common\Commands.ScenarioTests.ResourceManager.Common\Commands.ScenarioTests.ResourceManager.Common.csproj", "{3436A126-EDC9-4060-8952-9A1BE34CDD95}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Profile", "..\Profile\Commands.Profile\Commands.Profile.csproj", "{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common", "..\..\Common\Commands.Common\Commands.Common.csproj", "{5EE72C53-1720-4309-B54B-5FB79703195F}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{33C9DADF-8EE1-4FCB-8E15-FEEB28330BC1}" + ProjectSection(SolutionItems) = preProject + .nuget\packages.config = .nuget\packages.config + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.LogicApp", "Commands.LogicApp\Commands.LogicApp.csproj", "{FFE4E475-B32C-4F89-9D52-F7CEBF709C74}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.LogicApp.Test", "Commands.LogicApp.Test\Commands.LogicApp.Test.csproj", "{F1F11BB1-592B-45A3-844C-7F8A585AD107}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Tags", "..\Tags\Commands.Tags\Commands.Tags.csproj", "{2493A8F7-1949-4F29-8D53-9D459046C3B8}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Release|Any CPU.Build.0 = Release|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Release|Any CPU.Build.0 = Release|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.Build.0 = Release|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Release|Any CPU.Build.0 = Release|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Release|Any CPU.Build.0 = Release|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Release|Any CPU.Build.0 = Release|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Release|Any CPU.Build.0 = Release|Any CPU + {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {3436A126-EDC9-4060-8952-9A1BE34CDD95} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {F1F11BB1-592B-45A3-844C-7F8A585AD107} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + EndGlobalSection +EndGlobal diff --git a/src/ResourceManager/LogicApp/NuGet.Config b/src/ResourceManager/LogicApp/NuGet.Config new file mode 100644 index 000000000000..2de911013532 --- /dev/null +++ b/src/ResourceManager/LogicApp/NuGet.Config @@ -0,0 +1,6 @@ + + + + + + From ca4be2f3e301c82b1bd15b116bcebffd6914c69b Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Mon, 28 Dec 2015 12:54:03 -0800 Subject: [PATCH 02/19] Set, Get, Remove PowerShell commands added. --- .../Commands.LogicApp.Test.csproj | 18 + .../ScenarioTests/Common.ps1 | 16 + .../ScenarioTests/WorkflowTests.cs | 63 + .../ScenarioTests/WorkflowTests.ps1 | 136 ++- .../TestGetLogicAppWithWorkflowName.json | 337 ++++++ ...estNewLogicAppUsingDefinitionFilePath.json | 121 +- .../TestNewLogicAppUsingDefinitionObject.json | 131 +- ...UsingDefinitionObjectAndParameterFile.json | 125 +- ...NewLogicAppUsingDefinitionWithActions.json | 120 +- ...ewLogicAppUsingDefinitionWithTriggers.json | 122 +- ...ogicAppUsingInputParameterAsHashTable.json | 124 +- ...wLogicAppUsingInputfromWorkflowObject.json | 203 +++- ...NewLogicAppUsingResourcegroupPipeline.json | 125 +- .../TestNewLogicAppUsingSkuPipeline.json | 123 +- .../TestNewLogicAppWithDuplicateName.json | 337 ++++++ .../TestNewLogicAppWithPlanId.json | 119 +- ...RemoveLogicAppWithInvalidWorkflowName.json | 213 ++++ .../TestRemoveLogicAppWithWorkflowName.json | 385 ++++++ .../TestUpdateLogicApp.json | 400 +++++++ .../TestUpdateNonExistingLogicApp.json | 334 ++++++ .../Cmdlets/GetAzureLogicApp.cs | 50 + .../Cmdlets/NewAzureLogicAppCommand.cs | 118 +- .../Cmdlets/RemoveAzureLogicApp.cs | 59 + .../Cmdlets/UpdateAzureLogicAppCommand.cs | 183 +++ .../Commands.LogicApp.csproj | 4 + ....Azure.Commands.LogicApp.dll-help.Help.xml | 1058 ++++++++++++++++- .../Properties/Resource.Designer.cs | 36 + .../Properties/Resource.resx | 12 + .../Utilities/CmdletHelper.cs | 131 ++ .../Utilities/LogicAppBaseCmdlet.cs | 2 - .../Utilities/LogicAppClient.cs | 79 +- .../Utilities/ParameterSet.cs | 4 +- 32 files changed, 4765 insertions(+), 523 deletions(-) create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestGetLogicAppWithWorkflowName.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithDuplicateName.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithInvalidWorkflowName.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithWorkflowName.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateNonExistingLogicApp.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicApp.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicApp.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj index 61abd6c016c5..7d49ca15f81f 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj @@ -170,6 +170,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest @@ -200,6 +203,21 @@ PreserveNewest + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/Common.ps1 index c02d785fc6ab..963ef3821bc2 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/Common.ps1 +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/Common.ps1 @@ -68,4 +68,20 @@ function TestSetup-CreateResourceGroup $rglocation = Get-ProviderLocation "North Europe" $resourceGroup = New-AzureRmResourceGroup -Name $resourceGroupName -location $rglocation -Force return $resourceGroup +} + +<# +.SYNOPSIS +Creates a new workflow +#> +function TestSetup-CreateWorkflow ([string]$resourceGroupName) +{ + $rglocation = Get-ProviderLocation "North Europe" + $resourceGroup = New-AzureRmResourceGroup -Name $resourceGroupName -location $rglocation -Force + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -PlanName "StandardServicePlan" -SkuName "Standard" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + return $workflow } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs index 16abcdd542f1..1d5c0241f1f1 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs @@ -35,6 +35,16 @@ public void TestNewLogicAppUsingDefinitionFilePath() WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionFilePath"); } + /// + /// Test New-AzurelogicApp command to create workflow with duplicate name. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewLogicAppWithDuplicateName() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppWithDuplicateName"); + } + /// /// Test New-AzurelogicApp command with Definition and parameter object as parameter. /// @@ -123,6 +133,59 @@ public void TestNewLogicAppUsingDefinitionWithTriggers() public void TestNewLogicAppUsingDefinitionWithActions() { WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionWithActions"); + } + + /// + /// Test Get-AzurelogicApp command to get newly created workflow + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetLogicAppWithWorkflowName() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-GetLogicAppWithWorkflowName"); + } + + /// + /// Test Remove-AzurelogicApp command to delete newly created workflow + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRemoveLogicAppWithWorkflowName() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-RemoveLogicAppWithWorkflowName"); + } + + /// + /// Test Remove-AzurelogicApp command to remove by invalid workflow name + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRemoveLogicAppWithInvalidWorkflowName() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-RemoveLogicAppWithInvalidWorkflowName"); + } + + /// + /// Test Set-Azurelogicapp command to update the workflow + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestUpdateLogicApp() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-UpdateLogicApp"); + } + + /// + /// Test Set-Azurelogicapp command to update a non-existing workflow + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestUpdateNonExistingLogicApp() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-UpdateNonExistingLogicApp"); } + + + } } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 index c8692387485e..3014f2969a58 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 @@ -18,7 +18,6 @@ Test New-AzureLogicApp with physical file paths #> function Test-NewLogicAppUsingDefinitionFilePath { - $endpointName = getAssetname $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" @@ -38,7 +37,6 @@ Test New-AzureLogicApp with object type parameters #> function Test-NewLogicAppUsingDefinitionObject { - $endpointName = getAssetname $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" @@ -59,7 +57,6 @@ Test New-AzureLogicApp with Definition file and object parameters #> function Test-NewLogicAppUsingDefinitionObjectAndParameterFile { - $endpointName = getAssetname $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname @@ -82,7 +79,6 @@ Test New-AzureLogicApp with Pipeline Input from ResourceGroupObject #> function Test-NewLogicAppUsingResourcegroupPipeline { - $endpointName = getAssetname $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" @@ -96,13 +92,36 @@ function Test-NewLogicAppUsingResourcegroupPipeline Assert-NotNull $workflow.Parameters } +<# +.SYNOPSIS +Test New-AzureLogicApp to create a workflow with a duplicate name. +#> +function Test-NewLogicAppWithDuplicateName +{ + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + $resourceGroupName = $resourceGroup.ResourceGroupName + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -SkuName "Standard" -PlanName "StandardServicePlan" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + + Assert-NotNull $workflow + try + { + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -SkuName "Standard" -PlanName "StandardServicePlan" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + } + catch + { + Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/$WorkflowName' under resource group '$resourceGroupName' already exists." + } +} + <# .SYNOPSIS Test New-AzureLogicApp with SKU Plan ID #> function Test-NewLogicAppWithPlanId { - $endpointName = getAssetname $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname @@ -125,7 +144,6 @@ Test New-AzureLogicApp with Pipeline Input from Sku #> function Test-NewLogicAppUsingSkuPipeline { - $endpointName = getAssetname $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname $resourceGroupName = $resourceGroup.ResourceGroupName @@ -156,7 +174,6 @@ Test New-AzureLogicApp with workflow object #> function Test-NewLogicAppUsingInputfromWorkflowObject { - $endpointName = getAssetname $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname $resourceGroupName = $resourceGroup.ResourceGroupName @@ -165,13 +182,13 @@ function Test-NewLogicAppUsingInputfromWorkflowObject $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath -PlanName "StandardServicePlan" -SkuName "Standard" - - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -Definition $workflow.Definition -Parameters $workflow.Parameters -PlanName "StandardServicePlan" -SkuName "Standard" + $newWorkflowName = getAssetname + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $newWorkflowName -Location "westus" -Definition $workflow.Definition -Parameters $workflow.Parameters -PlanName "StandardServicePlan" -SkuName "Standard" Assert-NotNull $workflow Assert-NotNull $workflow.Definition Assert-NotNull $workflow.Parameters - Assert-AreEqual $workflowName $workflow.Name + Assert-AreEqual $newWorkflowName $workflow.Name Assert-AreEqual "Enabled" $workflow.State } @@ -229,4 +246,103 @@ function Test-NewLogicAppUsingDefinitionWithActions $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -PlanName "StandardServicePlan" -SkuName "Standard" Assert-NotNull $workflow +} + +<# +.SYNOPSIS +Test GetLogicAppWithWorkflowName command to get workflow by name. +#> +function Test-GetLogicAppWithWorkflowName +{ + $resourceGroupName = getAssetname + $ExpectedWorkflow = TestSetup-CreateWorkflow $resourceGroupName + + Assert-NotNull $ExpectedWorkflow + + $ActualWorkflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $ExpectedWorkflow.Name + + Assert-NotNull $ActualWorkflow + Assert-AreEqual $ExpectedWorkflow.Name $ActualWorkflow.Name +} + +<# +.SYNOPSIS +Test RemoveLogicAppWithWorkflowName command to remove workflow by name. +Test Get-AzureLogicApp to get non existing workflow. +#> +function Test-RemoveLogicAppWithWorkflowName +{ + $resourceGroupName = getAssetname + $ExpectedWorkflow = TestSetup-CreateWorkflow $resourceGroupName + $WorkflowName = $ExpectedWorkflow.Name + Assert-NotNull $ExpectedWorkflow + + Remove-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $WorkflowName -Force + try + { + $ActualWorkflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $WorkflowName + } + catch + { + Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/$WorkflowName' under resource group '$resourceGroupName' was not found." + } +} + +<# +.SYNOPSIS +Test RemoveLogicAppWithWorkflowName command to remove nonexisting workflow by name. +#> +function Test-RemoveLogicAppWithInvalidWorkflowName +{ + $WorkflowName = "09e81ac4-848a-428d-82a6-7d61953e3940" + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + + Remove-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $WorkflowName -Force +} + +<# +.SYNOPSIS +Test Set-AzureLogicApp command to update workflow. +#> +function Test-UpdateLogicApp +{ + $resourceGroupName = getAssetname + $ExpectedWorkflow = TestSetup-CreateWorkflow $resourceGroupName + $WorkflowName = $ExpectedWorkflow.Name + Assert-NotNull $ExpectedWorkflow + + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -PlanName "NonStandardServicePlan" -SkuName "Free" -DefinitionFilePath $definitionFilePath + + Assert-NotNull $UpdatedWorkflow + Assert-AreEqual $UpdatedWorkflow.Location "westus" + Assert-AreEqual $UpdatedWorkflow.Sku.Plan.Name "NonStandardServicePlan" + Assert-AreEqual $UpdatedWorkflow.Sku.Name "Free" + + Assert-NotNull $UpdatedWorkflow +} + +<# +.SYNOPSIS +Test Set-AzureLogicApp command to update non-existing workflow. +#> +function Test-UpdateNonExistingLogicApp +{ + $resourceGroupName = getAssetname + $ExpectedWorkflow = TestSetup-CreateWorkflow $resourceGroupName + $WorkflowName = "82D2D842-C312-445C-8A4D-E3EE9542436D" + Assert-NotNull $ExpectedWorkflow + + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + try + { + $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $WorkflowName -Location "westus" -PlanName "NonStandardServicePlan" -SkuName "Free" -DefinitionFilePath $definitionFilePath + } + catch + { + Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/$WorkflowName' under resource group '$resourceGroupName' was not found." + } } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestGetLogicAppWithWorkflowName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestGetLogicAppWithWorkflowName.json new file mode 100644 index 000000000000..d52b19c066b4 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestGetLogicAppWithWorkflowName.json @@ -0,0 +1,337 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9650?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk2NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "992ab7d4-8e89-4674-9eee-b0f62baae4ea" + ], + "x-ms-correlation-request-id": [ + "992ab7d4-8e89-4674-9eee-b0f62baae4ea" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010815Z:992ab7d4-8e89-4674-9eee-b0f62baae4ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:08:15 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9650?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk2NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650\",\r\n \"name\": \"onesdk9650\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ec9b230f-f14e-4280-b850-aeb237d73b56" + ], + "x-ms-correlation-request-id": [ + "ec9b230f-f14e-4280-b850-aeb237d73b56" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010816Z:ec9b230f-f14e-4280-b850-aeb237d73b56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:08:16 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "cb63a512-f6b0-4308-9690-2d6b3ed12ccf" + ], + "x-ms-correlation-request-id": [ + "cb63a512-f6b0-4308-9690-2d6b3ed12ccf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010817Z:cb63a512-f6b0-4308-9690-2d6b3ed12ccf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:08:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODEzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c54e57a1-8d15-4b75-a1c2-51c392d6465e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8139' under resource group 'onesdk9650' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b6d6777c-0f44-467a-9a4a-aa821b011ba4" + ], + "x-ms-correlation-request-id": [ + "b6d6777c-0f44-467a-9a4a-aa821b011ba4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010817Z:b6d6777c-0f44-467a-9a4a-aa821b011ba4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:08:16 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODEzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f335b27d-fb35-4352-9cda-8f9600a79ebf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:08:19.7334894Z\",\r\n \"changedTime\": \"2015-12-24T01:08:19.7338377Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506875859810724\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139\",\r\n \"name\": \"onesdk8139\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:0cd700d9-63e2-4cea-86a7-8421a14a8ab8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "c7bd36aa-b417-47e7-87ef-5a492a4b865e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010820Z:c7bd36aa-b417-47e7-87ef-5a492a4b865e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:08:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODEzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "d398da47-5be4-4ce6-a82a-8c203a3379f6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:08:19.7334894Z\",\r\n \"changedTime\": \"2015-12-24T01:08:19.7334894Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506875859810724\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139\",\r\n \"name\": \"onesdk8139\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:0d256395-d117-457a-9f64-7e675041ed70" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d2b4ee8b-46ef-4843-adf1-dba865a0f278" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010820Z:d2b4ee8b-46ef-4843-adf1-dba865a0f278" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:08:19 GMT" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-GetLogicAppWithWorkflowName": [ + "onesdk9650", + "onesdk8139" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json index b8ad149e0e32..5a57f24333f5 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8625?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2093?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14965" ], "x-ms-request-id": [ - "bc4d46bc-4190-4af8-9caf-afdab204c9ef" + "bfc67188-5284-423b-8e99-8c15e35eb1a2" ], "x-ms-correlation-request-id": [ - "bc4d46bc-4190-4af8-9caf-afdab204c9ef" + "bfc67188-5284-423b-8e99-8c15e35eb1a2" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232412Z:bc4d46bc-4190-4af8-9caf-afdab204c9ef" + "WESTUS:20151224T010457Z:bfc67188-5284-423b-8e99-8c15e35eb1a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:24:11 GMT" + "Thu, 24 Dec 2015 01:04:56 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8625?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg2MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2093?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625\",\r\n \"name\": \"onesdk8625\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093\",\r\n \"name\": \"onesdk2093\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -85,13 +85,13 @@ "1199" ], "x-ms-request-id": [ - "5b311c96-0966-4288-a64e-ec09c94082e5" + "4c03f3c5-1bcd-4680-b72b-1e144b89cad1" ], "x-ms-correlation-request-id": [ - "5b311c96-0966-4288-a64e-ec09c94082e5" + "4c03f3c5-1bcd-4680-b72b-1e144b89cad1" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232412Z:5b311c96-0966-4288-a64e-ec09c94082e5" + "WESTUS:20151224T010458Z:4c03f3c5-1bcd-4680-b72b-1e144b89cad1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:24:11 GMT" + "Thu, 24 Dec 2015 01:04:57 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg2MjUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwOTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14964" ], "x-ms-request-id": [ - "e39eb02f-9259-4f9c-99aa-e2453120498b" + "ffb3e0d2-0709-48d5-924d-1545ace36523" ], "x-ms-correlation-request-id": [ - "e39eb02f-9259-4f9c-99aa-e2453120498b" + "ffb3e0d2-0709-48d5-924d-1545ace36523" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232412Z:e39eb02f-9259-4f9c-99aa-e2453120498b" + "WESTUS:20151224T010458Z:ffb3e0d2-0709-48d5-924d-1545ace36523" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,16 +148,70 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:24:11 GMT" + "Thu, 24 Dec 2015 01:04:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625/providers/Microsoft.Logic/workflows/onesdk9425?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTQyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/providers/Microsoft.Logic/workflows/onesdk7463?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzQ2Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3eeb7cbb-dcae-4422-a247-bbecf3c2fee1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7463' under resource group 'onesdk2093' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "51ecf681-9edc-4984-897c-71e7f9e0c4fe" + ], + "x-ms-correlation-request-id": [ + "51ecf681-9edc-4984-897c-71e7f9e0c4fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151224T010458Z:51ecf681-9edc-4984-897c-71e7f9e0c4fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:04:58 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/providers/Microsoft.Logic/workflows/onesdk7463?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzQ2Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -166,7 +220,7 @@ "1179" ], "x-ms-client-request-id": [ - "34bf76c8-97b0-4c0c-915b-c4f210738150" + "f88f8a68-4b94-47a3-bd5b-6abb413ebd46" ], "accept-language": [ "en-US" @@ -175,7 +229,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:24:13.6995949Z\",\r\n \"changedTime\": \"2015-12-21T23:24:13.6995949Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508666319807560\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8625/providers/Microsoft.Logic/workflows/onesdk9425\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8625/providers/Microsoft.Logic/workflows/onesdk9425\",\r\n \"name\": \"onesdk9425\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:04:59.9827206Z\",\r\n \"changedTime\": \"2015-12-24T01:04:59.9827206Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506877856285568\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2093/providers/Microsoft.Logic/workflows/onesdk7463\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/providers/Microsoft.Logic/workflows/onesdk7463\",\r\n \"name\": \"onesdk7463\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -190,16 +244,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:67267556-726b-4daa-ae8f-681b5284c139" + "westus:1400570a-0b09-4c60-ae72-2e124930b21e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "9143cc6a-14c8-4d5d-ac7c-e1abf8ff2324" + "d926e9ad-5ca8-4191-a7e3-c72974e7b108" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232413Z:9143cc6a-14c8-4d5d-ac7c-e1abf8ff2324" + "WESTUS:20151224T010500Z:d926e9ad-5ca8-4191-a7e3-c72974e7b108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +262,7 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:24:13 GMT" + "Thu, 24 Dec 2015 01:05:00 GMT" ] }, "StatusCode": 201 @@ -216,9 +270,8 @@ ], "Names": { "Test-NewLogicAppUsingDefinitionFilePath": [ - "onesdk7954", - "onesdk8625", - "onesdk9425" + "onesdk2093", + "onesdk7463" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json index df40d73fa1db..eacaf348242f 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk690?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4810?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "101" + "102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14919" ], "x-ms-request-id": [ - "31dbc7c2-bcd3-478e-9ba6-d15b1a04f316" + "c0883159-c16f-4bbd-afbd-fe4b0790bd0b" ], "x-ms-correlation-request-id": [ - "31dbc7c2-bcd3-478e-9ba6-d15b1a04f316" + "c0883159-c16f-4bbd-afbd-fe4b0790bd0b" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232702Z:31dbc7c2-bcd3-478e-9ba6-d15b1a04f316" + "CENTRALUS:20151224T011042Z:c0883159-c16f-4bbd-afbd-fe4b0790bd0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:27:02 GMT" + "Thu, 24 Dec 2015 01:10:41 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk690?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4810?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,10 +67,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690\",\r\n \"name\": \"onesdk690\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810\",\r\n \"name\": \"onesdk4810\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "171" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "d2583195-6ca0-45e5-a4b7-3231b7560d4e" + "170f451a-710f-40a5-b293-357db1407fe4" ], "x-ms-correlation-request-id": [ - "d2583195-6ca0-45e5-a4b7-3231b7560d4e" + "170f451a-710f-40a5-b293-357db1407fe4" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232703Z:d2583195-6ca0-45e5-a4b7-3231b7560d4e" + "CENTRALUS:20151224T011044Z:170f451a-710f-40a5-b293-357db1407fe4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:27:02 GMT" + "Thu, 24 Dec 2015 01:10:43 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5MC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4MTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14918" ], "x-ms-request-id": [ - "aa240d55-183b-4ec6-9a17-4bba2a7bf421" + "fe5f4ea7-2a2e-4726-8879-0cc04e0a198b" ], "x-ms-correlation-request-id": [ - "aa240d55-183b-4ec6-9a17-4bba2a7bf421" + "fe5f4ea7-2a2e-4726-8879-0cc04e0a198b" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232703Z:aa240d55-183b-4ec6-9a17-4bba2a7bf421" + "CENTRALUS:20151224T011044Z:fe5f4ea7-2a2e-4726-8879-0cc04e0a198b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,25 +148,79 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:27:03 GMT" + "Thu, 24 Dec 2015 01:10:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690/providers/Microsoft.Logic/workflows/onesdk1839?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGsxODM5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/providers/Microsoft.Logic/workflows/onesdk9590?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTU5MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "146a6fd8-73dd-4363-b635-83813128f94e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9590' under resource group 'onesdk4810' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1b67a7ba-cd3e-407c-8c4a-e7335f022eda" + ], + "x-ms-correlation-request-id": [ + "1b67a7ba-cd3e-407c-8c4a-e7335f022eda" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T011044Z:1b67a7ba-cd3e-407c-8c4a-e7335f022eda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:10:44 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/providers/Microsoft.Logic/workflows/onesdk9590?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTU5MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1178" + "1179" ], "x-ms-client-request-id": [ - "3e8cc810-dd9f-4b07-9631-a6e7ad151576" + "4469cbff-75de-4c3b-9ced-7b06f5b45790" ], "accept-language": [ "en-US" @@ -175,10 +229,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:27:04.0869476Z\",\r\n \"changedTime\": \"2015-12-21T23:27:04.0869476Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508664615375054\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk690/providers/Microsoft.Logic/workflows/onesdk1839\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk690/providers/Microsoft.Logic/workflows/onesdk1839\",\r\n \"name\": \"onesdk1839\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:10:46.7241291Z\",\r\n \"changedTime\": \"2015-12-24T01:10:46.7241291Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506874389584890\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4810/providers/Microsoft.Logic/workflows/onesdk9590\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/providers/Microsoft.Logic/workflows/onesdk9590\",\r\n \"name\": \"onesdk9590\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1352" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -190,16 +244,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:84705bcf-69f6-4462-a0af-70875e677e81" + "westus:4354245b-9f4c-43d3-817d-d3556d5e51ee" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "f28c1059-6c8c-4bb3-9557-9ed925c46213" + "a041999e-d6ad-404d-9046-7897f27989f7" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232704Z:f28c1059-6c8c-4bb3-9557-9ed925c46213" + "CENTRALUS:20151224T011047Z:a041999e-d6ad-404d-9046-7897f27989f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +262,7 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:27:03 GMT" + "Thu, 24 Dec 2015 01:10:47 GMT" ] }, "StatusCode": 201 @@ -216,9 +270,8 @@ ], "Names": { "Test-NewLogicAppUsingDefinitionObject": [ - "onesdk1624", - "onesdk690", - "onesdk1839" + "onesdk4810", + "onesdk9590" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json index f56943de1a88..da44097826ee 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2887?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI4ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9524?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk1MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14994" ], "x-ms-request-id": [ - "e5060622-5c08-4068-9d7e-e230e3d85334" + "941111ad-cf57-41d1-9107-699469c2490a" ], "x-ms-correlation-request-id": [ - "e5060622-5c08-4068-9d7e-e230e3d85334" + "941111ad-cf57-41d1-9107-699469c2490a" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232634Z:e5060622-5c08-4068-9d7e-e230e3d85334" + "CENTRALUS:20151224T011013Z:941111ad-cf57-41d1-9107-699469c2490a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:26:34 GMT" + "Thu, 24 Dec 2015 01:10:13 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2887?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI4ODc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9524?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk1MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887\",\r\n \"name\": \"onesdk2887\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524\",\r\n \"name\": \"onesdk9524\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "7d1ddc1f-d53b-4ca1-bd19-11fbcc558771" + "182eccb3-6145-41e2-a1c7-2f9188e0f096" ], "x-ms-correlation-request-id": [ - "7d1ddc1f-d53b-4ca1-bd19-11fbcc558771" + "182eccb3-6145-41e2-a1c7-2f9188e0f096" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232635Z:7d1ddc1f-d53b-4ca1-bd19-11fbcc558771" + "CENTRALUS:20151224T011014Z:182eccb3-6145-41e2-a1c7-2f9188e0f096" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:26:34 GMT" + "Thu, 24 Dec 2015 01:10:14 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI4ODcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1MjQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14993" ], "x-ms-request-id": [ - "cde1dd61-abee-47e2-ac7d-fed0dd3c9ba3" + "adf0a31a-bf91-417f-9990-68de1dc5aaf6" ], "x-ms-correlation-request-id": [ - "cde1dd61-abee-47e2-ac7d-fed0dd3c9ba3" + "adf0a31a-bf91-417f-9990-68de1dc5aaf6" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232635Z:cde1dd61-abee-47e2-ac7d-fed0dd3c9ba3" + "CENTRALUS:20151224T011014Z:adf0a31a-bf91-417f-9990-68de1dc5aaf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,16 +148,70 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:26:35 GMT" + "Thu, 24 Dec 2015 01:10:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887/providers/Microsoft.Logic/workflows/onesdk1156?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI4ODcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE1Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/providers/Microsoft.Logic/workflows/onesdk104?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTA0P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6bd816d3-e673-4160-985b-e7255f123091" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk104' under resource group 'onesdk9524' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6ee2a9ef-f929-406c-83d0-4ec09d52994e" + ], + "x-ms-correlation-request-id": [ + "6ee2a9ef-f929-406c-83d0-4ec09d52994e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T011015Z:6ee2a9ef-f929-406c-83d0-4ec09d52994e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:10:14 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/providers/Microsoft.Logic/workflows/onesdk104?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTA0P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -166,7 +220,7 @@ "1179" ], "x-ms-client-request-id": [ - "d9ee3a0c-2bad-47e6-9c60-5be0a65c54d3" + "5f0acde7-a3cf-4b4c-8899-beeaa17e803a" ], "accept-language": [ "en-US" @@ -175,10 +229,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:26:36.6147353Z\",\r\n \"changedTime\": \"2015-12-21T23:26:36.6147353Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508664890610660\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2887/providers/Microsoft.Logic/workflows/onesdk1156\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2887/providers/Microsoft.Logic/workflows/onesdk1156\",\r\n \"name\": \"onesdk1156\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:10:16.3929169Z\",\r\n \"changedTime\": \"2015-12-24T01:10:16.3929169Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506874691628523\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9524/providers/Microsoft.Logic/workflows/onesdk104\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/providers/Microsoft.Logic/workflows/onesdk104\",\r\n \"name\": \"onesdk104\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1355" + "1352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -190,16 +244,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:5f3ab0bb-d6aa-4302-8b87-7a3013f3cfbb" + "westus:6b6f8670-1328-4919-a629-75a047ce040c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "40e80c07-1de4-44c3-b9d5-6fd2cbc7375b" + "0773fef8-9bd3-4968-8d23-26e4b79e9c99" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232636Z:40e80c07-1de4-44c3-b9d5-6fd2cbc7375b" + "CENTRALUS:20151224T011017Z:0773fef8-9bd3-4968-8d23-26e4b79e9c99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +262,7 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:26:36 GMT" + "Thu, 24 Dec 2015 01:10:16 GMT" ] }, "StatusCode": 201 @@ -216,9 +270,8 @@ ], "Names": { "Test-NewLogicAppUsingDefinitionObjectAndParameterFile": [ - "onesdk370", - "onesdk2887", - "onesdk1156" + "onesdk9524", + "onesdk104" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json index 188d7a369b82..bec01e601c08 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5094?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3438?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0Mzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14981" ], "x-ms-request-id": [ - "f9a66be1-0c2d-4b18-9ecc-2e77cfcbcbc5" + "ed3366d2-beb6-4775-90f1-4c0374d15383" ], "x-ms-correlation-request-id": [ - "f9a66be1-0c2d-4b18-9ecc-2e77cfcbcbc5" + "ed3366d2-beb6-4775-90f1-4c0374d15383" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232344Z:f9a66be1-0c2d-4b18-9ecc-2e77cfcbcbc5" + "CENTRALUS:20151224T010944Z:ed3366d2-beb6-4775-90f1-4c0374d15383" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:23:44 GMT" + "Thu, 24 Dec 2015 01:09:44 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5094?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3438?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0Mzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094\",\r\n \"name\": \"onesdk5094\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438\",\r\n \"name\": \"onesdk3438\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "ef2beff9-7455-48e1-bcdd-2dfd22422cdc" + "a4f4232d-fd6c-466e-9aa8-1eb21cac5b32" ], "x-ms-correlation-request-id": [ - "ef2beff9-7455-48e1-bcdd-2dfd22422cdc" + "a4f4232d-fd6c-466e-9aa8-1eb21cac5b32" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232345Z:ef2beff9-7455-48e1-bcdd-2dfd22422cdc" + "CENTRALUS:20151224T010945Z:a4f4232d-fd6c-466e-9aa8-1eb21cac5b32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:23:45 GMT" + "Thu, 24 Dec 2015 01:09:45 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0MzgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -133,13 +133,13 @@ "14980" ], "x-ms-request-id": [ - "73598df0-df66-41f9-a0b7-dbfc1e751fbe" + "78dd3b44-eda0-44d3-a415-033ddaed0b74" ], "x-ms-correlation-request-id": [ - "73598df0-df66-41f9-a0b7-dbfc1e751fbe" + "78dd3b44-eda0-44d3-a415-033ddaed0b74" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232345Z:73598df0-df66-41f9-a0b7-dbfc1e751fbe" + "CENTRALUS:20151224T010945Z:78dd3b44-eda0-44d3-a415-033ddaed0b74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,16 +148,70 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:23:45 GMT" + "Thu, 24 Dec 2015 01:09:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094/providers/Microsoft.Logic/workflows/onesdk2926?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjkyNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/providers/Microsoft.Logic/workflows/onesdk1457?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTQ1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78222d89-238c-4ad4-81dc-d947c96eea54" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1457' under resource group 'onesdk3438' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3d621317-21e9-4a55-bf2c-43e5104d4e3c" + ], + "x-ms-correlation-request-id": [ + "3d621317-21e9-4a55-bf2c-43e5104d4e3c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010946Z:3d621317-21e9-4a55-bf2c-43e5104d4e3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:09:45 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/providers/Microsoft.Logic/workflows/onesdk1457?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTQ1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -166,7 +220,7 @@ "1627" ], "x-ms-client-request-id": [ - "990e7b0b-5347-4499-99dd-43c8c63a8b97" + "b1506fa2-f5e6-4f3e-9579-4740d0ff3f6a" ], "accept-language": [ "en-US" @@ -175,7 +229,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:23:46.9313867Z\",\r\n \"changedTime\": \"2015-12-21T23:23:46.9313867Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508666586173266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5094/providers/Microsoft.Logic/workflows/onesdk2926\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5094/providers/Microsoft.Logic/workflows/onesdk2926\",\r\n \"name\": \"onesdk2926\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:09:47.4143844Z\",\r\n \"changedTime\": \"2015-12-24T01:09:47.4143844Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506874982052346\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3438/providers/Microsoft.Logic/workflows/onesdk1457\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/providers/Microsoft.Logic/workflows/onesdk1457\",\r\n \"name\": \"onesdk1457\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1679" @@ -190,16 +244,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:ca552b14-46fb-4f66-8ad1-d7c257f5d5ba" + "westus:fa53fc73-e697-4a2a-8c00-4d382b00f0e9" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "cedd916a-56a9-452e-ab1b-7531d29f6e45" + "b8f289af-b283-47f0-92ba-e9977f15684c" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232347Z:cedd916a-56a9-452e-ab1b-7531d29f6e45" + "CENTRALUS:20151224T010948Z:b8f289af-b283-47f0-92ba-e9977f15684c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +262,7 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:23:46 GMT" + "Thu, 24 Dec 2015 01:09:47 GMT" ] }, "StatusCode": 201 @@ -216,9 +270,9 @@ ], "Names": { "Test-NewLogicAppUsingDefinitionWithActions": [ - "onesdk5248", - "onesdk5094", - "onesdk2926" + "onesdk3863", + "onesdk3438", + "onesdk1457" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json index d3d288e038e6..02c9e5247448 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8078?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8995?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14982" ], "x-ms-request-id": [ - "48fd172c-dfec-459e-9dad-22984b9a6790" + "521daf0e-6048-46b8-8804-0615e698a8c8" ], "x-ms-correlation-request-id": [ - "48fd172c-dfec-459e-9dad-22984b9a6790" + "521daf0e-6048-46b8-8804-0615e698a8c8" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232509Z:48fd172c-dfec-459e-9dad-22984b9a6790" + "WESTUS:20151224T010621Z:521daf0e-6048-46b8-8804-0615e698a8c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:25:09 GMT" + "Thu, 24 Dec 2015 01:06:21 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8078?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8995?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078\",\r\n \"name\": \"onesdk8078\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995\",\r\n \"name\": \"onesdk8995\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -85,13 +85,13 @@ "1199" ], "x-ms-request-id": [ - "930e3b70-de35-4329-952a-a3557bfaebf2" + "0bc07003-f4de-400e-9ab1-2ea6b469f142" ], "x-ms-correlation-request-id": [ - "930e3b70-de35-4329-952a-a3557bfaebf2" + "0bc07003-f4de-400e-9ab1-2ea6b469f142" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232510Z:930e3b70-de35-4329-952a-a3557bfaebf2" + "WESTUS:20151224T010622Z:0bc07003-f4de-400e-9ab1-2ea6b469f142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:25:09 GMT" + "Thu, 24 Dec 2015 01:06:22 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNzgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5OTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14981" ], "x-ms-request-id": [ - "79332827-770f-485f-b84b-afc268ca9c5a" + "9d8bb0c5-a718-4563-827c-ae221756e8ac" ], "x-ms-correlation-request-id": [ - "79332827-770f-485f-b84b-afc268ca9c5a" + "9d8bb0c5-a718-4563-827c-ae221756e8ac" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232510Z:79332827-770f-485f-b84b-afc268ca9c5a" + "WESTUS:20151224T010622Z:9d8bb0c5-a718-4563-827c-ae221756e8ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,16 +148,70 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:25:09 GMT" + "Thu, 24 Dec 2015 01:06:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078/providers/Microsoft.Logic/workflows/onesdk9975?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTk3NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/providers/Microsoft.Logic/workflows/onesdk2364?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjM2ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2384fcbb-aa87-45cd-b9c1-194f14e0b08b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk2364' under resource group 'onesdk8995' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "16d7296b-0ead-43a8-a954-37bd4ce4429a" + ], + "x-ms-correlation-request-id": [ + "16d7296b-0ead-43a8-a954-37bd4ce4429a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151224T010622Z:16d7296b-0ead-43a8-a954-37bd4ce4429a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:06:21 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/providers/Microsoft.Logic/workflows/onesdk2364?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjM2ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -166,7 +220,7 @@ "980" ], "x-ms-client-request-id": [ - "219d152f-867e-4e37-b5c0-5d20b7d7eac6" + "3b50fb5e-f3d9-416b-aa73-f8bb2e751f55" ], "accept-language": [ "en-US" @@ -175,7 +229,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:25:11.6926478Z\",\r\n \"changedTime\": \"2015-12-21T23:25:11.6926478Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508665739893348\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8078/providers/Microsoft.Logic/workflows/onesdk9975\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8078/providers/Microsoft.Logic/workflows/onesdk9975\",\r\n \"name\": \"onesdk9975\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:06:24.3782567Z\",\r\n \"changedTime\": \"2015-12-24T01:06:24.3782567Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506877013341075\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8995/providers/Microsoft.Logic/workflows/onesdk2364\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/providers/Microsoft.Logic/workflows/onesdk2364\",\r\n \"name\": \"onesdk2364\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1233" @@ -190,16 +244,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:fde281f4-2041-430e-85aa-5371332d329a" + "westus:bda051e8-5af6-4148-90a3-9781a423ad38" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "5f394b24-52a1-419f-8d6b-bfd8f3ad7f69" + "555519d5-7e33-47fa-b83c-e0df562d8f5f" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232512Z:5f394b24-52a1-419f-8d6b-bfd8f3ad7f69" + "WESTUS:20151224T010624Z:555519d5-7e33-47fa-b83c-e0df562d8f5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +262,7 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:25:12 GMT" + "Thu, 24 Dec 2015 01:06:23 GMT" ] }, "StatusCode": 201 @@ -216,9 +270,9 @@ ], "Names": { "Test-NewLogicAppUsingDefinitionWithTriggers": [ - "onesdk990", - "onesdk8078", - "onesdk9975" + "onesdk4020", + "onesdk8995", + "onesdk2364" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json index 38228ff25706..ab663edc35f0 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9517?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk1MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14995" ], "x-ms-request-id": [ - "3c0ed2c2-50b7-4db8-acf4-f3d1d252340c" + "b48a91b4-efa9-4471-a19b-b55698e6605a" ], "x-ms-correlation-request-id": [ - "3c0ed2c2-50b7-4db8-acf4-f3d1d252340c" + "b48a91b4-efa9-4471-a19b-b55698e6605a" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232539Z:3c0ed2c2-50b7-4db8-acf4-f3d1d252340c" + "CENTRALUS:20151224T010746Z:b48a91b4-efa9-4471-a19b-b55698e6605a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:25:38 GMT" + "Thu, 24 Dec 2015 01:07:46 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9517?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk1MTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517\",\r\n \"name\": \"onesdk9517\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801\",\r\n \"name\": \"onesdk1801\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "32882b93-a1aa-4a51-a0f1-13ceb544f903" + "99235574-72ce-45ee-b010-5ce04d9d65b1" ], "x-ms-correlation-request-id": [ - "32882b93-a1aa-4a51-a0f1-13ceb544f903" + "99235574-72ce-45ee-b010-5ce04d9d65b1" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232539Z:32882b93-a1aa-4a51-a0f1-13ceb544f903" + "CENTRALUS:20151224T010748Z:99235574-72ce-45ee-b010-5ce04d9d65b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:25:39 GMT" + "Thu, 24 Dec 2015 01:07:47 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1MTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14994" ], "x-ms-request-id": [ - "26bacee4-abef-42f5-88d5-365cd766e7a1" + "e466172a-57e4-4b59-8975-20e6e30ddc98" ], "x-ms-correlation-request-id": [ - "26bacee4-abef-42f5-88d5-365cd766e7a1" + "e466172a-57e4-4b59-8975-20e6e30ddc98" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232539Z:26bacee4-abef-42f5-88d5-365cd766e7a1" + "CENTRALUS:20151224T010748Z:e466172a-57e4-4b59-8975-20e6e30ddc98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,16 +148,70 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:25:39 GMT" + "Thu, 24 Dec 2015 01:07:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517/providers/Microsoft.Logic/workflows/onesdk257?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU3P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk8889?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODg4OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e1d9294-f5a9-4344-ba19-2c595f85abed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8889' under resource group 'onesdk1801' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ebd89158-08ab-4fb3-a432-ccba09d68f61" + ], + "x-ms-correlation-request-id": [ + "ebd89158-08ab-4fb3-a432-ccba09d68f61" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010748Z:ebd89158-08ab-4fb3-a432-ccba09d68f61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:07:48 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk8889?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODg4OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -166,7 +220,7 @@ "1179" ], "x-ms-client-request-id": [ - "8cb09fe5-99e3-48b3-96b6-7a9776b01137" + "dce4551f-efbb-49ec-a5ec-505f7a9c9880" ], "accept-language": [ "en-US" @@ -175,10 +229,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:25:40.8766386Z\",\r\n \"changedTime\": \"2015-12-21T23:25:40.8766386Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508665447673018\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9517/providers/Microsoft.Logic/workflows/onesdk257\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9517/providers/Microsoft.Logic/workflows/onesdk257\",\r\n \"name\": \"onesdk257\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:07:49.555997Z\",\r\n \"changedTime\": \"2015-12-24T01:07:49.555997Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506876162267003\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk8889\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk8889\",\r\n \"name\": \"onesdk8889\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1352" + "1353" ], "Content-Type": [ "application/json; charset=utf-8" @@ -190,16 +244,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:07723f40-5882-4194-8cf8-fd738884dd37" + "westus:8e4c2081-ef54-48fa-8802-b784d6dfff1b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "770f1878-365d-45aa-a498-7f737c895a15" + "694c4b0a-e440-4055-a561-79b71ba7f8bb" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232541Z:770f1878-365d-45aa-a498-7f737c895a15" + "CENTRALUS:20151224T010750Z:694c4b0a-e440-4055-a561-79b71ba7f8bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +262,7 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:25:40 GMT" + "Thu, 24 Dec 2015 01:07:49 GMT" ] }, "StatusCode": 201 @@ -216,9 +270,9 @@ ], "Names": { "Test-NewLogicAppUsingInputParameterAsHashTable": [ - "onesdk6053", - "onesdk9517", - "onesdk257" + "onesdk7119", + "onesdk1801", + "onesdk8889" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json index 520ba8e98a3c..497787b48a32 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9874?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4027?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwMjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14998" ], "x-ms-request-id": [ - "def1785a-84d9-44d0-812f-b85536f97342" + "1fb95fe0-785e-4dd6-9fda-d0c3c36620d6" ], "x-ms-correlation-request-id": [ - "def1785a-84d9-44d0-812f-b85536f97342" + "1fb95fe0-785e-4dd6-9fda-d0c3c36620d6" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232608Z:def1785a-84d9-44d0-812f-b85536f97342" + "CENTRALUS:20151224T010913Z:1fb95fe0-785e-4dd6-9fda-d0c3c36620d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:26:07 GMT" + "Thu, 24 Dec 2015 01:09:12 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9874?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4027?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwMjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874\",\r\n \"name\": \"onesdk9874\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027\",\r\n \"name\": \"onesdk4027\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "59b8d841-c52f-458f-9c3b-67c0804c4850" + "448b0065-c267-45ee-b790-70e43b54ca60" ], "x-ms-correlation-request-id": [ - "59b8d841-c52f-458f-9c3b-67c0804c4850" + "448b0065-c267-45ee-b790-70e43b54ca60" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232608Z:59b8d841-c52f-458f-9c3b-67c0804c4850" + "CENTRALUS:20151224T010913Z:448b0065-c267-45ee-b790-70e43b54ca60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:26:08 GMT" + "Thu, 24 Dec 2015 01:09:13 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4NzQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQwMjcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14997" ], "x-ms-request-id": [ - "6af89ec9-6c85-40c7-a57c-5dbbd8e19d2c" + "9a59f596-4d08-404c-b5e0-fa9642c6f7c4" ], "x-ms-correlation-request-id": [ - "6af89ec9-6c85-40c7-a57c-5dbbd8e19d2c" + "9a59f596-4d08-404c-b5e0-fa9642c6f7c4" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232609Z:6af89ec9-6c85-40c7-a57c-5dbbd8e19d2c" + "CENTRALUS:20151224T010913Z:9a59f596-4d08-404c-b5e0-fa9642c6f7c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,16 +148,70 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:26:08 GMT" + "Thu, 24 Dec 2015 01:09:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODAwMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk2020?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjAyMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e57a2984-4f39-4121-8920-f625e3d929b9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk2020' under resource group 'onesdk4027' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "60e7752b-c244-43bd-a476-41e811802e47" + ], + "x-ms-correlation-request-id": [ + "60e7752b-c244-43bd-a476-41e811802e47" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010914Z:60e7752b-c244-43bd-a476-41e811802e47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:09:14 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk2020?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjAyMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -166,7 +220,7 @@ "1179" ], "x-ms-client-request-id": [ - "c4b66eef-6603-4b4a-bb3e-37c21ea8a029" + "87aa777e-b44f-4dbf-8b2f-c2fc2cd05992" ], "accept-language": [ "en-US" @@ -175,7 +229,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:26:09.7872802Z\",\r\n \"changedTime\": \"2015-12-21T23:26:09.7872802Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508665157279593\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000\",\r\n \"name\": \"onesdk8000\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:09:16.2320373Z\",\r\n \"changedTime\": \"2015-12-24T01:09:16.2320373Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506875294239722\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk2020\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk2020\",\r\n \"name\": \"onesdk2020\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -190,16 +244,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:0f8bb30d-40e3-4fbd-bd9e-9aeb12769a06" + "westus:c5f1d9d8-f1cc-4136-af58-70cd404b1f44" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "11262ffd-399a-44e7-8e9a-ef6f81f968c9" + "f8080684-55af-4be0-8fb8-8ad79d6b7223" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232610Z:11262ffd-399a-44e7-8e9a-ef6f81f968c9" + "CENTRALUS:20151224T010917Z:f8080684-55af-4be0-8fb8-8ad79d6b7223" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,16 +262,70 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:26:09 GMT" + "Thu, 24 Dec 2015 01:09:16 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODAwMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk3874?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzg3ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e625d12a-7eda-4f02-bdca-58c799397a36" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk3874' under resource group 'onesdk4027' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a922a3ec-8281-4c58-815e-a1e1ffdc12ab" + ], + "x-ms-correlation-request-id": [ + "a922a3ec-8281-4c58-815e-a1e1ffdc12ab" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010917Z:a922a3ec-8281-4c58-815e-a1e1ffdc12ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:09:16 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk3874?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzg3ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +334,7 @@ "1179" ], "x-ms-client-request-id": [ - "476d8cf7-87fb-4670-8067-49727aea539b" + "a61f4e42-19a5-4400-bf6e-95d364c80b4e" ], "accept-language": [ "en-US" @@ -235,7 +343,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:26:10.3577193Z\",\r\n \"changedTime\": \"2015-12-21T23:26:10.3584496Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508665151647511\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9874/providers/Microsoft.Logic/workflows/onesdk8000\",\r\n \"name\": \"onesdk8000\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:09:18.3771956Z\",\r\n \"changedTime\": \"2015-12-24T01:09:18.3771956Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506875273265899\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk3874\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk3874\",\r\n \"name\": \"onesdk3874\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -249,20 +357,17 @@ "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "westus:cd87e24d-479e-4992-9a9b-ee6ca0741132" + "westus:aea12094-bae5-4274-8a20-55084e46b1b8" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "3dbcb6f5-33f2-4b5c-b42d-80ba3df478a6" + "ac7c92c1-33b6-4d12-880b-f00d0a8cfd4d" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232610Z:3dbcb6f5-33f2-4b5c-b42d-80ba3df478a6" + "CENTRALUS:20151224T010919Z:ac7c92c1-33b6-4d12-880b-f00d0a8cfd4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -271,17 +376,17 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:26:09 GMT" + "Thu, 24 Dec 2015 01:09:19 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 } ], "Names": { "Test-NewLogicAppUsingInputfromWorkflowObject": [ - "onesdk2681", - "onesdk9874", - "onesdk8000" + "onesdk4027", + "onesdk2020", + "onesdk3874" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json index a444a6ac792f..33f61d25cfa7 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2599?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1OTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9808?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14998" ], "x-ms-request-id": [ - "f83992cd-7dfa-4d96-aab9-a2b0b3d3ed51" + "86faa4f6-5af9-4e49-b39d-ca66eedd2c1f" ], "x-ms-correlation-request-id": [ - "f83992cd-7dfa-4d96-aab9-a2b0b3d3ed51" + "86faa4f6-5af9-4e49-b39d-ca66eedd2c1f" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232728Z:f83992cd-7dfa-4d96-aab9-a2b0b3d3ed51" + "CENTRALUS:20151224T010844Z:86faa4f6-5af9-4e49-b39d-ca66eedd2c1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:27:28 GMT" + "Thu, 24 Dec 2015 01:08:43 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2599?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1OTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9808?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599\",\r\n \"name\": \"onesdk2599\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808\",\r\n \"name\": \"onesdk9808\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "1b561385-a0d4-4c25-b935-aea3f9f20590" + "39d3c79f-2ac2-495f-a0b0-1c985064f2ad" ], "x-ms-correlation-request-id": [ - "1b561385-a0d4-4c25-b935-aea3f9f20590" + "39d3c79f-2ac2-495f-a0b0-1c985064f2ad" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232729Z:1b561385-a0d4-4c25-b935-aea3f9f20590" + "CENTRALUS:20151224T010845Z:39d3c79f-2ac2-495f-a0b0-1c985064f2ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:27:29 GMT" + "Thu, 24 Dec 2015 01:08:44 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1OTkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4MDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14997" ], "x-ms-request-id": [ - "bd838d4a-96c6-4b89-8e3d-bc693c9e625f" + "b4c1e426-655e-42b4-a959-7d40815052f4" ], "x-ms-correlation-request-id": [ - "bd838d4a-96c6-4b89-8e3d-bc693c9e625f" + "b4c1e426-655e-42b4-a959-7d40815052f4" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232729Z:bd838d4a-96c6-4b89-8e3d-bc693c9e625f" + "CENTRALUS:20151224T010845Z:b4c1e426-655e-42b4-a959-7d40815052f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,16 +148,70 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:27:29 GMT" + "Thu, 24 Dec 2015 01:08:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599/providers/Microsoft.Logic/workflows/onesdk358?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1OTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/providers/Microsoft.Logic/workflows/onesdk8402?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODQwMj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71da4cd7-3f06-4f79-83fb-78ca8fa769da" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8402' under resource group 'onesdk9808' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e8081e1d-9b43-42f5-9e24-9ef0f0773c51" + ], + "x-ms-correlation-request-id": [ + "e8081e1d-9b43-42f5-9e24-9ef0f0773c51" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010846Z:e8081e1d-9b43-42f5-9e24-9ef0f0773c51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:08:45 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/providers/Microsoft.Logic/workflows/onesdk8402?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODQwMj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -166,7 +220,7 @@ "1179" ], "x-ms-client-request-id": [ - "ab77e83f-5605-4f7b-8801-971907c2ce12" + "62176869-10b6-466c-9162-3b3dc8d17a2a" ], "accept-language": [ "en-US" @@ -175,10 +229,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:27:30.5165485Z\",\r\n \"changedTime\": \"2015-12-21T23:27:30.5165485Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508664350710527\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2599/providers/Microsoft.Logic/workflows/onesdk358\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2599/providers/Microsoft.Logic/workflows/onesdk358\",\r\n \"name\": \"onesdk358\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:08:47.1480787Z\",\r\n \"changedTime\": \"2015-12-24T01:08:47.1480787Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506875583582315\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9808/providers/Microsoft.Logic/workflows/onesdk8402\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/providers/Microsoft.Logic/workflows/onesdk8402\",\r\n \"name\": \"onesdk8402\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1352" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -190,16 +244,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:85a0ee46-015f-4a1c-8a12-e19ccd1f5643" + "westus:82fa83ce-650c-4bc1-b80a-3678e8e93c35" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "c206d6eb-09c5-4902-a0e7-a797e12c432a" + "75c5669f-29ba-4c75-8ef8-c32da7c5e0ff" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232730Z:c206d6eb-09c5-4902-a0e7-a797e12c432a" + "CENTRALUS:20151224T010847Z:75c5669f-29ba-4c75-8ef8-c32da7c5e0ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +262,7 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:27:30 GMT" + "Thu, 24 Dec 2015 01:08:46 GMT" ] }, "StatusCode": 201 @@ -216,9 +270,8 @@ ], "Names": { "Test-NewLogicAppUsingResourcegroupPipeline": [ - "onesdk1745", - "onesdk2599", - "onesdk358" + "onesdk9808", + "onesdk8402" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json index 91d46d81ef73..c134e8962790 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7433?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc0MzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7180?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazcxODA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14917" ], "x-ms-request-id": [ - "e7b4bccc-f8a1-4551-a813-b23c47454c6f" + "08ca61fe-8fee-4aca-b8ab-08be4f3d0a5b" ], "x-ms-correlation-request-id": [ - "e7b4bccc-f8a1-4551-a813-b23c47454c6f" + "08ca61fe-8fee-4aca-b8ab-08be4f3d0a5b" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232440Z:e7b4bccc-f8a1-4551-a813-b23c47454c6f" + "CENTRALUS:20151224T011112Z:08ca61fe-8fee-4aca-b8ab-08be4f3d0a5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:24:39 GMT" + "Thu, 24 Dec 2015 01:11:11 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7433?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc0MzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7180?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazcxODA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433\",\r\n \"name\": \"onesdk7433\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180\",\r\n \"name\": \"onesdk7180\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "b0568d8a-7889-4ec1-a48b-326b35bdc868" + "ba06211b-4fc8-4ecb-b3b4-56919a1bfcc4" ], "x-ms-correlation-request-id": [ - "b0568d8a-7889-4ec1-a48b-326b35bdc868" + "ba06211b-4fc8-4ecb-b3b4-56919a1bfcc4" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232441Z:b0568d8a-7889-4ec1-a48b-326b35bdc868" + "CENTRALUS:20151224T011113Z:ba06211b-4fc8-4ecb-b3b4-56919a1bfcc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:24:40 GMT" + "Thu, 24 Dec 2015 01:11:12 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc0MzMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxODAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14916" ], "x-ms-request-id": [ - "4716a115-7a54-40c6-8d25-5ad48b67c3c3" + "38175c2d-e2db-41c0-bdb4-31df4b54f734" ], "x-ms-correlation-request-id": [ - "4716a115-7a54-40c6-8d25-5ad48b67c3c3" + "38175c2d-e2db-41c0-bdb4-31df4b54f734" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232441Z:4716a115-7a54-40c6-8d25-5ad48b67c3c3" + "CENTRALUS:20151224T011113Z:38175c2d-e2db-41c0-bdb4-31df4b54f734" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,16 +148,70 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:24:40 GMT" + "Thu, 24 Dec 2015 01:11:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433/providers/Microsoft.Logic/workflows/onesdk2072?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjA3Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/providers/Microsoft.Logic/workflows/onesdk3339?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxODAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzMzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43560a21-f2b3-4d33-8658-8a10de58557d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk3339' under resource group 'onesdk7180' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "48217cbc-c988-4cc0-9f51-f6c5b9299b20" + ], + "x-ms-correlation-request-id": [ + "48217cbc-c988-4cc0-9f51-f6c5b9299b20" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T011114Z:48217cbc-c988-4cc0-9f51-f6c5b9299b20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:11:13 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/providers/Microsoft.Logic/workflows/onesdk3339?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxODAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzMzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -166,7 +220,7 @@ "1179" ], "x-ms-client-request-id": [ - "3a16f7d5-9d3c-41b4-ad66-935323c7592d" + "60749195-331a-4775-9f0d-586f572e3adc" ], "accept-language": [ "en-US" @@ -175,7 +229,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:24:42.0642922Z\",\r\n \"changedTime\": \"2015-12-21T23:24:42.0642922Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508666035645871\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7433/providers/Microsoft.Logic/workflows/onesdk2072\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7433/providers/Microsoft.Logic/workflows/onesdk2072\",\r\n \"name\": \"onesdk2072\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:11:15.4238137Z\",\r\n \"changedTime\": \"2015-12-24T01:11:15.4238137Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506874101687780\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7180/providers/Microsoft.Logic/workflows/onesdk3339\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/providers/Microsoft.Logic/workflows/onesdk3339\",\r\n \"name\": \"onesdk3339\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -190,16 +244,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:8a2ac53b-7a30-4205-be44-e38ede6917de" + "westus:ff48057d-d058-40f8-80a4-fa8511d5f653" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "cee5e4e8-98e6-41c2-b07c-46f65ec12f68" + "f1841844-193c-4507-98b6-b7d40f20d879" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232442Z:cee5e4e8-98e6-41c2-b07c-46f65ec12f68" + "CENTRALUS:20151224T011116Z:f1841844-193c-4507-98b6-b7d40f20d879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +262,7 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:24:41 GMT" + "Thu, 24 Dec 2015 01:11:15 GMT" ] }, "StatusCode": 201 @@ -216,9 +270,8 @@ ], "Names": { "Test-NewLogicAppUsingSkuPipeline": [ - "onesdk7245", - "onesdk7433", - "onesdk2072" + "onesdk7180", + "onesdk3339" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithDuplicateName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithDuplicateName.json new file mode 100644 index 000000000000..f18ec85890f7 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithDuplicateName.json @@ -0,0 +1,337 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5701?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU3MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "ef8a85e6-92d1-4e89-bba8-222cadb9dc90" + ], + "x-ms-correlation-request-id": [ + "ef8a85e6-92d1-4e89-bba8-222cadb9dc90" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151228T203916Z:ef8a85e6-92d1-4e89-bba8-222cadb9dc90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:39:15 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5701?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU3MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701\",\r\n \"name\": \"onesdk5701\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9a910827-be6b-4bc8-bb64-b94d5ca015f9" + ], + "x-ms-correlation-request-id": [ + "9a910827-be6b-4bc8-bb64-b94d5ca015f9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151228T203917Z:9a910827-be6b-4bc8-bb64-b94d5ca015f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:39:16 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU3MDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "aa446167-9560-4558-8f65-d1b4c9419738" + ], + "x-ms-correlation-request-id": [ + "aa446167-9560-4558-8f65-d1b4c9419738" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151228T203917Z:aa446167-9560-4558-8f65-d1b4c9419738" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:39:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjU3P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd02df3c-7b1a-4ad1-804d-0f0600fcdc91" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk657' under resource group 'onesdk5701' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9efc44fd-ea5e-4b3b-8104-7e488a3aa303" + ], + "x-ms-correlation-request-id": [ + "9efc44fd-ea5e-4b3b-8104-7e488a3aa303" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151228T203918Z:9efc44fd-ea5e-4b3b-8104-7e488a3aa303" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:39:17 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjU3P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b8cc3d8-42f0-4992-8027-4b128f3d8bc1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-28T20:39:20.8932887Z\",\r\n \"changedTime\": \"2015-12-28T20:39:20.8935419Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587502717248854444\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657\",\r\n \"name\": \"onesdk657\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f923c19f-dfe3-43e9-bcd3-b61bca40677a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "c335f720-f727-4ae0-92b0-e339be851d03" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151228T203921Z:c335f720-f727-4ae0-92b0-e339be851d03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:39:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjU3P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "ea4ae278-d0fb-4ac9-92c2-fb6f59d0a2c3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-28T20:39:20.8932887Z\",\r\n \"changedTime\": \"2015-12-28T20:39:20.8932887Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587502717248854444\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657\",\r\n \"name\": \"onesdk657\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:8599ef5c-581c-4801-9b2b-624b26abc9f0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "960e02a3-9bab-4d09-acec-26488ac38d3b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151228T203921Z:960e02a3-9bab-4d09-acec-26488ac38d3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:39:20 GMT" + ] + }, + "StatusCode": 201 + } + ], + "Names": { + "Test-NewLogicAppWithDuplicateName": [ + "onesdk5701", + "onesdk657" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json index a7f8f5676969..1e738705637a 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9870?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2657?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI2NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14975" ], "x-ms-request-id": [ - "c21966c2-c711-496c-8230-f601841ac02f" + "bf051a11-a299-42f6-8853-57b1e1f8c2b1" ], "x-ms-correlation-request-id": [ - "c21966c2-c711-496c-8230-f601841ac02f" + "bf051a11-a299-42f6-8853-57b1e1f8c2b1" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232316Z:c21966c2-c711-496c-8230-f601841ac02f" + "WESTUS:20151224T010649Z:bf051a11-a299-42f6-8853-57b1e1f8c2b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:23:15 GMT" + "Thu, 24 Dec 2015 01:06:48 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9870?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2657?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI2NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870\",\r\n \"name\": \"onesdk9870\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657\",\r\n \"name\": \"onesdk2657\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -85,13 +85,13 @@ "1199" ], "x-ms-request-id": [ - "5d47dca5-be24-4277-a6c3-9f23830885c5" + "c99072ab-05e9-405a-9079-5214a164e929" ], "x-ms-correlation-request-id": [ - "5d47dca5-be24-4277-a6c3-9f23830885c5" + "c99072ab-05e9-405a-9079-5214a164e929" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232317Z:5d47dca5-be24-4277-a6c3-9f23830885c5" + "WESTUS:20151224T010649Z:c99072ab-05e9-405a-9079-5214a164e929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:23:16 GMT" + "Thu, 24 Dec 2015 01:06:49 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4NzAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI2NTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14974" ], "x-ms-request-id": [ - "f123b4c8-ca78-4dc3-904c-537a7a6d2ca9" + "b577f9da-c41c-4510-a82d-dd72146b22fe" ], "x-ms-correlation-request-id": [ - "f123b4c8-ca78-4dc3-904c-537a7a6d2ca9" + "b577f9da-c41c-4510-a82d-dd72146b22fe" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232317Z:f123b4c8-ca78-4dc3-904c-537a7a6d2ca9" + "WESTUS:20151224T010649Z:b577f9da-c41c-4510-a82d-dd72146b22fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,16 +148,70 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:23:16 GMT" + "Thu, 24 Dec 2015 01:06:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870/providers/Microsoft.Logic/workflows/onesdk2888?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjg4OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/providers/Microsoft.Logic/workflows/onesdk1656?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTY1Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d661991f-a286-4e7d-a86d-42e6318e5b9c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1656' under resource group 'onesdk2657' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4706343b-33e6-435f-8646-004143a89bca" + ], + "x-ms-correlation-request-id": [ + "4706343b-33e6-435f-8646-004143a89bca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151224T010650Z:4706343b-33e6-435f-8646-004143a89bca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:06:49 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/providers/Microsoft.Logic/workflows/onesdk1656?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTY1Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -166,7 +220,7 @@ "1179" ], "x-ms-client-request-id": [ - "cc0564d9-f03b-45d4-8315-00e20a857651" + "501a3cb7-7898-479d-90f2-ad2b27b28179" ], "accept-language": [ "en-US" @@ -175,7 +229,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-21T23:23:19.2919373Z\",\r\n \"changedTime\": \"2015-12-21T23:23:19.2919373Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587508666863208837\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9870/providers/Microsoft.Logic/workflows/onesdk2888\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9870/providers/Microsoft.Logic/workflows/onesdk2888\",\r\n \"name\": \"onesdk2888\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:06:51.5127017Z\",\r\n \"changedTime\": \"2015-12-24T01:06:51.5127017Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506876740654184\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2657/providers/Microsoft.Logic/workflows/onesdk1656\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/providers/Microsoft.Logic/workflows/onesdk1656\",\r\n \"name\": \"onesdk1656\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -190,16 +244,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:7e5ff2e3-838a-42ae-ae8d-d38d9ff43cba" + "westus:f5a4a1e1-5b61-48f2-b21a-67711c0f9722" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "badf1fbb-c006-4905-906c-841aaa8b669a" + "cee4368b-983a-40f4-a183-0e4a1217b63f" ], "x-ms-routing-request-id": [ - "WESTUS:20151221T232319Z:badf1fbb-c006-4905-906c-841aaa8b669a" + "WESTUS:20151224T010652Z:cee4368b-983a-40f4-a183-0e4a1217b63f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +262,7 @@ "no-cache" ], "Date": [ - "Mon, 21 Dec 2015 23:23:19 GMT" + "Thu, 24 Dec 2015 01:06:52 GMT" ] }, "StatusCode": 201 @@ -216,9 +270,8 @@ ], "Names": { "Test-NewLogicAppWithPlanId": [ - "onesdk2763", - "onesdk9870", - "onesdk2888" + "onesdk2657", + "onesdk1656" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithInvalidWorkflowName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithInvalidWorkflowName.json new file mode 100644 index 000000000000..8d96a3d62980 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithInvalidWorkflowName.json @@ -0,0 +1,213 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4190?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQxOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "56ad5ce2-efc9-4baa-80c4-f23605a3a81b" + ], + "x-ms-correlation-request-id": [ + "56ad5ce2-efc9-4baa-80c4-f23605a3a81b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T012038Z:56ad5ce2-efc9-4baa-80c4-f23605a3a81b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:20:37 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4190?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQxOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4190\",\r\n \"name\": \"onesdk4190\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "2c0bd8df-7a7b-49e8-a920-7a515a504731" + ], + "x-ms-correlation-request-id": [ + "2c0bd8df-7a7b-49e8-a920-7a515a504731" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T012039Z:2c0bd8df-7a7b-49e8-a920-7a515a504731" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:20:38 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4190/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQxOTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "d2749093-7934-4b7e-b4bd-5efb17341ad1" + ], + "x-ms-correlation-request-id": [ + "d2749093-7934-4b7e-b4bd-5efb17341ad1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T012039Z:d2749093-7934-4b7e-b4bd-5efb17341ad1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:20:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4190/providers/Microsoft.Logic/workflows/09e81ac4-848a-428d-82a6-7d61953e3940?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvMDllODFhYzQtODQ4YS00MjhkLTgyYTYtN2Q2MTk1M2UzOTQwP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22df948d-f826-4b0e-ad1a-13a13001eb41" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "36b12f33-d1fc-4df6-ad61-23fec060a48f" + ], + "x-ms-correlation-request-id": [ + "36b12f33-d1fc-4df6-ad61-23fec060a48f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T012040Z:36b12f33-d1fc-4df6-ad61-23fec060a48f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:20:40 GMT" + ] + }, + "StatusCode": 204 + } + ], + "Names": { + "Test-RemoveLogicAppWithInvalidWorkflowName": [ + "onesdk4190" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithWorkflowName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithWorkflowName.json new file mode 100644 index 000000000000..45ced2dcc664 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithWorkflowName.json @@ -0,0 +1,385 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1972?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "78081684-32bc-4049-91e7-b7775b2292ea" + ], + "x-ms-correlation-request-id": [ + "78081684-32bc-4049-91e7-b7775b2292ea" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010716Z:78081684-32bc-4049-91e7-b7775b2292ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:07:16 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1972?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972\",\r\n \"name\": \"onesdk1972\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "599e147d-6cb1-4306-a3ae-722ef4511b6c" + ], + "x-ms-correlation-request-id": [ + "599e147d-6cb1-4306-a3ae-722ef4511b6c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010717Z:599e147d-6cb1-4306-a3ae-722ef4511b6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:07:17 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NzIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "0081f8dc-7f65-4ebf-89be-3c91e1cfe3fa" + ], + "x-ms-correlation-request-id": [ + "0081f8dc-7f65-4ebf-89be-3c91e1cfe3fa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010718Z:0081f8dc-7f65-4ebf-89be-3c91e1cfe3fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:07:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDg1MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39881ff9-3cfe-4893-840f-2c263176b872" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4850' under resource group 'onesdk1972' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2a292a01-4f7f-4594-a39d-8c1d32b3cf1d" + ], + "x-ms-correlation-request-id": [ + "2a292a01-4f7f-4594-a39d-8c1d32b3cf1d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010718Z:2a292a01-4f7f-4594-a39d-8c1d32b3cf1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:07:17 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDg1MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6afcdb99-3dc8-4ee7-94df-487532ffbda1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4850' under resource group 'onesdk1972' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4e6f7308-8bd8-4933-ae8e-af014f15fff0" + ], + "x-ms-correlation-request-id": [ + "4e6f7308-8bd8-4933-ae8e-af014f15fff0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010722Z:4e6f7308-8bd8-4933-ae8e-af014f15fff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:07:22 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDg1MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "22c8005c-6c89-48eb-9c4c-416a67b123e4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:07:20.4877515Z\",\r\n \"changedTime\": \"2015-12-24T01:07:20.4877515Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506876454632098\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850\",\r\n \"name\": \"onesdk4850\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:d9292c5c-ceb8-4306-a9e4-73b975725973" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "1b53aedf-b9ac-46ea-a282-5d1d2d940fa2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010721Z:1b53aedf-b9ac-46ea-a282-5d1d2d940fa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:07:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDg1MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ba88efa-47a9-40fb-b82b-a3d978020622" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:a8a68510-a9e8-487c-a2e8-85a89ffa4ca8" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "cb2c4ac9-087b-46a3-ab7b-f6af84f3a28a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151224T010722Z:cb2c4ac9-087b-46a3-ab7b-f6af84f3a28a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:07:22 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RemoveLogicAppWithWorkflowName": [ + "onesdk1972", + "onesdk4850" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json new file mode 100644 index 000000000000..d96ec142cd51 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json @@ -0,0 +1,400 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3694?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2OTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "f33f6588-aa37-41c1-ac4c-9a0c16875137" + ], + "x-ms-correlation-request-id": [ + "f33f6588-aa37-41c1-ac4c-9a0c16875137" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151224T010526Z:f33f6588-aa37-41c1-ac4c-9a0c16875137" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:05:25 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3694?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2OTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694\",\r\n \"name\": \"onesdk3694\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2a1e8e04-2bcf-4f94-ba72-3ad7718989d9" + ], + "x-ms-correlation-request-id": [ + "2a1e8e04-2bcf-4f94-ba72-3ad7718989d9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151224T010527Z:2a1e8e04-2bcf-4f94-ba72-3ad7718989d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:05:26 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "ab15cbaa-87fd-47ff-ac8d-d3811961d375" + ], + "x-ms-correlation-request-id": [ + "ab15cbaa-87fd-47ff-ac8d-d3811961d375" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151224T010527Z:ab15cbaa-87fd-47ff-ac8d-d3811961d375" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:05:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTM0ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "082fe55f-db06-40dc-964f-743b0b9de918" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1344' under resource group 'onesdk3694' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2b51fd0f-5252-403b-9dff-44fcb52d0d00" + ], + "x-ms-correlation-request-id": [ + "2b51fd0f-5252-403b-9dff-44fcb52d0d00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151224T010527Z:2b51fd0f-5252-403b-9dff-44fcb52d0d00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:05:27 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTM0ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf727152-2390-478b-b58e-8c2ec9635276" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:05:28.7928185Z\",\r\n \"changedTime\": \"2015-12-24T01:05:28.7935536Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506877569412167\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"name\": \"onesdk1344\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:640e62a3-cc2a-473f-b45e-b235eb0cdadc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "e5e43c65-b849-4e34-98a7-dcd0855ac07b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151224T010529Z:e5e43c65-b849-4e34-98a7-dcd0855ac07b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:05:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTM0ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "43f5a650-4529-4624-8627-18cdc38a6dd5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:05:28.7928185Z\",\r\n \"changedTime\": \"2015-12-24T01:05:28.7928185Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506877569412167\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"name\": \"onesdk1344\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:df37d3d0-92e1-45c0-9275-c49409a79784" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "1dcb0de1-3d39-4d26-a7dc-d6d9d6df2acf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151224T010529Z:1dcb0de1-3d39-4d26-a7dc-d6d9d6df2acf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:05:28 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTM0ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Web/serverfarms/NonStandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "979" + ], + "x-ms-client-request-id": [ + "f59d22e0-3751-4028-ad93-5e18487842ac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:05:29.6490249Z\",\r\n \"changedTime\": \"2015-12-24T01:05:29.6493285Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506877559368260\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Web/serverfarms/NonStandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"NonStandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"name\": \"onesdk1344\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:22ac5526-c4bd-40d1-b56b-f6776834c81d" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "2deebc9a-daf8-44f3-991a-d26bede8df85" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151224T010529Z:2deebc9a-daf8-44f3-991a-d26bede8df85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 24 Dec 2015 01:05:29 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-UpdateLogicApp": [ + "onesdk3694", + "onesdk1344" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateNonExistingLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateNonExistingLogicApp.json new file mode 100644 index 000000000000..6f75b6012a43 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateNonExistingLogicApp.json @@ -0,0 +1,334 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8004?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "82cc36ea-f783-4032-85eb-7c60892e5713" + ], + "x-ms-correlation-request-id": [ + "82cc36ea-f783-4032-85eb-7c60892e5713" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151228T202919Z:82cc36ea-f783-4032-85eb-7c60892e5713" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:29:19 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8004?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004\",\r\n \"name\": \"onesdk8004\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "156ee4c5-338c-44cc-bf8b-7996295400ec" + ], + "x-ms-correlation-request-id": [ + "156ee4c5-338c-44cc-bf8b-7996295400ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151228T202919Z:156ee4c5-338c-44cc-bf8b-7996295400ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:29:19 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "8097dc56-f805-4cfa-87bf-a9d4a674e6e0" + ], + "x-ms-correlation-request-id": [ + "8097dc56-f805-4cfa-87bf-a9d4a674e6e0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151228T202919Z:8097dc56-f805-4cfa-87bf-a9d4a674e6e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:29:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Logic/workflows/onesdk6829?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjgyOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bad5dc8-b5f5-4da4-9c42-8f0405607b40" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6829' under resource group 'onesdk8004' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e6d1accd-8421-4bd1-b720-39817d326bcf" + ], + "x-ms-correlation-request-id": [ + "e6d1accd-8421-4bd1-b720-39817d326bcf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151228T202920Z:e6d1accd-8421-4bd1-b720-39817d326bcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:29:19 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Logic/workflows/onesdk6829?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjgyOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "d1d8327b-881e-4407-a7a7-97d8769c7fe1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-28T20:29:22.2245466Z\",\r\n \"changedTime\": \"2015-12-28T20:29:22.2245466Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587502723235093978\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8004/providers/Microsoft.Logic/workflows/onesdk6829\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Logic/workflows/onesdk6829\",\r\n \"name\": \"onesdk6829\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:28902811-91f1-457c-afd4-0d18351453a2" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "fc2b4d7c-d96a-49c1-9d7d-bf385da76abe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151228T202922Z:fc2b4d7c-d96a-49c1-9d7d-bf385da76abe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:29:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvODJEMkQ4NDItQzMxMi00NDVDLThBNEQtRTNFRTk1NDI0MzZEP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc1696a2-138b-41ab-b7ee-02ee516fa0ac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D' under resource group 'onesdk8004' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "fb5148f1-2736-46c2-b995-7b49cb6ac9a8" + ], + "x-ms-correlation-request-id": [ + "fb5148f1-2736-46c2-b995-7b49cb6ac9a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151228T202922Z:fb5148f1-2736-46c2-b995-7b49cb6ac9a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 28 Dec 2015 20:29:22 GMT" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "Test-UpdateNonExistingLogicApp": [ + "onesdk8004", + "onesdk6829" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicApp.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicApp.cs new file mode 100644 index 000000000000..e6372f496f4d --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicApp.cs @@ -0,0 +1,50 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Creates a new LogicApp workflow + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicApp"), OutputType(typeof (object))] + public class GetAzureLogicApp : LogicAppBaseCmdlet + { + + #region Input Paramters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow command + /// + public override void ExecuteCmdlet() + { + this.WriteObject(LogicAppClient.GetWorkflow(this.ResourceGroupName, this.Name), true); + } + } +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs index 47350209de7d..7c3bd678db22 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs @@ -16,15 +16,11 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets { using System; using System.Collections.Generic; - using System.IO; - using System.Globalization; using System.Management.Automation; using Microsoft.Azure.Commands.LogicApp.Utilities; using Microsoft.Azure.Management.Logic.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Newtonsoft.Json.Linq; - using Newtonsoft.Json; - using System.Collections; /// /// Creates a new LogicApp workflow @@ -70,19 +66,23 @@ public string State set { this._status = value; } } - [Parameter(Mandatory = false, HelpMessage = "The URI link to the workflow definition.", ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] + [Parameter(Mandatory = false, HelpMessage = "The URI link to the workflow definition.", + ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] [ValidateNotNullOrEmpty] public string DefinitionLinkUri { get; set; } - [Parameter(Mandatory = false, HelpMessage = "The content version of the definition link.", ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] + [Parameter(Mandatory = false, HelpMessage = "The content version of the definition link.", + ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] [ValidateNotNullOrEmpty] public string DefinitionLinkContentVersion { get; set; } - [Parameter(Mandatory = false, HelpMessage = "The definition of the workflow.", ParameterSetName = ParameterSet.LogicAppWithDefinition)] + [Parameter(Mandatory = false, HelpMessage = "The definition of the workflow.", + ParameterSetName = ParameterSet.LogicAppWithDefinition)] [ValidateNotNullOrEmpty] public object Definition { get; set; } - [Parameter(Mandatory = false, HelpMessage = "The physical file path of the workflow definition.", ParameterSetName = ParameterSet.LogicAppWithDefinitionFile)] + [Parameter(Mandatory = false, HelpMessage = "The physical file path of the workflow definition.", + ParameterSetName = ParameterSet.LogicAppWithDefinitionFile)] [ValidateNotNullOrEmpty] public string DefinitionFilePath { get; set; } @@ -117,22 +117,34 @@ public string State /// public override void ExecuteCmdlet() { - //Validate the input for the definition object and set it from file if file path is specified - this.ValidateAndSetWorkflowDefinition(); + base.ExecuteCmdlet(); - //Validate the input for the parameter object and set it from file or input object. - this.ValidateAndSetWorkflowParamters(); + if (this.Definition != null) + { + this.Definition = JToken.Parse(this.Definition.ToString()); + } + + if (!string.IsNullOrEmpty(this.DefinitionFilePath)) + { + this.Definition = CmdletHelper.GetDefinitionFromFile(this.TryResolvePath(this.DefinitionFilePath)); + } - // if SKU planId is not provided then planId is derived using resourcegroup name and the plan name. - if (string.IsNullOrEmpty(this.PlanId) && !string.IsNullOrEmpty(this.PlanName) && - !string.IsNullOrEmpty(this.ResourceGroupName)) + if (this.Parameters != null) { - this.PlanId = string.Format(CultureInfo.InvariantCulture, - Properties.Resource.ApplicationServicePlanIdFormat, - LogicAppClient.LogicManagementClient.SubscriptionId, this.ResourceGroupName, this.PlanName); + this.Parameters = CmdletHelper.ConvertToWorkflowParameterDictionary(this.Parameters); } - //Call LogicAppClient to create the workflow. + if (!string.IsNullOrEmpty(this.ParameterFilePath)) + { + this.Parameters = CmdletHelper.GetParametersFromFile(this.TryResolvePath(this.ParameterFilePath)); + } + + if (string.IsNullOrEmpty(this.PlanId)) + { + this.PlanId = CmdletHelper.BuildAppServicePlanId(this.PlanName, this.ResourceGroupName, + LogicAppClient.LogicManagementClient.SubscriptionId); + } + this.WriteObject(LogicAppClient.CreateWorkflow(this.ResourceGroupName, this.Name, new Workflow { Location = this.Location, @@ -163,73 +175,5 @@ public override void ExecuteCmdlet() } }), true); } - - /// - /// Validate and set the value of definition object from the file. - /// - private void ValidateAndSetWorkflowDefinition() - { - if (!string.IsNullOrEmpty(this.DefinitionFilePath)) - { - var fileDefinitionName = this.TryResolvePath(this.DefinitionFilePath); - - if (!(new FileInfo(fileDefinitionName)).Exists) - { - throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, Properties.Resource.FileDoesNotExist, fileDefinitionName)); - } - - this.Definition = JToken.Parse(File.ReadAllText(fileDefinitionName)); - } - else if (this.Definition != null) - { - this.Definition = JToken.Parse(this.Definition.ToString()); - } - } - - /// - /// Validate and Set the parameter collection from file or Custom objects. - /// - private void ValidateAndSetWorkflowParamters() - { - if (!string.IsNullOrEmpty(this.ParameterFilePath)) - { - var fileParameterName = this.TryResolvePath(this.ParameterFilePath); - - if (!(new FileInfo(fileParameterName)).Exists) - { - throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, Properties.Resource.FileDoesNotExist, fileParameterName)); - } - - var inputParametersObject = JObject.Parse(File.ReadAllText(fileParameterName)); - var values = JsonConvert.DeserializeObject>(inputParametersObject.ToString()); - - var inputParameters = new Dictionary(); - - foreach (var parameter in values) - { - var workflowParameter = JsonConvert.DeserializeObject(parameter.Value.ToString()); - inputParameters.Add(parameter.Key, workflowParameter); - } - - this.Parameters = inputParameters; - } else if (this.Parameters is Hashtable) - { - var collection = this.Parameters as Hashtable; - var inputParameters = new Dictionary(); - - foreach (var key in collection.Keys) - { - inputParameters.Add(key.ToString(), new WorkflowParameter - { - Value = collection[key].ToString() - }); - } - this.Parameters = inputParameters; - } - else if (this.Parameters is Dictionary) - { - this.Parameters = this.Parameters as Dictionary; - } - } } } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicApp.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicApp.cs new file mode 100644 index 000000000000..cde17d7951b1 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicApp.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using System.Globalization; + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Creates a new LogicApp workflow + /// + [Cmdlet(VerbsCommon.Remove, "AzureLogicApp"), OutputType(typeof (object))] + public class RemoveAzureLogicApp : LogicAppBaseCmdlet + { + + #region Input Paramters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")] + public SwitchParameter Force { get; set; } + + #endregion Input Parameters + + /// + /// Executes the remove workflow command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + ConfirmAction(Force.IsPresent, + string.Format(CultureInfo.InvariantCulture, Properties.Resource.RemoveLogicAppWarning, this.Name), + Properties.Resource.RemoveLogicAppMessage, + Name, + () => { + LogicAppClient.RemoveWorkflow(ResourceGroupName, Name); + }); + } + } +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs new file mode 100644 index 000000000000..7e3ee1e90a31 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs @@ -0,0 +1,183 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using System; + using System.Collections.Generic; + using System.IO; + using System.Globalization; + using System.Management.Automation; + using Microsoft.Azure.Commands.LogicApp.Utilities; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.WindowsAzure.Commands.Utilities.Common; + using Newtonsoft.Json.Linq; + using Newtonsoft.Json; + using System.Collections; + + /// + /// Updates a LogicApp workflow + /// + [Cmdlet(VerbsCommon.Set, "AzureLogicApp"), OutputType(typeof (object))] + public class UpdateAzureLogicAppCommand : LogicAppBaseCmdlet + { + #region private Variables + + /// + /// Default value for the workflow status parameter + /// + private string _status = Constants.StatusEnabled; + + #endregion private Variables + + #region Input Paramters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The location of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Location { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The Plan name.", ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string PlanName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The state of the workflow.")] + [ValidateSet(Constants.StatusEnabled, Constants.StatusDisabled, IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string State + { + get { return this._status; } + set { this._status = value; } + } + + [Parameter(Mandatory = false, HelpMessage = "The URI link to the workflow definition.", + ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] + [ValidateNotNullOrEmpty] + public string DefinitionLinkUri { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The content version of the definition link.", + ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] + [ValidateNotNullOrEmpty] + public string DefinitionLinkContentVersion { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The definition of the workflow.", + ParameterSetName = ParameterSet.LogicAppWithDefinition)] + [ValidateNotNullOrEmpty] + public object Definition { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The physical file path of the workflow definition.", + ParameterSetName = ParameterSet.LogicAppWithDefinitionFile)] + [ValidateNotNullOrEmpty] + public string DefinitionFilePath { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters link Uri.")] + [ValidateNotNullOrEmpty] + public string ParameterLinkUri { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters link Uri content version.")] + [ValidateNotNullOrEmpty] + public string ParameterLinkContentVersion { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters parameter for the logic app.")] + [ValidateNotNullOrEmpty] + public object Parameters { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameter file path.")] + [ValidateNotNullOrEmpty] + public string ParameterFilePath { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The SKU name.", ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string SkuName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The Plan Id.", ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string PlanId { get; set; } + + #endregion Input Parameters + + /// + /// Execute the create new workflow command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (this.Definition != null) + { + this.Definition = JToken.Parse(this.Definition.ToString()); + } + + if (!string.IsNullOrEmpty(this.DefinitionFilePath)) + { + this.Definition = CmdletHelper.GetDefinitionFromFile(this.TryResolvePath(this.DefinitionFilePath)); + } + + if (this.Parameters != null) + { + this.Parameters = CmdletHelper.ConvertToWorkflowParameterDictionary(this.Parameters); + } + + if (!string.IsNullOrEmpty(this.ParameterFilePath)) + { + this.Parameters = CmdletHelper.GetParametersFromFile(this.TryResolvePath(this.ParameterFilePath)); + } + + if (string.IsNullOrEmpty(this.PlanId)) + { + this.PlanId = CmdletHelper.BuildAppServicePlanId(this.PlanName, this.ResourceGroupName, + LogicAppClient.LogicManagementClient.SubscriptionId); + } + + this.WriteObject(LogicAppClient.UpdateWorkflow(this.ResourceGroupName, this.Name, new Workflow + { + Location = this.Location, + Definition = this.Definition, + Parameters = this.Parameters as Dictionary, + DefinitionLink = string.IsNullOrEmpty(this.DefinitionLinkUri) + ? null + : new ContentLink + { + Uri = this.DefinitionLinkUri, + ContentVersion = this.DefinitionLinkContentVersion + }, + ParametersLink = string.IsNullOrEmpty(this.ParameterLinkUri) + ? null + : new ContentLink + { + Uri = this.ParameterLinkUri, + ContentVersion = this.ParameterLinkContentVersion + }, + State = (WorkflowState) Enum.Parse(typeof (WorkflowState), this.State), + Sku = new Sku + { + Name = (SkuName) Enum.Parse(typeof (SkuName), this.SkuName), + Plan = new ResourceReference + { + Id = this.PlanId + } + } + }), true); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj index 024f8620ab1c..71bd122bc3c5 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj @@ -115,13 +115,17 @@ + + + True True Resource.resx + Code diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.Help.xml b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.Help.xml index b364ce55cb39..ed7c259f33a2 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.Help.xml +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.Help.xml @@ -1,5 +1,177 @@  + + + Get-AzureLogicApp + + Gets the specified logic app from the azure resource group. + + + + + Get + AzureLogicApp + + + + This is the Description section + The Get-AzureLogicApp cmdlet retrieves Azure logic app from the Azure resource group and returns an object that represents the workflow. Use this cmdlet to get a logic app from specified resource group. A logic app is a collection of actions or triggers defined in workflow definition language. You can get a logic app by specifying the workflow name and resource group name. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.Workflow + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Get a logic app from specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" + + This command gets a logic app from the specified Azure resource group. + + + CreatedTime : 12/17/2015 6:05:59 AM +ChangedTime : 12/17/2015 6:05:59 AM +State : Enabled +Version : 08587512745264684633 +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +Sku : Microsoft.Azure.Management.Logic.Models.Sku +DefinitionLink : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLink : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +Tags : + + + + + + + + + + + + + + New-AzureLogicApp @@ -15,7 +187,7 @@ This is the Description section - The New-AzureLogicApp cmdlet creates an azure logic app and returns an object that represents the worflow. Use this cmdlet to create a new logic app. A logic app is a collection of actions or triggers defined in workflow definition language. You can create a logic app with a name, location, logic app definition, resource group name (existing), app service plan name (existing), and a SKU name. Howerver, typically, you use a workflow template for definition and parameters which is JSON-based model. To create a logic app, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the workflow template parameters, use a JSON-formatted parameter file (ParameterFilePath parameter) or a hash table of parameter names and values (Parameters parameter) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter values that you specify at the command line take precedence over template parameter values in a template parameter object or file. + The New-AzureLogicApp cmdlet creates an Azure logic app and returns an object that represents the workflow. Use this cmdlet to create a new logic app. A logic app is a collection of actions or triggers defined in workflow definition language. You can create a logic app with a name, location, logic app definition, resource group name (existing), app service plan name (existing) and a SKU name. However, typically, you use a workflow template for definition and parameters which is JSON-based model. To create a logic app, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the workflow template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. @@ -23,7 +195,7 @@ ResourceGroupName - Specifies a name for the resource group. This parameter is required. You can use -ResourceGroupName. + Specifies a name for the resource group. This parameter is required. String @@ -37,7 +209,7 @@ Name - Specifies the name of the logic app. This parameter is required. If a logic app with that name already exists, the command updates the existing logic app without prompt. + Specifies the name of the logic app. This parameter is required. String @@ -79,7 +251,7 @@ ParameterLinkContentVersion - Specifies the content version of the Parameter Link Uri of the Logic App + Specifies the content version of the Parameter Link Uri of the Logic App. String @@ -93,15 +265,14 @@ ParameterFilePath - File name containing a JSON workflow parameters. - + Path of a JSON-formatted parameter file. String SkuName - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. String @@ -132,7 +303,7 @@ ResourceGroupName - Specifies a name for the resource group. This parameter is required. You can use -ResourceGroupName. + Specifies a name for the resource group. This parameter is required. String @@ -146,7 +317,7 @@ Name - Specifies the name of the logic app. This parameter is required. If a logic app with that name already exists, the command updates the existing logic app without prompt. + Specifies the name of the logic app. This parameter is required. String @@ -167,7 +338,8 @@ Definition - Definition of the Logic app. Expected type object or string in Json format. + Definition of the Logic app. Expected type object or JSON-formatted string. + Object @@ -181,7 +353,7 @@ ParameterLinkContentVersion - Specifies the content version of the Parameter Link Uri of the Logic App + Specifies the content version of the Parameter Link Uri of the Logic App. String @@ -195,15 +367,14 @@ ParameterFilePath - File name containing a JSON workflow parameters. - + Path of a JSON-formatted parameter file. String SkuName - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. String @@ -234,7 +405,7 @@ ResourceGroupName - Specifies a name for the resource group. This parameter is required. You can use -ResourceGroupName. + Specifies a name for the resource group. This parameter is required. String @@ -248,7 +419,7 @@ Name - Specifies the name of the logic app. This parameter is required. If a logic app with that name already exists, the command updates the existing logic app without prompt. + Specifies the name of the logic app. This parameter is required. String @@ -269,8 +440,7 @@ DefinitionFilePath - File name containing a JSON workflow definition to be created. - + Path of a JSON-formatted definition file. String @@ -284,7 +454,7 @@ ParameterLinkContentVersion - Specifies the content version of the Parameter Link Uri of the Logic App + Specifies the content version of the Parameter Link Uri of the Logic App. String @@ -298,15 +468,14 @@ ParameterFilePath - File name containing a JSON workflow parameters. - + Path of a JSON-formatted parameter file. String SkuName - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. String @@ -337,7 +506,7 @@ ResourceGroupName - Specifies a name for the resource group. This parameter is required. You can use -ResourceGroupName. + Specifies a name for the resource group. This parameter is required. String @@ -361,7 +530,7 @@ Name - Specifies the name of the logic app. This parameter is required. If a logic app with that name already exists, the command updates the existing logic app without prompt. + Specifies the name of the logic app. This parameter is required. String @@ -433,7 +602,7 @@ ParameterLinkContentVersion - Specifies the content version of the Parameter Link Uri of the Logic App + Specifies the content version of the Parameter Link Uri of the Logic App. String @@ -457,8 +626,7 @@ ParameterFilePath - File name containing a JSON workflow parameters. - + Path of a JSON-formatted parameter file. String @@ -470,7 +638,7 @@ SkuName - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. String @@ -518,7 +686,8 @@ Definition - Definition of the Logic app. Expected type object or string in Json format. + Definition of the Logic app. Expected type object or JSON-formatted string. + Object @@ -530,8 +699,7 @@ DefinitionFilePath - File name containing a JSON workflow definition to be created. - + Path of a JSON-formatted definition file. String @@ -590,17 +758,16 @@ ChangedTime : 12/17/2015 6:05:59 AM State : Enabled Version : 08587512745264684633 -AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/<Name>/providers/Microsoft.Logic/workflows/<Name> +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 Sku : Microsoft.Azure.Management.Logic.Models.Sku DefinitionLink : Definition : {$schema, contentVersion, parameters, triggers...} ParametersLink : Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} -Id : /subscriptions/<ID>/resourceGroups/<Name>/providers/Micros - oft.Logic/workflows/<Name> -Name : <Name> +Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 Type : Microsoft.Logic/workflows -Location : <Location> +Location : westus Tags : @@ -625,15 +792,14 @@ Tags : ChangedTime : 12/17/2015 6:05:59 AM State : Enabled Version : 08587512745264684633 -AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/<Name>/providers/Microsoft.Logic/workflows/<Name> +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 Sku : Microsoft.Azure.Management.Logic.Models.Sku DefinitionLink : Definition : {$schema, contentVersion, parameters, triggers...} ParametersLink : Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} -Id : /subscriptions/<ID>/resourceGroups/<Name>/providers/Micros - oft.Logic/workflows/<Name> -Name : <Name> +Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 Type : Microsoft.Logic/workflows Location : "westus" Tags : @@ -647,7 +813,7 @@ Tags : - -------------------------- Example 3 : Create Logic app using ResourceGroup pipe input -------------------------- + -------------------------- Example 3 : Create logic app using ResourceGroup pipe input -------------------------- PS C:\> @@ -656,13 +822,18 @@ Tags : This command creates a new logic app in the targeted resource group using the pipe input from the resource group object. - DefinitionLink : + CreatedTime : 12/17/2015 6:05:59 AM +ChangedTime : 12/17/2015 6:05:59 AM +State : Enabled +Version : 08587512745264684633 +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +Sku : Microsoft.Azure.Management.Logic.Models.Sku +DefinitionLink : Definition : {$schema, contentVersion, parameters, triggers...} ParametersLink : Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} -Id : /subscriptions/<ID>/resourceGroups/<Name>/providers/Micros - oft.Logic/workflows/<Name> -Name : <Name> +Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 Type : Microsoft.Logic/workflows Location : "westus" Tags : @@ -676,11 +847,11 @@ Tags : - -------------------------- Example 4 : Create Logic app using existing logic app -------------------------- + -------------------------- Example 4 : Create logic app using existing logic app -------------------------- PS C:\> - New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -PlanName "ServicePlanName" -SkuName "Standard" -Definition $workflow.Definition -Parameters $workflow.Parameters + New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -PlanName "ServicePlanName" -SkuName "Standard" -Definition $workflow.Definition -Parameters $workflow.Parameters This command creates a new Logic app in the targeted resource group. In this example, definition and parameters of existing logic is used to create new Logic App. @@ -689,15 +860,14 @@ Tags : ChangedTime : 12/17/2015 6:05:59 AM State : Enabled Version : 08587512745264684633 -AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/<Name>/providers/Microsoft.Logic/workflows/<Name> +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 Sku : Microsoft.Azure.Management.Logic.Models.Sku DefinitionLink : Definition : {$schema, contentVersion, parameters, triggers...} ParametersLink : Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} -Id : /subscriptions/<ID>/resourceGroups/<Name>/providers/Micros - oft.Logic/workflows/<Name> -Name : <Name> +Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 Type : Microsoft.Logic/workflows Location : "westus" Tags : @@ -714,4 +884,790 @@ Tags : + + + + Remove-AzureLogicApp + + Removes the specified logic app from the azure resource group. + + + + + Remove + AzureLogicApp + + + + This is the Description section + The Remove-AzureLogicApp cmdlet removes logic app from the Azure resource group. Use this cmdlet to remove logic app from specified resource group. You can remove a logic app by specifying the workflow name and resource group name. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Remove-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + + Force + + Optional switch parameter to force the remove operation without prompt. + + SwitchParameter + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + String + + + + + + Force + + Optional switch parameter to force the remove operation without prompt. + + SwitchParameter + + SwitchParameter + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Removes a logic app from specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Remove-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" + + This command removes a logic app from the specified Azure resource group. + + + + + + + + + + + + + + + + + + + + Set-AzureLogicApp + + Updates a new logic app in the azure resource group. + + + + + Set + AzureLogicApp + + + + This is the Description section + The Set-AzureLogicApp cmdlet updates an Azure logic app and returns an object that represents the workflow. Use this cmdlet to update a logic app. You can update a logic app with a name, location, logic app definition, resource group name (existing), app service plan name (existing) and a SKU name. However, typically, you use a workflow template for definition and parameters which is JSON-based model. To update a logic app, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the workflow template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. + + + + Set-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Location + + Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. + + String + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + + PlanName + + Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. + + String + + + State + + Specifies a state of the logic app. Expected values e.g. Enabled, Disabled + + String + + + DefinitionLinkUri + + Specifies Definition link Uri of the logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + + Parameters + + Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + + SkuName + + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. + + String + + + PlanId + + Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + Set-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Location + + Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. + + String + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + + PlanName + + Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. + + String + + + State + + Specifies a state of the logic app. Expected values e.g. Enabled, Disabled + + String + + + Definition + + Definition of the Logic app. Expected type object or JSON-formatted string. + + + Object + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + + Parameters + + Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + + SkuName + + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. + + String + + + PlanId + + Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + Set-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Location + + Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. + + String + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + + PlanName + + Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. + + String + + + State + + Specifies a state of the logic app. Expected values e.g. Enabled, Disabled + + String + + + DefinitionFilePath + + Path of a JSON-formatted definition file. + + String + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + + Parameters + + Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + + SkuName + + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. + + String + + + PlanId + + Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Location + + Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. + + String + + String + + + + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + String + + + + + + PlanName + + Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. + + String + + String + + + + + + State + + Specifies a state of the logic app. Expected values e.g. Enabled, Disabled + + String + + String + + + + + + DefinitionLinkUri + + Specifies Definition link Uri of the logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + String + + + + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + String + + + + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + String + + + + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + String + + + + + + Parameters + + Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + Object + + + + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + String + + + + + + SkuName + + Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. + + String + + String + + + + + + PlanId + + Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + Definition + + Definition of the Logic app. Expected type object or JSON-formatted string. + + + Object + + Object + + + + + + DefinitionFilePath + + Path of a JSON-formatted definition file. + + String + + String + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.Workflow + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Update a logic app -------------------------- + + PS C:\> + + PS C:\>Set-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -PlanName "ServicePlanName" -SkuName "Standard" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" + + + + + CreatedTime : 12/17/2015 6:05:59 AM +ChangedTime : 12/17/2015 6:05:59 AM +State : Enabled +Version : 08587512745264684633 +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/<Name>/providers/Microsoft.Logic/workflows/<Name> +Sku : Microsoft.Azure.Management.Logic.Models.Sku +DefinitionLink : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLink : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +Tags : + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs index 7f121ba2cd08..71c29b1b970b 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs @@ -86,5 +86,41 @@ internal static string ParameterNeedsToBeSpecified { return ResourceManager.GetString("ParameterNeedsToBeSpecified", resourceCulture); } } + + /// + /// Looks up a localized string similar to Removing logic app.. + /// + internal static string RemoveLogicAppMessage { + get { + return ResourceManager.GetString("RemoveLogicAppMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove the logic app "{0}".. + /// + internal static string RemoveLogicAppWarning { + get { + return ResourceManager.GetString("RemoveLogicAppWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The Resource 'Microsoft.Logic/workflows/{0}' under resource group '{1}' already exists.. + /// + internal static string ResourceAlreadyExists { + get { + return ResourceManager.GetString("ResourceAlreadyExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The Resource 'Microsoft.Logic/workflows/{0}' under resource group '{1}' was not found.. + /// + internal static string ResourceNotFound { + get { + return ResourceManager.GetString("ResourceNotFound", resourceCulture); + } + } } } diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx index 38d8a33ffbaa..ef5e2523020d 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx @@ -126,4 +126,16 @@ {0} needs to be specified. + + Removing logic app. + + + Are you sure you want to remove the logic app "{0}". + + + The Resource 'Microsoft.Logic/workflows/{0}' under resource group '{1}' already exists. + + + The Resource 'Microsoft.Logic/workflows/{0}' under resource group '{1}' was not found. + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs new file mode 100644 index 000000000000..e66cab7bbe2e --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs @@ -0,0 +1,131 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic; + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using System.Collections; + using System.Collections.Generic; + using System.Globalization; + using System.IO; + using System.Management.Automation; + using Microsoft.Azure.Management.Logic.Models; + using Newtonsoft.Json.Linq; + using Newtonsoft.Json; + + /// + /// Helper class for the logic app commands + /// + public static class CmdletHelper + { + /// + /// Creates the definition object from file. + /// + /// File path of the definition + /// Json model defintion object + internal static JToken GetDefinitionFromFile(string definitionFilePath) + { + JToken definition = null; + + if (!string.IsNullOrEmpty(definitionFilePath)) + { + if (!(new FileInfo(definitionFilePath)).Exists) + { + throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, + Properties.Resource.FileDoesNotExist, definitionFilePath)); + } + + definition = JToken.Parse(File.ReadAllText(definitionFilePath)); + } + + return definition; + } + + /// + /// Creates the dictionary collection from the parameter file + /// + /// Parameter file path + /// Workflow parameter dictionary + internal static Dictionary GetParametersFromFile(string parametersFilePath) + { + Dictionary inputParameters = null; + + if (!string.IsNullOrEmpty(parametersFilePath)) + { + if (!(new FileInfo(parametersFilePath)).Exists) + { + throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, + Properties.Resource.FileDoesNotExist, parametersFilePath)); + } + + var inputParametersObject = JObject.Parse(File.ReadAllText(parametersFilePath)); + var values = JsonConvert.DeserializeObject>(inputParametersObject.ToString()); + + inputParameters = new Dictionary(); + + foreach (var parameter in values) + { + var workflowParameter = JsonConvert.DeserializeObject(parameter.Value.ToString()); + inputParameters.Add(parameter.Key, workflowParameter); + } + } + return inputParameters; + } + + /// + /// Convert object to WorkflowParameter dictionary. + /// + /// Parameters object + /// Workflow parameter dictionary + internal static Dictionary ConvertToWorkflowParameterDictionary( + object parametersObject) + { + Dictionary workflowParameters = null; + if (parametersObject is Hashtable) + { + var collection = parametersObject as Hashtable; + var inputParameters = new Dictionary(); + + foreach (var key in collection.Keys) + { + inputParameters.Add(key.ToString(), new WorkflowParameter + { + Value = collection[key].ToString() + }); + } + workflowParameters = inputParameters; + } + else if (parametersObject is Dictionary) + { + workflowParameters = parametersObject as Dictionary; + } + return workflowParameters; + } + + /// + /// Build App service plan id using plan name and resourcegroup name + /// Null check for parameter not needed as both these parameters are required parameters. + /// + /// App service plan name + /// Resource group name + /// Subscription id + /// App service plan id + internal static string BuildAppServicePlanId(string planName, string resourceGroupName, string subscriptionId) + { + return string.Format(CultureInfo.InvariantCulture, + Properties.Resource.ApplicationServicePlanIdFormat, subscriptionId, resourceGroupName, planName); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs index 10483f97aabd..06a37035124b 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs @@ -15,8 +15,6 @@ namespace Microsoft.Azure.Commands.LogicApp.Utilities { using ResourceManager.Common; - using Microsoft.WindowsAzure.Commands.Utilities.Common; - using Microsoft.Azure.Management.Logic; public abstract class LogicAppBaseCmdlet : AzureRMCmdlet { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs index 7f5b396e34e7..0981de5de110 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs @@ -17,14 +17,11 @@ namespace Microsoft.Azure.Commands.LogicApp.Utilities { using System; - using System.Collections.Generic; - using System.Linq; - using System.Text; - using System.Threading.Tasks; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; using Microsoft.Azure.Management.Logic; using Microsoft.Azure.Management.Logic.Models; + using System.Management.Automation; /// /// LogicApp client class @@ -73,7 +70,27 @@ public LogicAppClient(ILogicManagementClient client) public ILogicManagementClient LogicManagementClient { get; set; } /// - /// Creates a workflow in the azure resource group + /// Updates workflow in the azure resource group + /// + /// Name of the resource group + /// Workflow name + /// Workflow object + /// Newly created workflow object + public Workflow UpdateWorkflow(string resourceGroupName, string workflowName, Workflow workflow) + { + if (this.DoesLogicAppExist(resourceGroupName, workflowName)) + { + return this.LogicManagementClient.Workflows.CreateOrUpdate(resourceGroupName, workflowName, workflow); + } + else + { + throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, + Properties.Resource.ResourceNotFound, workflowName, resourceGroupName)); + } + } + + /// + /// Creates workflow in the azure resource group /// /// Name of the resource group /// Workflow name @@ -81,7 +98,57 @@ public LogicAppClient(ILogicManagementClient client) /// Newly created workflow object public Workflow CreateWorkflow(string resourceGroupName, string workflowName, Workflow workflow) { - return this.LogicManagementClient.Workflows.CreateOrUpdate(resourceGroupName, workflowName, workflow); + if (!this.DoesLogicAppExist(resourceGroupName, workflowName)) + { + return this.LogicManagementClient.Workflows.CreateOrUpdate(resourceGroupName, workflowName, workflow); + } + else + { + throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, + Properties.Resource.ResourceAlreadyExists, workflowName, resourceGroupName)); + } + } + + /// + /// Gets the workflow by name from given resource group. + /// + /// Name of the resource group + /// Workflow name + /// Workflow object + public Workflow GetWorkflow(string resourceGroupName, string workflowName) + { + return this.LogicManagementClient.Workflows.Get(resourceGroupName, workflowName); + } + + /// + /// Removes the specified workflow from the given resource group. + /// + /// Name of the resource group + /// Workflow name + public void RemoveWorkflow(string resourceGroupName, string workflowName) + { + this.LogicManagementClient.Workflows.Delete(resourceGroupName, workflowName); + } + + /// + /// Checks whether logic app exists or not + /// + /// Name of the resource group + /// Name of the workflow + /// Boolean result + public bool DoesLogicAppExist(string resourceGroupName, string workflowName) + { + bool result = false; + try + { + var workflow = this.LogicManagementClient.Workflows.GetAsync(resourceGroupName, workflowName).Result; + result = workflow != null; + } + catch + { + result = false; + } + return result; } } } diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs index c3692725315e..dc00a0742e1a 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs @@ -15,8 +15,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Utilities { internal static class ParameterSet - { - + { /// /// Parameter set top create Logic app with definition object /// @@ -31,6 +30,5 @@ internal static class ParameterSet /// Parameter set top create Logic app with definition file /// public const string LogicAppWithDefinitionFile = "LogicAppWithDefinitionFileParameterSet"; - } } \ No newline at end of file From 4d88a9c9a1b224d13df4f78626af89c74e81e7a9 Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Thu, 28 Jan 2016 18:57:48 -0800 Subject: [PATCH 03/19] Azure Logic App PS cmdlets Cmdlets Help Installer Changes Test Automation ps1xml Output Format Signed-off-by: Pankaj Singh Negi --- setup/azurecmdfiles.wxi | 10 +- .../LogicApp/AzureRM.LogicApp.psd1 | 8 +- .../Commands.LogicApp.Test.csproj | 49 +- .../TestSimpleWorkflowActionDefinition.json | 8 +- .../TestSimpleWorkflowTriggerDefinition.json | 69 +- .../ScenarioTests/Common.ps1 | 28 +- .../ScenarioTests/WorkflowAccessKeyTests.cs | 47 + .../ScenarioTests/WorkflowAccessKeyTests.ps1 | 55 + .../ScenarioTests/WorkflowController.cs | 22 +- .../ScenarioTests/WorkflowRunTests.cs | 56 + .../ScenarioTests/WorkflowRunTests.ps1 | 105 + .../ScenarioTests/WorkflowTests.cs | 127 +- .../ScenarioTests/WorkflowTests.ps1 | 354 +- .../ScenarioTests/WorkflowTriggerTests.cs | 58 + .../ScenarioTests/WorkflowTriggerTests.ps1 | 104 + .../TestGetAzureLogicAppAccessKey.json | 460 +++ .../TestSetAzureLogicAppAccessKey.json} | 274 +- .../TestGetAzureLogicAppRunAction.json | 625 ++++ .../TestGetAzureLogicAppRunHistory.json | 853 +++++ .../TestRunLogicApp.json | 739 ++++ ...GetLogicAppUsingDefinitionWithActions.json | 508 +++ .../TestCreateAndRemoveLogicApp.json | 861 +++++ ...teLogicAppUsingDefinitionWithTriggers.json | 397 ++ ...ogicAppUsingInputParameterAsHashTable.json | 397 ++ ...eLogicAppUsingInputfromWorkflowObject.json | 578 +++ .../TestCreateLogicAppWithDuplicateName.json | 520 +++ ...LogicAppWithNonExistingAppServicePlan.json | 217 ++ .../TestGetLogicAppWithWorkflowName.json | 337 -- ...estNewLogicAppUsingDefinitionFilePath.json | 280 -- .../TestNewLogicAppUsingDefinitionObject.json | 280 -- ...UsingDefinitionObjectAndParameterFile.json | 280 -- ...NewLogicAppUsingDefinitionWithActions.json | 281 -- ...ewLogicAppUsingDefinitionWithTriggers.json | 281 -- ...ogicAppUsingInputParameterAsHashTable.json | 281 -- ...NewLogicAppUsingResourcegroupPipeline.json | 280 -- .../TestNewLogicAppUsingSkuPipeline.json | 280 -- .../TestNewLogicAppWithDuplicateName.json | 337 -- .../TestNewLogicAppWithPlanId.json | 280 -- .../TestRemoveLogicAppWithWorkflowName.json | 385 -- ...son => TestRemoveNonExistingLogicApp.json} | 64 +- .../TestUpdateLogicApp.json | 547 ++- .../TestUpdateNonExistingLogicApp.json | 334 -- .../TestGetAzureLogicAppTrigger.json | 460 +++ .../TestGetAzureLogicAppTriggerHistory.json | 853 +++++ .../TestStartAzureLogicAppTrigger.json | 904 +++++ .../Commands.LogicApp.Test/Settings.StyleCop | 1 + .../UnitTests/CreateLogicAppTests.cs | 8 +- .../UnitTests/LogicAppUnitTestBase.cs | 10 - .../Commands.LogicApp.Test/packages.config | 3 +- .../Cmdlets/CancelAzureLogicAppRunCommand.cs | 57 + .../GetAzureLogicAppAccessKeyCommand.cs | 67 + ...LogicApp.cs => GetAzureLogicAppCommand.cs} | 10 +- .../GetAzureLogicAppRunActionCommand.cs | 71 + .../GetAzureLogicAppRunHistoryCommand.cs | 65 + .../Cmdlets/GetAzureLogicAppTriggerCommand.cs | 70 + .../GetAzureLogicAppTriggerHistoryCommand.cs | 75 + .../Cmdlets/NewAzureLogicAppCommand.cs | 36 +- ...icApp.cs => RemoveAzureLogicAppCommand.cs} | 4 +- .../Cmdlets/RunAzureLogicAppCommand.cs | 72 + .../UpdateAzureLogicAppAccessKeyCommand.cs | 66 + .../Cmdlets/UpdateAzureLogicAppCommand.cs | 177 +- .../Commands.LogicApp.csproj | 36 +- ...osoft.Azure.Commands.LogicApp.dll-Help.xml | 3204 +++++++++++++++++ ....Azure.Commands.LogicApp.dll-help.Help.xml | 1673 --------- ...soft.Azure.Commands.LogicApp.format.ps1xml | 375 ++ .../Properties/Resource.Designer.cs | 9 + .../Properties/Resource.resx | 3 + .../Utilities/CmdletHelper.cs | 15 + .../Commands.LogicApp/Utilities/Constants.cs | 8 +- .../Utilities/LogicAppBaseCmdlet.cs | 29 +- .../Utilities/LogicAppClient.cs | 20 +- .../LogicAppClientAccessKeyOperations.cs | 74 + .../Utilities/LogicAppClientRunOperations.cs | 107 + .../LogicAppClientTriggerOperations.cs | 92 + .../Utilities/WebsitesClient.cs | 113 + .../Commands.LogicApp/packages.config | 3 +- 76 files changed, 14587 insertions(+), 6239 deletions(-) create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.ps1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.ps1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json rename src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/{Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json => Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json} (51%) create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestGetLogicAppWithWorkflowName.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithDuplicateName.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithWorkflowName.json rename src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/{TestRemoveLogicAppWithInvalidWorkflowName.json => TestRemoveNonExistingLogicApp.json} (71%) delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateNonExistingLogicApp.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Settings.StyleCop create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs rename src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/{GetAzureLogicApp.cs => GetAzureLogicAppCommand.cs} (92%) create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs rename src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/{RemoveAzureLogicApp.cs => RemoveAzureLogicAppCommand.cs} (97%) create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-Help.xml delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.Help.xml create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.format.ps1xml create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientAccessKeyOperations.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientRunOperations.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientTriggerOperations.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/WebsitesClient.cs diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index eead2cd2b528..00f928b34a65 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -2896,7 +2896,13 @@ - + + + + + + + @@ -6542,6 +6548,8 @@ + + diff --git a/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 b/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 index 2a05e5609ebf..a5bedc487cb5 100644 --- a/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 +++ b/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 @@ -57,10 +57,12 @@ ScriptsToProcess = @() TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = @() +FormatsToProcess = @( + '.\Microsoft.Azure.Commands.LogicApp.format.ps1xml' +) # Modules to import as nested modules of the module specified in ModuleToProcess -NestedModules = @( +NestedModules = @( '.\Microsoft.Azure.Commands.LogicApp.dll' ) @@ -82,7 +84,7 @@ ModuleList = @() # List of all files packaged with this module FileList = @() -# Private data to pass to the module specified in ModuleToProcess +# Private data to pass to the module specified in ModuleToProcess PrivateData = '' } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj index 7d49ca15f81f..0e8a701b2ede 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj @@ -70,6 +70,10 @@ False ..\..\..\packages\Microsoft.Azure.Management.Logic.0.1.0-preview\lib\net45\Microsoft.Azure.Management.Logic.dll + + False + ..\..\..\packages\Microsoft.Azure.Management.WebSites.0.16.7-preview\lib\net45\Microsoft.Azure.Management.WebSites.dll + False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.11-preview\lib\net40\Microsoft.Azure.ResourceManager.dll @@ -92,7 +96,7 @@ False - ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.4.1\lib\dotnet\Microsoft.Rest.ClientRuntime.dll + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll False @@ -139,8 +143,11 @@ + + + @@ -167,55 +174,65 @@ PreserveNewest + + PreserveNewest + + + PreserveNewest + PreserveNewest - + PreserveNewest - + PreserveNewest - + PreserveNewest - + + PreserveNewest - + PreserveNewest - + PreserveNewest - + PreserveNewest - + PreserveNewest - + PreserveNewest - + PreserveNewest - + PreserveNewest - + PreserveNewest - + PreserveNewest PreserveNewest - + + PreserveNewest + + PreserveNewest - + PreserveNewest diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowActionDefinition.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowActionDefinition.json index d49cf91e8a29..6df1734404b0 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowActionDefinition.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowActionDefinition.json @@ -4,15 +4,15 @@ "parameters":{ "runworkflowmanually":{ "defaultValue":true, - "type":"Bool" + "type":"bool" }, "subscription":{ "defaultValue":"1a66ce04-b633-4a0b-b2bc-a912ec8986a6", - "type":"String" + "type":"string" }, "resourceGroup":{ "defaultValue":"logicapps-e2e", - "type":"String" + "type":"string" }, "authentication":{ "defaultValue":{ @@ -22,7 +22,7 @@ "clientId":"64011f29-3932-4168-b73d-adc835a56732", "secret":"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=" }, - "type":"Object" + "type":"object" } }, "triggers":{ diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowTriggerDefinition.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowTriggerDefinition.json index a36c8443f76e..692518c4015f 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowTriggerDefinition.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowTriggerDefinition.json @@ -1,27 +1,60 @@ { - '$schema':'http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#', - 'contentVersion':'1.0.0.0', - 'parameters':{ + "$schema": "http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "runworkflowmanually": { + "defaultValue": false, + "type": "bool" + } }, - 'triggers':{ - 'httpTrigger':{ - 'type':'Http', - 'inputs':{ - 'method':'GET', - 'uri':'invalidUri' + "triggers": { + "httpTrigger": { + "type": "Http", + "inputs": { + "method": "GET", + "uri": "http://www.bing.com" + }, + "recurrence": { + "frequency": "Hour", + "interval": 1 }, - 'recurrence':{ - 'frequency':'Minute', - 'interval':60 - } + "conditions": [ + { + "expression": "@bool('true')" + } + ] } }, - 'actions':{ + "actions": { + "http": { + "type": "Http", + "inputs": { + "method": "GET", + "uri": "http://www.bing.com", + }, + "conditions": [ + { + "expression": "@bool('true')" + } + ] + }, + "http1": { + "type": "Http", + "inputs": { + "method": "GET", + "uri": "http://www.bing.com", + }, + "conditions": [ + { + "expression": "@bool('true')" + } + ] + } }, - 'outputs':{ - 'output1':{ - 'type':'string', - 'value':'@trigger().outputs', + "outputs": { + "output1": { + "type": "string", + "value": "true" } } } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/Common.ps1 index 963ef3821bc2..ee7208bc314d 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/Common.ps1 +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/Common.ps1 @@ -67,21 +67,43 @@ function TestSetup-CreateResourceGroup $resourceGroupName = getAssetName $rglocation = Get-ProviderLocation "North Europe" $resourceGroup = New-AzureRmResourceGroup -Name $resourceGroupName -location $rglocation -Force + return $resourceGroup } +<# +.SYNOPSIS +Creates an App Service Plan +#> +function TestSetup-CreateAppServicePlan ([string]$resourceGroupName, [string]$AppServicePlan) +{ + if(Test-Path Env:AZURE_TEST_MODE) + { + $AZURE_TEST_MODE = Get-ChildItem Env:AZURE_TEST_MODE + if($AZURE_TEST_MODE.Value.ToLowerInvariant() -eq 'record') + { + $PropertiesObject = @{} + $Sku = @{Name='S1'; Tier='Standard'; Size='S1'; Family='S'; Capacity=1} + $Plan = New-AzureRmResource -Name $AppServicePlan -Location "West US" -ResourceGroupName $resourceGroupName -ResourceType "Microsoft.Web/serverfarms" -ApiVersion 2015-08-01 -SkuObject $Sku -PropertyObject $PropertiesObject -Force + return $Plan + } + } + return $null +} + <# .SYNOPSIS Creates a new workflow #> -function TestSetup-CreateWorkflow ([string]$resourceGroupName) +function TestSetup-CreateWorkflow ([string]$resourceGroupName, [string]$workflowName, [string]$AppServicePlan) { $rglocation = Get-ProviderLocation "North Europe" $resourceGroup = New-AzureRmResourceGroup -Name $resourceGroupName -location $rglocation -Force - $workflowName = getAssetname + TestSetup-CreateAppServicePlan $resourceGroupName $AppServicePlan + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" - $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -PlanName "StandardServicePlan" -SkuName "Standard" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $AppServicePlan -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath return $workflow } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.cs new file mode 100644 index 000000000000..82fd105aff56 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests +{ + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; + using Xunit; + + /// + /// Scenario tests for the Workflow access key commands + /// + public class WorkflowAccessKeyTests : RMTestBase + { + /// + /// Test Get-AzureLogicAppAccessKey command to verify the get operation for access keys of a workflow. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAzureLogicAppAccessKey() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-GetAzureLogicAppAccessKey"); + } + + /// + /// Test Set-AzureLogicAppAccessKey command to verify the secret regeneration operation for the access keys of a workflow. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSetAzureLogicAppAccessKey() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-SetAzureLogicAppAccessKey"); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.ps1 new file mode 100644 index 000000000000..0ec63097c857 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.ps1 @@ -0,0 +1,55 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Get-AzureLogicAppAccessKey for workflow +#> +function Test-GetAzureLogicAppAccessKey +{ + + $resourceGroupName = getAssetname + $workflowName = getAssetname + $planName = "StandardServicePlan" + + $workflow = TestSetup-CreateWorkflow $resourceGroupName $workflowName $planName + + #Case1: Get access keys of the workflow + $workflowAccessKeys = Get-AzureLogicAppAccessKey -ResourceGroupName $resourceGroupName -Name $workflowName + Assert-NotNull $workflowAccessKeys + + #Case2: Get specific access key of the workflow + $workflowAccessKeys = Get-AzureLogicAppAccessKey -ResourceGroupName $resourceGroupName -Name $workflowName -AccessKeyName "default" + Assert-NotNull $workflowAccessKeys +} + +<# +.SYNOPSIS +Test Set-AzureLogicAppAccessKey for workflow +#> +function Test-SetAzureLogicAppAccessKey +{ + $resourceGroupName = getAssetname + $workflowName = getAssetname + $planName = "StandardServicePlan" + $workflow = TestSetup-CreateWorkflow $resourceGroupName $workflowName $planName + + #Case1: Regenerate secret for the access key of the workflow + $workflowAccessKeys = Get-AzureLogicAppAccessKey -ResourceGroupName $resourceGroupName -Name $workflowName + $workflowAccessKey1 = Set-AzureLogicAppAccessKey -ResourceGroupName $resourceGroupName -Name $workflowName -AccessKeyName "default" -KeyType "Primary" + $workflowAccessKey2 = Set-AzureLogicAppAccessKey -ResourceGroupName $resourceGroupName -Name $workflowName -AccessKeyName "default" -KeyType "Secondary" + + Assert-AreNotEqual $workflowAccessKey1.PrimarySecretKey $workflowAccessKeys.PrimarySecretKey + Assert-AreNotEqual $workflowAccessKey2.SecondarySecretKey $workflowAccessKeys.SecondarySecretKey +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs index 1220b219a311..a685cd20e4f2 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs @@ -29,6 +29,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests using LegacyTest = Microsoft.Azure.Test; using TestEnvironmentFactory = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestEnvironmentFactory; using TestUtilities = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities; + using Microsoft.Azure.Management.WebSites; /// /// Test controller for the logic app scenario testing @@ -65,6 +66,11 @@ public class WorkflowController /// public LogicManagementClient LogicManagementClient { get; private set; } + /// + /// Gets or sets the WebSiteManagementClient + /// + public WebSiteManagementClient WebsiteManagementClient { get; private set; } + /// /// Gets or sets the AuthorizationManagementClient /// @@ -146,7 +152,7 @@ public void RunPsTestWorkflow( "ScenarioTests\\Common.ps1", "ScenarioTests\\" + callingClassName + ".ps1", helper.RMProfileModule, - helper.RMResourceModule, + helper.RMResourceModule, helper.GetRMModulePath(@"AzureRM.LogicApp.psd1")); try @@ -182,11 +188,13 @@ private void SetupManagementClients(MockContext context) AuthorizationManagementClient = GetAuthorizationManagementClient(); GalleryClient = GetGalleryClient(); LogicManagementClient = GetLogicManagementClient(context); + WebsiteManagementClient = GetWebsiteManagementClient(context); helper.SetupManagementClients(ResourceManagementClient, SubscriptionClient, AuthorizationManagementClient, GalleryClient, - LogicManagementClient + LogicManagementClient, + WebsiteManagementClient ); } @@ -218,6 +226,16 @@ private LogicManagementClient GetLogicManagementClient(MockContext context) return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); } + /// + /// Creates WebSiteManagementClient instance based on mode setting + /// + /// Mock undocontext + /// WebSiteManagementClient instance + private WebSiteManagementClient GetWebsiteManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + private SubscriptionClient GetSubscriptionClient() { return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory); diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.cs new file mode 100644 index 000000000000..5383167a09c0 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.cs @@ -0,0 +1,56 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests +{ + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; + using Xunit; + + /// + /// Scenario tests for the Workflow run commands + /// + public class WorkflowRunTests : RMTestBase + { + /// + /// Test Start-Azurelogicapp and Stop-Azurelogicapp command to run workflow + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRunLogicApp() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-StartLogicApp"); + } + + /// + /// Test Get-AzureLogicAppRun and Get-AzureLogicAppRunHistory command to get logic app run history + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAzureLogicAppRunHistory() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-GetAzureLogicAppRunHistory"); + } + + /// + /// Test Get-AzureLogicAppRunAction command to get logic app run action + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAzureLogicAppRunAction() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-GetAzureLogicAppRunAction"); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.ps1 new file mode 100644 index 000000000000..c5861831902a --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.ps1 @@ -0,0 +1,105 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Start and Stop AzureLogicApp command for logic app workflow. +#> +function Test-StartLogicApp +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + [int]$counter = 0 + do { + Sleep -seconds 2 + $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + } while ($workflow.State -ne "Enabled" -and $counter++ -lt 5) + + Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" +} + +<# +.SYNOPSIS +Test Get-AzureLogicAppRunHistory and Get-AzureLogicAppRun command to get the logic app history +#> +function Test-GetAzureLogicAppRunHistory +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + [int]$counter = 0 + do { + Sleep -seconds 2 + $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + } while ($workflow.State -ne "Enabled" -and $counter++ -lt 5) + + Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + + $runHistory = Get-AzureLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName + Assert-NotNull $runHistory + $run = Get-AzureLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name + Assert-NotNull $run + Assert-AreEqual $runHistory[0].Name $run.Name +} + +<# +.SYNOPSIS +Test Get-AzureLogicAppRunAction command to get the logic app run action +#> +function Test-GetAzureLogicAppRunAction +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + [int]$counter = 0 + do { + Sleep -seconds 2 + $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + } while ($workflow.State -ne "Enabled" -and $counter++ -lt 5) + + Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + + $runHistory = Get-AzureLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName + Assert-NotNull $runHistory + + $actions = Get-AzureLogicAppRunAction -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name + Assert-NotNull $actions + Assert-AreEqual 2 $actions.Count + + $action = Get-AzureLogicAppRunAction -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name -ActionName "http" + Assert-NotNull $action + +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs index 1d5c0241f1f1..88de24be8932 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs @@ -26,13 +26,15 @@ public class WorkflowTests : RMTestBase { /// - /// Test New-AzurelogicApp command with Definition file and parameter file. + ///Test New-AzureLogicApp with physical file paths + ///Test New-AzureLogicApp using definition object and parameter file + ///Test New-AzureLogicApp using piped input /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewLogicAppUsingDefinitionFilePath() + public void TestCreateAndRemoveLogicApp() { - WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionFilePath"); + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateAndRemoveLogicApp"); } /// @@ -40,69 +42,19 @@ public void TestNewLogicAppUsingDefinitionFilePath() /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewLogicAppWithDuplicateName() + public void TestCreateLogicAppWithDuplicateName() { - WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppWithDuplicateName"); + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateLogicAppWithDuplicateName"); } - /// - /// Test New-AzurelogicApp command with Definition and parameter object as parameter. - /// - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewLogicAppUsingDefinitionObject() - { - WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionObject"); - } - - /// - /// Test New-AzurelogicApp command with Definition object and parameter file as parameter. - /// - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewLogicAppUsingDefinitionObjectAndParameterFile() - { - WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionObjectAndParameterFile"); - } - - /// - /// Test New-AzurelogicApp command with pipe input from resource group. - /// - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewLogicAppUsingResourcegroupPipeline() - { - WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingResourcegroupPipeline"); - } - - /// - /// Test New-AzurelogicApp command with plan id. - /// - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewLogicAppWithPlanId() - { - WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppWithPlanId"); - } - - /// - /// Test New-AzurelogicApp command with pipe input for SKU parameters. - /// - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewLogicAppUsingSkuPipeline() - { - WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingSkuPipeline"); - } - /// /// Test New-AzurelogicApp command with workflow object for parameters and definition input. /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewLogicAppUsingInputfromWorkflowObject() + public void TestCreateLogicAppUsingInputfromWorkflowObject() { - WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingInputfromWorkflowObject"); + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateLogicAppUsingInputfromWorkflowObject"); } /// @@ -110,9 +62,9 @@ public void TestNewLogicAppUsingInputfromWorkflowObject() /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewLogicAppUsingInputParameterAsHashTable() + public void TestCreateLogicAppUsingInputParameterAsHashTable() { - WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingInputParameterAsHashTable"); + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateLogicAppUsingInputParameterAsHashTable"); } /// @@ -120,72 +72,55 @@ public void TestNewLogicAppUsingInputParameterAsHashTable() /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewLogicAppUsingDefinitionWithTriggers() - { - WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionWithTriggers"); - } - - /// - /// Test New-AzurelogicApp command with workflow definition with actions - /// - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewLogicAppUsingDefinitionWithActions() + public void TestCreateLogicAppUsingDefinitionWithTriggers() { - WorkflowController.NewInstance.RunPowerShellTest("Test-NewLogicAppUsingDefinitionWithActions"); + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateLogicAppUsingDefinitionWithTriggers"); } /// - /// Test Get-AzurelogicApp command to get newly created workflow + ///Test New-AzureLogicApp with only definition + ///Test Get-AzureLogicApp + ///Test Get-AzureLogicApp for a non-existing logic app /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestGetLogicAppWithWorkflowName() + public void TestCreateAndGetLogicAppUsingDefinitionWithActions() { - WorkflowController.NewInstance.RunPowerShellTest("Test-GetLogicAppWithWorkflowName"); + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateAndGetLogicAppUsingDefinitionWithActions"); } /// - /// Test Remove-AzurelogicApp command to delete newly created workflow + /// Test Remove-AzurelogicApp command to remove non-existing workflow /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestRemoveLogicAppWithWorkflowName() + public void TestRemoveNonExistingLogicApp() { - WorkflowController.NewInstance.RunPowerShellTest("Test-RemoveLogicAppWithWorkflowName"); - } - - /// - /// Test Remove-AzurelogicApp command to remove by invalid workflow name - /// - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestRemoveLogicAppWithInvalidWorkflowName() - { - WorkflowController.NewInstance.RunPowerShellTest("Test-RemoveLogicAppWithInvalidWorkflowName"); + WorkflowController.NewInstance.RunPowerShellTest("Test-RemoveNonExistingLogicApp"); } /// - /// Test Set-Azurelogicapp command to update the workflow + ///Test Set-AzureLogicApp command to update workflow defintion without parametrs. + ///Test Set-AzureLogicApp command to update workflow defintion and state to Disabled. + ///Test Set-AzureLogicApp command to update workflow state to Enabled. + ///Test Set-AzureLogicApp command to set logic app with null definition. + ///Test Set-AzureLogicApp command to set non-existing logic app. /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestUpdateLogicApp() { WorkflowController.NewInstance.RunPowerShellTest("Test-UpdateLogicApp"); - } + } /// - /// Test Set-Azurelogicapp command to update a non-existing workflow + ///Test New-AzureLogicApp to create logic app for non-existing service plan. Constraint validation. /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestUpdateNonExistingLogicApp() + public void TestCreateLogicAppWithNonExistingAppServicePlan() { - WorkflowController.NewInstance.RunPowerShellTest("Test-UpdateNonExistingLogicApp"); - } - - - + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateLogicAppWithNonExistingAppServicePlan"); + } } } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 index 3014f2969a58..e9d51686d40a 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 @@ -15,284 +15,198 @@ <# .SYNOPSIS Test New-AzureLogicApp with physical file paths +Test New-AzureLogicApp using definition object and parameter file +Test New-AzureLogicApp using piped input #> -function Test-NewLogicAppUsingDefinitionFilePath +function Test-CreateAndRemoveLogicApp { $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" - $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Location "westus" -State "Enabled" -PlanName "StandardServicePlan" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath -SkuName "Standard" - - Assert-NotNull $workflow - Assert-AreEqual $workflowName $workflow.Name + #Create App Service Plan + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + #Case1 : Using physical file + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + + Assert-NotNull $workflow Assert-NotNull $workflow.Definition Assert-NotNull $workflow.Parameters -} + Assert-AreEqual $workflowName $workflow.Name + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force -<# -.SYNOPSIS -Test New-AzureLogicApp with object type parameters -#> -function Test-NewLogicAppUsingDefinitionObject -{ - $resourceGroup = TestSetup-CreateResourceGroup - $workflowName = getAssetname - $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" - + #Case2 : Using definition object and parameter file + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" $definition = [IO.File]::ReadAllText("Resources\TestSimpleWorkflowDefinition.json") - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Location "westus" -State "Enabled" -SkuName "Standard" -PlanName "StandardServicePlan" -Definition $definition -ParameterFilePath $parameterFilePath - - Assert-NotNull $workflow - Assert-AreEqual $workflowName $workflow.Name - Assert-NotNull $workflow.Definition - Assert-NotNull $workflow.Parameters -} - -<# -.SYNOPSIS -Test New-AzureLogicApp with Definition file and object parameters -#> -function Test-NewLogicAppUsingDefinitionObjectAndParameterFile -{ - $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname - - $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" - $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" - - $definition = [IO.File]::ReadAllText("Resources\TestSimpleWorkflowDefinition.json") - - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Location "westus" -State "Enabled" -SkuName "Standard" -PlanName "StandardServicePlan" -Definition $definition -ParameterFilePath $parameterFilePath + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Definition $definition -ParameterFilePath $parameterFilePath -AppServicePlan $planName - Assert-NotNull $workflow - Assert-AreEqual $workflowName $workflow.Name + Assert-NotNull $workflow Assert-NotNull $workflow.Definition Assert-NotNull $workflow.Parameters -} + Assert-AreEqual $workflowName $workflow.Name + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force -<# -.SYNOPSIS -Test New-AzureLogicApp with Pipeline Input from ResourceGroupObject -#> -function Test-NewLogicAppUsingResourcegroupPipeline -{ - $resourceGroup = TestSetup-CreateResourceGroup - $workflowName = getAssetname - $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" - $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + #Case3 : Create using Piped input - $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -State "Enabled" -SkuName "Standard" -PlanName "StandardServicePlan" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath - + $workflowName = getAssetname + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + Assert-NotNull $workflow - Assert-AreEqual $workflowName $workflow.Name - Assert-NotNull $workflow.Definition - Assert-NotNull $workflow.Parameters + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force } <# .SYNOPSIS Test New-AzureLogicApp to create a workflow with a duplicate name. #> -function Test-NewLogicAppWithDuplicateName +function Test-CreateLogicAppWithDuplicateName { $resourceGroup = TestSetup-CreateResourceGroup - $workflowName = getAssetname + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" $resourceGroupName = $resourceGroup.ResourceGroupName - $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -SkuName "Standard" -PlanName "StandardServicePlan" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + + #Create App Service Plan + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath Assert-NotNull $workflow try { - $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -SkuName "Standard" -PlanName "StandardServicePlan" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath } catch { Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/$WorkflowName' under resource group '$resourceGroupName' already exists." - } -} - -<# -.SYNOPSIS -Test New-AzureLogicApp with SKU Plan ID -#> -function Test-NewLogicAppWithPlanId -{ - $resourceGroup = TestSetup-CreateResourceGroup - $workflowName = getAssetname - - $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" - $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" - - $resourceGroupName = $resourceGroup.ResourceGroupName - $planId = "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/$resourceGroupName/providers/Microsoft.Web/serverfarms/StandardServicePlan" - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -State "Enabled" -SkuName "Standard" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath -PlanId $planId -PlanName "StandardServicePlan" - - Assert-NotNull $workflow - Assert-NotNull $workflow.Definition - Assert-NotNull $workflow.Parameters - Assert-AreEqual $workflowName $workflow.Name -} - -<# -.SYNOPSIS -Test New-AzureLogicApp with Pipeline Input from Sku -#> -function Test-NewLogicAppUsingSkuPipeline -{ - $resourceGroup = TestSetup-CreateResourceGroup - $workflowName = getAssetname - $resourceGroupName = $resourceGroup.ResourceGroupName - $planId = "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/$resourceGroupName/providers/Microsoft.Web/serverfarms/StandardServicePlan" - - #Custom Sku Object - $SkuObject = [PSCustomObject]@{ - SkuName = 'Standard' - PlanName = 'StandardServicePlan' - PlanId = $planId } - - $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" - $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" - - $workflow = $SkuObject | New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath - - Assert-NotNull $workflow - Assert-NotNull $workflow.Definition - Assert-NotNull $workflow.Parameters - Assert-AreEqual $workflowName $workflow.Name - Assert-AreEqual "Enabled" $workflow.State + + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force } <# .SYNOPSIS Test New-AzureLogicApp with workflow object #> -function Test-NewLogicAppUsingInputfromWorkflowObject +function Test-CreateLogicAppUsingInputfromWorkflowObject { $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname + $newWorkflowName = getAssetname $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath -PlanName "StandardServicePlan" -SkuName "Standard" - $newWorkflowName = getAssetname - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $newWorkflowName -Location "westus" -Definition $workflow.Definition -Parameters $workflow.Parameters -PlanName "StandardServicePlan" -SkuName "Standard" + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $newWorkflowName -AppServicePlan $planName -Definition $workflow.Definition -Parameters $workflow.Parameters Assert-NotNull $workflow Assert-NotNull $workflow.Definition Assert-NotNull $workflow.Parameters Assert-AreEqual $newWorkflowName $workflow.Name Assert-AreEqual "Enabled" $workflow.State + + Remove-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Force } <# .SYNOPSIS Test New-AzureLogicApp with Parameter as hash table #> -function Test-NewLogicAppUsingInputParameterAsHashTable +function Test-CreateLogicAppUsingInputParameterAsHashTable { - $endpointName = getAssetname $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname $resourceGroupName = $resourceGroup.ResourceGroupName - + + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" - $parameters = @{destinationUri="http://requestb.in/1kj7g8e1"} + $parameters = @{destinationUri="http://www.bing.com"} - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -Parameters $parameters -PlanName "StandardServicePlan" -SkuName "Standard" + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -Parameters $parameters -AppServicePlan $planName Assert-NotNull $workflow Assert-NotNull $workflow.Parameters + + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force } <# .SYNOPSIS Test New-AzureLogicApp with only definition #> -function Test-NewLogicAppUsingDefinitionWithTriggers -{ - $endpointName = getAssetname +function Test-CreateLogicAppUsingDefinitionWithTriggers +{ $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname - $resourceGroupName = $resourceGroup.ResourceGroupName - - $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" - - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -PlanName "StandardServicePlan" -SkuName "Standard" + $resourceGroupName = $resourceGroup.ResourceGroupName + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName - Assert-NotNull $workflow + Assert-NotNull $workflow + + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Force } <# .SYNOPSIS Test New-AzureLogicApp with only definition +Test Get-AzureLogicApp +Test Get-AzureLogicApp for a non-existing logic app #> -function Test-NewLogicAppUsingDefinitionWithActions -{ - $endpointName = getAssetname +function Test-CreateAndGetLogicAppUsingDefinitionWithActions +{ $resourceGroup = TestSetup-CreateResourceGroup $workflowName = getAssetname - $resourceGroupName = $resourceGroup.ResourceGroupName - - $definitionFilePath = "Resources\TestSimpleWorkflowActionDefinition.json" - - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -DefinitionFilePath $definitionFilePath -PlanName "StandardServicePlan" -SkuName "Standard" - - Assert-NotNull $workflow -} + $resourceGroupName = $resourceGroup.ResourceGroupName + $definitionFilePath = "Resources\TestSimpleWorkflowActionDefinition.json" + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + #Case1: Create logic app without parameters + $workflow1 = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + Assert-NotNull $workflow1 -<# -.SYNOPSIS -Test GetLogicAppWithWorkflowName command to get workflow by name. -#> -function Test-GetLogicAppWithWorkflowName -{ - $resourceGroupName = getAssetname - $ExpectedWorkflow = TestSetup-CreateWorkflow $resourceGroupName + #Case1: Get logic app using get cmdlet + $workflow2 = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + Assert-NotNull $workflow2 - Assert-NotNull $ExpectedWorkflow - - $ActualWorkflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $ExpectedWorkflow.Name - - Assert-NotNull $ActualWorkflow - Assert-AreEqual $ExpectedWorkflow.Name $ActualWorkflow.Name -} - -<# -.SYNOPSIS -Test RemoveLogicAppWithWorkflowName command to remove workflow by name. -Test Get-AzureLogicApp to get non existing workflow. -#> -function Test-RemoveLogicAppWithWorkflowName -{ - $resourceGroupName = getAssetname - $ExpectedWorkflow = TestSetup-CreateWorkflow $resourceGroupName - $WorkflowName = $ExpectedWorkflow.Name - Assert-NotNull $ExpectedWorkflow - - Remove-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $WorkflowName -Force + #Case1: Get non-existing logic app using get cmdlet try { - $ActualWorkflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $WorkflowName + Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name "InvalidWorkflow" } catch { - Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/$WorkflowName' under resource group '$resourceGroupName' was not found." - } + Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/InvalidWorkflow' under resource group '$resourceGroupName' was not found." + } + + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Force } <# .SYNOPSIS -Test RemoveLogicAppWithWorkflowName command to remove nonexisting workflow by name. +Test Remove-AzureLogicApp command to remove nonexisting workflow by name. #> -function Test-RemoveLogicAppWithInvalidWorkflowName +function Test-RemoveNonExistingLogicApp { $WorkflowName = "09e81ac4-848a-428d-82a6-7d61953e3940" $resourceGroup = TestSetup-CreateResourceGroup @@ -303,46 +217,88 @@ function Test-RemoveLogicAppWithInvalidWorkflowName <# .SYNOPSIS -Test Set-AzureLogicApp command to update workflow. +Test Set-AzureLogicApp command to update workflow defintion without parametrs. +Test Set-AzureLogicApp command to update workflow defintion and state to Disabled. +Test Set-AzureLogicApp command to update workflow state to Enabled. +Test Set-AzureLogicApp command to set logic app with null definition. +Test Set-AzureLogicApp command to set non-existing logic app. #> function Test-UpdateLogicApp { - $resourceGroupName = getAssetname - $ExpectedWorkflow = TestSetup-CreateWorkflow $resourceGroupName - $WorkflowName = $ExpectedWorkflow.Name - Assert-NotNull $ExpectedWorkflow - - $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $simpleDefinitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $simpleParameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $simpleDefinitionFilePath -ParameterFilePath $simpleParameterFilePath + + Assert-NotNull $workflow + + #Case1: Update definition with no parameters and disable + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" - $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Location "westus" -PlanName "NonStandardServicePlan" -SkuName "Free" -DefinitionFilePath $definitionFilePath + $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -State "Disabled" -DefinitionFilePath $definitionFilePath -Parameters $null + + Assert-NotNull $UpdatedWorkflow + Assert-AreEqual $UpdatedWorkflow.State "Disabled" + + #Case2: Update definition with parameters of logic app + $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $simpleDefinitionFilePath -ParameterFilePath $simpleParameterFilePath Assert-NotNull $UpdatedWorkflow - Assert-AreEqual $UpdatedWorkflow.Location "westus" - Assert-AreEqual $UpdatedWorkflow.Sku.Plan.Name "NonStandardServicePlan" - Assert-AreEqual $UpdatedWorkflow.Sku.Name "Free" + + #Case3: Enable the logic app + $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -State "Enabled" Assert-NotNull $UpdatedWorkflow + Assert-AreEqual $UpdatedWorkflow.State "Enabled" + + #Case4: Test update command to set logic app with null definition + try + { + $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Definition $null + } + catch + { + Assert-AreEqual $_.Exception.Message "Definition content needs to be specified." + } + + #Case5: Update non-existing workflow + + try + { + $workflowName = "82D2D842-C312-445C-8A4D-E3EE9542436D" + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath + } + catch + { + Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/$workflowName' under resource group '$resourceGroupName' was not found." + } } <# .SYNOPSIS -Test Set-AzureLogicApp command to update non-existing workflow. +Test New-AzureLogicApp to create logic app for non-existing service plan. Constraint validation. #> -function Test-UpdateNonExistingLogicApp +function Test-CreateLogicAppWithNonExistingAppServicePlan { - $resourceGroupName = getAssetname - $ExpectedWorkflow = TestSetup-CreateWorkflow $resourceGroupName - $WorkflowName = "82D2D842-C312-445C-8A4D-E3EE9542436D" - Assert-NotNull $ExpectedWorkflow - - $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" - + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + $Plan = "B9F87338CAE4470F9116F3D685365748" try { - $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $WorkflowName -Location "westus" -PlanName "NonStandardServicePlan" -SkuName "Free" -DefinitionFilePath $definitionFilePath + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $Plan -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath } catch { - Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/$WorkflowName' under resource group '$resourceGroupName' was not found." - } + Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Web/serverFarms/$Plan' under resource group '$resourceGroupName' was not found." + } } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.cs new file mode 100644 index 000000000000..b65710bc1948 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.cs @@ -0,0 +1,58 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests +{ + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; + using Xunit; + + /// + /// Scenario tests for the Workflow trigger commands + /// + public class WorkflowTriggerTests : RMTestBase + { + + /// + /// Test Test-GetAzureLogicAppTrigger command to verify the trigger in the workflow. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAzureLogicAppTrigger() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-GetAzureLogicAppTrigger"); + } + + /// + /// Test Get-AzureLogicAppTriggerHistory command to verify the trigger history for the workflow. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAzureLogicAppTriggerHistory() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-GetAzureLogicAppTriggerHistory"); + } + + /// + /// Test Start-AzureLogicAppTrigger command to run the trigger of the workflow. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestStartAzureLogicAppTrigger() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-StartAzureLogicAppTrigger"); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 new file mode 100644 index 000000000000..a350118e6107 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 @@ -0,0 +1,104 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Get-AzureLogicAppTrigger for workflow triggers and test to get trigger by name +#> +function Test-GetAzureLogicAppTrigger +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + $workflowTrigger = Get-AzureLogicAppTrigger -ResourceGroupName $resourceGroupName -Name $workflowName + Assert-NotNull $workflowTrigger + + $workflowTrigger = Get-AzureLogicAppTrigger -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + Assert-NotNull $workflowTrigger +} + +<# +.SYNOPSIS +Test Get-AzureLogicAppTriggerHistory command to get workflow trigger histories and history by history name +#> +function Test-GetAzureLogicAppTriggerHistory +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + [int]$counter = 0 + do { + Sleep -seconds 2 + $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + } while ($workflow.State -ne "Enabled" -or $counter++ -lt 5) + + Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + + $workflowTriggerHistories = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + Assert-NotNull $workflowTriggerHistories + $firstHistory = $workflowTriggerHistories[0] + + $workflowTriggerHistory = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" -HistoryName $firstHistory.Name + Assert-NotNull $workflowTriggerHistory +} + +<# +.SYNOPSIS +Test Start-AzureLogicAppTrigger command to run workflow trigger +#> +function Test-StartAzureLogicAppTrigger +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + [int]$counter = 0 + do { + Sleep -seconds 2 + $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + } while ($workflow.State -ne "Enabled" -or $counter++ -lt 5) + + $workflowTriggerHistories1 = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + $counter = 2 + while($val -lt $counter) + { + Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + Sleep -seconds 1 + $val++ + } + + $workflowTriggerHistories2 = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + $count = $workflowTriggerHistories2.Count - $workflowTriggerHistories1.Count + Assert-AreEqual $counter $count +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json new file mode 100644 index 000000000000..5bde5af3bc70 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json @@ -0,0 +1,460 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14852" + ], + "x-ms-request-id": [ + "fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + ], + "x-ms-correlation-request-id": [ + "fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010906Z:fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:05 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178\",\r\n \"name\": \"onesdk5178\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-request-id": [ + "bca36f12-62d2-4da8-bd72-e59936d61ffd" + ], + "x-ms-correlation-request-id": [ + "bca36f12-62d2-4da8-bd72-e59936d61ffd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010907Z:bca36f12-62d2-4da8-bd72-e59936d61ffd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14851" + ], + "x-ms-request-id": [ + "0729381c-ef54-41ba-a062-9eb95a2fde11" + ], + "x-ms-correlation-request-id": [ + "0729381c-ef54-41ba-a062-9eb95a2fde11" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010908Z:0729381c-ef54-41ba-a062-9eb95a2fde11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7243db3-d679-4df2-bf4c-246c51fd8d1a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5178-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5178\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9bd8879d-7c82-4059-9bcd-ca337e8f7a6a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "570ee219-6ed6-4842-9f8e-809fdf7c93bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010922Z:570ee219-6ed6-4842-9f8e-809fdf7c93bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8671433-f6bc-425e-b4fd-5590b8c6d896" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5243' under resource group 'onesdk5178' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + ], + "x-ms-correlation-request-id": [ + "9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010924Z:9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:24 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "8be2ca11-60d4-46cd-a25b-26d6910d2000" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T01:09:26.655401Z\",\r\n \"changedTime\": \"2016-01-29T01:09:26.655401Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475771190422936\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243\",\r\n \"name\": \"onesdk5243\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1353" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4932d099-158a-4c06-b205-4c87ed84bbea" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "9b0f509c-d637-4f55-aa24-81df77cd6a40" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010927Z:9b0f509c-d637-4f55-aa24-81df77cd6a40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:27 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0My9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2aa9e90b-d68f-441a-820b-d7ce9ad80c18" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"primarySecretKey\": \"Tsh10h0ckKvL8lPc4mKeNfschFYcSEHnmYJyApUJ1o4\",\r\n \"secondarySecretKey\": \"r1saXhjdLwT3fMKXDdIjJP-tTkTjD7lvgct8RRuGSos\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:6ba967a1-8d58-43e2-9efd-1260e2e1a0fe" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "d2786f6c-d6e2-4ce8-a947-a6e4eacb8f47" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010928Z:d2786f6c-d6e2-4ce8-a947-a6e4eacb8f47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0My9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af461cf2-e54a-45eb-9bd6-62f38d2424e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"primarySecretKey\": \"Tsh10h0ckKvL8lPc4mKeNfschFYcSEHnmYJyApUJ1o4\",\r\n \"secondarySecretKey\": \"r1saXhjdLwT3fMKXDdIjJP-tTkTjD7lvgct8RRuGSos\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f2ea06d6-cc1c-45b9-b873-225012dbe621" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "bd12880e-eeb8-4e9f-b6c9-4844bcb763e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010928Z:bd12880e-eeb8-4e9f-b6c9-4844bcb763e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:28 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureLogicAppAccessKey": [ + "onesdk5178", + "onesdk5243" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json similarity index 51% rename from src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json rename to src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json index 497787b48a32..d9062dffa8fb 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputfromWorkflowObject.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4027?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwMjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14968" ], "x-ms-request-id": [ - "1fb95fe0-785e-4dd6-9fda-d0c3c36620d6" + "daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" ], "x-ms-correlation-request-id": [ - "1fb95fe0-785e-4dd6-9fda-d0c3c36620d6" + "daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010913Z:1fb95fe0-785e-4dd6-9fda-d0c3c36620d6" + "WESTUS:20160129T010954Z:daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:09:12 GMT" + "Fri, 29 Jan 2016 01:09:53 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4027?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQwMjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027\",\r\n \"name\": \"onesdk4027\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263\",\r\n \"name\": \"onesdk5263\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -85,13 +85,13 @@ "1199" ], "x-ms-request-id": [ - "448b0065-c267-45ee-b790-70e43b54ca60" + "2b376747-12b6-4a60-ab45-506b49dc409b" ], "x-ms-correlation-request-id": [ - "448b0065-c267-45ee-b790-70e43b54ca60" + "2b376747-12b6-4a60-ab45-506b49dc409b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010913Z:448b0065-c267-45ee-b790-70e43b54ca60" + "WESTUS:20160129T010954Z:2b376747-12b6-4a60-ab45-506b49dc409b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:09:13 GMT" + "Fri, 29 Jan 2016 01:09:54 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQwMjcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14967" ], "x-ms-request-id": [ - "9a59f596-4d08-404c-b5e0-fa9642c6f7c4" + "67cd25a9-2d45-4c48-8b9e-2549961e1026" ], "x-ms-correlation-request-id": [ - "9a59f596-4d08-404c-b5e0-fa9642c6f7c4" + "67cd25a9-2d45-4c48-8b9e-2549961e1026" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010913Z:9a59f596-4d08-404c-b5e0-fa9642c6f7c4" + "WESTUS:20160129T010954Z:67cd25a9-2d45-4c48-8b9e-2549961e1026" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,85 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:09:13 GMT" + "Fri, 29 Jan 2016 01:09:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk2020?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjAyMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e57a2984-4f39-4121-8920-f625e3d929b9" + "4687a65f-26be-4e0f-8084-36845014b004" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5263-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5263\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f266357-3972-4c1e-b314-20c896073afe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], + "x-ms-correlation-request-id": [ + "7b8d475a-441d-4cf1-a039-3cf6dddfed4f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T011006Z:7b8d475a-441d-4cf1-a039-3cf6dddfed4f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:10:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2201c695-d1dc-46d1-9040-fb0ed1250f6b" ], "accept-language": [ "en-US" @@ -169,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk2020' under resource group 'onesdk4027' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1321' under resource group 'onesdk5263' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -187,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "60e7752b-c244-43bd-a476-41e811802e47" + "c074589b-8556-421e-81a9-73577d045289" ], "x-ms-correlation-request-id": [ - "60e7752b-c244-43bd-a476-41e811802e47" + "c074589b-8556-421e-81a9-73577d045289" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010914Z:60e7752b-c244-43bd-a476-41e811802e47" + "WESTUS:20160129T011006Z:c074589b-8556-421e-81a9-73577d045289" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -202,16 +268,16 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:09:14 GMT" + "Fri, 29 Jan 2016 01:10:06 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk2020?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjAyMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -220,7 +286,7 @@ "1179" ], "x-ms-client-request-id": [ - "87aa777e-b44f-4dbf-8b2f-c2fc2cd05992" + "e639c8b7-7077-4fd4-ad5e-a9f6d41bfbd5" ], "accept-language": [ "en-US" @@ -229,7 +295,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:09:16.2320373Z\",\r\n \"changedTime\": \"2015-12-24T01:09:16.2320373Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506875294239722\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk2020\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk2020\",\r\n \"name\": \"onesdk2020\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T01:10:07.0573017Z\",\r\n \"changedTime\": \"2016-01-29T01:10:07.0573017Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475770784639634\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321\",\r\n \"name\": \"onesdk1321\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -244,16 +310,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:c5f1d9d8-f1cc-4136-af58-70cd404b1f44" + "westus:a601786f-7220-49b7-9558-8623da54682a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1188" ], "x-ms-correlation-request-id": [ - "f8080684-55af-4be0-8fb8-8ad79d6b7223" + "440dfca1-0f37-49d4-994e-06ede2eec746" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010917Z:f8080684-55af-4be0-8fb8-8ad79d6b7223" + "WESTUS:20160129T011007Z:440dfca1-0f37-49d4-994e-06ede2eec746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -262,19 +328,19 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:09:16 GMT" + "Fri, 29 Jan 2016 01:10:07 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk3874?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzg3ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e625d12a-7eda-4f02-bdca-58c799397a36" + "869ae19b-657a-4227-a82d-b7ab80fb6843" ], "accept-language": [ "en-US" @@ -283,10 +349,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk3874' under resource group 'onesdk4027' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"YZW1xS0prm1_EiQpO_n-HlY7N0OEQm-iJ8sx8XtWMjo\",\r\n \"secondarySecretKey\": \"uih3AnckeTr_v9hlc2auwDdBa6iiH1nIbphML28APMY\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "150" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,17 +363,20 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "Vary": [ + "Accept-Encoding" ], "x-ms-request-id": [ - "a922a3ec-8281-4c58-815e-a1e1ffdc12ab" + "westus:65882875-a433-4773-9c62-5a3907305d56" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" ], "x-ms-correlation-request-id": [ - "a922a3ec-8281-4c58-815e-a1e1ffdc12ab" + "5e09656a-6e6b-45a7-b30a-1ab6297edb2c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010917Z:a922a3ec-8281-4c58-815e-a1e1ffdc12ab" + "WESTUS:20160129T011007Z:5e09656a-6e6b-45a7-b30a-1ab6297edb2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,25 +385,25 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:09:16 GMT" + "Fri, 29 Jan 2016 01:10:07 GMT" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk3874?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzg3ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/regenerate?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvcmVnZW5lcmF0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1179" + "28" ], "x-ms-client-request-id": [ - "a61f4e42-19a5-4400-bf6e-95d364c80b4e" + "afbe2f3a-1bf9-4a01-99bb-c3a2a2009d18" ], "accept-language": [ "en-US" @@ -343,10 +412,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:09:18.3771956Z\",\r\n \"changedTime\": \"2015-12-24T01:09:18.3771956Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506875273265899\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk3874\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4027/providers/Microsoft.Logic/workflows/onesdk3874\",\r\n \"name\": \"onesdk3874\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"ecEOidpW_n3a23_FjvsmdWYxuu7pvXUUZvriOBOdeLE\",\r\n \"secondarySecretKey\": \"uih3AnckeTr_v9hlc2auwDdBa6iiH1nIbphML28APMY\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1355" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -357,17 +426,20 @@ "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "westus:aea12094-bae5-4274-8a20-55084e46b1b8" + "westus:d1f1d1a6-b00a-4774-84dc-5ec5bb6c8055" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1186" ], "x-ms-correlation-request-id": [ - "ac7c92c1-33b6-4d12-880b-f00d0a8cfd4d" + "696869f7-db94-4cb3-b614-c8611875af83" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010919Z:ac7c92c1-33b6-4d12-880b-f00d0a8cfd4d" + "WESTUS:20160129T011008Z:696869f7-db94-4cb3-b614-c8611875af83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,17 +448,79 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:09:19 GMT" + "Fri, 29 Jan 2016 01:10:07 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/regenerate?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvcmVnZW5lcmF0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"keyType\": \"Secondary\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "30" + ], + "x-ms-client-request-id": [ + "ab03645f-9f92-40cf-bf67-ff37acc2a812" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"primarySecretKey\": \"ecEOidpW_n3a23_FjvsmdWYxuu7pvXUUZvriOBOdeLE\",\r\n \"secondarySecretKey\": \"OgR-KLRd9Lp2DeQJlorDKuc10Ri53-gwCjFnZOxKZcs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:a6001f0d-580a-4419-b51b-c56d503fe86e" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "4ba7fa28-0afe-4e61-bf1a-a11105ca68d9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T011008Z:4ba7fa28-0afe-4e61-bf1a-a11105ca68d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:10:07 GMT" + ] + }, + "StatusCode": 200 } ], "Names": { - "Test-NewLogicAppUsingInputfromWorkflowObject": [ - "onesdk4027", - "onesdk2020", - "onesdk3874" + "Test-SetAzureLogicAppAccessKey": [ + "onesdk5263", + "onesdk1321" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json new file mode 100644 index 000000000000..39b66c84db59 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json @@ -0,0 +1,625 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "93737fae-8d0c-4f17-b5db-cf3b3172d621" + ], + "x-ms-correlation-request-id": [ + "93737fae-8d0c-4f17-b5db-cf3b3172d621" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024759Z:93737fae-8d0c-4f17-b5db-cf3b3172d621" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:47:59 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550\",\r\n \"name\": \"onesdk2550\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "514a1e3b-c870-480e-af5c-f653649e6847" + ], + "x-ms-correlation-request-id": [ + "514a1e3b-c870-480e-af5c-f653649e6847" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024800Z:514a1e3b-c870-480e-af5c-f653649e6847" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:00 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-request-id": [ + "df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + ], + "x-ms-correlation-request-id": [ + "df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024800Z:df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de0018a4-0eda-41f0-bf21-32871ed0fec8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2550-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2550\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87367901-0205-46fa-8730-873677922d06" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "2622244f-f0c8-40be-8023-d9cdd2f873fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024808Z:2622244f-f0c8-40be-8023-d9cdd2f873fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:07 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37aebae6-6c20-4a20-994c-9a623a770d17" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6884' under resource group 'onesdk2550' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8d31ca9c-47ab-495b-a361-fc446e35f9ff" + ], + "x-ms-correlation-request-id": [ + "8d31ca9c-47ab-495b-a361-fc446e35f9ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024808Z:8d31ca9c-47ab-495b-a361-fc446e35f9ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:08 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0591f994-0ca6-4c1f-94d7-60f40801ccd1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"changedTime\": \"2016-01-29T02:48:09.501405Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475711961432891\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"name\": \"onesdk6884\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1574" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:70a24cbd-bb7e-4115-bd5b-2208aa9c1448" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "994a90a2-f858-4f61-876c-d0c3f3a433a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024811Z:994a90a2-f858-4f61-876c-d0c3f3a433a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "da1d725d-d8fa-4a21-a431-b8ad042a6888" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"changedTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475711961432891\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"name\": \"onesdk6884\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1574" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:d186fcd2-a21e-42b9-91a4-7242f7621be2" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "045abb91-65f4-4bba-9cff-7aa844b43185" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024809Z:045abb91-65f4-4bba-9cff-7aa844b43185" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54a547e8-0ba1-42c3-844d-6d8c005d29f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:398aa084-4675-4b7b-b934-7c167671ba1d" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "71e254af-4a49-4ffc-a70e-14c2c08c316a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024811Z:71e254af-4a49-4ffc-a70e-14c2c08c316a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "804166eb-03fa-4935-a8d3-8edea326694c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:10.463169Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"5cea1548-f9c6-4664-9411-05e8c18165a1\",\r\n \"workflow\": {\r\n \"name\": \"onesdk6884/08587475711961432891\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/versions/08587475711961432891\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/18AC7_865a111a25224362b8f5b1df2fd39392_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=lwORyOUh0YaR2fSG8z0nfOvQz7vfuZA97AMPgAWKcAY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A0047B09\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/02FD1_e6da7347b9a4438096c2bc41085b1f4e_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=7hohws5kVV%2FPTgZt%2FFCA42WNO3gFwTypDeApbE1Iqow%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A004A21C\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"2yy3GdJGU6Kb3KCABlTSmw==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-29T02:48:10.2693619Z\",\r\n \"endTime\": \"2016-01-29T02:48:10.378733Z\",\r\n \"trackingId\": \"5cea1548-f9c6-4664-9411-05e8c18165a1\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995\",\r\n \"name\": \"08587475711951985995\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1736" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:b52c70cd-007b-41c3-8084-34f7b2cb30cf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "4aba3440-17e3-4c42-b391-e8eb2eb99770" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024812Z:4aba3440-17e3-4c42-b391-e8eb2eb99770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zLzA4NTg3NDc1NzExOTUxOTg1OTk1L2FjdGlvbnM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c21857eb-542e-4485-84e6-6bc091f8a844" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.0974815Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.23151Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"371232c6-0df8-4a38-aef0-5942c3bd071c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/58BEA_86d81cfe9cb94cdf952ed74502a405d6_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=q%2F9%2F3da%2BX8vgu7qLWih%2BGfWNE8LPOVpPHqIvFWE21So%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A078DD60\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/FB019_ca0620fa688c4d669272b2b427853ed3_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=%2B%2BO7U58CmRQnMIxg%2B5iuo8YA46KYtNpk1VG3RKg8ftY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A079EF16\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"e4tJjbeGloY+NYlCsh11vQ==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.019364Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.2611503Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"1b9404db-fa8d-4feb-8a19-9e767ebef4a3\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/773A2_2ccc35b9703443699c5d4f016ccec6fc_http1:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=pn0a2Nv%2FYb5Wj7ooIlj97Q2%2FBz7010LwuofI%2FLTEkOg%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A07C127D\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/75259_2b8cc5c840d5445cb0343dba8092c9f8_http1:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=ECvJY%2BaB5wjT%2B5CUxB9%2BXTGx7mt%2FpDTpSD4oOnRKIrI%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A07E0EC3\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A4CfI9ZoDZ91HJttv0jZHA==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http1\",\r\n \"name\": \"http1\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2568" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:38ca950f-43af-4140-85ac-9eaaf7c8a97d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "x-ms-correlation-request-id": [ + "e7dbf2b3-cb08-415e-a8eb-cf6598855c95" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024812Z:e7dbf2b3-cb08-415e-a8eb-cf6598855c95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zLzA4NTg3NDc1NzExOTUxOTg1OTk1L2FjdGlvbnMvaHR0cD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "072c1fa0-29fd-4a8b-9c54-76f905bbf91b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.0974815Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.23151Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"371232c6-0df8-4a38-aef0-5942c3bd071c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/58BEA_86d81cfe9cb94cdf952ed74502a405d6_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=q%2F9%2F3da%2BX8vgu7qLWih%2BGfWNE8LPOVpPHqIvFWE21So%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A078DD60\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/FB019_ca0620fa688c4d669272b2b427853ed3_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=%2B%2BO7U58CmRQnMIxg%2B5iuo8YA46KYtNpk1VG3RKg8ftY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A079EF16\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"e4tJjbeGloY+NYlCsh11vQ==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1275" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:effda38f-cac9-4a5b-aa8f-ba28adeda7d3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "34a69ebc-354f-475f-8d5e-c7add7f56f95" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024812Z:34a69ebc-354f-475f-8d5e-c7add7f56f95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:12 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureLogicAppRunAction": [ + "onesdk2550", + "onesdk6884" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json new file mode 100644 index 000000000000..595110e193a5 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json @@ -0,0 +1,853 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-request-id": [ + "631a3d4c-c263-46b6-b1ea-4ed3554af996" + ], + "x-ms-correlation-request-id": [ + "631a3d4c-c263-46b6-b1ea-4ed3554af996" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213734Z:631a3d4c-c263-46b6-b1ea-4ed3554af996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:33 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776\",\r\n \"name\": \"onesdk7776\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + ], + "x-ms-correlation-request-id": [ + "8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213735Z:8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:34 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-request-id": [ + "180a92a6-42e3-4238-b1d8-36b569971c92" + ], + "x-ms-correlation-request-id": [ + "180a92a6-42e3-4238-b1d8-36b569971c92" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213735Z:180a92a6-42e3-4238-b1d8-36b569971c92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed4718ce-3d4a-456c-ad58-22c30db91e1c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk7776-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk7776\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c0e9456-8271-4e80-9877-aa1970dae099" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14861" + ], + "x-ms-correlation-request-id": [ + "71f0a45e-3da7-464d-b5ad-e9c876da204a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213749Z:71f0a45e-3da7-464d-b5ad-e9c876da204a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e8b1ac6-16c9-4f6c-9912-2cb4c3d614c8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9693' under resource group 'onesdk7776' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f4615d65-da3f-41b8-979f-a8df633e554a" + ], + "x-ms-correlation-request-id": [ + "f4615d65-da3f-41b8-979f-a8df633e554a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213750Z:f4615d65-da3f-41b8-979f-a8df633e554a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:49 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "634cebd3-084a-410e-a0ac-20413dd4e3e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:08e7d46b-a9ea-4e88-b9ae-93dea8a26c22" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14727" + ], + "x-ms-correlation-request-id": [ + "7a1c26be-3fcc-4885-b9c0-201955eb1901" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213755Z:7a1c26be-3fcc-4885-b9c0-201955eb1901" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb225472-d8b3-499f-9cbe-44b348f6bb69" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:fe6cd076-7b89-4258-9d31-d8e4c235e4c1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14726" + ], + "x-ms-correlation-request-id": [ + "16e6d15a-872e-4f52-9cd7-29c9e53b33c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213757Z:16e6d15a-872e-4f52-9cd7-29c9e53b33c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2dda5b05-97e0-4601-b9ae-35991856da9d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:7e957de3-df02-4e5b-adb3-5eb347572af9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14725" + ], + "x-ms-correlation-request-id": [ + "46c43656-a5be-411c-8fc9-29a37d6279f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213759Z:46c43656-a5be-411c-8fc9-29a37d6279f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e2383c4-8724-4168-b704-5ad09bec82d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:cb7ab54c-1b85-4013-b526-ffb1fe4903e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14724" + ], + "x-ms-correlation-request-id": [ + "c6e73867-3b31-450c-b94f-de1887ca0928" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213801Z:c6e73867-3b31-450c-b94f-de1887ca0928" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f417649-02a4-4386-a29e-a7d4af0439a0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:448cfd64-caa4-42b2-b9a7-7dcc72409287" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14723" + ], + "x-ms-correlation-request-id": [ + "e6e30169-03ad-491b-82f2-39ca7e8f49f8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213803Z:e6e30169-03ad-491b-82f2-39ca7e8f49f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7b47666-755e-4f90-839e-6b1d80a7100a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4f70933b-daf5-4e58-a3e6-59fd9e33fa00" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14721" + ], + "x-ms-correlation-request-id": [ + "67eac913-453b-4c29-b637-1c7a0edd7ae0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213805Z:67eac913-453b-4c29-b637-1c7a0edd7ae0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "15f548da-0e12-43b3-99bb-50fd788fc02e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:f16fff26-938d-47e1-89ba-0bb84f55b1c5" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8568a751-068e-4ee1-84c7-f0fdd8a05a9f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213753Z:8568a751-068e-4ee1-84c7-f0fdd8a05a9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "904804de-3055-4e32-a6f1-583d22f88613" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:52b92822-a626-4ddd-8f7f-f623d40c67c4" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c5b18e83-9a9b-4560-81df-954a989eff05" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213806Z:c5b18e83-9a9b-4560-81df-954a989eff05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce116594-1976-41be-9f70-c233ccb50e8d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:37:53.1425437Z\",\r\n \"endTime\": \"2016-01-26T21:37:54.1215716Z\",\r\n \"status\": \"Succeeded\",\r\n \"correlationId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"workflow\": {\r\n \"name\": \"onesdk9693/08587477626139623697\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/versions/08587477626139623697\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F1E4A_4ae25d4a1f0b4c998474628226574c66_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=uTs%2BCKI1r8tG9OcVMNFbLtdFlD4wjqvvtriADVkZ%2FUY%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F220B6BD\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F02A1_327a8e388a3a405ab5c760aba1697587_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=4J0HlZD1VDNRczPjVeD4i2tBZ3KJJNbMrn%2BV7cDjQbg%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F2208FA5\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"S2yNZzvMTD8A2LamZWzk3A==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-26T21:37:52.9544639Z\",\r\n \"endTime\": \"2016-01-26T21:37:53.0325829Z\",\r\n \"trackingId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709\",\r\n \"name\": \"08587477626125197709\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1798" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:003092d8-271e-41f2-838c-56219397318a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14720" + ], + "x-ms-correlation-request-id": [ + "fb6c2e26-c501-43f9-ba0e-8cb1000725eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213806Z:fb6c2e26-c501-43f9-ba0e-8cb1000725eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My9ydW5zLzA4NTg3NDc3NjI2MTI1MTk3NzA5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "554b5d5a-49d1-4e19-8017-5257659254d6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:37:53.1425437Z\",\r\n \"endTime\": \"2016-01-26T21:37:54.1215716Z\",\r\n \"status\": \"Succeeded\",\r\n \"correlationId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"workflow\": {\r\n \"name\": \"onesdk9693/08587477626139623697\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/versions/08587477626139623697\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F1E4A_4ae25d4a1f0b4c998474628226574c66_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=uTs%2BCKI1r8tG9OcVMNFbLtdFlD4wjqvvtriADVkZ%2FUY%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F220B6BD\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F02A1_327a8e388a3a405ab5c760aba1697587_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=4J0HlZD1VDNRczPjVeD4i2tBZ3KJJNbMrn%2BV7cDjQbg%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F2208FA5\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"S2yNZzvMTD8A2LamZWzk3A==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-26T21:37:52.9544639Z\",\r\n \"endTime\": \"2016-01-26T21:37:53.0325829Z\",\r\n \"trackingId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709\",\r\n \"name\": \"08587477626125197709\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1786" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:75c84f22-2a79-4f9b-9e84-e5ceba4ba800" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14719" + ], + "x-ms-correlation-request-id": [ + "4918f084-ec7c-49da-8e8c-e220b4718770" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213806Z:4918f084-ec7c-49da-8e8c-e220b4718770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:06 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureLogicAppRunHistory": [ + "onesdk7776", + "onesdk9693" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json new file mode 100644 index 000000000000..8af45285b977 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json @@ -0,0 +1,739 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-request-id": [ + "418d6d13-6725-411e-9166-8945adc37df2" + ], + "x-ms-correlation-request-id": [ + "418d6d13-6725-411e-9166-8945adc37df2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213555Z:418d6d13-6725-411e-9166-8945adc37df2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:35:55 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047\",\r\n \"name\": \"onesdk8047\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + ], + "x-ms-correlation-request-id": [ + "bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213558Z:bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:35:58 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "1aa57fe4-e027-4cde-9450-c22043b23345" + ], + "x-ms-correlation-request-id": [ + "1aa57fe4-e027-4cde-9450-c22043b23345" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213558Z:1aa57fe4-e027-4cde-9450-c22043b23345" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:35:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49961c78-4dd1-4e47-8eb3-2400ce9bb0fa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk8047-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk8047\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "91be29c6-382f-4718-9320-0285b2050935" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "2bd7db75-1399-4a0f-b2b6-ef692e7c3019" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213611Z:2bd7db75-1399-4a0f-b2b6-ef692e7c3019" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:10 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27ffacc6-4364-47a5-93cc-347fedfccbdf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6210' under resource group 'onesdk8047' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b093dcef-712d-47ab-ae9c-86e25305a623" + ], + "x-ms-correlation-request-id": [ + "b093dcef-712d-47ab-ae9c-86e25305a623" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213611Z:b093dcef-712d-47ab-ae9c-86e25305a623" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:11 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "446485ce-750d-4489-9d31-132966c42583" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:e2645e63-68f5-4dba-a3d9-13a635f4b1a7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "838ae18a-3cd9-4343-bf70-b4b94345185a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213616Z:838ae18a-3cd9-4343-bf70-b4b94345185a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3344a378-27c7-4399-91d9-066eaeda1521" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:51433142-99df-4bf2-b271-37b203ee3cbe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "a11fe84c-b81b-474c-b3a5-c8fd48113360" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213618Z:a11fe84c-b81b-474c-b3a5-c8fd48113360" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3dd6c915-2b4c-48ce-b7ba-4162a3daa8ef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4ad9ad49-adc7-42ea-a0fa-4ed00e658755" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "22e7d2df-e5f7-48f5-aaec-4da965478cf5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213620Z:22e7d2df-e5f7-48f5-aaec-4da965478cf5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3335ea7-2ae3-4f59-8fd9-e22e5eb82485" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:6e81bd7c-a799-4237-9342-0ec2b922422c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "e41af364-faf8-496c-986e-cfc1ec053e79" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213622Z:e41af364-faf8-496c-986e-cfc1ec053e79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b43fbdcd-ab30-44e6-8a29-be6991d797e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:ded67c9e-555e-408b-afc3-190637c59caf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "224f2ac0-0fdf-4a56-a834-3bdb317fef0a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213625Z:224f2ac0-0fdf-4a56-a834-3bdb317fef0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68bb1c00-d944-4df9-be37-e691858b9a35" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:43e050b2-46ca-4804-a5ff-6496e92df154" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "f0f0525c-4718-4c7a-b2b4-342b7446b004" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213627Z:f0f0525c-4718-4c7a-b2b4-342b7446b004" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "2e56887a-6e7b-4d62-a999-700eb4d3586d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:cba8483f-f70c-4b83-8488-1d3169103006" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a82788e4-ea57-4211-805e-7e894b1f3d36" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213614Z:a82788e4-ea57-4211-805e-7e894b1f3d36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:13 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMC90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df17c312-1c06-4b15-982e-4e5e3478c5d5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:91043b0a-3d9c-4d8d-ac3f-bbe397a92186" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "4d817e26-e486-453c-aead-473b25d028b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213627Z:4d817e26-e486-453c-aead-473b25d028b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:27 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-StartLogicApp": [ + "onesdk8047", + "onesdk6210" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json new file mode 100644 index 000000000000..18a995549693 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json @@ -0,0 +1,508 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14765" + ], + "x-ms-request-id": [ + "3739f087-6727-4582-ad63-4540a0b4b156" + ], + "x-ms-correlation-request-id": [ + "3739f087-6727-4582-ad63-4540a0b4b156" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211314Z:3739f087-6727-4582-ad63-4540a0b4b156" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:13 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331\",\r\n \"name\": \"onesdk5331\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "15a3aaf6-0854-47d3-bfe6-be12cae3a003" + ], + "x-ms-correlation-request-id": [ + "15a3aaf6-0854-47d3-bfe6-be12cae3a003" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211315Z:15a3aaf6-0854-47d3-bfe6-be12cae3a003" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:14 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14764" + ], + "x-ms-request-id": [ + "bba8bed9-5b64-4e03-8d44-51fd58414cf4" + ], + "x-ms-correlation-request-id": [ + "bba8bed9-5b64-4e03-8d44-51fd58414cf4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211315Z:bba8bed9-5b64-4e03-8d44-51fd58414cf4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e90d103b-327c-4cdd-abc5-44487fc5e91d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5331-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5331\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46e7eb17-4cb6-42c0-b713-782b2bc89e2e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "7158f7f0-50b8-453a-97b1-15dda4ff124e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211330Z:7158f7f0-50b8-453a-97b1-15dda4ff124e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:30 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5245c2b-f404-46b1-84b7-64016dc2f01d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8699' under resource group 'onesdk5331' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d69b1ea4-4d0b-428a-828a-38becee7a245" + ], + "x-ms-correlation-request-id": [ + "d69b1ea4-4d0b-428a-828a-38becee7a245" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211330Z:d69b1ea4-4d0b-428a-828a-38becee7a245" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:30 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "501d3f62-c706-4bde-8c3d-56aa953956fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"changedTime\": \"2016-01-26T21:13:33.4724456Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477640722571179\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"name\": \"onesdk8699\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:16892e0f-8749-436a-a895-a4ba53278f91" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" + ], + "x-ms-correlation-request-id": [ + "19b61baa-0f9a-454a-a67f-51ee1acd7c52" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211334Z:19b61baa-0f9a-454a-a67f-51ee1acd7c52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"string\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"string\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1628" + ], + "x-ms-client-request-id": [ + "169cf574-62f6-48ff-9b01-74737d7a52ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"changedTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477640722571179\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"name\": \"onesdk8699\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:346eecf3-0eb7-469e-a208-4ca6977c40fe" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "746c8256-cbd3-480b-88cc-a4a7d1543d6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211334Z:746c8256-cbd3-480b-88cc-a4a7d1543d6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:33 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/InvalidWorkflow?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvSW52YWxpZFdvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92e96af6-e770-44aa-80a6-eca7985636f6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/InvalidWorkflow' under resource group 'onesdk5331' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "155" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5144a19a-fd67-4be7-8462-579ff6a421f6" + ], + "x-ms-correlation-request-id": [ + "5144a19a-fd67-4be7-8462-579ff6a421f6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211334Z:5144a19a-fd67-4be7-8462-579ff6a421f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:34 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "478e9f7f-f6bc-4209-9945-1b7580609924" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:73688625-c741-4bc9-9308-289b8e22cae9" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "2a7458d2-148c-44e8-a4f7-7c0994c7fd05" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211335Z:2a7458d2-148c-44e8-a4f7-7c0994c7fd05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:35 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateAndGetLogicAppUsingDefinitionWithActions": [ + "onesdk5331", + "onesdk8699" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json new file mode 100644 index 000000000000..6be09b3aa189 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json @@ -0,0 +1,861 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "2f48abca-dce1-4c40-90ef-b4e9c213a90b" + ], + "x-ms-correlation-request-id": [ + "2f48abca-dce1-4c40-90ef-b4e9c213a90b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211440Z:2f48abca-dce1-4c40-90ef-b4e9c213a90b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:14:39 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706\",\r\n \"name\": \"onesdk1706\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + ], + "x-ms-correlation-request-id": [ + "6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211441Z:6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:14:40 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "c0b7051e-baf5-4766-881e-1ef78abc88fb" + ], + "x-ms-correlation-request-id": [ + "c0b7051e-baf5-4766-881e-1ef78abc88fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211441Z:c0b7051e-baf5-4766-881e-1ef78abc88fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:14:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05b6d49b-e5df-4178-ac0c-d831234ec90c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a3bd2ed9-d6bc-4d8c-accb-c3e33a75722f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14763" + ], + "x-ms-correlation-request-id": [ + "f6cdc0ad-795c-4053-8a36-3d82e9954c45" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211458Z:f6cdc0ad-795c-4053-8a36-3d82e9954c45" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:14:57 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad329cb9-4196-4412-85b0-9b31e357f6bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d75556ee-4afd-44c1-9216-446ec86acb68" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14790" + ], + "x-ms-correlation-request-id": [ + "b2e8c714-8c5c-4dfc-bb46-85d4d0a589e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211503Z:b2e8c714-8c5c-4dfc-bb46-85d4d0a589e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:02 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6def7a55-51bc-4af4-9961-16c1d7055d69" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e10880c-8d23-4060-8c75-bb5d68b41590" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14788" + ], + "x-ms-correlation-request-id": [ + "5caf050f-14c3-4239-969a-71692a8ea6b8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211507Z:5caf050f-14c3-4239-969a-71692a8ea6b8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:07 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9902ef7-00f5-4e27-9739-90f27cf68ad3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5636' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f67e6609-9155-4b46-b415-fdbaa632b709" + ], + "x-ms-correlation-request-id": [ + "f67e6609-9155-4b46-b415-fdbaa632b709" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211458Z:f67e6609-9155-4b46-b415-fdbaa632b709" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:14:58 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "b7728216-4a55-436b-9c1a-5490d6556092" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:00.2333704Z\",\r\n \"changedTime\": \"2016-01-26T21:15:00.2333704Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639853827918\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636\",\r\n \"name\": \"onesdk5636\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:1e565d4e-a5f8-40e8-a395-c57f873f443f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "ed48668b-5f8f-4250-b8ce-393f40872d3e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211501Z:ed48668b-5f8f-4250-b8ce-393f40872d3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:00 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18387f42-344d-4e04-9d36-835256ad5ff9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:a814e410-f1ea-45d9-81ad-ddf02b88f181" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a92a4429-d57e-41c8-a961-f30c802d38c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211503Z:a92a4429-d57e-41c8-a961-f30c802d38c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3db6cf01-8957-43f3-9b1a-a34340d6b12c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1140' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + ], + "x-ms-correlation-request-id": [ + "9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211503Z:9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:02 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "97002d2f-06a2-4882-a597-2011b7edf0c4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:05.8571989Z\",\r\n \"changedTime\": \"2016-01-26T21:15:05.8571989Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639797421848\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140\",\r\n \"name\": \"onesdk1140\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:8a4176df-c485-45ee-b7b9-055a573ef639" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b4370182-cb05-438a-99bf-aeeb92a8fcda" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211506Z:b4370182-cb05-438a-99bf-aeeb92a8fcda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f140919-5ef4-4d61-8250-990878ee80eb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:9e058706-591e-4e97-8d2a-a8827f8d8606" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "2883b745-a142-46a7-b015-6ec1572ca107" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211507Z:2883b745-a142-46a7-b015-6ec1572ca107" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea0d87ed-2af4-4f55-a7cd-3e4ea2bd0fcb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4837' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3eabe340-7ad0-42f7-bea3-df7a59a0a311" + ], + "x-ms-correlation-request-id": [ + "3eabe340-7ad0-42f7-bea3-df7a59a0a311" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211508Z:3eabe340-7ad0-42f7-bea3-df7a59a0a311" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:07 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "c7b01318-c9c5-4f48-9c14-61dcd188a5c9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:08.9417158Z\",\r\n \"changedTime\": \"2016-01-26T21:15:08.9417158Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639767186944\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837\",\r\n \"name\": \"onesdk4837\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:b7144ab8-4329-45c4-b760-128ea98479f3" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "b1e3fe38-66c4-4630-8f80-5064e2476d0e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211509Z:b1e3fe38-66c4-4630-8f80-5064e2476d0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3423402-81f8-4b57-9b27-1716a56d0934" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:b76a7a6e-6da3-4fa7-b8ea-6f1194c6844c" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "f134e876-0f67-48b4-a7be-57598944579c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211510Z:f134e876-0f67-48b4-a7be-57598944579c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:09 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateAndRemoveLogicApp": [ + "onesdk1706", + "onesdk5636", + "onesdk1140", + "onesdk4837" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json new file mode 100644 index 000000000000..4782d4bca1ac --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json @@ -0,0 +1,397 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-request-id": [ + "60334d78-8e41-41df-92c8-dcefac361e00" + ], + "x-ms-correlation-request-id": [ + "60334d78-8e41-41df-92c8-dcefac361e00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220927Z:60334d78-8e41-41df-92c8-dcefac361e00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:26 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914\",\r\n \"name\": \"onesdk9914\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + ], + "x-ms-correlation-request-id": [ + "58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220928Z:58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:27 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-request-id": [ + "a79c8399-1d54-4317-9ea4-9d251bfe9854" + ], + "x-ms-correlation-request-id": [ + "a79c8399-1d54-4317-9ea4-9d251bfe9854" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220928Z:a79c8399-1d54-4317-9ea4-9d251bfe9854" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5a180d3-1dda-46f8-a21a-313337304d65" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk9914-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk9914\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "56f1f351-b967-4c6f-bb23-8473167a2ee5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "a34708b7-e580-40a5-8214-01fed3002d4b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220936Z:a34708b7-e580-40a5-8214-01fed3002d4b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7deae12e-6848-4dff-92f0-a1eacab7234c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5482' under resource group 'onesdk9914' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9e9f5baa-f867-43a8-a06d-288108dd4e8a" + ], + "x-ms-correlation-request-id": [ + "9e9f5baa-f867-43a8-a06d-288108dd4e8a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220936Z:9e9f5baa-f867-43a8-a06d-288108dd4e8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:36 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "af71d9b1-466e-4c00-98e2-7bd65c806bdc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-27T22:09:37.7063652Z\",\r\n \"changedTime\": \"2016-01-27T22:09:37.7063652Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587476743079470122\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482\",\r\n \"name\": \"onesdk5482\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:693a1897-3bc8-4ef9-983c-5a8e983b8968" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "dda2da40-e0b9-4a22-9234-2c06c0b2e3ae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220938Z:dda2da40-e0b9-4a22-9234-2c06c0b2e3ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:38 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f087576-bf78-498b-9631-dd63385c830a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:eedb201a-c379-44f2-9a79-a42bfbfc3ad5" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "8cb77f05-4e40-4a27-a7fd-2cccd03f481a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220939Z:8cb77f05-4e40-4a27-a7fd-2cccd03f481a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:38 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateLogicAppUsingDefinitionWithTriggers": [ + "onesdk9914", + "onesdk5482" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json new file mode 100644 index 000000000000..2a0c64abcc4c --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json @@ -0,0 +1,397 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "578eee75-b028-4268-a1d7-4e288b6c63c2" + ], + "x-ms-correlation-request-id": [ + "578eee75-b028-4268-a1d7-4e288b6c63c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211111Z:578eee75-b028-4268-a1d7-4e288b6c63c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:10 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986\",\r\n \"name\": \"onesdk6986\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "b3a0f57e-201c-4d78-836e-661f4db2f748" + ], + "x-ms-correlation-request-id": [ + "b3a0f57e-201c-4d78-836e-661f4db2f748" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211112Z:b3a0f57e-201c-4d78-836e-661f4db2f748" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:11 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "0b7718cf-6924-4a06-8034-505785262a9d" + ], + "x-ms-correlation-request-id": [ + "0b7718cf-6924-4a06-8034-505785262a9d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211112Z:0b7718cf-6924-4a06-8034-505785262a9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59d80a0e-f819-493f-a006-f1a4c812bcb5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk6986-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk6986\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7722aefa-b79b-461b-a7b4-dd358e107837" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14744" + ], + "x-ms-correlation-request-id": [ + "e52cc1f6-cf5d-4b26-a810-a284f99591d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211122Z:e52cc1f6-cf5d-4b26-a810-a284f99591d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37012d8b-2dc7-4b5c-816e-2b426cfe79de" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9396' under resource group 'onesdk6986' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "868acf2c-258d-4442-b20b-1b33d42b9129" + ], + "x-ms-correlation-request-id": [ + "868acf2c-258d-4442-b20b-1b33d42b9129" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211122Z:868acf2c-258d-4442-b20b-1b33d42b9129" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:21 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "08bd30b5-2234-4f0e-8c0f-b6102cfb79d1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:11:23.856472Z\",\r\n \"changedTime\": \"2016-01-26T21:11:23.856472Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477642018102635\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396\",\r\n \"name\": \"onesdk9396\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1354" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:dabccf17-c572-49d0-ab71-ab2fa0521577" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "5940a00f-cc09-4061-92a8-3d251d92901c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211124Z:5940a00f-cc09-4061-92a8-3d251d92901c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:23 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25123977-87b3-44b9-b3d2-3f1342a09589" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6d90c5b7-079b-4a37-8efd-5f0f39961ad2" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "306460fb-fdb6-46e1-9cdc-f52dbfedae80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211124Z:306460fb-fdb6-46e1-9cdc-f52dbfedae80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:24 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateLogicAppUsingInputParameterAsHashTable": [ + "onesdk6986", + "onesdk9396" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json new file mode 100644 index 000000000000..4a52a6f1c2af --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json @@ -0,0 +1,578 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-request-id": [ + "cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + ], + "x-ms-correlation-request-id": [ + "cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211212Z:cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193\",\r\n \"name\": \"onesdk5193\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "b8050936-589b-46c3-8e37-580b7b37a966" + ], + "x-ms-correlation-request-id": [ + "b8050936-589b-46c3-8e37-580b7b37a966" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211213Z:b8050936-589b-46c3-8e37-580b7b37a966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:13 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-request-id": [ + "033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + ], + "x-ms-correlation-request-id": [ + "033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211213Z:033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6d208fb-156e-4f5e-8886-2280c35ad636" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5193-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5193\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1aabb6c6-1d60-4b66-97ff-5f099f24117b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "0e677399-ea73-4b8a-84ad-4c2bd4e9a898" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211221Z:0e677399-ea73-4b8a-84ad-4c2bd4e9a898" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "964cf085-5d3f-4484-a7fe-6a89b40c50d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5193-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5193\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c89720b0-9bb9-42de-8d48-f45c697fe7de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "f6a9f01d-2033-4a35-abbc-6765a0983389" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211226Z:f6a9f01d-2033-4a35-abbc-6765a0983389" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:26 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9709a607-30fc-49a7-a003-2bfa92250572" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7978' under resource group 'onesdk5193' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "83368a65-d09b-4bf9-afe5-6848713adf80" + ], + "x-ms-correlation-request-id": [ + "83368a65-d09b-4bf9-afe5-6848713adf80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211221Z:83368a65-d09b-4bf9-afe5-6848713adf80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:21 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "d61567ae-162a-44bd-b0e1-48c78189329c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:12:23.6049277Z\",\r\n \"changedTime\": \"2016-01-26T21:12:23.6049277Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477641421258515\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978\",\r\n \"name\": \"onesdk7978\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:e7f52e8e-0140-4693-9592-5bfd516b5046" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "33fe3663-d605-48d4-8c5d-71e4aaa55b77" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211226Z:33fe3663-d605-48d4-8c5d-71e4aaa55b77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDkxP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dd28ec0-ac64-4d77-91a2-934ab00a8e65" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk491' under resource group 'onesdk5193' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + ], + "x-ms-correlation-request-id": [ + "ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211226Z:ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:25 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDkxP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "d4ee37d8-d9ec-4ea9-83db-e9e74588cd80" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:12:28.1172752Z\",\r\n \"changedTime\": \"2016-01-26T21:12:28.1172752Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477641375491474\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491\",\r\n \"name\": \"onesdk491\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1353" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:d5bc4b12-126c-43e8-a535-ff36449e93d3" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "afab3bd6-55bf-4ad7-80bd-5a0da1974e71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211228Z:afab3bd6-55bf-4ad7-80bd-5a0da1974e71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:27 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e8d8f36-f890-4551-9377-ae68c46b9377" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6159b48c-d906-452a-991f-e826c56b76c7" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a2e6985e-aedf-4109-9e5c-527bb8b05c17" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211229Z:a2e6985e-aedf-4109-9e5c-527bb8b05c17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:28 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateLogicAppUsingInputfromWorkflowObject": [ + "onesdk5193", + "onesdk7978", + "onesdk491" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json new file mode 100644 index 000000000000..ff8d581e1061 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json @@ -0,0 +1,520 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "c83c209d-880c-420e-a6ee-9e4f56763eed" + ], + "x-ms-correlation-request-id": [ + "c83c209d-880c-420e-a6ee-9e4f56763eed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211555Z:c83c209d-880c-420e-a6ee-9e4f56763eed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:55 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390\",\r\n \"name\": \"onesdk390\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "88264c1b-a46c-43dc-b8c2-4e27801710d0" + ], + "x-ms-correlation-request-id": [ + "88264c1b-a46c-43dc-b8c2-4e27801710d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211557Z:88264c1b-a46c-43dc-b8c2-4e27801710d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "e39af8d4-02bb-44a7-bf88-7fd33543fac0" + ], + "x-ms-correlation-request-id": [ + "e39af8d4-02bb-44a7-bf88-7fd33543fac0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211557Z:e39af8d4-02bb-44a7-bf88-7fd33543fac0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9TdGFuZGFyZFNlcnZpY2VQbGFuP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6073bec7-97bd-4a88-9ea5-2613e16e0d47" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk390-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk390\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "948" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2e506ad9-2c20-4918-a88e-2a0128acdeed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "e15423f1-1c89-4e75-b2cd-8c369ecd4c56" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211616Z:e15423f1-1c89-4e75-b2cd-8c369ecd4c56" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:15 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9TdGFuZGFyZFNlcnZpY2VQbGFuP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a5b6314-5da0-4591-b9a0-5a71a6c195dc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk390-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk390\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "948" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ec062842-2423-4969-8c27-dc78c5460f7d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "1712e32b-2221-4b02-8b57-c99df91aeb87" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211620Z:1712e32b-2221-4b02-8b57-c99df91aeb87" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2834ab00-ce85-4530-954e-2474601b5868" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9059' under resource group 'onesdk390' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "48988617-71ab-4822-9bcd-20fbf8317218" + ], + "x-ms-correlation-request-id": [ + "48988617-71ab-4822-9bcd-20fbf8317218" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211617Z:48988617-71ab-4822-9bcd-20fbf8317218" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:16 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1eb5117-8675-4c49-a37a-e6f0e2571543" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"changedTime\": \"2016-01-26T21:16:19.7351357Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639059226776\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"name\": \"onesdk9059\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1353" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:711ff212-b530-46e9-bef1-c67072dd1893" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "fb7ef0f5-6212-4c27-b20a-d9ddad1ef169" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211621Z:fb7ef0f5-6212-4c27-b20a-d9ddad1ef169" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "e8c65b41-2cad-4865-b493-7fd40904c23d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"changedTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639059226776\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"name\": \"onesdk9059\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1353" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:ebd022ae-f261-485b-bf92-e8be9f932833" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "c0cbfa85-b42e-4aa4-999d-68b50d088bcc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211620Z:c0cbfa85-b42e-4aa4-999d-68b50d088bcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:20 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cab4a7da-c45a-41a6-a06a-566c45a3c635" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:1301b7a3-d44b-4b81-8371-0730854f6496" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "69576ba0-208f-4a0b-80de-ddbc4e20cc72" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211622Z:69576ba0-208f-4a0b-80de-ddbc4e20cc72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:22 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateLogicAppWithDuplicateName": [ + "onesdk390", + "onesdk9059" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json new file mode 100644 index 000000000000..32e1d858cd88 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json @@ -0,0 +1,217 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7840?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14767" + ], + "x-ms-request-id": [ + "7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + ], + "x-ms-correlation-request-id": [ + "7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T210912Z:7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:09:12 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7840?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840\",\r\n \"name\": \"onesdk7840\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "83be6208-ceda-43d1-ae0b-da973174d031" + ], + "x-ms-correlation-request-id": [ + "83be6208-ceda-43d1-ae0b-da973174d031" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T210913Z:83be6208-ceda-43d1-ae0b-da973174d031" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:09:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4NDAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/providers/Microsoft.Logic/workflows/onesdk6678\",\r\n \"name\": \"onesdk6678\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "220" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], + "x-ms-request-id": [ + "79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + ], + "x-ms-correlation-request-id": [ + "79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T210913Z:79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:09:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/providers/Microsoft.Web/serverfarms/B9F87338CAE4470F9116F3D685365748?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvQjlGODczMzhDQUU0NDcwRjkxMTZGM0Q2ODUzNjU3NDg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4dfa667-d294-4809-b024-399852592049" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/serverFarms/B9F87338CAE4470F9116F3D685365748' under resource group 'onesdk7840' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "defdda90-6e0c-4d89-a182-fa385d4dc58f" + ], + "x-ms-correlation-request-id": [ + "defdda90-6e0c-4d89-a182-fa385d4dc58f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T210914Z:defdda90-6e0c-4d89-a182-fa385d4dc58f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:09:13 GMT" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "Test-CreateLogicAppWithNonExistingAppServicePlan": [ + "onesdk7840", + "onesdk3648" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestGetLogicAppWithWorkflowName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestGetLogicAppWithWorkflowName.json deleted file mode 100644 index d52b19c066b4..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestGetLogicAppWithWorkflowName.json +++ /dev/null @@ -1,337 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9650?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk2NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-request-id": [ - "992ab7d4-8e89-4674-9eee-b0f62baae4ea" - ], - "x-ms-correlation-request-id": [ - "992ab7d4-8e89-4674-9eee-b0f62baae4ea" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010815Z:992ab7d4-8e89-4674-9eee-b0f62baae4ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:08:15 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9650?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk2NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650\",\r\n \"name\": \"onesdk9650\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "ec9b230f-f14e-4280-b850-aeb237d73b56" - ], - "x-ms-correlation-request-id": [ - "ec9b230f-f14e-4280-b850-aeb237d73b56" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010816Z:ec9b230f-f14e-4280-b850-aeb237d73b56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:08:16 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-request-id": [ - "cb63a512-f6b0-4308-9690-2d6b3ed12ccf" - ], - "x-ms-correlation-request-id": [ - "cb63a512-f6b0-4308-9690-2d6b3ed12ccf" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010817Z:cb63a512-f6b0-4308-9690-2d6b3ed12ccf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:08:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODEzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c54e57a1-8d15-4b75-a1c2-51c392d6465e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8139' under resource group 'onesdk9650' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "b6d6777c-0f44-467a-9a4a-aa821b011ba4" - ], - "x-ms-correlation-request-id": [ - "b6d6777c-0f44-467a-9a4a-aa821b011ba4" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010817Z:b6d6777c-0f44-467a-9a4a-aa821b011ba4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:08:16 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODEzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f335b27d-fb35-4352-9cda-8f9600a79ebf" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:08:19.7334894Z\",\r\n \"changedTime\": \"2015-12-24T01:08:19.7338377Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506875859810724\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139\",\r\n \"name\": \"onesdk8139\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1355" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:0cd700d9-63e2-4cea-86a7-8421a14a8ab8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "c7bd36aa-b417-47e7-87ef-5a492a4b865e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010820Z:c7bd36aa-b417-47e7-87ef-5a492a4b865e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:08:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk2NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODEzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1179" - ], - "x-ms-client-request-id": [ - "d398da47-5be4-4ce6-a82a-8c203a3379f6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:08:19.7334894Z\",\r\n \"changedTime\": \"2015-12-24T01:08:19.7334894Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506875859810724\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9650/providers/Microsoft.Logic/workflows/onesdk8139\",\r\n \"name\": \"onesdk8139\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1355" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:0d256395-d117-457a-9f64-7e675041ed70" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "d2b4ee8b-46ef-4843-adf1-dba865a0f278" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010820Z:d2b4ee8b-46ef-4843-adf1-dba865a0f278" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:08:19 GMT" - ] - }, - "StatusCode": 201 - } - ], - "Names": { - "Test-GetLogicAppWithWorkflowName": [ - "onesdk9650", - "onesdk8139" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json deleted file mode 100644 index 5a57f24333f5..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionFilePath.json +++ /dev/null @@ -1,280 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2093?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-request-id": [ - "bfc67188-5284-423b-8e99-8c15e35eb1a2" - ], - "x-ms-correlation-request-id": [ - "bfc67188-5284-423b-8e99-8c15e35eb1a2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010457Z:bfc67188-5284-423b-8e99-8c15e35eb1a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:04:56 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2093?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIwOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093\",\r\n \"name\": \"onesdk2093\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "4c03f3c5-1bcd-4680-b72b-1e144b89cad1" - ], - "x-ms-correlation-request-id": [ - "4c03f3c5-1bcd-4680-b72b-1e144b89cad1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010458Z:4c03f3c5-1bcd-4680-b72b-1e144b89cad1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:04:57 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwOTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-request-id": [ - "ffb3e0d2-0709-48d5-924d-1545ace36523" - ], - "x-ms-correlation-request-id": [ - "ffb3e0d2-0709-48d5-924d-1545ace36523" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010458Z:ffb3e0d2-0709-48d5-924d-1545ace36523" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:04:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/providers/Microsoft.Logic/workflows/onesdk7463?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzQ2Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3eeb7cbb-dcae-4422-a247-bbecf3c2fee1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7463' under resource group 'onesdk2093' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "51ecf681-9edc-4984-897c-71e7f9e0c4fe" - ], - "x-ms-correlation-request-id": [ - "51ecf681-9edc-4984-897c-71e7f9e0c4fe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010458Z:51ecf681-9edc-4984-897c-71e7f9e0c4fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:04:58 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/providers/Microsoft.Logic/workflows/onesdk7463?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzQ2Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1179" - ], - "x-ms-client-request-id": [ - "f88f8a68-4b94-47a3-bd5b-6abb413ebd46" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:04:59.9827206Z\",\r\n \"changedTime\": \"2015-12-24T01:04:59.9827206Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506877856285568\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2093/providers/Microsoft.Logic/workflows/onesdk7463\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2093/providers/Microsoft.Logic/workflows/onesdk7463\",\r\n \"name\": \"onesdk7463\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1355" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:1400570a-0b09-4c60-ae72-2e124930b21e" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "d926e9ad-5ca8-4191-a7e3-c72974e7b108" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010500Z:d926e9ad-5ca8-4191-a7e3-c72974e7b108" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:05:00 GMT" - ] - }, - "StatusCode": 201 - } - ], - "Names": { - "Test-NewLogicAppUsingDefinitionFilePath": [ - "onesdk2093", - "onesdk7463" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json deleted file mode 100644 index eacaf348242f..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObject.json +++ /dev/null @@ -1,280 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4810?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" - ], - "x-ms-request-id": [ - "c0883159-c16f-4bbd-afbd-fe4b0790bd0b" - ], - "x-ms-correlation-request-id": [ - "c0883159-c16f-4bbd-afbd-fe4b0790bd0b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011042Z:c0883159-c16f-4bbd-afbd-fe4b0790bd0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:10:41 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4810?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ4MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810\",\r\n \"name\": \"onesdk4810\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "170f451a-710f-40a5-b293-357db1407fe4" - ], - "x-ms-correlation-request-id": [ - "170f451a-710f-40a5-b293-357db1407fe4" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011044Z:170f451a-710f-40a5-b293-357db1407fe4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:10:43 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4MTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" - ], - "x-ms-request-id": [ - "fe5f4ea7-2a2e-4726-8879-0cc04e0a198b" - ], - "x-ms-correlation-request-id": [ - "fe5f4ea7-2a2e-4726-8879-0cc04e0a198b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011044Z:fe5f4ea7-2a2e-4726-8879-0cc04e0a198b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:10:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/providers/Microsoft.Logic/workflows/onesdk9590?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTU5MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "146a6fd8-73dd-4363-b635-83813128f94e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9590' under resource group 'onesdk4810' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "1b67a7ba-cd3e-407c-8c4a-e7335f022eda" - ], - "x-ms-correlation-request-id": [ - "1b67a7ba-cd3e-407c-8c4a-e7335f022eda" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011044Z:1b67a7ba-cd3e-407c-8c4a-e7335f022eda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:10:44 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/providers/Microsoft.Logic/workflows/onesdk9590?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ4MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTU5MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1179" - ], - "x-ms-client-request-id": [ - "4469cbff-75de-4c3b-9ced-7b06f5b45790" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:10:46.7241291Z\",\r\n \"changedTime\": \"2015-12-24T01:10:46.7241291Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506874389584890\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4810/providers/Microsoft.Logic/workflows/onesdk9590\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4810/providers/Microsoft.Logic/workflows/onesdk9590\",\r\n \"name\": \"onesdk9590\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1355" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:4354245b-9f4c-43d3-817d-d3556d5e51ee" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "a041999e-d6ad-404d-9046-7897f27989f7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011047Z:a041999e-d6ad-404d-9046-7897f27989f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:10:47 GMT" - ] - }, - "StatusCode": 201 - } - ], - "Names": { - "Test-NewLogicAppUsingDefinitionObject": [ - "onesdk4810", - "onesdk9590" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json deleted file mode 100644 index da44097826ee..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionObjectAndParameterFile.json +++ /dev/null @@ -1,280 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9524?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk1MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-request-id": [ - "941111ad-cf57-41d1-9107-699469c2490a" - ], - "x-ms-correlation-request-id": [ - "941111ad-cf57-41d1-9107-699469c2490a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011013Z:941111ad-cf57-41d1-9107-699469c2490a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:10:13 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9524?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk1MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524\",\r\n \"name\": \"onesdk9524\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "182eccb3-6145-41e2-a1c7-2f9188e0f096" - ], - "x-ms-correlation-request-id": [ - "182eccb3-6145-41e2-a1c7-2f9188e0f096" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011014Z:182eccb3-6145-41e2-a1c7-2f9188e0f096" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:10:14 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1MjQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-request-id": [ - "adf0a31a-bf91-417f-9990-68de1dc5aaf6" - ], - "x-ms-correlation-request-id": [ - "adf0a31a-bf91-417f-9990-68de1dc5aaf6" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011014Z:adf0a31a-bf91-417f-9990-68de1dc5aaf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:10:14 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/providers/Microsoft.Logic/workflows/onesdk104?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTA0P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6bd816d3-e673-4160-985b-e7255f123091" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk104' under resource group 'onesdk9524' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "149" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "6ee2a9ef-f929-406c-83d0-4ec09d52994e" - ], - "x-ms-correlation-request-id": [ - "6ee2a9ef-f929-406c-83d0-4ec09d52994e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011015Z:6ee2a9ef-f929-406c-83d0-4ec09d52994e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:10:14 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/providers/Microsoft.Logic/workflows/onesdk104?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk1MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTA0P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1179" - ], - "x-ms-client-request-id": [ - "5f0acde7-a3cf-4b4c-8899-beeaa17e803a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:10:16.3929169Z\",\r\n \"changedTime\": \"2015-12-24T01:10:16.3929169Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506874691628523\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9524/providers/Microsoft.Logic/workflows/onesdk104\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9524/providers/Microsoft.Logic/workflows/onesdk104\",\r\n \"name\": \"onesdk104\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1352" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:6b6f8670-1328-4919-a629-75a047ce040c" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "0773fef8-9bd3-4968-8d23-26e4b79e9c99" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011017Z:0773fef8-9bd3-4968-8d23-26e4b79e9c99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:10:16 GMT" - ] - }, - "StatusCode": 201 - } - ], - "Names": { - "Test-NewLogicAppUsingDefinitionObjectAndParameterFile": [ - "onesdk9524", - "onesdk104" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json deleted file mode 100644 index bec01e601c08..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithActions.json +++ /dev/null @@ -1,281 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3438?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0Mzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-request-id": [ - "ed3366d2-beb6-4775-90f1-4c0374d15383" - ], - "x-ms-correlation-request-id": [ - "ed3366d2-beb6-4775-90f1-4c0374d15383" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010944Z:ed3366d2-beb6-4775-90f1-4c0374d15383" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:09:44 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3438?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0Mzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438\",\r\n \"name\": \"onesdk3438\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "a4f4232d-fd6c-466e-9aa8-1eb21cac5b32" - ], - "x-ms-correlation-request-id": [ - "a4f4232d-fd6c-466e-9aa8-1eb21cac5b32" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010945Z:a4f4232d-fd6c-466e-9aa8-1eb21cac5b32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:09:45 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0MzgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-request-id": [ - "78dd3b44-eda0-44d3-a415-033ddaed0b74" - ], - "x-ms-correlation-request-id": [ - "78dd3b44-eda0-44d3-a415-033ddaed0b74" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010945Z:78dd3b44-eda0-44d3-a415-033ddaed0b74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:09:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/providers/Microsoft.Logic/workflows/onesdk1457?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTQ1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "78222d89-238c-4ad4-81dc-d947c96eea54" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1457' under resource group 'onesdk3438' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "3d621317-21e9-4a55-bf2c-43e5104d4e3c" - ], - "x-ms-correlation-request-id": [ - "3d621317-21e9-4a55-bf2c-43e5104d4e3c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010946Z:3d621317-21e9-4a55-bf2c-43e5104d4e3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:09:45 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/providers/Microsoft.Logic/workflows/onesdk1457?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0MzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTQ1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1627" - ], - "x-ms-client-request-id": [ - "b1506fa2-f5e6-4f3e-9579-4740d0ff3f6a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:09:47.4143844Z\",\r\n \"changedTime\": \"2015-12-24T01:09:47.4143844Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506874982052346\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3438/providers/Microsoft.Logic/workflows/onesdk1457\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3438/providers/Microsoft.Logic/workflows/onesdk1457\",\r\n \"name\": \"onesdk1457\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1679" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:fa53fc73-e697-4a2a-8c00-4d382b00f0e9" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "b8f289af-b283-47f0-92ba-e9977f15684c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010948Z:b8f289af-b283-47f0-92ba-e9977f15684c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:09:47 GMT" - ] - }, - "StatusCode": 201 - } - ], - "Names": { - "Test-NewLogicAppUsingDefinitionWithActions": [ - "onesdk3863", - "onesdk3438", - "onesdk1457" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json deleted file mode 100644 index 02c9e5247448..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingDefinitionWithTriggers.json +++ /dev/null @@ -1,281 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8995?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-request-id": [ - "521daf0e-6048-46b8-8804-0615e698a8c8" - ], - "x-ms-correlation-request-id": [ - "521daf0e-6048-46b8-8804-0615e698a8c8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010621Z:521daf0e-6048-46b8-8804-0615e698a8c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:06:21 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8995?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995\",\r\n \"name\": \"onesdk8995\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "0bc07003-f4de-400e-9ab1-2ea6b469f142" - ], - "x-ms-correlation-request-id": [ - "0bc07003-f4de-400e-9ab1-2ea6b469f142" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010622Z:0bc07003-f4de-400e-9ab1-2ea6b469f142" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:06:22 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5OTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-request-id": [ - "9d8bb0c5-a718-4563-827c-ae221756e8ac" - ], - "x-ms-correlation-request-id": [ - "9d8bb0c5-a718-4563-827c-ae221756e8ac" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010622Z:9d8bb0c5-a718-4563-827c-ae221756e8ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:06:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/providers/Microsoft.Logic/workflows/onesdk2364?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjM2ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2384fcbb-aa87-45cd-b9c1-194f14e0b08b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk2364' under resource group 'onesdk8995' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "16d7296b-0ead-43a8-a954-37bd4ce4429a" - ], - "x-ms-correlation-request-id": [ - "16d7296b-0ead-43a8-a954-37bd4ce4429a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010622Z:16d7296b-0ead-43a8-a954-37bd4ce4429a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:06:21 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/providers/Microsoft.Logic/workflows/onesdk2364?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjM2ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "980" - ], - "x-ms-client-request-id": [ - "3b50fb5e-f3d9-416b-aa73-f8bb2e751f55" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:06:24.3782567Z\",\r\n \"changedTime\": \"2015-12-24T01:06:24.3782567Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506877013341075\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8995/providers/Microsoft.Logic/workflows/onesdk2364\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8995/providers/Microsoft.Logic/workflows/onesdk2364\",\r\n \"name\": \"onesdk2364\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1233" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:bda051e8-5af6-4148-90a3-9781a423ad38" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "555519d5-7e33-47fa-b83c-e0df562d8f5f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010624Z:555519d5-7e33-47fa-b83c-e0df562d8f5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:06:23 GMT" - ] - }, - "StatusCode": 201 - } - ], - "Names": { - "Test-NewLogicAppUsingDefinitionWithTriggers": [ - "onesdk4020", - "onesdk8995", - "onesdk2364" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json deleted file mode 100644 index ab663edc35f0..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingInputParameterAsHashTable.json +++ /dev/null @@ -1,281 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-request-id": [ - "b48a91b4-efa9-4471-a19b-b55698e6605a" - ], - "x-ms-correlation-request-id": [ - "b48a91b4-efa9-4471-a19b-b55698e6605a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010746Z:b48a91b4-efa9-4471-a19b-b55698e6605a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:46 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801\",\r\n \"name\": \"onesdk1801\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "99235574-72ce-45ee-b010-5ce04d9d65b1" - ], - "x-ms-correlation-request-id": [ - "99235574-72ce-45ee-b010-5ce04d9d65b1" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010748Z:99235574-72ce-45ee-b010-5ce04d9d65b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:47 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-request-id": [ - "e466172a-57e4-4b59-8975-20e6e30ddc98" - ], - "x-ms-correlation-request-id": [ - "e466172a-57e4-4b59-8975-20e6e30ddc98" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010748Z:e466172a-57e4-4b59-8975-20e6e30ddc98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk8889?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODg4OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5e1d9294-f5a9-4344-ba19-2c595f85abed" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8889' under resource group 'onesdk1801' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "ebd89158-08ab-4fb3-a432-ccba09d68f61" - ], - "x-ms-correlation-request-id": [ - "ebd89158-08ab-4fb3-a432-ccba09d68f61" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010748Z:ebd89158-08ab-4fb3-a432-ccba09d68f61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:48 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk8889?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODg4OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1179" - ], - "x-ms-client-request-id": [ - "dce4551f-efbb-49ec-a5ec-505f7a9c9880" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:07:49.555997Z\",\r\n \"changedTime\": \"2015-12-24T01:07:49.555997Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506876162267003\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk8889\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk8889\",\r\n \"name\": \"onesdk8889\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1353" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:8e4c2081-ef54-48fa-8802-b784d6dfff1b" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "694c4b0a-e440-4055-a561-79b71ba7f8bb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010750Z:694c4b0a-e440-4055-a561-79b71ba7f8bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:49 GMT" - ] - }, - "StatusCode": 201 - } - ], - "Names": { - "Test-NewLogicAppUsingInputParameterAsHashTable": [ - "onesdk7119", - "onesdk1801", - "onesdk8889" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json deleted file mode 100644 index 33f61d25cfa7..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingResourcegroupPipeline.json +++ /dev/null @@ -1,280 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9808?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "86faa4f6-5af9-4e49-b39d-ca66eedd2c1f" - ], - "x-ms-correlation-request-id": [ - "86faa4f6-5af9-4e49-b39d-ca66eedd2c1f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010844Z:86faa4f6-5af9-4e49-b39d-ca66eedd2c1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:08:43 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9808?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808\",\r\n \"name\": \"onesdk9808\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "39d3c79f-2ac2-495f-a0b0-1c985064f2ad" - ], - "x-ms-correlation-request-id": [ - "39d3c79f-2ac2-495f-a0b0-1c985064f2ad" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010845Z:39d3c79f-2ac2-495f-a0b0-1c985064f2ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:08:44 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4MDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-request-id": [ - "b4c1e426-655e-42b4-a959-7d40815052f4" - ], - "x-ms-correlation-request-id": [ - "b4c1e426-655e-42b4-a959-7d40815052f4" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010845Z:b4c1e426-655e-42b4-a959-7d40815052f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:08:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/providers/Microsoft.Logic/workflows/onesdk8402?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODQwMj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "71da4cd7-3f06-4f79-83fb-78ca8fa769da" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8402' under resource group 'onesdk9808' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "e8081e1d-9b43-42f5-9e24-9ef0f0773c51" - ], - "x-ms-correlation-request-id": [ - "e8081e1d-9b43-42f5-9e24-9ef0f0773c51" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010846Z:e8081e1d-9b43-42f5-9e24-9ef0f0773c51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:08:45 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/providers/Microsoft.Logic/workflows/onesdk8402?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk4MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODQwMj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1179" - ], - "x-ms-client-request-id": [ - "62176869-10b6-466c-9162-3b3dc8d17a2a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:08:47.1480787Z\",\r\n \"changedTime\": \"2015-12-24T01:08:47.1480787Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506875583582315\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9808/providers/Microsoft.Logic/workflows/onesdk8402\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9808/providers/Microsoft.Logic/workflows/onesdk8402\",\r\n \"name\": \"onesdk8402\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1355" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:82fa83ce-650c-4bc1-b80a-3678e8e93c35" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "75c5669f-29ba-4c75-8ef8-c32da7c5e0ff" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010847Z:75c5669f-29ba-4c75-8ef8-c32da7c5e0ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:08:46 GMT" - ] - }, - "StatusCode": 201 - } - ], - "Names": { - "Test-NewLogicAppUsingResourcegroupPipeline": [ - "onesdk9808", - "onesdk8402" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json deleted file mode 100644 index c134e8962790..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppUsingSkuPipeline.json +++ /dev/null @@ -1,280 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7180?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazcxODA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" - ], - "x-ms-request-id": [ - "08ca61fe-8fee-4aca-b8ab-08be4f3d0a5b" - ], - "x-ms-correlation-request-id": [ - "08ca61fe-8fee-4aca-b8ab-08be4f3d0a5b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011112Z:08ca61fe-8fee-4aca-b8ab-08be4f3d0a5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:11:11 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7180?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazcxODA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180\",\r\n \"name\": \"onesdk7180\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "ba06211b-4fc8-4ecb-b3b4-56919a1bfcc4" - ], - "x-ms-correlation-request-id": [ - "ba06211b-4fc8-4ecb-b3b4-56919a1bfcc4" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011113Z:ba06211b-4fc8-4ecb-b3b4-56919a1bfcc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:11:12 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxODAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" - ], - "x-ms-request-id": [ - "38175c2d-e2db-41c0-bdb4-31df4b54f734" - ], - "x-ms-correlation-request-id": [ - "38175c2d-e2db-41c0-bdb4-31df4b54f734" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011113Z:38175c2d-e2db-41c0-bdb4-31df4b54f734" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:11:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/providers/Microsoft.Logic/workflows/onesdk3339?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxODAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzMzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "43560a21-f2b3-4d33-8658-8a10de58557d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk3339' under resource group 'onesdk7180' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "48217cbc-c988-4cc0-9f51-f6c5b9299b20" - ], - "x-ms-correlation-request-id": [ - "48217cbc-c988-4cc0-9f51-f6c5b9299b20" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011114Z:48217cbc-c988-4cc0-9f51-f6c5b9299b20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:11:13 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/providers/Microsoft.Logic/workflows/onesdk3339?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxODAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzMzOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1179" - ], - "x-ms-client-request-id": [ - "60749195-331a-4775-9f0d-586f572e3adc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:11:15.4238137Z\",\r\n \"changedTime\": \"2015-12-24T01:11:15.4238137Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506874101687780\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7180/providers/Microsoft.Logic/workflows/onesdk3339\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7180/providers/Microsoft.Logic/workflows/onesdk3339\",\r\n \"name\": \"onesdk3339\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1355" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:ff48057d-d058-40f8-80a4-fa8511d5f653" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "f1841844-193c-4507-98b6-b7d40f20d879" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T011116Z:f1841844-193c-4507-98b6-b7d40f20d879" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:11:15 GMT" - ] - }, - "StatusCode": 201 - } - ], - "Names": { - "Test-NewLogicAppUsingSkuPipeline": [ - "onesdk7180", - "onesdk3339" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithDuplicateName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithDuplicateName.json deleted file mode 100644 index f18ec85890f7..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithDuplicateName.json +++ /dev/null @@ -1,337 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5701?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU3MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "ef8a85e6-92d1-4e89-bba8-222cadb9dc90" - ], - "x-ms-correlation-request-id": [ - "ef8a85e6-92d1-4e89-bba8-222cadb9dc90" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151228T203916Z:ef8a85e6-92d1-4e89-bba8-222cadb9dc90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:39:15 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5701?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU3MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701\",\r\n \"name\": \"onesdk5701\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "9a910827-be6b-4bc8-bb64-b94d5ca015f9" - ], - "x-ms-correlation-request-id": [ - "9a910827-be6b-4bc8-bb64-b94d5ca015f9" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151228T203917Z:9a910827-be6b-4bc8-bb64-b94d5ca015f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:39:16 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU3MDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "aa446167-9560-4558-8f65-d1b4c9419738" - ], - "x-ms-correlation-request-id": [ - "aa446167-9560-4558-8f65-d1b4c9419738" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151228T203917Z:aa446167-9560-4558-8f65-d1b4c9419738" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:39:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjU3P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dd02df3c-7b1a-4ad1-804d-0f0600fcdc91" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk657' under resource group 'onesdk5701' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "149" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "9efc44fd-ea5e-4b3b-8104-7e488a3aa303" - ], - "x-ms-correlation-request-id": [ - "9efc44fd-ea5e-4b3b-8104-7e488a3aa303" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151228T203918Z:9efc44fd-ea5e-4b3b-8104-7e488a3aa303" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:39:17 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjU3P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0b8cc3d8-42f0-4992-8027-4b128f3d8bc1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-28T20:39:20.8932887Z\",\r\n \"changedTime\": \"2015-12-28T20:39:20.8935419Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587502717248854444\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657\",\r\n \"name\": \"onesdk657\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1352" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:f923c19f-dfe3-43e9-bcd3-b61bca40677a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "c335f720-f727-4ae0-92b0-e339be851d03" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151228T203921Z:c335f720-f727-4ae0-92b0-e339be851d03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:39:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjU3P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1179" - ], - "x-ms-client-request-id": [ - "ea4ae278-d0fb-4ac9-92c2-fb6f59d0a2c3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-28T20:39:20.8932887Z\",\r\n \"changedTime\": \"2015-12-28T20:39:20.8932887Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587502717248854444\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5701/providers/Microsoft.Logic/workflows/onesdk657\",\r\n \"name\": \"onesdk657\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1352" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:8599ef5c-581c-4801-9b2b-624b26abc9f0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "960e02a3-9bab-4d09-acec-26488ac38d3b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151228T203921Z:960e02a3-9bab-4d09-acec-26488ac38d3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:39:20 GMT" - ] - }, - "StatusCode": 201 - } - ], - "Names": { - "Test-NewLogicAppWithDuplicateName": [ - "onesdk5701", - "onesdk657" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json deleted file mode 100644 index 1e738705637a..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestNewLogicAppWithPlanId.json +++ /dev/null @@ -1,280 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2657?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI2NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "x-ms-request-id": [ - "bf051a11-a299-42f6-8853-57b1e1f8c2b1" - ], - "x-ms-correlation-request-id": [ - "bf051a11-a299-42f6-8853-57b1e1f8c2b1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010649Z:bf051a11-a299-42f6-8853-57b1e1f8c2b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:06:48 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2657?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI2NTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657\",\r\n \"name\": \"onesdk2657\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "c99072ab-05e9-405a-9079-5214a164e929" - ], - "x-ms-correlation-request-id": [ - "c99072ab-05e9-405a-9079-5214a164e929" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010649Z:c99072ab-05e9-405a-9079-5214a164e929" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:06:49 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI2NTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-request-id": [ - "b577f9da-c41c-4510-a82d-dd72146b22fe" - ], - "x-ms-correlation-request-id": [ - "b577f9da-c41c-4510-a82d-dd72146b22fe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010649Z:b577f9da-c41c-4510-a82d-dd72146b22fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:06:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/providers/Microsoft.Logic/workflows/onesdk1656?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTY1Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d661991f-a286-4e7d-a86d-42e6318e5b9c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1656' under resource group 'onesdk2657' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "4706343b-33e6-435f-8646-004143a89bca" - ], - "x-ms-correlation-request-id": [ - "4706343b-33e6-435f-8646-004143a89bca" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010650Z:4706343b-33e6-435f-8646-004143a89bca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:06:49 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/providers/Microsoft.Logic/workflows/onesdk1656?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI2NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTY1Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1179" - ], - "x-ms-client-request-id": [ - "501a3cb7-7898-479d-90f2-ad2b27b28179" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:06:51.5127017Z\",\r\n \"changedTime\": \"2015-12-24T01:06:51.5127017Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506876740654184\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2657/providers/Microsoft.Logic/workflows/onesdk1656\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2657/providers/Microsoft.Logic/workflows/onesdk1656\",\r\n \"name\": \"onesdk1656\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1355" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:f5a4a1e1-5b61-48f2-b21a-67711c0f9722" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "cee4368b-983a-40f4-a183-0e4a1217b63f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151224T010652Z:cee4368b-983a-40f4-a183-0e4a1217b63f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:06:52 GMT" - ] - }, - "StatusCode": 201 - } - ], - "Names": { - "Test-NewLogicAppWithPlanId": [ - "onesdk2657", - "onesdk1656" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithWorkflowName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithWorkflowName.json deleted file mode 100644 index 45ced2dcc664..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithWorkflowName.json +++ /dev/null @@ -1,385 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1972?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-request-id": [ - "78081684-32bc-4049-91e7-b7775b2292ea" - ], - "x-ms-correlation-request-id": [ - "78081684-32bc-4049-91e7-b7775b2292ea" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010716Z:78081684-32bc-4049-91e7-b7775b2292ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:16 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1972?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE5NzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972\",\r\n \"name\": \"onesdk1972\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "599e147d-6cb1-4306-a3ae-722ef4511b6c" - ], - "x-ms-correlation-request-id": [ - "599e147d-6cb1-4306-a3ae-722ef4511b6c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010717Z:599e147d-6cb1-4306-a3ae-722ef4511b6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:17 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NzIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-request-id": [ - "0081f8dc-7f65-4ebf-89be-3c91e1cfe3fa" - ], - "x-ms-correlation-request-id": [ - "0081f8dc-7f65-4ebf-89be-3c91e1cfe3fa" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010718Z:0081f8dc-7f65-4ebf-89be-3c91e1cfe3fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:17 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDg1MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "39881ff9-3cfe-4893-840f-2c263176b872" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4850' under resource group 'onesdk1972' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "2a292a01-4f7f-4594-a39d-8c1d32b3cf1d" - ], - "x-ms-correlation-request-id": [ - "2a292a01-4f7f-4594-a39d-8c1d32b3cf1d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010718Z:2a292a01-4f7f-4594-a39d-8c1d32b3cf1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:17 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDg1MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6afcdb99-3dc8-4ee7-94df-487532ffbda1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4850' under resource group 'onesdk1972' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "4e6f7308-8bd8-4933-ae8e-af014f15fff0" - ], - "x-ms-correlation-request-id": [ - "4e6f7308-8bd8-4933-ae8e-af014f15fff0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010722Z:4e6f7308-8bd8-4933-ae8e-af014f15fff0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:22 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDg1MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1179" - ], - "x-ms-client-request-id": [ - "22c8005c-6c89-48eb-9c4c-416a67b123e4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:07:20.4877515Z\",\r\n \"changedTime\": \"2015-12-24T01:07:20.4877515Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506876454632098\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850\",\r\n \"name\": \"onesdk4850\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1355" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:d9292c5c-ceb8-4306-a9e4-73b975725973" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "1b53aedf-b9ac-46ea-a282-5d1d2d940fa2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010721Z:1b53aedf-b9ac-46ea-a282-5d1d2d940fa2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:21 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1972/providers/Microsoft.Logic/workflows/onesdk4850?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE5NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDg1MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9ba88efa-47a9-40fb-b82b-a3d978020622" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:a8a68510-a9e8-487c-a2e8-85a89ffa4ca8" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "cb2c4ac9-087b-46a3-ab7b-f6af84f3a28a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151224T010722Z:cb2c4ac9-087b-46a3-ab7b-f6af84f3a28a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 24 Dec 2015 01:07:22 GMT" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "Test-RemoveLogicAppWithWorkflowName": [ - "onesdk1972", - "onesdk4850" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithInvalidWorkflowName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json similarity index 71% rename from src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithInvalidWorkflowName.json rename to src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json index 8d96a3d62980..6453d46253fb 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveLogicAppWithInvalidWorkflowName.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4190?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQxOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3945?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14818" ], "x-ms-request-id": [ - "56ad5ce2-efc9-4baa-80c4-f23605a3a81b" + "cc157b83-8ddc-420d-b47e-9a994cafe76c" ], "x-ms-correlation-request-id": [ - "56ad5ce2-efc9-4baa-80c4-f23605a3a81b" + "cc157b83-8ddc-420d-b47e-9a994cafe76c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151224T012038Z:56ad5ce2-efc9-4baa-80c4-f23605a3a81b" + "CENTRALUS:20160126T210959Z:cc157b83-8ddc-420d-b47e-9a994cafe76c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:20:37 GMT" + "Tue, 26 Jan 2016 21:09:58 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4190?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQxOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3945?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4190\",\r\n \"name\": \"onesdk4190\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945\",\r\n \"name\": \"onesdk3945\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-request-id": [ - "2c0bd8df-7a7b-49e8-a920-7a515a504731" + "93004c09-d787-4470-a1fd-4e8b4e2bcd90" ], "x-ms-correlation-request-id": [ - "2c0bd8df-7a7b-49e8-a920-7a515a504731" + "93004c09-d787-4470-a1fd-4e8b4e2bcd90" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151224T012039Z:2c0bd8df-7a7b-49e8-a920-7a515a504731" + "CENTRALUS:20160126T211001Z:93004c09-d787-4470-a1fd-4e8b4e2bcd90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:20:38 GMT" + "Tue, 26 Jan 2016 21:10:00 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4190/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQxOTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NDUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14825" ], "x-ms-request-id": [ - "d2749093-7934-4b7e-b4bd-5efb17341ad1" + "9ca74747-5dfb-4a4e-af39-022f445491d8" ], "x-ms-correlation-request-id": [ - "d2749093-7934-4b7e-b4bd-5efb17341ad1" + "9ca74747-5dfb-4a4e-af39-022f445491d8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151224T012039Z:d2749093-7934-4b7e-b4bd-5efb17341ad1" + "CENTRALUS:20160126T211001Z:9ca74747-5dfb-4a4e-af39-022f445491d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:20:38 GMT" + "Tue, 26 Jan 2016 21:10:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4190/providers/Microsoft.Logic/workflows/09e81ac4-848a-428d-82a6-7d61953e3940?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvMDllODFhYzQtODQ4YS00MjhkLTgyYTYtN2Q2MTk1M2UzOTQwP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945/providers/Microsoft.Logic/workflows/09e81ac4-848a-428d-82a6-7d61953e3940?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvMDllODFhYzQtODQ4YS00MjhkLTgyYTYtN2Q2MTk1M2UzOTQwP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22df948d-f826-4b0e-ad1a-13a13001eb41" + "6c14d7fc-243a-4695-8182-71cb73dada38" ], "accept-language": [ "en-US" @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "36b12f33-d1fc-4df6-ad61-23fec060a48f" + "64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" ], "x-ms-correlation-request-id": [ - "36b12f33-d1fc-4df6-ad61-23fec060a48f" + "64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151224T012040Z:36b12f33-d1fc-4df6-ad61-23fec060a48f" + "CENTRALUS:20160126T211001Z:64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,15 +196,15 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:20:40 GMT" + "Tue, 26 Jan 2016 21:10:01 GMT" ] }, "StatusCode": 204 } ], "Names": { - "Test-RemoveLogicAppWithInvalidWorkflowName": [ - "onesdk4190" + "Test-RemoveNonExistingLogicApp": [ + "onesdk3945" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json index d96ec142cd51..57b9347447c7 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3694?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2OTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14920" ], "x-ms-request-id": [ - "f33f6588-aa37-41c1-ac4c-9a0c16875137" + "63cb408e-8509-45e2-89d1-f87d20986a6a" ], "x-ms-correlation-request-id": [ - "f33f6588-aa37-41c1-ac4c-9a0c16875137" + "63cb408e-8509-45e2-89d1-f87d20986a6a" ], "x-ms-routing-request-id": [ - "WESTUS:20151224T010526Z:f33f6588-aa37-41c1-ac4c-9a0c16875137" + "CENTRALUS:20160126T211707Z:63cb408e-8509-45e2-89d1-f87d20986a6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:05:25 GMT" + "Tue, 26 Jan 2016 21:17:06 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3694?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM2OTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694\",\r\n \"name\": \"onesdk3694\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523\",\r\n \"name\": \"onesdk8523\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "2a1e8e04-2bcf-4f94-ba72-3ad7718989d9" + "155504be-b562-4e24-8949-1f2cb2fda8df" ], "x-ms-correlation-request-id": [ - "2a1e8e04-2bcf-4f94-ba72-3ad7718989d9" + "155504be-b562-4e24-8949-1f2cb2fda8df" ], "x-ms-routing-request-id": [ - "WESTUS:20151224T010527Z:2a1e8e04-2bcf-4f94-ba72-3ad7718989d9" + "CENTRALUS:20160126T211708Z:155504be-b562-4e24-8949-1f2cb2fda8df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:05:26 GMT" + "Tue, 26 Jan 2016 21:17:07 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14919" ], "x-ms-request-id": [ - "ab15cbaa-87fd-47ff-ac8d-d3811961d375" + "68f52c40-c063-4c86-b25e-a58191ecc93b" ], "x-ms-correlation-request-id": [ - "ab15cbaa-87fd-47ff-ac8d-d3811961d375" + "68f52c40-c063-4c86-b25e-a58191ecc93b" ], "x-ms-routing-request-id": [ - "WESTUS:20151224T010527Z:ab15cbaa-87fd-47ff-ac8d-d3811961d375" + "CENTRALUS:20160126T211708Z:68f52c40-c063-4c86-b25e-a58191ecc93b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,85 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:05:26 GMT" + "Tue, 26 Jan 2016 21:17:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTM0ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "082fe55f-db06-40dc-964f-743b0b9de918" + "606fbf1e-a359-4115-a8b3-6b65ae04f008" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk8523-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk8523\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "43d513b7-4fbd-4539-9de0-4c2801fcd5f4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14833" + ], + "x-ms-correlation-request-id": [ + "1d82f763-159e-479e-8b92-e2208a6f19a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211716Z:1d82f763-159e-479e-8b92-e2208a6f19a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:16 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9919dec1-c406-49f6-b094-fde2979616ca" ], "accept-language": [ "en-US" @@ -169,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1344' under resource group 'onesdk3694' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7924' under resource group 'onesdk8523' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -187,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "2b51fd0f-5252-403b-9dff-44fcb52d0d00" + "6a560abc-2acf-4a20-93b6-b39df09ace69" ], "x-ms-correlation-request-id": [ - "2b51fd0f-5252-403b-9dff-44fcb52d0d00" + "6a560abc-2acf-4a20-93b6-b39df09ace69" ], "x-ms-routing-request-id": [ - "WESTUS:20151224T010527Z:2b51fd0f-5252-403b-9dff-44fcb52d0d00" + "CENTRALUS:20160126T211716Z:6a560abc-2acf-4a20-93b6-b39df09ace69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -202,19 +268,76 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:05:27 GMT" + "Tue, 26 Jan 2016 21:17:16 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTM0ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0d80d4b-2bf8-462d-b160-f5b63aef8950" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:19.785631Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638459058822\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:42a9d0ba-88ae-4bc7-9a24-69cb2fa0f9a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "c1fe7538-a766-458f-886a-cd8d22380c27" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211720Z:c1fe7538-a766-458f-886a-cd8d22380c27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf727152-2390-478b-b58e-8c2ec9635276" + "b7509cbd-f463-476e-ac22-4980e5c38aef" ], "accept-language": [ "en-US" @@ -223,7 +346,64 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:05:28.7928185Z\",\r\n \"changedTime\": \"2015-12-24T01:05:28.7935536Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506877569412167\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"name\": \"onesdk1344\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:20.9319665Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587477638445865613\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:31cfdcc1-b6ea-41ee-81d6-c555b2ab3dc9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "fb5d9c8c-3fce-4a1e-9e17-5d119ea939ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211721Z:fb5d9c8c-3fce-4a1e-9e17-5d119ea939ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb0983af-7088-44f1-b74b-8e357373237b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:22.959016Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638425705705\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -241,16 +421,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:640e62a3-cc2a-473f-b45e-b235eb0cdadc" + "westus:dcca9529-ce41-4ce4-acfa-593ce170b1e5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14931" ], "x-ms-correlation-request-id": [ - "e5e43c65-b849-4e34-98a7-dcd0855ac07b" + "f70fcaed-2a6d-4f32-b285-60d3eeb72f68" ], "x-ms-routing-request-id": [ - "WESTUS:20151224T010529Z:e5e43c65-b849-4e34-98a7-dcd0855ac07b" + "CENTRALUS:20160126T211723Z:f70fcaed-2a6d-4f32-b285-60d3eeb72f68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,25 +439,82 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:05:28 GMT" + "Tue, 26 Jan 2016 21:17:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTM0ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3046264f-3231-4693-a2e1-7d99054256d1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:23.5983276Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638419204380\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4346b67b-0d8f-4860-87a0-77e2dc6c3bfe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "68d17e24-1810-4500-8001-4d51a9f9e586" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211724Z:68d17e24-1810-4500-8001-4d51a9f9e586" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1179" + "1180" ], "x-ms-client-request-id": [ - "43f5a650-4529-4624-8627-18cdc38a6dd5" + "c446bf2a-7dcc-4d2f-8527-fa922d15d1f4" ], "accept-language": [ "en-US" @@ -286,10 +523,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:05:28.7928185Z\",\r\n \"changedTime\": \"2015-12-24T01:05:28.7928185Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506877569412167\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"name\": \"onesdk1344\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638459058822\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1355" + "1356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -301,16 +538,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:df37d3d0-92e1-45c0-9275-c49409a79784" + "westus:2bde5b52-fa3a-4a0e-8659-a656450cef18" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "1dcb0de1-3d39-4d26-a7dc-d6d9d6df2acf" + "62f82466-ddb8-4f3d-a4b4-9649fecdcb48" ], "x-ms-routing-request-id": [ - "WESTUS:20151224T010529Z:1dcb0de1-3d39-4d26-a7dc-d6d9d6df2acf" + "CENTRALUS:20160126T211720Z:62f82466-ddb8-4f3d-a4b4-9649fecdcb48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -319,25 +556,25 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:05:28 GMT" + "Tue, 26 Jan 2016 21:17:19 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM2OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTM0ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Web/serverfarms/NonStandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "979" + "1775" ], "x-ms-client-request-id": [ - "f59d22e0-3751-4028-ad93-5e18487842ac" + "e7a75eaa-1661-4213-a876-36fdf7cdf9ba" ], "accept-language": [ "en-US" @@ -346,10 +583,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-24T01:05:29.6490249Z\",\r\n \"changedTime\": \"2015-12-24T01:05:29.6493285Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587506877559368260\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Web/serverfarms/NonStandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"NonStandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Minute\",\r\n \"interval\": 60\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"invalidUri\"\r\n }\r\n }\r\n },\r\n \"actions\": {},\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"@trigger().outputs\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3694/providers/Microsoft.Logic/workflows/onesdk1344\",\r\n \"name\": \"onesdk1344\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:20.9316415Z\",\r\n \"changedTime\": \"2016-01-26T21:17:20.9319665Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587477638445865613\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1235" + "1577" ], "Content-Type": [ "application/json; charset=utf-8" @@ -364,16 +601,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:22ac5526-c4bd-40d1-b56b-f6776834c81d" + "westus:27f3c1c6-167b-446f-bd61-a838173d4731" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "2deebc9a-daf8-44f3-991a-d26bede8df85" + "ec1c83bb-287b-4cb1-9955-65199646016e" ], "x-ms-routing-request-id": [ - "WESTUS:20151224T010529Z:2deebc9a-daf8-44f3-991a-d26bede8df85" + "CENTRALUS:20160126T211721Z:ec1c83bb-287b-4cb1-9955-65199646016e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,16 +619,196 @@ "no-cache" ], "Date": [ - "Thu, 24 Dec 2015 01:05:29 GMT" + "Tue, 26 Jan 2016 21:17:20 GMT" ] }, "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "74046e6f-30e7-4f2d-b5b0-27d43a7de13c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:22.9585441Z\",\r\n \"changedTime\": \"2016-01-26T21:17:22.959016Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638425705705\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:cbc90fb0-3fde-4014-88f9-6635c28c8bda" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "107188a5-9f93-48c6-b887-5ca21061fa7d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211723Z:107188a5-9f93-48c6-b887-5ca21061fa7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "bce1cb54-8032-446f-a24b-d9f7bca91500" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:23.5980425Z\",\r\n \"changedTime\": \"2016-01-26T21:17:23.5983276Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638419204380\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:16da85b2-3b0b-4ad4-b415-f1bf82495b61" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "49bc3a75-06cf-4cb5-ae8a-a80ad81b6727" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211724Z:49bc3a75-06cf-4cb5-ae8a-a80ad81b6727" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvODJEMkQ4NDItQzMxMi00NDVDLThBNEQtRTNFRTk1NDI0MzZEP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80fe3a19-d7c5-48b6-b619-dab1e3e5700b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D' under resource group 'onesdk8523' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1cf89781-ee44-45e3-ad45-47d29a88f393" + ], + "x-ms-correlation-request-id": [ + "1cf89781-ee44-45e3-ad45-47d29a88f393" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211724Z:1cf89781-ee44-45e3-ad45-47d29a88f393" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:23 GMT" + ] + }, + "StatusCode": 404 } ], "Names": { "Test-UpdateLogicApp": [ - "onesdk3694", - "onesdk1344" + "onesdk8523", + "onesdk7924" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateNonExistingLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateNonExistingLogicApp.json deleted file mode 100644 index 6f75b6012a43..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateNonExistingLogicApp.json +++ /dev/null @@ -1,334 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8004?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-request-id": [ - "82cc36ea-f783-4032-85eb-7c60892e5713" - ], - "x-ms-correlation-request-id": [ - "82cc36ea-f783-4032-85eb-7c60892e5713" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151228T202919Z:82cc36ea-f783-4032-85eb-7c60892e5713" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:29:19 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8004?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004\",\r\n \"name\": \"onesdk8004\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "156ee4c5-338c-44cc-bf8b-7996295400ec" - ], - "x-ms-correlation-request-id": [ - "156ee4c5-338c-44cc-bf8b-7996295400ec" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151228T202919Z:156ee4c5-338c-44cc-bf8b-7996295400ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:29:19 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-request-id": [ - "8097dc56-f805-4cfa-87bf-a9d4a674e6e0" - ], - "x-ms-correlation-request-id": [ - "8097dc56-f805-4cfa-87bf-a9d4a674e6e0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151228T202919Z:8097dc56-f805-4cfa-87bf-a9d4a674e6e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:29:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Logic/workflows/onesdk6829?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjgyOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8bad5dc8-b5f5-4da4-9c42-8f0405607b40" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6829' under resource group 'onesdk8004' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "150" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "e6d1accd-8421-4bd1-b720-39817d326bcf" - ], - "x-ms-correlation-request-id": [ - "e6d1accd-8421-4bd1-b720-39817d326bcf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151228T202920Z:e6d1accd-8421-4bd1-b720-39817d326bcf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:29:19 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Logic/workflows/onesdk6829?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjgyOT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1179" - ], - "x-ms-client-request-id": [ - "d1d8327b-881e-4407-a7a7-97d8769c7fe1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2015-12-28T20:29:22.2245466Z\",\r\n \"changedTime\": \"2015-12-28T20:29:22.2245466Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587502723235093978\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8004/providers/Microsoft.Logic/workflows/onesdk6829\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Logic/workflows/onesdk6829\",\r\n \"name\": \"onesdk6829\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1355" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "westus:28902811-91f1-457c-afd4-0d18351453a2" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "fc2b4d7c-d96a-49c1-9d7d-bf385da76abe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151228T202922Z:fc2b4d7c-d96a-49c1-9d7d-bf385da76abe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:29:21 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8004/providers/Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvODJEMkQ4NDItQzMxMi00NDVDLThBNEQtRTNFRTk1NDI0MzZEP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fc1696a2-138b-41ab-b7ee-02ee516fa0ac" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D' under resource group 'onesdk8004' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "176" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "fb5148f1-2736-46c2-b995-7b49cb6ac9a8" - ], - "x-ms-correlation-request-id": [ - "fb5148f1-2736-46c2-b995-7b49cb6ac9a8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20151228T202922Z:fb5148f1-2736-46c2-b995-7b49cb6ac9a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 28 Dec 2015 20:29:22 GMT" - ] - }, - "StatusCode": 404 - } - ], - "Names": { - "Test-UpdateNonExistingLogicApp": [ - "onesdk8004", - "onesdk6829" - ] - }, - "Variables": { - "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" - } -} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json new file mode 100644 index 000000000000..69d35ed048ca --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json @@ -0,0 +1,460 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzNzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-request-id": [ + "0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + ], + "x-ms-correlation-request-id": [ + "0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211833Z:0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:33 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzNzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370\",\r\n \"name\": \"onesdk3370\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "847501f9-774f-4955-af78-d3009069a080" + ], + "x-ms-correlation-request-id": [ + "847501f9-774f-4955-af78-d3009069a080" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211833Z:847501f9-774f-4955-af78-d3009069a080" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:33 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "x-ms-request-id": [ + "643441de-56ba-4daa-9585-7a00bfa1966c" + ], + "x-ms-correlation-request-id": [ + "643441de-56ba-4daa-9585-7a00bfa1966c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211833Z:643441de-56ba-4daa-9585-7a00bfa1966c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9d8505f-f309-4e21-be39-0a8eada098a0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3370-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3370\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "33e976c8-1ec5-4834-8348-cef824833241" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "1dd0e2cd-781e-4b30-8790-925ade20ad81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211841Z:1dd0e2cd-781e-4b30-8790-925ade20ad81" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96ca2a81-b26a-4e8a-be85-f84fbd6347c6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1799' under resource group 'onesdk3370' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b731fd32-2064-4792-8041-dc35fbaf6a45" + ], + "x-ms-correlation-request-id": [ + "b731fd32-2064-4792-8041-dc35fbaf6a45" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211841Z:b731fd32-2064-4792-8041-dc35fbaf6a45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "2a90e9f2-32af-414a-9bc3-271acdde47ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637619829098\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799\",\r\n \"name\": \"onesdk1799\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6ce1f0f7-1751-42b0-a996-8f5c456ca23d" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "146625f1-56ac-4788-8300-75567288fd52" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211844Z:146625f1-56ac-4788-8300-75567288fd52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:43 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OS90cmlnZ2Vycy8/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30f8354c-722b-43ce-a651-2af8a7273ee5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6105006Z\",\r\n \"state\": \"Enabled\",\r\n \"workflow\": {\r\n \"name\": \"onesdk1799/08587477637619829098\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/versions/08587477637619829098\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "645" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:1cb51f7e-537b-4ec6-93b1-b543db4826a6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-correlation-request-id": [ + "a249e649-5f00-4a20-a24d-7222e6edef36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211844Z:a249e649-5f00-4a20-a24d-7222e6edef36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OS90cmlnZ2Vycy9odHRwVHJpZ2dlcj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a027c85b-517e-4c38-b99e-c79f192deac4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6105006Z\",\r\n \"state\": \"Enabled\",\r\n \"workflow\": {\r\n \"name\": \"onesdk1799/08587477637619829098\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/versions/08587477637619829098\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "633" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:5a94e423-110c-4882-9df3-fecb3327ae72" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "x-ms-correlation-request-id": [ + "a54ac5e3-5b6a-4922-8fa7-bf51cafdc089" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211844Z:a54ac5e3-5b6a-4922-8fa7-bf51cafdc089" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:44 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureLogicAppTrigger": [ + "onesdk3370", + "onesdk1799" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json new file mode 100644 index 000000000000..107fa895b0ed --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json @@ -0,0 +1,853 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "11b68509-10ea-4482-830a-5b8760f96213" + ], + "x-ms-correlation-request-id": [ + "11b68509-10ea-4482-830a-5b8760f96213" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T212105Z:11b68509-10ea-4482-830a-5b8760f96213" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:05 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247\",\r\n \"name\": \"onesdk2247\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ba6131f4-f415-40d8-979b-bbaacfbb7e23" + ], + "x-ms-correlation-request-id": [ + "ba6131f4-f415-40d8-979b-bbaacfbb7e23" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T212107Z:ba6131f4-f415-40d8-979b-bbaacfbb7e23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "72dcf158-033a-43b8-9ff4-44a5368268c8" + ], + "x-ms-correlation-request-id": [ + "72dcf158-033a-43b8-9ff4-44a5368268c8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T212107Z:72dcf158-033a-43b8-9ff4-44a5368268c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bb7bd9d-2f2a-4188-a7e8-3eac8dc3fcea" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2247-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2247\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "921756d0-6324-4439-a168-64d42f32512b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14870" + ], + "x-ms-correlation-request-id": [ + "8f11a804-1222-4322-8568-e14986203537" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212140Z:8f11a804-1222-4322-8568-e14986203537" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad6de3c7-69f1-4a25-b41f-b957f67b4a06" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk2597' under resource group 'onesdk2247' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1e3a2b8d-f396-49b1-8e11-007047a828b5" + ], + "x-ms-correlation-request-id": [ + "1e3a2b8d-f396-49b1-8e11-007047a828b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212140Z:1e3a2b8d-f396-49b1-8e11-007047a828b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:39 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf7fd87f-4bcd-4a7c-8a0d-acc4792375c1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:841e0715-6013-404f-be37-93e894d65b2b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-correlation-request-id": [ + "76694372-6dcd-4327-84d6-e8d03533aa80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212145Z:76694372-6dcd-4327-84d6-e8d03533aa80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ea432c9-0d14-4374-9320-cca47ee04113" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4bcc9099-3935-4f37-b406-649fd56f5fae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-correlation-request-id": [ + "fdfafa93-b41f-411f-9fd6-45343d1b7135" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212147Z:fdfafa93-b41f-411f-9fd6-45343d1b7135" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26991134-ae62-4838-bd44-48715b6cf3e8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:9373f978-54e1-47cb-8220-457788e8183c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-correlation-request-id": [ + "f1c598bc-d77c-414c-b954-1295b29f2b3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212149Z:f1c598bc-d77c-414c-b954-1295b29f2b3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c5aaca5-cd55-48d4-8d99-d23043a51c98" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4464b4e7-5e89-4482-87d3-640f5b26a80e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-correlation-request-id": [ + "96710e36-2600-4d2b-9fcc-7d528e9413ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212151Z:96710e36-2600-4d2b-9fcc-7d528e9413ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "728c4729-ae01-4c5d-bbbf-b72e9cffbf0c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:8c896338-aa82-44cb-9b05-260f63bd7512" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "42fddc4b-d41e-4741-b8d3-7afdf89a1c97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212153Z:42fddc4b-d41e-4741-b8d3-7afdf89a1c97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa7f7f45-e11b-44ef-ae08-6d0342056df1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4210dff4-0cda-48b5-9c94-2788f937ef4d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "70b28220-d82d-4721-892b-def6034daa0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212155Z:70b28220-d82d-4721-892b-def6034daa0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "fe4c0e13-6823-49f7-9490-4ccaf73aff64" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:975b423f-d49b-43b3-af39-64174181f67a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "99fb6a60-2329-4386-aa24-8356460a6962" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212143Z:99fb6a60-2329-4386-aa24-8356460a6962" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:42 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aca42615-a20c-460e-8925-227ff855303b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4dba551c-3e0c-44e1-93d0-0309ccf09cd5" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "0db2dd9b-049f-42fe-bb4e-9095a9f34bec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212155Z:0db2dd9b-049f-42fe-bb4e-9095a9f34bec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "634c8044-fa08-4638-ae84-85a59d2e115c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:21:43.8623245Z\",\r\n \"endTime\": \"2016-01-26T21:21:44.7821975Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"29a915aa-1fe2-4cb9-b862-d690fb694730\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/3C16F_820c9e847d324a5c88ffcc09f4715634_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=YOI8IztH78hlz71DhwKluYSIAwVsCQs790zS35484iA%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0980630\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/483BC_33ede65090cb4bfe800536ab08564561_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=pzI%2BcZ8sjUBOWsgOV7GaohOBVuWA8TcjPRHhTdHYpww%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0982D42\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"PpRbpxaSjpygkbUqLreOMw==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477635816147911\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/runs/08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911\",\r\n \"name\": \"08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1575" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:ccfe891b-e9df-4214-a9ae-7cf4b243ba4c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "x-ms-correlation-request-id": [ + "5913a89e-3259-4c1e-93ab-fe24e4953f77" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212155Z:5913a89e-3259-4c1e-93ab-fe24e4953f77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXMvMDg1ODc0Nzc2MzU4MTYxNDc5MTE/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4141ea85-4d8d-4d56-bd02-c0c4f6ec1c2c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:21:43.8623245Z\",\r\n \"endTime\": \"2016-01-26T21:21:44.7821975Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"29a915aa-1fe2-4cb9-b862-d690fb694730\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/3C16F_820c9e847d324a5c88ffcc09f4715634_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=YOI8IztH78hlz71DhwKluYSIAwVsCQs790zS35484iA%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0980630\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/483BC_33ede65090cb4bfe800536ab08564561_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=pzI%2BcZ8sjUBOWsgOV7GaohOBVuWA8TcjPRHhTdHYpww%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0982D42\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"PpRbpxaSjpygkbUqLreOMw==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477635816147911\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/runs/08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911\",\r\n \"name\": \"08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1563" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:ed31f9d2-3be5-41aa-ae94-e94ccb56330d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "eb872390-1b1d-42a3-8ca5-f2a1c2765366" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212155Z:eb872390-1b1d-42a3-8ca5-f2a1c2765366" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:55 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureLogicAppTriggerHistory": [ + "onesdk2247", + "onesdk2597" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json new file mode 100644 index 000000000000..875dbab8314b --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json @@ -0,0 +1,904 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14747" + ], + "x-ms-request-id": [ + "eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + ], + "x-ms-correlation-request-id": [ + "eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211932Z:eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:32 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491\",\r\n \"name\": \"onesdk3491\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "91e27401-8c1d-4e32-86e2-89a931854d5d" + ], + "x-ms-correlation-request-id": [ + "91e27401-8c1d-4e32-86e2-89a931854d5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211934Z:91e27401-8c1d-4e32-86e2-89a931854d5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:34 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14745" + ], + "x-ms-request-id": [ + "7cc74cb5-3937-4112-8117-3b075533dd48" + ], + "x-ms-correlation-request-id": [ + "7cc74cb5-3937-4112-8117-3b075533dd48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211934Z:7cc74cb5-3937-4112-8117-3b075533dd48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0aa8d261-8175-4ed7-b259-57670d2ede82" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3491-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3491\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b9bccadd-cb34-4131-9bd7-d7acb7022667" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "1872129b-1aa1-4fcf-9a6a-2a7488272fb0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211940Z:1872129b-1aa1-4fcf-9a6a-2a7488272fb0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c498fc99-6008-4911-9245-238c3ec96d10" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7855' under resource group 'onesdk3491' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7956ec48-da62-49a4-83e7-7fb3dd2e132f" + ], + "x-ms-correlation-request-id": [ + "7956ec48-da62-49a4-83e7-7fb3dd2e132f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211941Z:7956ec48-da62-49a4-83e7-7fb3dd2e132f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53ffefdc-a2d2-4a9b-860c-a65d2c5f051d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:06698313-5301-4804-96cd-2b2ac9e1db6c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "a76749c6-1513-4b16-ad5b-f147ca14a7ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211945Z:a76749c6-1513-4b16-ad5b-f147ca14a7ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f818893-51ad-45d8-b8f7-87a3ac6fabd0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:97097c04-bde7-446e-a060-ab83c07e40a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "c17da8c6-3997-402a-a4e4-c638e3ddcffc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211947Z:c17da8c6-3997-402a-a4e4-c638e3ddcffc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a1c818b-d91f-48f1-9ddb-7f43aa3a20bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f124d8eb-2928-449b-b41d-f83f5909efba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "e28781d7-052f-4ee4-8f49-4a973ddc71d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211949Z:e28781d7-052f-4ee4-8f49-4a973ddc71d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96a56e8a-cae8-40fb-9231-815d04302144" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:a8452737-6482-4b78-9234-61b9a95f731c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "c0a00c76-0da7-4b92-a2c6-9dba39b9ab8d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211951Z:c0a00c76-0da7-4b92-a2c6-9dba39b9ab8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5dc40ca-f8b5-4dab-9264-e7c02d04a0cd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:691102e7-52c6-48cf-b78d-ff5f21e95c0b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "ea048aaf-a0a7-46b5-99ab-3f4d7802ce7f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211953Z:ea048aaf-a0a7-46b5-99ab-3f4d7802ce7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f60409c-dacd-41d7-bcd7-dcab393096ed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:e5825c90-f8e0-47a5-a4bf-fb3605480c7e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "7a0624bd-aeae-46d2-b05e-ee4278d3706b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211955Z:7a0624bd-aeae-46d2-b05e-ee4278d3706b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "648c3174-61ac-4190-bb5c-6cd5aeb6f288" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4c1d5eb3-8b93-453c-97fb-50c00959186a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "522ee57f-4653-4222-a6ce-1060394e73ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211943Z:522ee57f-4653-4222-a6ce-1060394e73ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:43 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73b77f02-67aa-46b1-aa98-106e223f9045" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:44.5530621Z\",\r\n \"endTime\": \"2016-01-26T21:19:45.1405584Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"8965a27d-4bf6-44be-aea7-bdb17fb4b7c8\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/47A45_20e81a0be3ad4d65bc78552df12a462a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=e%2BTIDr4igws3NsKTDBkCbfNsk2I8e11b6AJbMnRQEjs%3D&se=2016-01-27T01%3A19%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D241A7\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/EDE60_cff97d3aa4604efe95d7eec20500a3af_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=uVD%2FyzThVoAYm%2FUBRplIrmrnYFAYrC%2BSYf3KX2Wq2VM%3D&se=2016-01-27T01%3A19%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D1570E\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6IEFhpGr4WjlWzpiHw8h7g==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477637009230758\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477637009230758\",\r\n \"name\": \"08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:9975fbae-df6a-45c1-8d7e-e80778ab12c6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-correlation-request-id": [ + "bd47d954-556b-4538-af8b-7c2bc7e57085" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211955Z:bd47d954-556b-4538-af8b-7c2bc7e57085" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74a8fcdb-0878-4346-8933-79cd75988115" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:57.2703975Z\",\r\n \"endTime\": \"2016-01-26T21:19:57.7055401Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"be509c6b-b1fd-4071-8407-a4a82ee3ee3d\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/29269_195a149bf6a245a2967f14b806c1dd78_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=rDFB5%2FxcaRe3WNO1pqFqftmxA6a6ay86TXRFKd5aniM%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269671471ABE\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/6465C_76d71c065607479d939a09814ef8f05c_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=7qrNYVn9yd%2Fp6q%2BuuWUe8xeOkwNDB2WslTrxNrY3llA%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269671480557\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6LKYP/2w0ze+Sv8dUfroEA==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477636881938193\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477636881938193\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477636881938193\",\r\n \"name\": \"08587477636881938193\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:56.2909019Z\",\r\n \"endTime\": \"2016-01-26T21:19:56.7015437Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"0469faf7-c52c-4549-a305-2ffe00e7562c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/1C830_d00bc7dd0e634e08a6bf39e66a885c5a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=eNwMPWhyamHFmCnCcsZbl0sV4J5QwwVjCcEOY2kJn7Y%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269670B0A9C3\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/29366_7c3b065db2e74d0db461afccda1b5fa2_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=FvjFGsCFnvqzi8e7awdVu3X9nW%2FQwdHzlf6ICD4g024%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269670B3B7C0\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"nXP7GNOQ+JlCgF01V4lLqg==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477636891796908\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477636891796908\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477636891796908\",\r\n \"name\": \"08587477636891796908\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:44.5530621Z\",\r\n \"endTime\": \"2016-01-26T21:19:45.1405584Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"8965a27d-4bf6-44be-aea7-bdb17fb4b7c8\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/47A45_20e81a0be3ad4d65bc78552df12a462a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=dNaEvDxj1tuGfIDobC7hz2hZvCNaqd71e8fXWZp9%2Blk%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D241A7\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/EDE60_cff97d3aa4604efe95d7eec20500a3af_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=L5m%2BBrHVgAPSyy4x72azOGtj6qTv%2Fb%2BSR7zsz87T4QQ%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D1570E\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6IEFhpGr4WjlWzpiHw8h7g==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477637009230758\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477637009230758\",\r\n \"name\": \"08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4713" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:e6b5032d-3ade-4e5c-8d7b-b4714013e63d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "28cef454-ffdc-4e54-8639-03f85e463069" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211958Z:28cef454-ffdc-4e54-8639-03f85e463069" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ce5932f-b0ef-4c3e-9c5b-7a371d0ca74e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:d321082d-b9e8-433c-a235-416e867f1075" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "a55f1122-d242-4786-bd40-639f087f4c62" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211955Z:a55f1122-d242-4786-bd40-639f087f4c62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94e33fa3-3671-431f-bfe2-dc3392f2680f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:3431f136-0590-458b-9a32-fe5f70e3442d" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1d42dae2-4b38-4be5-bcc3-54681ee80271" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211957Z:1d42dae2-4b38-4be5-bcc3-54681ee80271" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:56 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-StartAzureLogicAppTrigger": [ + "onesdk3491", + "onesdk7855" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Settings.StyleCop b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Settings.StyleCop new file mode 100644 index 000000000000..bb05f99bc1a1 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Settings.StyleCop @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs index f80ba900aadd..d044acf2892f 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs @@ -40,9 +40,7 @@ public void NewAzureLogicApp_ThrowsExceptionWithNonexistingDefinitionFile() { Name = Name, DefinitionFilePath = DefinitionFilePath, - ResourceGroupName = ResourceGroupName, - Location = Location, - SkuName = SkuName + ResourceGroupName = ResourceGroupName }; var exception = Assert.Throws(() => cmdlet.ExecuteCmdlet()); @@ -60,9 +58,7 @@ public void NewAzureLogicApp_ThrowsExceptionWithNonexistingParameterFile() { Name = Name, ParameterFilePath = ParameterFilePath, - ResourceGroupName = ResourceGroupName, - Location = Location, - SkuName = SkuName + ResourceGroupName = ResourceGroupName }; var exception = Assert.Throws(() => cmdlet.ExecuteCmdlet()); Assert.Equal("File LogicAppParameter.json does not exist.", exception.Message); diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs index 1275ce903f48..26e8eedd3f20 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs @@ -41,15 +41,5 @@ public class LogicAppUnitTestBase : RMTestBase /// protected const string ResourceGroupName = "TestResourceGroup"; - /// - /// Default azure data center location used for testing - /// - protected const string Location = "westus"; - - /// - /// Default Sku name used for testing - /// - protected const string SkuName = "Standard"; - } } diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config index f0f4f8c4f66e..c4c3edd9007f 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config @@ -8,6 +8,7 @@ + @@ -15,7 +16,7 @@ - + diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs new file mode 100644 index 000000000000..eaf108cf9eca --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Stop the workflow run + /// + [Cmdlet(VerbsLifecycle.Stop, "AzureLogicAppRun"), OutputType(typeof(object))] + public class CancelAzureLogicAppRunCommand : LogicAppBaseCmdlet + { + + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow run.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string RunName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the stop workflow run command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + LogicAppClient.CancelWorkflowRun(this.ResourceGroupName, this.Name, this.RunName); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs new file mode 100644 index 000000000000..2aa1634cb352 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs @@ -0,0 +1,67 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Gets the access key of a workflow. + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicAppAccessKey"), OutputType(typeof (object))] + public class GetAzureLogicAppAccessKeyCommand : LogicAppBaseCmdlet + { + #region private attribues + + private string _accessKeyName = "default"; + + #endregion private attribues + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The name of the workflow accesskey.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string AccessKeyName + { + get { return this._accessKeyName; } + set { this._accessKeyName = value; } + } + + #endregion Input Parameters + + /// + /// Executes the get workflow accesskey command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + this.WriteObject( + LogicAppClient.GetWorkflowAccessKey(this.ResourceGroupName, this.Name, this.AccessKeyName), true); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicApp.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppCommand.cs similarity index 92% rename from src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicApp.cs rename to src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppCommand.cs index e6372f496f4d..a864f709a784 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicApp.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppCommand.cs @@ -12,18 +12,17 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.Logic; - namespace Microsoft.Azure.Commands.LogicApp.Cmdlets { - using Microsoft.Azure.Commands.LogicApp.Utilities; using System.Management.Automation; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Commands.LogicApp.Utilities; /// /// Creates a new LogicApp workflow /// [Cmdlet(VerbsCommon.Get, "AzureLogicApp"), OutputType(typeof (object))] - public class GetAzureLogicApp : LogicAppBaseCmdlet + public class GetAzureLogicAppCommand : LogicAppBaseCmdlet { #region Input Paramters @@ -44,7 +43,8 @@ public class GetAzureLogicApp : LogicAppBaseCmdlet /// public override void ExecuteCmdlet() { + base.ExecuteCmdlet(); this.WriteObject(LogicAppClient.GetWorkflow(this.ResourceGroupName, this.Name), true); } } -} +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs new file mode 100644 index 000000000000..ac978f623c48 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Gets the action in the workflow run + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicAppRunAction"), OutputType(typeof(object))] + public class GetAzureLogicAppRunActionCommand : LogicAppBaseCmdlet + { + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow run.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string RunName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The name of the action in the workflow run.")] + [ValidateNotNullOrEmpty] + public string ActionName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow run action command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (string.IsNullOrEmpty(this.ActionName)) + { + var enumerator = LogicAppClient.GetWorkflowRunActions(this.ResourceGroupName, this.Name, this.RunName).GetEnumerator(); + this.WriteObject(enumerator.ToIEnumerable(), true); + } + else + { + this.WriteObject( + LogicAppClient.GetWorkflowRunAction(this.ResourceGroupName, this.Name, this.RunName, this.ActionName), + true); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs new file mode 100644 index 000000000000..49385cc04560 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs @@ -0,0 +1,65 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Creates a new LogicApp workflow + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicAppRunHistory"), OutputType(typeof(object))] + public class AzureLogicAppRunHistoryCommand : LogicAppBaseCmdlet + { + + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The name of the workflow run.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string RunName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow run history command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + if (string.IsNullOrEmpty(this.RunName)) + { + var enumerator = LogicAppClient.GetWorkflowRuns(this.ResourceGroupName, this.Name).GetEnumerator(); + this.WriteObject(enumerator.ToIEnumerable(), true); + } + else + { + this.WriteObject(LogicAppClient.GetWorkflowRun(this.ResourceGroupName, this.Name, this.RunName), true); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs new file mode 100644 index 000000000000..779cefc8b4e4 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs @@ -0,0 +1,70 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using Microsoft.Azure.Management.Logic; + using System.Management.Automation; + + /// + /// Gets the trigger in the workflow + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicAppTrigger"), OutputType(typeof (object))] + public class GetAzureLogicAppTriggerCommand : LogicAppBaseCmdlet + { + + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The name of the trigger in the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string TriggerName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow trigger command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + if (string.IsNullOrEmpty(this.TriggerName)) + { + var enumerator = LogicAppClient.GetWorkflowTriggers(this.ResourceGroupName, this.Name).GetEnumerator(); + this.WriteObject(enumerator.ToIEnumerable(), true); + } + else + { + this.WriteObject( + LogicAppClient.GetWorkflowTrigger(this.ResourceGroupName, this.Name, this.TriggerName), true); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs new file mode 100644 index 000000000000..d60b9bec8d6a --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs @@ -0,0 +1,75 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using Microsoft.Azure.Management.Logic; + using System.Management.Automation; + + /// + /// Gets the trigger history of the workflow + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicAppTriggerHistory"), OutputType(typeof (object))] + public class GetAzureLogicAppTriggerHistoryCommand : LogicAppBaseCmdlet + { + + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the trigger in the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string TriggerName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The name of the history of workflow trigger.", + ValueFromPipelineByPropertyName = false)] + [ValidateNotNullOrEmpty] + public string HistoryName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow trigger history command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + if (string.IsNullOrEmpty(this.HistoryName)) + { + var enumerator = + LogicAppClient.GetWorkflowTriggerHistories(this.ResourceGroupName, this.Name, this.TriggerName) + .GetEnumerator(); + this.WriteObject(enumerator.ToIEnumerable(), true); + } + else + { + this.WriteObject( + LogicAppClient.GetWorkflowTriggerHistory(this.ResourceGroupName, this.Name, this.TriggerName, + this.HistoryName), true); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs index 7c3bd678db22..591e07480ee8 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs @@ -44,18 +44,17 @@ public class NewAzureLogicAppCommand : LogicAppBaseCmdlet [ValidateNotNullOrEmpty] public string ResourceGroupName { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The location of the workflow.", - ValueFromPipelineByPropertyName = true)] - [ValidateNotNullOrEmpty] - public string Location { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] [ValidateNotNullOrEmpty] public string Name { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The Plan name.", ValueFromPipelineByPropertyName = true)] + [Parameter(Mandatory = true, HelpMessage = "App service plan name.", ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string AppServicePlan { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The location of the workflow.", ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] - public string PlanName { get; set; } + public string Location { get; set; } [Parameter(Mandatory = false, HelpMessage = "The state of the workflow.")] [ValidateSet(Constants.StatusEnabled, Constants.StatusDisabled, IgnoreCase = false)] @@ -102,14 +101,6 @@ public string State [ValidateNotNullOrEmpty] public string ParameterFilePath { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The SKU name.", ValueFromPipelineByPropertyName = true)] - [ValidateNotNullOrEmpty] - public string SkuName { get; set; } - - [Parameter(Mandatory = false, HelpMessage = "The Plan Id.", ValueFromPipelineByPropertyName = true)] - [ValidateNotNullOrEmpty] - public string PlanId { get; set; } - #endregion Input Parameters /// @@ -117,7 +108,7 @@ public string State /// public override void ExecuteCmdlet() { - base.ExecuteCmdlet(); + base.ExecuteCmdlet(); if (this.Definition != null) { @@ -138,12 +129,13 @@ public override void ExecuteCmdlet() { this.Parameters = CmdletHelper.GetParametersFromFile(this.TryResolvePath(this.ParameterFilePath)); } + + var servicePlan = WebsitesClient.GetAppServicePlan(this.ResourceGroupName, this.AppServicePlan); - if (string.IsNullOrEmpty(this.PlanId)) + if (string.IsNullOrEmpty(this.Location)) { - this.PlanId = CmdletHelper.BuildAppServicePlanId(this.PlanName, this.ResourceGroupName, - LogicAppClient.LogicManagementClient.SubscriptionId); - } + this.Location = servicePlan.GeoRegion; + } this.WriteObject(LogicAppClient.CreateWorkflow(this.ResourceGroupName, this.Name, new Workflow { @@ -167,10 +159,10 @@ public override void ExecuteCmdlet() State = (WorkflowState) Enum.Parse(typeof (WorkflowState), this.State), Sku = new Sku { - Name = (SkuName)Enum.Parse(typeof(SkuName), this.SkuName), + Name = (SkuName)Enum.Parse(typeof(SkuName), servicePlan.Sku.Tier), Plan = new ResourceReference { - Id = this.PlanId + Id = servicePlan.Id } } }), true); diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicApp.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicAppCommand.cs similarity index 97% rename from src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicApp.cs rename to src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicAppCommand.cs index cde17d7951b1..6a3d16dc992a 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicApp.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicAppCommand.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// Creates a new LogicApp workflow /// [Cmdlet(VerbsCommon.Remove, "AzureLogicApp"), OutputType(typeof (object))] - public class RemoveAzureLogicApp : LogicAppBaseCmdlet + public class RemoveAzureLogicAppCommand : LogicAppBaseCmdlet { #region Input Paramters @@ -56,4 +56,4 @@ public override void ExecuteCmdlet() }); } } -} +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs new file mode 100644 index 000000000000..f7f30faa8fc3 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs @@ -0,0 +1,72 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic; +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Creates a new LogicApp workflow + /// + [Cmdlet(VerbsLifecycle.Start, "AzureLogicApp"), OutputType(typeof (object))] + public class RunAzureLogicAppCommand : LogicAppBaseCmdlet + { + + #region Input Paramters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters for the workflow run.", ValueFromPipelineByPropertyName = false)] + [ValidateNotNullOrEmpty] + public object Parameters { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the trigger.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string TriggerName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (string.IsNullOrEmpty(this.TriggerName)) + { + this.WriteObject( + LogicAppClient.RunWorkflow(this.ResourceGroupName, this.Name, + new RunWorkflowParameters()), true); + } + else + { + LogicAppClient.RunWorkflowTrigger(this.ResourceGroupName, this.Name, this.TriggerName); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs new file mode 100644 index 000000000000..8ad448cc0bb7 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs @@ -0,0 +1,66 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Sets the secret of the access keys of a workflow + /// + [Cmdlet(VerbsCommon.Set, "AzureLogicAppAccessKey"), OutputType(typeof (object))] + public class UpdateAzureLogicAppAccessKeyCommand : LogicAppBaseCmdlet + { + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow accesskey.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string AccessKeyName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The type of the key.", + ValueFromPipelineByPropertyName = false)] + [ValidateSet(Constants.KeyTypeNotSpecified, Constants.KeyTypePrimary, Constants.KeyTypeSecondary, + IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string KeyType { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow accesskey command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + this.WriteObject( + LogicAppClient.RegenerateWorkflowAccessKey(this.ResourceGroupName, this.Name, this.AccessKeyName, + this.KeyType), true); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs index 7e3ee1e90a31..180f63c20981 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs @@ -15,16 +15,11 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets { using System; - using System.Collections.Generic; - using System.IO; - using System.Globalization; using System.Management.Automation; using Microsoft.Azure.Commands.LogicApp.Utilities; using Microsoft.Azure.Management.Logic.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Newtonsoft.Json.Linq; - using Newtonsoft.Json; - using System.Collections; /// /// Updates a LogicApp workflow @@ -39,6 +34,26 @@ public class UpdateAzureLogicAppCommand : LogicAppBaseCmdlet /// private string _status = Constants.StatusEnabled; + /// + /// Default value for the workflow definition + /// + private object _definition = string.Empty; + + /// + /// Default value for the workflow definition Uri + /// + private string _definitionUri = string.Empty; + + /// + /// Default value for the workflow parameters + /// + private object _parameters = string.Empty; + + /// + /// Default value for the workflow parameters Uri + /// + private string _parametersUri = string.Empty; + #endregion private Variables #region Input Paramters @@ -48,18 +63,13 @@ public class UpdateAzureLogicAppCommand : LogicAppBaseCmdlet [ValidateNotNullOrEmpty] public string ResourceGroupName { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The location of the workflow.", - ValueFromPipelineByPropertyName = true)] - [ValidateNotNullOrEmpty] - public string Location { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] [ValidateNotNullOrEmpty] public string Name { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The Plan name.", ValueFromPipelineByPropertyName = true)] + [Parameter(Mandatory = false, HelpMessage = "App service plan name.", ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] - public string PlanName { get; set; } + public string AppServicePlan { get; set; } [Parameter(Mandatory = false, HelpMessage = "The state of the workflow.")] [ValidateSet(Constants.StatusEnabled, Constants.StatusDisabled, IgnoreCase = false)] @@ -70,50 +80,50 @@ public string State set { this._status = value; } } - [Parameter(Mandatory = false, HelpMessage = "The URI link to the workflow definition.", - ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] - [ValidateNotNullOrEmpty] - public string DefinitionLinkUri { get; set; } + [Parameter(Mandatory = false, HelpMessage = "The URI link to the workflow definition.")] + public string DefinitionLinkUri + { + get { return this._definitionUri; } + set { this._definitionUri = value; } + } - [Parameter(Mandatory = false, HelpMessage = "The content version of the definition link.", - ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] + [Parameter(Mandatory = false, HelpMessage = "The content version of the definition link.")] [ValidateNotNullOrEmpty] public string DefinitionLinkContentVersion { get; set; } - [Parameter(Mandatory = false, HelpMessage = "The definition of the workflow.", - ParameterSetName = ParameterSet.LogicAppWithDefinition)] - [ValidateNotNullOrEmpty] - public object Definition { get; set; } + [Parameter(Mandatory = false, HelpMessage = "The definition of the workflow.")] + public object Definition + { + get { return this._definition; } + set { this._definition = value; } + } - [Parameter(Mandatory = false, HelpMessage = "The physical file path of the workflow definition.", - ParameterSetName = ParameterSet.LogicAppWithDefinitionFile)] + [Parameter(Mandatory = false, HelpMessage = "The physical file path of the workflow definition.")] [ValidateNotNullOrEmpty] public string DefinitionFilePath { get; set; } [Parameter(Mandatory = false, HelpMessage = "The parameters link Uri.")] - [ValidateNotNullOrEmpty] - public string ParameterLinkUri { get; set; } + public string ParameterLinkUri + { + get { return this._parametersUri; } + set { this._parametersUri = value; } + } [Parameter(Mandatory = false, HelpMessage = "The parameters link Uri content version.")] [ValidateNotNullOrEmpty] public string ParameterLinkContentVersion { get; set; } [Parameter(Mandatory = false, HelpMessage = "The parameters parameter for the logic app.")] - [ValidateNotNullOrEmpty] - public object Parameters { get; set; } + public object Parameters + { + get { return this._parameters; } + set { this._parameters = value; } + } [Parameter(Mandatory = false, HelpMessage = "The parameter file path.")] [ValidateNotNullOrEmpty] public string ParameterFilePath { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The SKU name.", ValueFromPipelineByPropertyName = true)] - [ValidateNotNullOrEmpty] - public string SkuName { get; set; } - - [Parameter(Mandatory = false, HelpMessage = "The Plan Id.", ValueFromPipelineByPropertyName = true)] - [ValidateNotNullOrEmpty] - public string PlanId { get; set; } - #endregion Input Parameters /// @@ -121,63 +131,88 @@ public string State /// public override void ExecuteCmdlet() { - base.ExecuteCmdlet(); + base.ExecuteCmdlet(); + + var workflow = LogicAppClient.GetWorkflow(this.ResourceGroupName, this.Name); - if (this.Definition != null) + if (this.Definition == null) { - this.Definition = JToken.Parse(this.Definition.ToString()); + workflow.Definition = null; + } + else if (this.Definition.ToString() != string.Empty) + { + workflow.Definition = JToken.Parse(this.Definition.ToString()); } if (!string.IsNullOrEmpty(this.DefinitionFilePath)) { - this.Definition = CmdletHelper.GetDefinitionFromFile(this.TryResolvePath(this.DefinitionFilePath)); + workflow.Definition = CmdletHelper.GetDefinitionFromFile(this.TryResolvePath(this.DefinitionFilePath)); } - if (this.Parameters != null) + if (this.Parameters == null) + { + workflow.Parameters = null; + } + else if (this.Parameters.ToString() != string.Empty) { - this.Parameters = CmdletHelper.ConvertToWorkflowParameterDictionary(this.Parameters); + workflow.Parameters = CmdletHelper.ConvertToWorkflowParameterDictionary(this.Parameters); } if (!string.IsNullOrEmpty(this.ParameterFilePath)) { - this.Parameters = CmdletHelper.GetParametersFromFile(this.TryResolvePath(this.ParameterFilePath)); + workflow.Parameters = CmdletHelper.GetParametersFromFile(this.TryResolvePath(this.ParameterFilePath)); } - if (string.IsNullOrEmpty(this.PlanId)) + if (this.DefinitionLinkUri == null) + { + workflow.DefinitionLink = null; + } + else if (this.DefinitionLinkUri != string.Empty) { - this.PlanId = CmdletHelper.BuildAppServicePlanId(this.PlanName, this.ResourceGroupName, - LogicAppClient.LogicManagementClient.SubscriptionId); - } + workflow.DefinitionLink = new ContentLink + { + Uri = this.DefinitionLinkUri, + ContentVersion = this.DefinitionLinkContentVersion + }; + } - this.WriteObject(LogicAppClient.UpdateWorkflow(this.ResourceGroupName, this.Name, new Workflow + if (this.ParameterLinkUri == null) { - Location = this.Location, - Definition = this.Definition, - Parameters = this.Parameters as Dictionary, - DefinitionLink = string.IsNullOrEmpty(this.DefinitionLinkUri) - ? null - : new ContentLink - { - Uri = this.DefinitionLinkUri, - ContentVersion = this.DefinitionLinkContentVersion - }, - ParametersLink = string.IsNullOrEmpty(this.ParameterLinkUri) - ? null - : new ContentLink - { - Uri = this.ParameterLinkUri, - ContentVersion = this.ParameterLinkContentVersion - }, - State = (WorkflowState) Enum.Parse(typeof (WorkflowState), this.State), - Sku = new Sku + workflow.ParametersLink = null; + } + else if (this.ParameterLinkUri != string.Empty) + { + workflow.ParametersLink = new ContentLink { - Name = (SkuName) Enum.Parse(typeof (SkuName), this.SkuName), + Uri = this.ParameterLinkUri, + ContentVersion = this.ParameterLinkContentVersion + }; + } + + if (!string.IsNullOrEmpty(this.State)) + { + workflow.State = (WorkflowState) Enum.Parse(typeof (WorkflowState), this.State); + } + + if (!string.IsNullOrEmpty(this.AppServicePlan)) + { + var servicePlan = WebsitesClient.GetAppServicePlan(this.ResourceGroupName, this.AppServicePlan); + workflow.Sku = new Sku + { + Name = (SkuName)Enum.Parse(typeof(SkuName), servicePlan.Sku.Tier), Plan = new ResourceReference { - Id = this.PlanId + Id = servicePlan.Id } - } - }), true); + }; + } + + if (workflow.DefinitionLink == null && workflow.Definition == null) + { + throw new PSArgumentException(Properties.Resource.DefinitionMissingWarning); + } + + this.WriteObject(LogicAppClient.UpdateWorkflow(this.ResourceGroupName, this.Name, workflow), true); } } } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj index 71bd122bc3c5..8138dbed32f4 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj @@ -66,6 +66,10 @@ False ..\..\..\packages\Microsoft.Azure.Management.Logic.0.1.0-preview\lib\net45\Microsoft.Azure.Management.Logic.dll + + False + ..\..\..\packages\Microsoft.Azure.Management.WebSites.0.16.7-preview\lib\net45\Microsoft.Azure.Management.WebSites.dll + False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.11-preview\lib\net40\Microsoft.Azure.ResourceManager.dll @@ -79,16 +83,19 @@ False - ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.4.1\lib\dotnet\Microsoft.Rest.ClientRuntime.dll + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll - + False ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll - + False ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.11.0\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.TestFramework.0.9.3-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll + False ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll @@ -115,9 +122,19 @@ - + + + + Code + + + + + - + + + @@ -133,7 +150,11 @@ Code + + + + @@ -172,10 +193,13 @@ - + Designer PreserveNewest + + PreserveNewest + diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-Help.xml b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-Help.xml new file mode 100644 index 000000000000..2cf92608cc72 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-Help.xml @@ -0,0 +1,3204 @@ + + + + + Get-AzureLogicApp + + Gets the specified Logic App from the Azure resource group. + + + + + Get + AzureLogicApp + + + + This is the Description section + The Get-AzureLogicApp cmdlet retrieves Azure Logic App from the Azure resource group and returns an object that represents the Workflow. Use this cmdlet to get a Logic App from specified resource group. You can get a Logic App by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.Workflow + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Get a Logic App from specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" + + This command gets a Logic App from the specified Azure resource group. + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : StandardServicePlan +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/StandardServicePlan +Version : 08587489107859952120 + + + + + + + + + + + + + New-AzureLogicApp + + + + Set-AzureLogicApp + + + + Remove-AzureLogicApp + + + + + + + + Get-AzureLogicAppAccessKey + + Gets the access keys of a specified Logic App. + + + + + Get + AzureLogicAppAccessKey + + + + This is the Description section + The Get-AzureLogicAppAccessKey cmdlet retrieves access key of an Azure Logic App and returns an object that represents the WorkflowSecretKeys. Use this cmdlet to get a Logic App access key from a specified resource group. You can get a Logic App access key by specifying the Logic App name, resource group name and access key name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicAppAccessKey + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AccessKeyName + + Specifies the name of the access key. This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + AccessKeyName + + Specifies the name of the access key. This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowSecretKeys + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Get the access key of a Logic App from specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -AccessKeyName "default" + + This command gets an access key of a Logic App from the specified Azure resource group. + + + PrimarySecretKey : lTmyIrecVCcpC2wF8M8HeUW7YUL6Y_Uod7jOlrpW-TU +SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 + + + + + + + + + + + -------------------------- Example 2 : Gets all the access keys of a Logic App from specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" + + This command gets all the access keys of a Logic App from the specified Azure resource group. + + + PrimarySecretKey : lTmyIrecVCcpC2wF8M8HeUW7YUL6Y_Uod7jOlrpW-TU +SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 + + + + + + + + + + + + + + + + + Get-AzureLogicAppRunAction + + Gets the specified action from the Logic App run. + + + + + Get + AzureLogicAppRunAction + + + + This is the Description section + The Get-AzureLogicAppActionRun cmdlet retrieves action from a specified Logic App run and returns an object that represents the WorkflowRunAction. Use this cmdlet to get action(s) from the Logic App run in the specified resource group. You can get a Logic App's run action by specifying the Logic App name, resource group name, run name and action name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicAppRunAction + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + RunName + + Specifies the name of the Logic App run. This parameter is required. + + String + + + ActionName + + Specifies the name of the action in the Logic App run. This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + RunName + + Specifies the name of the Logic App run. This parameter is required. + + String + + String + + + + + + ActionName + + Specifies the name of the action in the Logic App run. This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowRunAction + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Get an action from a Logic App run from a specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppActionRun -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "LogicAppRun1" -ActionName "LogicAppAction1" + + This command gets a Logic App action from the specified Logic App run in an Azure resource group. + + + Code : NotFound +EndTime : 1/13/2016 2:42:56 PM +Error : +InputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink +Name : LogicAppAction1 +OutputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink +StartTime : 1/13/2016 2:42:55 PM +Status : Failed +TrackingId : +Type : + + + + + + + + + + + -------------------------- Example 2 : Get all the actions from a Logic App run from a specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppActionRun -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "LogicAppRun1" + + This command gets all the actions from a Logic App run in a specified Azure resource group. + + + Code : NotFound +EndTime : 1/13/2016 2:42:56 PM +Error : +InputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink +Name : LogicAppAction1 +OutputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink +StartTime : 1/13/2016 2:42:55 PM +Status : Failed +TrackingId : +Type : + + + + + + + + + + + + + Get-AzureLogicAppRunHistory + + + + Start-AzureLogicAppRun + + + + Stop-AzureLogicAppRun + + + + + + + + Get-AzureLogicAppRunHistory + + Gets the Logic App run history. + + + + + Get + AzureLogicAppRunHistory + + + + This is the Description section + The Get-AzureLogicAppRunHistory cmdlet retrieves the Logic App run history and returns a collection of WorkflowRun object for a specified Logic App. Use this cmdlet to get the run history of the Logic App from a specified resource group. You can get a Logic App's run history by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicAppRunHistory + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + RunName + + Specifies the run name of the Logic App. This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + RunName + + Specifies the run name of the Logic App. This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowRun + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Gets the Logic App run history for a specified Logic App and Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppActionRunHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" + + This command gets a Logic App run history for a specified Logic App and Azure resource group. + + + CorrelationId : 55830326-9042-404d-a4c3-fab198106a57 +EndTime : 1/13/2016 2:46:55 PM +Error : {code, message} +Name : 08587489104702792076 +Outputs : {} +StartTime : 1/13/2016 2:46:55 PM +Status : Failed +TriggerName : +LogicAppName : LogicApp1 +LogicAppVersion : 08587489107859952540 + +CorrelationId : d3ddc917-9aaa-47b3-8814-c621c2ae530b +EndTime : 1/13/2016 2:42:56 PM +Error : {code, message} +Name : 08587489107100664541 +Outputs : {} +StartTime : 1/13/2016 2:42:55 PM +Status : Failed +TriggerName : httpTrigger +LogicAppName : LogicApp1 +LogicAppVersion : 08587489107859952120 + + + + + + + + + + + -------------------------- Example 2 : Gets the specific Logic App run for a specified Logic App and Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppActionRunHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "08587489104702792076" + + This command gets a Logic App run for a specified Logic App and Azure resource group. + + + CorrelationId : 55830326-9042-404d-a4c3-fab198106a57 +EndTime : 1/13/2016 2:46:55 PM +Error : {code, message} +Name : 08587489104702792076 +Outputs : {} +StartTime : 1/13/2016 2:46:55 PM +Status : Failed +TriggerName : +LogicAppName : LogicApp1 +LogicAppVersion : 08587489107859952120 + + + + + + + + + + + + + Get-AzureLogicAppRunAction + + + + Start-AzureLogicApp + + + + Stop-AzureLogicAppRun + + + + + + + + Get-AzureLogicAppTrigger + + Gets the specified trigger of the logic app. + + + + + Get + AzureLogicAppTrigger + + + + This is the Description section + The Get-AzureLogicAppTrigger cmdlet retrieves the specified trigger from the logic app and returns an object/collection which represents the workflow trigger. Use this cmdlet to get the trigger(s) of the logic app from a specified resource group. You can get the logic app's trigger by specifying the workflow name, resource group name and trigger name. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicAppTrigger + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + + TriggerName + + Specifies the name of the trigger. This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + String + + + + + + TriggerName + + Specifies the name of the trigger. This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowTrigger + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Gets the specified Logic App trigger of a Logic App in the specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppTrigger -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" + + This command gets the trigger of the specified Logic App and Azure resource group. + + + ChangedTime : 1/14/2016 11:45:07 AM +CreatedTime : 1/13/2016 2:42:26 PM +LastExecutionTime : 1/14/2016 11:45:07 AM +Name : Trigger1 +NextExecutionTime : 1/14/2016 12:45:07 PM +RecurrenceFrequency : Minute +RecurrenceInterval : 60 +Status : Waiting +Type : Microsoft.Logic/workflows/triggers +LogicAppName : LogicApp1 +LogicAppVersion : 08587489107406290826 + + + + + + + + + + + -------------------------- Example 2 : Gets Logic App triggers of the Logic App from a specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppTrigger -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" + + This command gets trigger(s) of the specified Logic App in the Azure resource group. + + + ChangedTime : 1/14/2016 11:45:07 AM +CreatedTime : 1/13/2016 2:42:26 PM +LastExecutionTime : 1/14/2016 11:45:07 AM +Name : Trigger1 +NextExecutionTime : 1/14/2016 12:45:07 PM +RecurrenceFrequency : Minute +RecurrenceInterval : 60 +Status : Waiting +Type : Microsoft.Logic/workflows/triggers +LogicAppName : LogicApp1 +LogicAppVersion : 08587489107406290826 + + + + + + + + + + + + + Get-AzureLogicAppTriggerHistory + + + + Start-AzureLogicApp + + + + + + + + Get-AzureLogicAppTriggerHistory + + Gets the trigger history of the specified trigger in the Logic App. + + + + + Get + AzureLogicAppTriggerHistory + + + + This is the Description section + The Get-AzureLogicAppTriggerHistory cmdlet retrieves the history of the specified trigger in the Logic App and returns an object/collection which represents the Logic App trigger history. Use this cmdlet to get the trigger history of the Logic App from a specified resource group. You can get the Logic App's trigger history by specifying the Logic App name, resource group name, trigger name and history name (optional). To use the dynamic parameters, just type them in the command, or type a minus sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicAppTriggerHistory + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + TriggerName + + Specifies the name of the trigger. This parameter is required. + + String + + + HistoryName + + Specifies the name of the history. This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + TriggerName + + Specifies the name of the trigger. This parameter is required. + + String + + String + + + + + + HistoryName + + Specifies the name of the history. This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowTriggerHistory + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Gets the specified Logic App trigger history for a specified trigger in the Logic App. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppTriggerHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" -HistoryName "08587489107387695768" + + This command gets the Logic App trigger history for a specified trigger in the Logic App. + + + Code : BadRequest +EndTime : 1/13/2016 2:42:26 PM +Error : {code, message} +Fired : False +InputsLink : https://flowprodcu02by01.blob.core.windows.net/flow3ea9ffd11c684c9f9f258b1a6ea5cb6020160113t000000zcontent/A7392_d1e831de68ac4ef89d19a40f05e663 + cb_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=rASa1yg14P71ioIStAji5HJfTFCbSjD3LNt2Ypn%2Byg4%3D&se=2016-01-14T16%3A15%3A16Z&sp=r +Name : 08587489107387695768 +OutputsLink : +Run : +StartTime : 1/13/2016 2:42:26 PM +Status : Failed +TrackingId : f88a499b-f80f-4a28-9bbf-c4cc0d129700 +Type : Microsoft.Logic/workflows/triggers/histories + + + + + + + + + + + -------------------------- Example 2 : Gets the Logic App trigger histories for a specified trigger in the logic app. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppTriggerHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" + + This command gets the workflow trigger histories for a specified trigger in the Logic App. + + + Code : BadRequest +EndTime : 1/13/2016 2:43:33 PM +Error : {code, message} +Fired : False +InputsLink : https://flowprodcu02by01.blob.core.windows.net/flow3ea9ffd11c684c9f9f258b1a6ea5cb6020160113t000000zcontent/CAB46_60e2ad0f0e1947e8b5798716914c5d + b6_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=aoyjajRfk5tQucYE%2BW6h9Is%2BAHSE7AcojY%2FOag6DWRA%3D&se=2016-01-14T16%3A18%3A27Z&sp=r +Name : 08587489106716457817 +OutputsLink : +Run : +StartTime : 1/13/2016 2:43:33 PM +Status : Failed +TrackingId : c91a63f1-48b4-4eae-91eb-8f6dbfa9fe06 +Type : Microsoft.Logic/workflows/triggers/histories + +Code : BadRequest +EndTime : 1/13/2016 2:42:26 PM +Error : {code, message} +Fired : False +InputsLink : https://flowprodcu02by01.blob.core.windows.net/flow3ea9ffd11c684c9f9f258b1a6ea5cb6020160113t000000zcontent/A7392_d1e831de68ac4ef89d19a40f05e663 + cb_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=XNBbA0FkBQmGPDd%2Be03J0Vsdj4aFRG9YK5YBJwzBbO0%3D&se=2016-01-14T16%3A18%3A27Z&sp=r +Name : 08587489107387695768 +OutputsLink : +Run : +StartTime : 1/13/2016 2:42:26 PM +Status : Failed +TrackingId : f88a499b-f80f-4a28-9bbf-c4cc0d129700 +Type : Microsoft.Logic/workflows/triggers/histories + + + + + + + + + + + + + Get-AzureLogicAppTrigger + + + + Start-AzureLogicApp + + + + + + + + New-AzureLogicApp + + Creates a new Logic App in the azure resource group. + + + + + New + AzureLogicApp + + + + This is the Description section + The New-AzureLogicApp cmdlet creates an Azure Logic App and returns an object that represents the Workflow. Use this cmdlet to create a new Logic App. A Logic App is a collection of actions or triggers defined in Logic App definition. You can create a Logic App with a name, location, Logic App definition, resource group name and App Service Plan name . However, typically, you use a Logic App template for definition and parameters which is a JSON-based model. To create a Logic App, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the Logic App template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. + + + + New-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + + Location + + Specifies the location of the Logic App. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a Logic App in any location. + + String + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + + DefinitionLinkUri + + Specifies Definition link Uri of the Logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + New-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + + Location + + Specifies the location of the Logic App. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a Logic App in any location. + + String + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + + Definition + + Definition of the Logic App. Expected type object or JSON-formatted string. + + Object + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + New-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + + Location + + Specifies the location of the Logic App. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a Logic App in any location. + + String + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + + DefinitionFilePath + + Path of a JSON-formatted definition file. + + String + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + String + + + + + + Location + + Specifies the location of the Logic App. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a Logic App in any location. + + String + + String + + + + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + String + + + Enabled + + + DefinitionLinkUri + + Specifies Definition link Uri of the Logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + String + + + + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + String + + + + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + String + + + + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + String + + + + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + Object + + + + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + Definition + + Definition of the Logic App. Expected type object or JSON-formatted string. + + Object + + Object + + + + + + DefinitionFilePath + + Path of a JSON-formatted definition file. + + String + + String + + + + + + + + + None + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.Workflow + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Creates a Logic App with definition and parameter template file path -------------------------- + + PS C:\> + + PS C:\>New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" + + This command creates a new Logic App in the specified resource group. + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : ServicePlan1 +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/ServicePlan1 +Version : 08587489107859952120 + + + + + + + + + + + -------------------------- Example 2 : Creates a Logic App with definition and parameter objects -------------------------- + + PS C:\> + + PS C:\>New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -AppServicePlan "ServicePlan1" -Definition [IO.File]::ReadAllText("d:\Workflows\Definition.json") -Parameters @{name1="value1", name2="value2"} + + This command creates a new Logic App in the targeted resource group. + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : ServicePlan1 +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/ServicePlan1 +Version : 08587489107859952120 + + + + + + + + + + + -------------------------- Example 3 : Creates a Logic App using ResourceGroup pipe input -------------------------- + + PS C:\> + + PS C:\>Get-AzureRmResourceGroup -ResourceGroupName "ResourceGroup1" | New-AzureLogicApp -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\Workflow\Definition.json" -ParameterFilePath "d:\Workflow\Parameters.json" + + This command creates a new Logic App in the specified resource group using the pipe input from the resource group object. + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : ServicePlan1 +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/ServicePlan1 +Version : 08587489107859952120 + + + + + + + + + + + -------------------------- Example 4 : Creates a Logic App using existing Logic App. -------------------------- + + PS C:\> + + PS C:\>New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -Definition $workflow.Definition -Parameters $workflow.Parameters + + This command creates a new Logic App in the targeted resource group. In this example, definition and parameters of existing Logic App is used to create new Logic App. + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : ServicePlan1 +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/ServicePlan1 +Version : 08587489107859952120 + + + + + + + + + + + + + Get-AzureLogicApp + + + + Set-AzureLogicApp + + + + Remove-AzureLogicApp + + + + + + + + Remove-AzureLogicApp + + Removes the specified Logic App from the specified Azure resource group. + + + + + Remove + AzureLogicApp + + + + This is the Description section + The Remove-AzureLogicApp cmdlet removes a Logic App from an Azure resource group. Use this cmdlet to remove Logic App from specified resource group. You can remove a Logic App by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Remove-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + Force + + Optional switch parameter to force the remove operation without prompt. + + SwitchParameter + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + Force + + Optional switch parameter to force the remove operation without prompt. + + SwitchParameter + + SwitchParameter + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Removes a Logic App from specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Remove-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Force + + This command removes a Logic App from the specified Azure resource group. + + + + + + + + + + + + + + + + Set-AzureLogicApp + + + + Get-AzureLogicApp + + + + New-AzureLogicApp + + + + + + + + Set-AzureLogicApp + + Updates a new Logic App in an azure resource group. + + + + + Set + AzureLogicApp + + + + This is the Description section + The Set-AzureLogicApp cmdlet updates an Azure Logic App and returns an object that represents the Workflow. Use this cmdlet to update a Logic App. You can update a Logic App with a name, Logic App definition, resource group name, App Service Plan name. However, typically, you use a Logic App template for definition and parameters which is JSON-based model. To update a Logic App, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the Logic App template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. + + + + Set-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + + DefinitionLinkUri + + Specifies Definition link Uri of the Logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + + Definition + + Definition of the Logic App. Expected type object or JSON-formatted string. + + Object + + + DefinitionFilePath + + Path of a JSON-formatted definition file. + + String + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + String + + + + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + String + + + + + + DefinitionLinkUri + + Specifies Definition link Uri of the Logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + String + + + + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + String + + + + + + Definition + + Definition of the Logic App. Expected type object or JSON-formatted string. + + Object + + Object + + + + + + DefinitionFilePath + + Path of a JSON-formatted definition file. + + String + + String + + + + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + String + + + + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + String + + + + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + Object + + + + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.Workflow + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Updates a Logic App -------------------------- + + PS C:\> + + PS C:\>Set-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" + + This command updates a Logic App + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : ServicePlan1 +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/ServicePlan1 +Version : 08587489107859952120 + + + + + + + + + + + + + New-AzureLogicApp + + + + Get-AzureLogicApp + + + + Remove-AzureLogicApp + + + + + + + + Set-AzureLogicAppAccessKey + + Updates the access keys of a specified Logic App. + + + + + Set + AzureLogicAppAccessKey + + + + This is the Description section + The Set-AzureLogicAppAccessKey cmdlet updates the access key of an Azure Logic App and returns an object that represents the WorkflowSecretKeys. Use this cmdlet to update a Logic App access key in a specified resource group. You can set Logic App access keys by specifying the Logic App name, resource group name, Access key name and KeyType. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Set-AzureLogicAppAccessKey + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AccessKeyName + + Specifies the name of the access key. This parameter is required. + + String + + + KeyType + + Specifies the value of KeyType (Primary, Secondary & NotSpecified). This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + AccessKeyName + + Specifies the name of the access key. This parameter is required. + + String + + String + + + + + + KeyType + + Specifies the value of KeyType (Primary, Secondary & NotSpecified). This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowSecretKeys + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Sets the access key of a Logic App in a specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Set-AzureLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -AccessKeyName "AccessKey1" -KeyType "Primary" + + This command sets the access key of a Logic App in a specified Azure resource group. + + + PrimarySecretKey : lTmyIrecVCcpC2wF8M8HeUW7YUL6Y_Uod7jOlrpW-TU +SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 + + + + + + + + + + + + + Get-AzureLogicAppAccessKey + + + + + + + + Start-AzureLogicApp + + Runs the specified Logic App in the Azure resource group. + + + + + Start + AzureLogicApp + + + + This is the Description section + The Start-AzureLogicApp cmdlet runs the Azure Logic App. Use this cmdlet to run a Logic App from a specified resource group. You can run a Logic App by specifying the Logic App name, resource group name, parameters(optional) and trigger name. To use the dynamic parameters, just type them in the command, or type a hyphen(-) sign to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Start-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + Parameters + + Specifies the run parameters for the Logic App. This parameter is optional. + + Object + + + TriggerName + + Specifies the trigger name of the Logic App. This parameter is required. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + Parameters + + Specifies the run parameters for the Logic App. This parameter is optional. + + Object + + Object + + + + + + TriggerName + + Specifies the trigger name of the Logic App. This parameter is required. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Runs the Logic App present in the specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Start-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -TriggerName "Trigger1" + + This command runs the Logic App present in the specified Azure resource group. + + + + + + + + + + + + + + + + Stop-AzureLogicAppRun + + + + + + + + Stop-AzureLogicAppRun + + Cancel the specified run of a Logic App present in the Azure resource group. + + + + + Stop + AzureLogicAppRun + + + + This is the Description section + The Stop-AzureLogicAppRun cmdlet cancels the run of the Azure Logic App. Use this cmdlet to cancel the specified run of a Logic App. You can cancel the run of a Logic App by specifying the Logic App name, resource group name and run name. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Stop-AzureLogicAppRun + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + RunName + + Specifies the name of the Logic App run. This parameter is required. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + RunName + + Specifies the name of the Logic App run. This parameter is required. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Cancels the specified run of the Logic App present in an Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -RunName "Run1" + + This command cancels the specified run of the Logic App present in an Azure resource group. + + + + + + + + + + + + + + + + Start-AzureLogicApp + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.Help.xml b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.Help.xml deleted file mode 100644 index ed7c259f33a2..000000000000 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.Help.xml +++ /dev/null @@ -1,1673 +0,0 @@ - - - - - Get-AzureLogicApp - - Gets the specified logic app from the azure resource group. - - - - - Get - AzureLogicApp - - - - This is the Description section - The Get-AzureLogicApp cmdlet retrieves Azure logic app from the Azure resource group and returns an object that represents the workflow. Use this cmdlet to get a logic app from specified resource group. A logic app is a collection of actions or triggers defined in workflow definition language. You can get a logic app by specifying the workflow name and resource group name. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - - - - Get-AzureLogicApp - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - - InformationAction - - - - ActionPreference - - - InformationVariable - - - - String - - - - - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - String - - - - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - String - - - - - - InformationAction - - - - ActionPreference - - ActionPreference - - - - - - InformationVariable - - - - String - - String - - - - - - - - - - - - - - - - - - - - - Microsoft.Azure.Management.Logic.Models.Workflow - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 : Get a logic app from specified Azure resource group. -------------------------- - - PS C:\> - - PS C:\>Get-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" - - This command gets a logic app from the specified Azure resource group. - - - CreatedTime : 12/17/2015 6:05:59 AM -ChangedTime : 12/17/2015 6:05:59 AM -State : Enabled -Version : 08587512745264684633 -AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 -Sku : Microsoft.Azure.Management.Logic.Models.Sku -DefinitionLink : -Definition : {$schema, contentVersion, parameters, triggers...} -ParametersLink : -Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} -Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 -Name : LogicApp1 -Type : Microsoft.Logic/workflows -Location : westus -Tags : - - - - - - - - - - - - - - - - - New-AzureLogicApp - - Creates a new logic app in the azure resource group. - - - - - New - AzureLogicApp - - - - This is the Description section - The New-AzureLogicApp cmdlet creates an Azure logic app and returns an object that represents the workflow. Use this cmdlet to create a new logic app. A logic app is a collection of actions or triggers defined in workflow definition language. You can create a logic app with a name, location, logic app definition, resource group name (existing), app service plan name (existing) and a SKU name. However, typically, you use a workflow template for definition and parameters which is JSON-based model. To create a logic app, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the workflow template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. - - - - New-AzureLogicApp - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - - Location - - Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. - - String - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - - PlanName - - Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. - - String - - - State - - Specifies a state of the logic app. Expected values e.g. Enabled, Disabled - - String - - - DefinitionLinkUri - - Specifies Definition link Uri of the logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. - - String - - - DefinitionLinkContentVersion - - Specifies the content version of the Definition link Uri. - - String - - - ParameterLinkUri - - Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. - - String - - - ParameterLinkContentVersion - - Specifies the content version of the Parameter Link Uri of the Logic App. - - String - - - Parameters - - Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. - - Object - - - ParameterFilePath - - Path of a JSON-formatted parameter file. - - String - - - SkuName - - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. - - String - - - PlanId - - Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" - - String - - - InformationAction - - - - ActionPreference - - - InformationVariable - - - - String - - - - New-AzureLogicApp - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - - Location - - Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. - - String - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - - PlanName - - Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. - - String - - - State - - Specifies a state of the logic app. Expected values e.g. Enabled, Disabled - - String - - - Definition - - Definition of the Logic app. Expected type object or JSON-formatted string. - - - Object - - - ParameterLinkUri - - Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. - - String - - - ParameterLinkContentVersion - - Specifies the content version of the Parameter Link Uri of the Logic App. - - String - - - Parameters - - Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. - - Object - - - ParameterFilePath - - Path of a JSON-formatted parameter file. - - String - - - SkuName - - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. - - String - - - PlanId - - Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" - - String - - - InformationAction - - - - ActionPreference - - - InformationVariable - - - - String - - - - New-AzureLogicApp - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - - Location - - Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. - - String - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - - PlanName - - Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. - - String - - - State - - Specifies a state of the logic app. Expected values e.g. Enabled, Disabled - - String - - - DefinitionFilePath - - Path of a JSON-formatted definition file. - - String - - - ParameterLinkUri - - Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. - - String - - - ParameterLinkContentVersion - - Specifies the content version of the Parameter Link Uri of the Logic App. - - String - - - Parameters - - Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. - - Object - - - ParameterFilePath - - Path of a JSON-formatted parameter file. - - String - - - SkuName - - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. - - String - - - PlanId - - Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" - - String - - - InformationAction - - - - ActionPreference - - - InformationVariable - - - - String - - - - - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - String - - - - - - Location - - Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. - - String - - String - - - - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - String - - - - - - PlanName - - Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. - - String - - String - - - - - - State - - Specifies a state of the logic app. Expected values e.g. Enabled, Disabled - - String - - String - - - Enabled - - - DefinitionLinkUri - - Specifies Definition link Uri of the logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. - - String - - String - - - - - - DefinitionLinkContentVersion - - Specifies the content version of the Definition link Uri. - - String - - String - - - - - - ParameterLinkUri - - Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. - - String - - String - - - - - - ParameterLinkContentVersion - - Specifies the content version of the Parameter Link Uri of the Logic App. - - String - - String - - - - - - Parameters - - Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. - - Object - - Object - - - - - - ParameterFilePath - - Path of a JSON-formatted parameter file. - - String - - String - - - - - - SkuName - - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. - - String - - String - - - - - - PlanId - - Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" - - String - - String - - - - - - InformationAction - - - - ActionPreference - - ActionPreference - - - - - - InformationVariable - - - - String - - String - - - - - - Definition - - Definition of the Logic app. Expected type object or JSON-formatted string. - - - Object - - Object - - - - - - DefinitionFilePath - - Path of a JSON-formatted definition file. - - String - - String - - - - - - - - - None - - - - - - - - - - - - - Microsoft.Azure.Management.Logic.Models.Workflow - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 : Create a logic app with definition and parameter template file path -------------------------- - - PS C:\> - - PS C:\>New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -PlanName "ServicePlanName" -SkuName "Standard" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" - - This command creates a new Logic app in the targeted resource group. - - - CreatedTime : 12/17/2015 6:05:59 AM -ChangedTime : 12/17/2015 6:05:59 AM -State : Enabled -Version : 08587512745264684633 -AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 -Sku : Microsoft.Azure.Management.Logic.Models.Sku -DefinitionLink : -Definition : {$schema, contentVersion, parameters, triggers...} -ParametersLink : -Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} -Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 -Name : LogicApp1 -Type : Microsoft.Logic/workflows -Location : westus -Tags : - - - - - - - - - - - -------------------------- Example 2 : Create a logic app with definition and parameter objects -------------------------- - - PS C:\> - - New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -PlanName "ServicePlanName" -SkuName "Standard" -Definition [IO.File]::ReadAllText("d:\Workflows\Definition.json") -Parameters @{name1="value1", name2="value2"} - - This command creates a new Logic app in the targeted resource group. - - - CreatedTime : 12/17/2015 6:05:59 AM -ChangedTime : 12/17/2015 6:05:59 AM -State : Enabled -Version : 08587512745264684633 -AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 -Sku : Microsoft.Azure.Management.Logic.Models.Sku -DefinitionLink : -Definition : {$schema, contentVersion, parameters, triggers...} -ParametersLink : -Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} -Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 -Name : LogicApp1 -Type : Microsoft.Logic/workflows -Location : "westus" -Tags : - - - - - - - - - - - -------------------------- Example 3 : Create logic app using ResourceGroup pipe input -------------------------- - - PS C:\> - - Get-AzureRmResourceGroup -ResourceGroupName "ResourceGroup1" | New-AzureLogicApp -Name "LogicApp1" -State "Enabled" -SkuName "Standard" -PlanName "ServicePlanName" -DefinitionFilePath "d:\Workflow\Definition.json" -ParameterFilePath "d:\Workflow\Parameters.json" - - This command creates a new logic app in the targeted resource group using the pipe input from the resource group object. - - - CreatedTime : 12/17/2015 6:05:59 AM -ChangedTime : 12/17/2015 6:05:59 AM -State : Enabled -Version : 08587512745264684633 -AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 -Sku : Microsoft.Azure.Management.Logic.Models.Sku -DefinitionLink : -Definition : {$schema, contentVersion, parameters, triggers...} -ParametersLink : -Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} -Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 -Name : LogicApp1 -Type : Microsoft.Logic/workflows -Location : "westus" -Tags : - - - - - - - - - - - -------------------------- Example 4 : Create logic app using existing logic app -------------------------- - - PS C:\> - - New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -PlanName "ServicePlanName" -SkuName "Standard" -Definition $workflow.Definition -Parameters $workflow.Parameters - - This command creates a new Logic app in the targeted resource group. In this example, definition and parameters of existing logic is used to create new Logic App. - - - CreatedTime : 12/17/2015 6:05:59 AM -ChangedTime : 12/17/2015 6:05:59 AM -State : Enabled -Version : 08587512745264684633 -AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 -Sku : Microsoft.Azure.Management.Logic.Models.Sku -DefinitionLink : -Definition : {$schema, contentVersion, parameters, triggers...} -ParametersLink : -Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} -Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 -Name : LogicApp1 -Type : Microsoft.Logic/workflows -Location : "westus" -Tags : - - - - - - - - - - - - - - - - - Remove-AzureLogicApp - - Removes the specified logic app from the azure resource group. - - - - - Remove - AzureLogicApp - - - - This is the Description section - The Remove-AzureLogicApp cmdlet removes logic app from the Azure resource group. Use this cmdlet to remove logic app from specified resource group. You can remove a logic app by specifying the workflow name and resource group name. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - - - - Remove-AzureLogicApp - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - - Force - - Optional switch parameter to force the remove operation without prompt. - - SwitchParameter - - - InformationAction - - - - ActionPreference - - - InformationVariable - - - - String - - - - - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - String - - - - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - String - - - - - - Force - - Optional switch parameter to force the remove operation without prompt. - - SwitchParameter - - SwitchParameter - - - - - - InformationAction - - - - ActionPreference - - ActionPreference - - - - - - InformationVariable - - - - String - - String - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 : Removes a logic app from specified Azure resource group. -------------------------- - - PS C:\> - - PS C:\>Remove-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" - - This command removes a logic app from the specified Azure resource group. - - - - - - - - - - - - - - - - - - - - Set-AzureLogicApp - - Updates a new logic app in the azure resource group. - - - - - Set - AzureLogicApp - - - - This is the Description section - The Set-AzureLogicApp cmdlet updates an Azure logic app and returns an object that represents the workflow. Use this cmdlet to update a logic app. You can update a logic app with a name, location, logic app definition, resource group name (existing), app service plan name (existing) and a SKU name. However, typically, you use a workflow template for definition and parameters which is JSON-based model. To update a logic app, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the workflow template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. - - - - Set-AzureLogicApp - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - - Location - - Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. - - String - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - - PlanName - - Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. - - String - - - State - - Specifies a state of the logic app. Expected values e.g. Enabled, Disabled - - String - - - DefinitionLinkUri - - Specifies Definition link Uri of the logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. - - String - - - DefinitionLinkContentVersion - - Specifies the content version of the Definition link Uri. - - String - - - ParameterLinkUri - - Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. - - String - - - ParameterLinkContentVersion - - Specifies the content version of the Parameter Link Uri of the Logic App. - - String - - - Parameters - - Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. - - Object - - - ParameterFilePath - - Path of a JSON-formatted parameter file. - - String - - - SkuName - - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. - - String - - - PlanId - - Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" - - String - - - InformationAction - - - - ActionPreference - - - InformationVariable - - - - String - - - - Set-AzureLogicApp - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - - Location - - Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. - - String - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - - PlanName - - Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. - - String - - - State - - Specifies a state of the logic app. Expected values e.g. Enabled, Disabled - - String - - - Definition - - Definition of the Logic app. Expected type object or JSON-formatted string. - - - Object - - - ParameterLinkUri - - Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. - - String - - - ParameterLinkContentVersion - - Specifies the content version of the Parameter Link Uri of the Logic App. - - String - - - Parameters - - Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. - - Object - - - ParameterFilePath - - Path of a JSON-formatted parameter file. - - String - - - SkuName - - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. - - String - - - PlanId - - Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" - - String - - - InformationAction - - - - ActionPreference - - - InformationVariable - - - - String - - - - Set-AzureLogicApp - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - - Location - - Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. - - String - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - - PlanName - - Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. - - String - - - State - - Specifies a state of the logic app. Expected values e.g. Enabled, Disabled - - String - - - DefinitionFilePath - - Path of a JSON-formatted definition file. - - String - - - ParameterLinkUri - - Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. - - String - - - ParameterLinkContentVersion - - Specifies the content version of the Parameter Link Uri of the Logic App. - - String - - - Parameters - - Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. - - Object - - - ParameterFilePath - - Path of a JSON-formatted parameter file. - - String - - - SkuName - - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. - - String - - - PlanId - - Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" - - String - - - InformationAction - - - - ActionPreference - - - InformationVariable - - - - String - - - - - - ResourceGroupName - - Specifies a name for the resource group. This parameter is required. - - String - - String - - - - - - Location - - Specifies the location of the logic app. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a logic app in any location. The logic app does not have to be in the same location your Azure subscription or the same location as its resources. - - String - - String - - - - - - Name - - Specifies the name of the logic app. This parameter is required. - - String - - String - - - - - - PlanName - - Specifies the app service plan name of the logic app. This parameter is required. If a plan name does not exist, the command creates the logic app without service plan. - - String - - String - - - - - - State - - Specifies a state of the logic app. Expected values e.g. Enabled, Disabled - - String - - String - - - - - - DefinitionLinkUri - - Specifies Definition link Uri of the logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. - - String - - String - - - - - - DefinitionLinkContentVersion - - Specifies the content version of the Definition link Uri. - - String - - String - - - - - - ParameterLinkUri - - Specifies parameter link Uri of the Logic app. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. - - String - - String - - - - - - ParameterLinkContentVersion - - Specifies the content version of the Parameter Link Uri of the Logic App. - - String - - String - - - - - - Parameters - - Parameters collection object of the logic app. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. - - Object - - Object - - - - - - ParameterFilePath - - Path of a JSON-formatted parameter file. - - String - - String - - - - - - SkuName - - Specifies the Sku name of the logic App. This parameter is required. Expected values e.g. Free, Shared, Basic, Standard, Premium. - - String - - String - - - - - - PlanId - - Specifies the planid of the app service plan. Expected format: "/subscriptions/<SubscriptionId>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Web/serverfarms/<ServicePlanName>" - - String - - String - - - - - - InformationAction - - - - ActionPreference - - ActionPreference - - - - - - InformationVariable - - - - String - - String - - - - - - Definition - - Definition of the Logic app. Expected type object or JSON-formatted string. - - - Object - - Object - - - - - - DefinitionFilePath - - Path of a JSON-formatted definition file. - - String - - String - - - - - - - - - - - - - - - - - - - - - Microsoft.Azure.Management.Logic.Models.Workflow - - - - - - - - - - - - - - - - - - - -------------------------- Example 1 : Update a logic app -------------------------- - - PS C:\> - - PS C:\>Set-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -PlanName "ServicePlanName" -SkuName "Standard" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" - - - - - CreatedTime : 12/17/2015 6:05:59 AM -ChangedTime : 12/17/2015 6:05:59 AM -State : Enabled -Version : 08587512745264684633 -AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/<ID>/resourcegroups/<Name>/providers/Microsoft.Logic/workflows/<Name> -Sku : Microsoft.Azure.Management.Logic.Models.Sku -DefinitionLink : -Definition : {$schema, contentVersion, parameters, triggers...} -ParametersLink : -Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} -Id : /subscriptions/<ID>/resourceGroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 -Name : LogicApp1 -Type : Microsoft.Logic/workflows -Location : westus -Tags : - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.format.ps1xml b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.format.ps1xml new file mode 100644 index 000000000000..cfaab3bf2770 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.format.ps1xml @@ -0,0 +1,375 @@ + + + + + Microsoft.Azure.Management.Logic.Models.Workflow + + Microsoft.Azure.Management.Logic.Models.Workflow + + + + + + + + Id + + + + Name + + + + Type + + + + Location + + + + ChangedTime + + + + CreatedTime + + + + AccessEndpoint + + + + State + + + + $_.DefinitionLink.Uri.ToString() + + + + $_.DefinitionLink.ContentVersion.ToString() + + + + Definition + + + + $_.ParametersLink.Uri.ToString() + + + + $_.ParametersLink.ContentVersion.ToString() + + + + Parameters + + + + $_.Sku.Name.ToString() + + + + $_.Sku.Plan.Name.ToString() + + + + $_.Sku.Plan.Type.ToString() + + + + $_.Sku.Plan.Id.ToString() + + + + Version + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowRun + + Microsoft.Azure.Management.Logic.Models.WorkflowRun + + + + + + + + CorrelationId + + + + EndTime + + + + Error + + + + Name + + + + Outputs + + + + StartTime + + + + Status + + + + $_.Trigger.Name.ToString() + + + + $_.Workflow.Name.Split('/')[0] + + + + $_.Workflow.Name.Split('/')[1] + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowRunAction + + Microsoft.Azure.Management.Logic.Models.WorkflowRunAction + + + + + + + + Code + + + + EndTime + + + + Error + + + + $_.InputsLink.Uri + + + + Name + + + + $_.OutputsLink.Uri + + + + StartTime + + + + Status + + + + TrackingId + + + + Type + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowTrigger + + Microsoft.Azure.Management.Logic.Models.WorkflowTrigger + + + + + + + + ChangedTime + + + + CreatedTime + + + + LastExecutionTime + + + + Name + + + + NextExecutionTime + + + + $_.Recurrence.Frequency.ToString() + + + + $_.Recurrence.Interval + + + + Status + + + + Type + + + + $_.Workflow.Name.Split('/')[0] + + + + $_.Workflow.Name.Split('/')[1] + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowTriggerHistory + + Microsoft.Azure.Management.Logic.Models.WorkflowTriggerHistory + + + + + + + + Code + + + + EndTime + + + + Error + + + + Fired + + + + $_.InputsLink.Uri + + + + Name + + + + $_.OutputsLink.Uri + + + + $_.Run.Name + + + + StartTime + + + + Status + + + + TrackingId + + + + Type + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowAccessKey + + Microsoft.Azure.Management.Logic.Models.WorkflowAccessKey + + + + + + + + Name + + + + NotAfter + + + + NotBefore + + + + Type + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowSecretKeys + + Microsoft.Azure.Management.Logic.Models.WorkflowSecretKeys + + + + + + + + PrimarySecretKey + + + + SecondarySecretKey + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs index 71c29b1b970b..537fd4eeb557 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs @@ -69,6 +69,15 @@ internal static string ApplicationServicePlanIdFormat { } } + /// + /// Looks up a localized string similar to Definition content needs to be specified.. + /// + internal static string DefinitionMissingWarning { + get { + return ResourceManager.GetString("DefinitionMissingWarning", resourceCulture); + } + } + /// /// Looks up a localized string similar to File {0} does not exist.. /// diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx index ef5e2523020d..e0c15064deaa 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx @@ -120,6 +120,9 @@ /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Web/serverfarms/{2} + + Definition content needs to be specified. + File {0} does not exist. diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs index e66cab7bbe2e..4b3da5f52c8e 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs @@ -24,6 +24,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Utilities using Microsoft.Azure.Management.Logic.Models; using Newtonsoft.Json.Linq; using Newtonsoft.Json; + using Microsoft.Azure.Management.WebSites.Models; /// /// Helper class for the logic app commands @@ -127,5 +128,19 @@ internal static string BuildAppServicePlanId(string planName, string resourceGro return string.Format(CultureInfo.InvariantCulture, Properties.Resource.ApplicationServicePlanIdFormat, subscriptionId, resourceGroupName, planName); } + + /// + /// Converts IEnumerator to IEnumerable + /// + /// Generic Type + /// Enumerator to be converted + /// IEnumerable collection + public static IEnumerable ToIEnumerable(this IEnumerator enumerator) + { + while (enumerator.MoveNext()) + { + yield return enumerator.Current; + } + } } } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs index 898890cfdee0..ac704c62909d 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs @@ -20,6 +20,10 @@ namespace Microsoft.Azure.Commands.LogicApp.Utilities public class Constants { public const string StatusEnabled = "Enabled"; - public const string StatusDisabled = "Disabled"; + public const string StatusDisabled = "Disabled"; + + public const string KeyTypeNotSpecified = "NotSpecified"; + public const string KeyTypePrimary = "Primary"; + public const string KeyTypeSecondary = "Secondary"; } -} +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs index 06a37035124b..15ff67207f61 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs @@ -23,6 +23,11 @@ public abstract class LogicAppBaseCmdlet : AzureRMCmdlet /// private LogicAppClient _logicAppClient = null; + /// + /// Websites client + /// + private WebsitesClient _websitesClient = null; + /// /// Gets or sets the LogicApp client used in the PowerShell commands. /// @@ -44,5 +49,27 @@ public LogicAppClient LogicAppClient this._logicAppClient = value; } } + + /// + /// Gets or sets the WebsitesClient client used in the PowerShell commands. + /// + public WebsitesClient WebsitesClient + { + get + { + this._websitesClient = new WebsitesClient(DefaultProfile.Context) + { + VerboseLogger = WriteVerboseWithTimestamp, + ErrorLogger = WriteErrorWithTimestamp + }; + + return _websitesClient; + } + + set + { + this._websitesClient = value; + } + } } -} +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs index 0981de5de110..bd7cdf1e8ca3 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs @@ -12,21 +12,21 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System.Globalization; namespace Microsoft.Azure.Commands.LogicApp.Utilities { using System; + using System.Management.Automation; + using System.Globalization; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; using Microsoft.Azure.Management.Logic; using Microsoft.Azure.Management.Logic.Models; - using System.Management.Automation; /// /// LogicApp client class /// - public class LogicAppClient + public partial class LogicAppClient { /// /// Gets or sets the Verbose Logger @@ -78,15 +78,7 @@ public LogicAppClient(ILogicManagementClient client) /// Newly created workflow object public Workflow UpdateWorkflow(string resourceGroupName, string workflowName, Workflow workflow) { - if (this.DoesLogicAppExist(resourceGroupName, workflowName)) - { - return this.LogicManagementClient.Workflows.CreateOrUpdate(resourceGroupName, workflowName, workflow); - } - else - { - throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, - Properties.Resource.ResourceNotFound, workflowName, resourceGroupName)); - } + return this.LogicManagementClient.Workflows.CreateOrUpdate(resourceGroupName, workflowName, workflow); } /// @@ -136,7 +128,7 @@ public void RemoveWorkflow(string resourceGroupName, string workflowName) /// Name of the resource group /// Name of the workflow /// Boolean result - public bool DoesLogicAppExist(string resourceGroupName, string workflowName) + private bool DoesLogicAppExist(string resourceGroupName, string workflowName) { bool result = false; try @@ -151,4 +143,4 @@ public bool DoesLogicAppExist(string resourceGroupName, string workflowName) return result; } } -} +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientAccessKeyOperations.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientAccessKeyOperations.cs new file mode 100644 index 000000000000..b84f2fac9588 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientAccessKeyOperations.cs @@ -0,0 +1,74 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Azure.Management.Logic; + using Microsoft.Rest.Azure; + using System; + + /// + /// LogicApp client partial class for access key operations + /// + public partial class LogicAppClient + { + /// + /// Gets the workflow access key by name + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the access key + /// Workflow accesskey object + public WorkflowSecretKeys GetWorkflowAccessKey(string resourceGroupName, string workflowName, + string accessKeyName) + { + return this.LogicManagementClient.WorkflowAccessKeys.ListSecretKeys(resourceGroupName, workflowName, accessKeyName); + } + + /// + /// Gets the list of access keys of specified workflow + /// + /// Name of the resource group + /// Name of the workflow + /// List of the access keys + public Page GetWorkflowAccessKeys(string resourceGroupName, string workflowName) + { + return + (Page) + this.LogicManagementClient.WorkflowAccessKeys.List(resourceGroupName, workflowName); + } + + /// + /// Regenerate secrets for the AccessKeys of the workflow + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the access key + /// Type of key 'NotSpecified', 'Primary', 'Secondary' + /// Workflow secret key object + public WorkflowSecretKeys RegenerateWorkflowAccessKey(string resourceGroupName, string workflowName, + string accessKeyName, string keyType) + { + return this.LogicManagementClient.WorkflowAccessKeys.RegenerateSecretKey( + resourceGroupName, + workflowName, + accessKeyName, + new RegenerateSecretKeyParameters + { + KeyType = (KeyType) Enum.Parse(typeof (KeyType), keyType) + }); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientRunOperations.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientRunOperations.cs new file mode 100644 index 000000000000..85deda045b36 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientRunOperations.cs @@ -0,0 +1,107 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using System; + using System.Collections.Generic; + using System.Linq; + using System.Text; + using System.Threading.Tasks; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Azure.Management.Logic; + using Microsoft.Rest.Azure; + + /// + /// LogicApp client partial class for run operations + /// + public partial class LogicAppClient + { + /// + /// Starts the logic app + /// + /// Name of the resource group + /// Name of the logic app + /// Run parameters + /// Workflow run output + public WorkflowRun RunWorkflow(string resourceGroupName, string workflowName, + RunWorkflowParameters runWorkflowParameters) + { + return this.LogicManagementClient.Workflows.Run(resourceGroupName, workflowName, runWorkflowParameters); + } + + /// + /// Cancels the logic app run. + /// + /// Name of the resource group + /// Name of the workflow + /// Workflow run name + public void CancelWorkflowRun(string resourceGroupName, string workflowName, + string runName) + { + this.LogicManagementClient.WorkflowRuns.Cancel(resourceGroupName, workflowName, runName); + } + + /// + /// Gets the workflow run history. + /// + /// Name of the resource group + /// Name of the workflow + /// List of workflow runs + public Page GetWorkflowRuns(string resourceGroupName, string workflowName) + { + return (Page)this.LogicManagementClient.WorkflowRuns.List(resourceGroupName, workflowName); + } + + /// + /// Gets the logic app run. + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the workflow run + /// Workflow run + public WorkflowRun GetWorkflowRun(string resourceGroupName, string workflowName, + string runName) + { + return this.LogicManagementClient.WorkflowRuns.Get(resourceGroupName, workflowName, runName); + } + + /// + /// Gets the workflow run action + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the workflow run + /// Name of the workflow run action + /// Workflow run action + public WorkflowRunAction GetWorkflowRunAction(string resourceGroupName, string workflowName, + string runName, string actionName) + { + return this.LogicManagementClient.WorkflowRunActions.Get(resourceGroupName, workflowName, runName, + actionName); + } + + /// + /// Gets actions of the specified workflow run. + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the workflow run + /// Actions of the specified workflow run + public Page GetWorkflowRunActions(string resourceGroupName, string workflowName, string runName) + { + return (Page)this.LogicManagementClient.WorkflowRunActions.List(resourceGroupName, workflowName, runName); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientTriggerOperations.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientTriggerOperations.cs new file mode 100644 index 000000000000..b700a77b4c1d --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientTriggerOperations.cs @@ -0,0 +1,92 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Azure.Management.Logic; + using Microsoft.Rest.Azure; + + /// + /// LogicApp client partial class for trigger operations + /// + public partial class LogicAppClient + { + /// + /// Gets the list of triggers in the workflow + /// + /// Name of the resource group + /// Name of the workflow + /// List of triggers in the workflow + public Page GetWorkflowTriggers(string resourceGroupName, string workflowName) + { + return (Page) + this.LogicManagementClient.WorkflowTriggers.List(resourceGroupName, workflowName); + } + + /// + /// Gets the specified trigger from the workflow + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the trigger + /// Workflow trigger + public WorkflowTrigger GetWorkflowTrigger(string resourceGroupName, string workflowName, string triggerName) + { + return this.LogicManagementClient.WorkflowTriggers.Get(resourceGroupName, workflowName, triggerName); + } + + /// + /// Gets the workflow trigger histories. + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the trigger + /// List of trigger histories + public Page GetWorkflowTriggerHistories(string resourceGroupName, string workflowName, + string triggerName) + { + return + (Page) + this.LogicManagementClient.WorkflowTriggerHistories.List(resourceGroupName, workflowName, + triggerName); + } + + /// + /// Gets the workflow history by name + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the trigger + /// Name of the trigger history + /// Workflow history + public WorkflowTriggerHistory GetWorkflowTriggerHistory(string resourceGroupName, string workflowName, + string triggerName, string historyName) + { + return this.LogicManagementClient.WorkflowTriggerHistories.Get(resourceGroupName, workflowName, triggerName, historyName); + } + + /// + /// Runs the workflow trigger + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the trigger + public void RunWorkflowTrigger(string resourceGroupName, string workflowName, + string triggerName) + { + this.LogicManagementClient.WorkflowTriggers.Run(resourceGroupName, workflowName, triggerName); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/WebsitesClient.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/WebsitesClient.cs new file mode 100644 index 000000000000..2373c40f6c07 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/WebsitesClient.cs @@ -0,0 +1,113 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using System; + using Microsoft.Azure.Common.Authentication; + using Microsoft.Azure.Common.Authentication.Models; + using Microsoft.Azure.Management.WebSites; + using Microsoft.Azure.Management.WebSites.Models; + + /// + /// Website client to perform operation on AppServicePlan + /// + public class WebsitesClient + { + /// + /// Verbose Logger + /// + public Action VerboseLogger { get; set; } + + /// + /// Error Logger + /// + public Action ErrorLogger { get; set; } + + /// + /// Warning Logger + /// + public Action WarningLogger { get; set; } + + /// + /// Initializes the client instance + /// + /// + public WebsitesClient(AzureContext context) + { + this.WrappedWebsitesClient = AzureSession.ClientFactory.CreateArmClient(context, AzureEnvironment.Endpoint.ResourceManager); + } + + /// + /// Public property exposing the client instance + /// + public WebSiteManagementClient WrappedWebsitesClient + { + get; + private set; + } + + /// + /// Gets the app service plan from the specified resource group + /// + /// Name of the resource group + /// Name of the App Service Plan name + /// Object represents the AppServicePlan + public ServerFarmWithRichSku GetAppServicePlan(string resourceGroupName, string appServicePlanName) + { + return WrappedWebsitesClient.ServerFarms.GetServerFarm(resourceGroupName, appServicePlanName); + } + + /// + /// Writes verbose + /// + /// Verbose format + /// Arguments to write verbose + private void WriteVerbose(string verboseFormat, params object[] args) + { + if (VerboseLogger != null) + { + VerboseLogger(string.Format(verboseFormat, args)); + } + } + + /// + /// Write warning + /// + /// Warning format + /// Arguments to write warning + private void WriteWarning(string warningFormat, params object[] args) + { + if (WarningLogger != null) + { + WarningLogger(string.Format(warningFormat, args)); + } + } + + /// + /// Write error + /// + /// Error format + /// Arguments to write error + + private void WriteError(string errorFormat, params object[] args) + { + if (ErrorLogger != null) + { + ErrorLogger(string.Format(errorFormat, args)); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/packages.config b/src/ResourceManager/LogicApp/Commands.LogicApp/packages.config index e767c8060454..96457f9489d7 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/packages.config +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/packages.config @@ -7,12 +7,13 @@ + - + From 98080ab82e5f14ab5c1c603b8f29060058664baf Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Fri, 29 Jan 2016 13:25:44 -0800 Subject: [PATCH 04/19] Merged with the latest code from GIT Repo --- setup/azurecmdfiles.wxi | 12948 ++++++++-------- .../LogicApp/.nuget/packages.config | 4 + .../LogicApp/AzureRM.LogicApp.psd1 | 90 + .../Commands.LogicApp.Test.csproj | 266 + .../Commands.LogicApp.Test/MSSharedLibKey.snk | Bin 0 -> 160 bytes .../Properties/AssemblyInfo.cs | 50 + .../TestSimpleWorkflowActionDefinition.json | 45 + .../TestSimpleWorkflowDefinition.json | 27 + .../TestSimpleWorkflowParameter.json | 5 + .../TestSimpleWorkflowTriggerDefinition.json | 60 + .../ScenarioTests/Common.ps1 | 109 + .../ScenarioTests/WorkflowAccessKeyTests.cs | 47 + .../ScenarioTests/WorkflowAccessKeyTests.ps1 | 55 + .../ScenarioTests/WorkflowController.cs | 254 + .../ScenarioTests/WorkflowRunTests.cs | 56 + .../ScenarioTests/WorkflowRunTests.ps1 | 105 + .../ScenarioTests/WorkflowTests.cs | 126 + .../ScenarioTests/WorkflowTests.ps1 | 304 + .../ScenarioTests/WorkflowTriggerTests.cs | 58 + .../ScenarioTests/WorkflowTriggerTests.ps1 | 104 + .../TestGetAzureLogicAppAccessKey.json | 460 + .../TestSetAzureLogicAppAccessKey.json | 529 + .../TestGetAzureLogicAppRunAction.json | 625 + .../TestGetAzureLogicAppRunHistory.json | 853 + .../TestRunLogicApp.json | 739 + ...GetLogicAppUsingDefinitionWithActions.json | 508 + .../TestCreateAndRemoveLogicApp.json | 861 + ...teLogicAppUsingDefinitionWithTriggers.json | 397 + ...ogicAppUsingInputParameterAsHashTable.json | 397 + ...eLogicAppUsingInputfromWorkflowObject.json | 578 + .../TestCreateLogicAppWithDuplicateName.json | 520 + ...LogicAppWithNonExistingAppServicePlan.json | 217 + .../TestRemoveNonExistingLogicApp.json | 213 + .../TestUpdateLogicApp.json | 817 + .../TestGetAzureLogicAppTrigger.json | 460 + .../TestGetAzureLogicAppTriggerHistory.json | 853 + .../TestStartAzureLogicAppTrigger.json | 904 ++ .../Commands.LogicApp.Test/Settings.StyleCop | 1 + .../UnitTests/CreateLogicAppTests.cs | 67 + .../UnitTests/LogicAppUnitTestBase.cs | 45 + .../Commands.LogicApp.Test/packages.config | 29 + .../Cmdlets/CancelAzureLogicAppRunCommand.cs | 57 + .../GetAzureLogicAppAccessKeyCommand.cs | 67 + .../Cmdlets/GetAzureLogicAppCommand.cs | 50 + .../GetAzureLogicAppRunActionCommand.cs | 71 + .../GetAzureLogicAppRunHistoryCommand.cs | 65 + .../Cmdlets/GetAzureLogicAppTriggerCommand.cs | 70 + .../GetAzureLogicAppTriggerHistoryCommand.cs | 75 + .../Cmdlets/NewAzureLogicAppCommand.cs | 171 + .../Cmdlets/RemoveAzureLogicAppCommand.cs | 59 + .../Cmdlets/RunAzureLogicAppCommand.cs | 72 + .../UpdateAzureLogicAppAccessKeyCommand.cs | 66 + .../Cmdlets/UpdateAzureLogicAppCommand.cs | 218 + .../Commands.LogicApp.csproj | 213 + .../Commands.LogicApp/MSSharedLibKey.snk | Bin 0 -> 160 bytes ...osoft.Azure.Commands.LogicApp.dll-Help.xml | 3204 ++++ ...soft.Azure.Commands.LogicApp.dll-help.psd1 | 85 + ...soft.Azure.Commands.LogicApp.format.ps1xml | 375 + .../Properties/AssemblyInfo.cs | 39 + .../Properties/Resource.Designer.cs | 135 + .../Properties/Resource.resx | 144 + .../Utilities/CmdletHelper.cs | 146 + .../Commands.LogicApp/Utilities/Constants.cs | 29 + .../Utilities/LogicAppBaseCmdlet.cs | 75 + .../Utilities/LogicAppClient.cs | 146 + .../LogicAppClientAccessKeyOperations.cs | 74 + .../Utilities/LogicAppClientRunOperations.cs | 107 + .../LogicAppClientTriggerOperations.cs | 92 + .../Utilities/ParameterSet.cs | 34 + .../Utilities/WebsitesClient.cs | 113 + .../Commands.LogicApp/packages.config | 20 + src/ResourceManager/LogicApp/LogicApp.sln | 80 + src/ResourceManager/LogicApp/NuGet.Config | 6 + 73 files changed, 24539 insertions(+), 6405 deletions(-) create mode 100644 src/ResourceManager/LogicApp/.nuget/packages.config create mode 100644 src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/MSSharedLibKey.snk create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowActionDefinition.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowDefinition.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowParameter.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Resources/TestSimpleWorkflowTriggerDefinition.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/Common.ps1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.ps1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.ps1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/Settings.StyleCop create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicAppCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/MSSharedLibKey.snk create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-Help.xml create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.psd1 create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.format.ps1xml create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientAccessKeyOperations.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientRunOperations.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientTriggerOperations.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/WebsitesClient.cs create mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp/packages.config create mode 100644 src/ResourceManager/LogicApp/LogicApp.sln create mode 100644 src/ResourceManager/LogicApp/NuGet.Config diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 29857e458615..9261d8c03b59 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -1,6419 +1,6557 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ResourceManager/LogicApp/.nuget/packages.config b/src/ResourceManager/LogicApp/.nuget/packages.config new file mode 100644 index 000000000000..091917678945 --- /dev/null +++ b/src/ResourceManager/LogicApp/.nuget/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 b/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 new file mode 100644 index 000000000000..a5bedc487cb5 --- /dev/null +++ b/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 @@ -0,0 +1,90 @@ +# +# Module manifest for module 'Microsoft.Azure.Commands.LogicApp' +# +# Generated by: Microsoft Corporation +# +# Generated on: 10/22/2015 +# + +@{ + +# Version number of this module. +ModuleVersion = '0.10.0' + +# ID used to uniquely identify this module +GUID = '8A7D44BB-E747-4265-8F22-B3937961D709' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = 'Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = 'Microsoft Azure PowerShell - LogicApp cmdlets for Azure Resource Manager' + +# Minimum version of the Windows PowerShell engine required by this module +PowerShellVersion = '3.0' + +# Name of the Windows PowerShell host required by this module +PowerShellHostName = '' + +# Minimum version of the Windows PowerShell host required by this module +PowerShellHostVersion = '' + +# Minimum version of the .NET Framework required by this module +DotNetFrameworkVersion = '4.0' + +# Minimum version of the common language runtime (CLR) required by this module +CLRVersion='4.0' + +# Processor architecture (None, X86, Amd64, IA64) required by this module +ProcessorArchitecture = 'None' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @( @{ ModuleName = 'AzureRM.Profile'; ModuleVersion = '1.0.1'} ) + +# Assemblies that must be loaded prior to importing this module +RequiredAssemblies = @() + +# Script files (.ps1) that are run in the caller's environment prior to importing this module +ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +FormatsToProcess = @( + '.\Microsoft.Azure.Commands.LogicApp.format.ps1xml' +) + +# Modules to import as nested modules of the module specified in ModuleToProcess +NestedModules = @( + '.\Microsoft.Azure.Commands.LogicApp.dll' +) + +# Functions to export from this module +FunctionsToExport = '*' + +# Cmdlets to export from this module +CmdletsToExport = '*' + +# Variables to export from this module +VariablesToExport = '*' + +# Aliases to export from this module +AliasesToExport = @() + +# List of all modules packaged with this module +ModuleList = @() + +# List of all files packaged with this module +FileList = @() + +# Private data to pass to the module specified in ModuleToProcess +PrivateData = '' + +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj new file mode 100644 index 000000000000..1b87d9776786 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj @@ -0,0 +1,266 @@ + + + + + + Debug + AnyCPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107} + Library + Properties + Microsoft.Azure.Commands.LogicApp.Test + Microsoft.Azure.Commands.LogicApp.Test + v4.5 + 512 + {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 10.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages + False + ..\ + true + a5adf578 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + false + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + false + + + + False + ..\..\..\packages\Hyak.Common.1.0.3\lib\net45\Hyak.Common.dll + + + False + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll + + + False + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.6.1-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + + + False + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + True + + + False + ..\..\..\packages\Microsoft.Azure.Gallery.2.6.2-preview\lib\net40\Microsoft.Azure.Gallery.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.Logic.0.1.0-preview\lib\net45\Microsoft.Azure.Management.Logic.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.WebSites.0.16.7-preview\lib\net45\Microsoft.Azure.Management.WebSites.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.11-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + + False + ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5799.28345-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll + + + False + ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.6.0-preview\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll + + + False + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + + False + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll + + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.1.2.1-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.TestFramework.1.2.0-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll + + + ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll + True + + + ..\..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll + + + False + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + + + + + + + + 3.5 + + + False + + + ..\..\..\packages\xunit.1.9.2\lib\net20\xunit.dll + True + + + ..\..\..\packages\xunit.extensions.1.9.2\lib\net20\xunit.extensions.dll + True + + + + + + + + + + + + + + + PreserveNewest + + + + Designer + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + + + {3436a126-edc9-4060-8952-9a1be34cdd95} + Commands.ScenarioTests.ResourceManager.Common + + + {ffe4e475-b32c-4f89-9d52-f7cebf709c74} + Commands.LogicApp + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/MSSharedLibKey.snk b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/MSSharedLibKey.snk new file mode 100644 index 0000000000000000000000000000000000000000..695f1b38774e839e5b90059bfb7f32df1dff4223 GIT binary patch literal 160 zcmV;R0AK$ABme*efB*oL000060ssI2Bme+XQ$aBR1ONa50098C{E+7Ye`kjtcRG*W zi8#m|)B?I?xgZ^2Sw5D;l4TxtPwG;3)3^j?qDHjEteSTF{rM+4WI`v zCD?tsZ^;k+S&r1&HRMb=j738S=;J$tCKNrc$@P|lZ +function Get-ResourceGroupName +{ + return getAssetName +} + +<# +.SYNOPSIS +Gets valid resource name +#> +function Get-ResourceName +{ + return getAssetName +} + +<# +.SYNOPSIS +Gets the default location for a provider +#> +function Get-ProviderLocation($provider) +{ + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + $namespace = $provider.Split("/")[0] + if($provider.Contains("/")) + { + $type = $provider.Substring($namespace.Length + 1) + $location = Get-AzureRmResourceProvider -ProviderNamespace $namespace | where {$_.ResourceTypes[0].ResourceTypeName -eq $type} + + if ($location -eq $null) + { + return "West US" + } else + { + return $location.Locations[0] + } + } + + return "West US" + } + + return "WestUS" +} + +<# +.SYNOPSIS +Creates a resource group to use in tests +#> +function TestSetup-CreateResourceGroup +{ + $resourceGroupName = getAssetName + $rglocation = Get-ProviderLocation "North Europe" + $resourceGroup = New-AzureRmResourceGroup -Name $resourceGroupName -location $rglocation -Force + + return $resourceGroup +} + +<# +.SYNOPSIS +Creates an App Service Plan +#> +function TestSetup-CreateAppServicePlan ([string]$resourceGroupName, [string]$AppServicePlan) +{ + if(Test-Path Env:AZURE_TEST_MODE) + { + $AZURE_TEST_MODE = Get-ChildItem Env:AZURE_TEST_MODE + if($AZURE_TEST_MODE.Value.ToLowerInvariant() -eq 'record') + { + $PropertiesObject = @{} + $Sku = @{Name='S1'; Tier='Standard'; Size='S1'; Family='S'; Capacity=1} + $Plan = New-AzureRmResource -Name $AppServicePlan -Location "West US" -ResourceGroupName $resourceGroupName -ResourceType "Microsoft.Web/serverfarms" -ApiVersion 2015-08-01 -SkuObject $Sku -PropertyObject $PropertiesObject -Force + return $Plan + } + } + return $null +} + +<# +.SYNOPSIS +Creates a new workflow +#> +function TestSetup-CreateWorkflow ([string]$resourceGroupName, [string]$workflowName, [string]$AppServicePlan) +{ + $rglocation = Get-ProviderLocation "North Europe" + $resourceGroup = New-AzureRmResourceGroup -Name $resourceGroupName -location $rglocation -Force + + TestSetup-CreateAppServicePlan $resourceGroupName $AppServicePlan + + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $AppServicePlan -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + return $workflow +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.cs new file mode 100644 index 000000000000..82fd105aff56 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests +{ + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; + using Xunit; + + /// + /// Scenario tests for the Workflow access key commands + /// + public class WorkflowAccessKeyTests : RMTestBase + { + /// + /// Test Get-AzureLogicAppAccessKey command to verify the get operation for access keys of a workflow. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAzureLogicAppAccessKey() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-GetAzureLogicAppAccessKey"); + } + + /// + /// Test Set-AzureLogicAppAccessKey command to verify the secret regeneration operation for the access keys of a workflow. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSetAzureLogicAppAccessKey() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-SetAzureLogicAppAccessKey"); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.ps1 new file mode 100644 index 000000000000..0ec63097c857 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowAccessKeyTests.ps1 @@ -0,0 +1,55 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Get-AzureLogicAppAccessKey for workflow +#> +function Test-GetAzureLogicAppAccessKey +{ + + $resourceGroupName = getAssetname + $workflowName = getAssetname + $planName = "StandardServicePlan" + + $workflow = TestSetup-CreateWorkflow $resourceGroupName $workflowName $planName + + #Case1: Get access keys of the workflow + $workflowAccessKeys = Get-AzureLogicAppAccessKey -ResourceGroupName $resourceGroupName -Name $workflowName + Assert-NotNull $workflowAccessKeys + + #Case2: Get specific access key of the workflow + $workflowAccessKeys = Get-AzureLogicAppAccessKey -ResourceGroupName $resourceGroupName -Name $workflowName -AccessKeyName "default" + Assert-NotNull $workflowAccessKeys +} + +<# +.SYNOPSIS +Test Set-AzureLogicAppAccessKey for workflow +#> +function Test-SetAzureLogicAppAccessKey +{ + $resourceGroupName = getAssetname + $workflowName = getAssetname + $planName = "StandardServicePlan" + $workflow = TestSetup-CreateWorkflow $resourceGroupName $workflowName $planName + + #Case1: Regenerate secret for the access key of the workflow + $workflowAccessKeys = Get-AzureLogicAppAccessKey -ResourceGroupName $resourceGroupName -Name $workflowName + $workflowAccessKey1 = Set-AzureLogicAppAccessKey -ResourceGroupName $resourceGroupName -Name $workflowName -AccessKeyName "default" -KeyType "Primary" + $workflowAccessKey2 = Set-AzureLogicAppAccessKey -ResourceGroupName $resourceGroupName -Name $workflowName -AccessKeyName "default" -KeyType "Secondary" + + Assert-AreNotEqual $workflowAccessKey1.PrimarySecretKey $workflowAccessKeys.PrimarySecretKey + Assert-AreNotEqual $workflowAccessKey2.SecondarySecretKey $workflowAccessKeys.SecondarySecretKey +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs new file mode 100644 index 000000000000..a685cd20e4f2 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowController.cs @@ -0,0 +1,254 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Common.Authentication; + using Microsoft.Azure.Gallery; + using Microsoft.Azure.Management.Authorization; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Subscriptions; + using Microsoft.Azure.Test.HttpRecorder; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using LegacyTest = Microsoft.Azure.Test; + using TestEnvironmentFactory = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestEnvironmentFactory; + using TestUtilities = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities; + using Microsoft.Azure.Management.WebSites; + + /// + /// Test controller for the logic app scenario testing + /// + public class WorkflowController + { + /// + /// CSM test factory + /// + private LegacyTest.CSMTestEnvironmentFactory csmTestFactory; + + /// + /// EnvironmentSetupHelper instance + /// + private EnvironmentSetupHelper helper; + + /// + /// Authorization Api Version + /// + private const string AuthorizationApiVersion = "2014-07-01-preview"; + + /// + /// Gets or sets the ResourceManagementClient + /// + public ResourceManagementClient ResourceManagementClient { get; private set; } + + /// + /// Gets or sets the SubscriptionClient + /// + public SubscriptionClient SubscriptionClient { get; private set; } + + /// + /// Gets or sets the LogicManagementClient + /// + public LogicManagementClient LogicManagementClient { get; private set; } + + /// + /// Gets or sets the WebSiteManagementClient + /// + public WebSiteManagementClient WebsiteManagementClient { get; private set; } + + /// + /// Gets or sets the AuthorizationManagementClient + /// + public AuthorizationManagementClient AuthorizationManagementClient { get; private set; } + + /// + /// Gets or sets the GalleryClient + /// + public GalleryClient GalleryClient { get; private set; } + + /// + /// Create a new instance of workflow controller. + /// + public static WorkflowController NewInstance + { + get { return new WorkflowController(); } + } + + /// + /// Initiliazes the workflow controller + /// + public WorkflowController() + { + helper = new EnvironmentSetupHelper(); + } + + /// + /// Runs the PowerShell test + /// + /// script to be executed + public void RunPowerShellTest(params string[] scripts) + { + var callingClassType = TestUtilities.GetCallingClass(2); + var mockName = TestUtilities.GetCurrentMethodName(2); + + RunPsTestWorkflow( + () => scripts, + // no custom initializer + null, + // no custom cleanup + null, + callingClassType, + mockName); + } + + /// + /// Runs the PowerShell test under mock undo context based on the test mode setting (Record|Playback) + /// + /// Script builder delegate + /// initialize action + /// cleanup action + /// Calling class type + /// Mock Name + public void RunPsTestWorkflow( + Func scriptBuilder, + Action initialize, + Action cleanup, + string callingClassType, + string mockName) + { + Dictionary d = new Dictionary(); + d.Add("Microsoft.Authorization", AuthorizationApiVersion); + HttpMockServer.Matcher = new PermissiveRecordMatcherWithApiExclusion(false, d); + + using (MockContext context = MockContext.Start(callingClassType, mockName)) + { + this.csmTestFactory = new LegacyTest.CSMTestEnvironmentFactory(); + if (initialize != null) + { + initialize(this.csmTestFactory); + } + SetupManagementClients(context); + helper.SetupEnvironment(AzureModule.AzureResourceManager); + + var callingClassName = callingClassType + .Split(new[] {"."}, StringSplitOptions.RemoveEmptyEntries) + .Last(); + helper.SetupModules(AzureModule.AzureResourceManager, + "ScenarioTests\\Common.ps1", + "ScenarioTests\\" + callingClassName + ".ps1", + helper.RMProfileModule, + helper.RMResourceModule, + helper.GetRMModulePath(@"AzureRM.LogicApp.psd1")); + + try + { + if (scriptBuilder != null) + { + var psScripts = scriptBuilder(); + + if (psScripts != null) + { + helper.RunPowerShellTest(psScripts); + } + } + } + finally + { + if (cleanup != null) + { + cleanup(); + } + } + } + } + + /// + /// Set up mock clients + /// + /// + private void SetupManagementClients(MockContext context) + { + ResourceManagementClient = GetResourceManagementClient(); + SubscriptionClient = GetSubscriptionClient(); + AuthorizationManagementClient = GetAuthorizationManagementClient(); + GalleryClient = GetGalleryClient(); + LogicManagementClient = GetLogicManagementClient(context); + WebsiteManagementClient = GetWebsiteManagementClient(context); + helper.SetupManagementClients(ResourceManagementClient, + SubscriptionClient, + AuthorizationManagementClient, + GalleryClient, + LogicManagementClient, + WebsiteManagementClient + ); + } + + /// + /// Create an AuthorizationManagementClient instance based on mode setting + /// + /// AuthorizationManagementClient instance + private AuthorizationManagementClient GetAuthorizationManagementClient() + { + return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory); + } + + /// + /// Creates a ResourceManagementClient instance + /// + /// ResourceManagementClient instance + private ResourceManagementClient GetResourceManagementClient() + { + return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory); + } + + /// + /// Creates LogicManagementClient instance based on mode setting + /// + /// Mock undocontext + /// LogicManagementClient instance + private LogicManagementClient GetLogicManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + /// + /// Creates WebSiteManagementClient instance based on mode setting + /// + /// Mock undocontext + /// WebSiteManagementClient instance + private WebSiteManagementClient GetWebsiteManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private SubscriptionClient GetSubscriptionClient() + { + return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory); + } + + /// + /// Creates a Gallery Client based on mode setting + /// + /// GalleryClient instamce + private GalleryClient GetGalleryClient() + { + return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory); + } + } +} + diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.cs new file mode 100644 index 000000000000..5383167a09c0 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.cs @@ -0,0 +1,56 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests +{ + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; + using Xunit; + + /// + /// Scenario tests for the Workflow run commands + /// + public class WorkflowRunTests : RMTestBase + { + /// + /// Test Start-Azurelogicapp and Stop-Azurelogicapp command to run workflow + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRunLogicApp() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-StartLogicApp"); + } + + /// + /// Test Get-AzureLogicAppRun and Get-AzureLogicAppRunHistory command to get logic app run history + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAzureLogicAppRunHistory() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-GetAzureLogicAppRunHistory"); + } + + /// + /// Test Get-AzureLogicAppRunAction command to get logic app run action + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAzureLogicAppRunAction() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-GetAzureLogicAppRunAction"); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.ps1 new file mode 100644 index 000000000000..c5861831902a --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowRunTests.ps1 @@ -0,0 +1,105 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Start and Stop AzureLogicApp command for logic app workflow. +#> +function Test-StartLogicApp +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + [int]$counter = 0 + do { + Sleep -seconds 2 + $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + } while ($workflow.State -ne "Enabled" -and $counter++ -lt 5) + + Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" +} + +<# +.SYNOPSIS +Test Get-AzureLogicAppRunHistory and Get-AzureLogicAppRun command to get the logic app history +#> +function Test-GetAzureLogicAppRunHistory +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + [int]$counter = 0 + do { + Sleep -seconds 2 + $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + } while ($workflow.State -ne "Enabled" -and $counter++ -lt 5) + + Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + + $runHistory = Get-AzureLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName + Assert-NotNull $runHistory + $run = Get-AzureLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name + Assert-NotNull $run + Assert-AreEqual $runHistory[0].Name $run.Name +} + +<# +.SYNOPSIS +Test Get-AzureLogicAppRunAction command to get the logic app run action +#> +function Test-GetAzureLogicAppRunAction +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + [int]$counter = 0 + do { + Sleep -seconds 2 + $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + } while ($workflow.State -ne "Enabled" -and $counter++ -lt 5) + + Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + + $runHistory = Get-AzureLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName + Assert-NotNull $runHistory + + $actions = Get-AzureLogicAppRunAction -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name + Assert-NotNull $actions + Assert-AreEqual 2 $actions.Count + + $action = Get-AzureLogicAppRunAction -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name -ActionName "http" + Assert-NotNull $action + +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs new file mode 100644 index 000000000000..88de24be8932 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.cs @@ -0,0 +1,126 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests +{ + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; + using Xunit; + + /// + /// Scenario tests for the Create logic app command + /// + public class WorkflowTests : RMTestBase + { + + /// + ///Test New-AzureLogicApp with physical file paths + ///Test New-AzureLogicApp using definition object and parameter file + ///Test New-AzureLogicApp using piped input + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateAndRemoveLogicApp() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateAndRemoveLogicApp"); + } + + /// + /// Test New-AzurelogicApp command to create workflow with duplicate name. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateLogicAppWithDuplicateName() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateLogicAppWithDuplicateName"); + } + + /// + /// Test New-AzurelogicApp command with workflow object for parameters and definition input. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateLogicAppUsingInputfromWorkflowObject() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateLogicAppUsingInputfromWorkflowObject"); + } + + /// + /// Test New-AzurelogicApp command with parameters parameter as Hashtable + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateLogicAppUsingInputParameterAsHashTable() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateLogicAppUsingInputParameterAsHashTable"); + } + + /// + /// Test New-AzurelogicApp command with workflow definition with triggers + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateLogicAppUsingDefinitionWithTriggers() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateLogicAppUsingDefinitionWithTriggers"); + } + + /// + ///Test New-AzureLogicApp with only definition + ///Test Get-AzureLogicApp + ///Test Get-AzureLogicApp for a non-existing logic app + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateAndGetLogicAppUsingDefinitionWithActions() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateAndGetLogicAppUsingDefinitionWithActions"); + } + + /// + /// Test Remove-AzurelogicApp command to remove non-existing workflow + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRemoveNonExistingLogicApp() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-RemoveNonExistingLogicApp"); + } + + /// + ///Test Set-AzureLogicApp command to update workflow defintion without parametrs. + ///Test Set-AzureLogicApp command to update workflow defintion and state to Disabled. + ///Test Set-AzureLogicApp command to update workflow state to Enabled. + ///Test Set-AzureLogicApp command to set logic app with null definition. + ///Test Set-AzureLogicApp command to set non-existing logic app. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestUpdateLogicApp() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-UpdateLogicApp"); + } + + /// + ///Test New-AzureLogicApp to create logic app for non-existing service plan. Constraint validation. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateLogicAppWithNonExistingAppServicePlan() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-CreateLogicAppWithNonExistingAppServicePlan"); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 new file mode 100644 index 000000000000..e9d51686d40a --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 @@ -0,0 +1,304 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test New-AzureLogicApp with physical file paths +Test New-AzureLogicApp using definition object and parameter file +Test New-AzureLogicApp using piped input +#> +function Test-CreateAndRemoveLogicApp +{ + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + + #Create App Service Plan + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + #Case1 : Using physical file + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + + Assert-NotNull $workflow + Assert-NotNull $workflow.Definition + Assert-NotNull $workflow.Parameters + Assert-AreEqual $workflowName $workflow.Name + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force + + #Case2 : Using definition object and parameter file + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + $definition = [IO.File]::ReadAllText("Resources\TestSimpleWorkflowDefinition.json") + + $workflowName = getAssetname + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Definition $definition -ParameterFilePath $parameterFilePath -AppServicePlan $planName + + Assert-NotNull $workflow + Assert-NotNull $workflow.Definition + Assert-NotNull $workflow.Parameters + Assert-AreEqual $workflowName $workflow.Name + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force + + #Case3 : Create using Piped input + + $workflowName = getAssetname + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + + Assert-NotNull $workflow + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force +} + +<# +.SYNOPSIS +Test New-AzureLogicApp to create a workflow with a duplicate name. +#> +function Test-CreateLogicAppWithDuplicateName +{ + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + $resourceGroupName = $resourceGroup.ResourceGroupName + + #Create App Service Plan + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + + Assert-NotNull $workflow + try + { + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + } + catch + { + Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/$WorkflowName' under resource group '$resourceGroupName' already exists." + } + + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with workflow object +#> +function Test-CreateLogicAppUsingInputfromWorkflowObject +{ + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $newWorkflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $newWorkflowName -AppServicePlan $planName -Definition $workflow.Definition -Parameters $workflow.Parameters + + Assert-NotNull $workflow + Assert-NotNull $workflow.Definition + Assert-NotNull $workflow.Parameters + Assert-AreEqual $newWorkflowName $workflow.Name + Assert-AreEqual "Enabled" $workflow.State + + Remove-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Force +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with Parameter as hash table +#> +function Test-CreateLogicAppUsingInputParameterAsHashTable +{ + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameters = @{destinationUri="http://www.bing.com"} + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -Parameters $parameters -AppServicePlan $planName + + Assert-NotNull $workflow + Assert-NotNull $workflow.Parameters + + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with only definition +#> +function Test-CreateLogicAppUsingDefinitionWithTriggers +{ + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + Assert-NotNull $workflow + + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Force +} + +<# +.SYNOPSIS +Test New-AzureLogicApp with only definition +Test Get-AzureLogicApp +Test Get-AzureLogicApp for a non-existing logic app +#> +function Test-CreateAndGetLogicAppUsingDefinitionWithActions +{ + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + $definitionFilePath = "Resources\TestSimpleWorkflowActionDefinition.json" + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + #Case1: Create logic app without parameters + $workflow1 = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + Assert-NotNull $workflow1 + + #Case1: Get logic app using get cmdlet + $workflow2 = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + Assert-NotNull $workflow2 + + #Case1: Get non-existing logic app using get cmdlet + try + { + Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name "InvalidWorkflow" + } + catch + { + Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/InvalidWorkflow' under resource group '$resourceGroupName' was not found." + } + + Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Force +} + +<# +.SYNOPSIS +Test Remove-AzureLogicApp command to remove nonexisting workflow by name. +#> +function Test-RemoveNonExistingLogicApp +{ + $WorkflowName = "09e81ac4-848a-428d-82a6-7d61953e3940" + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + + Remove-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $WorkflowName -Force +} + +<# +.SYNOPSIS +Test Set-AzureLogicApp command to update workflow defintion without parametrs. +Test Set-AzureLogicApp command to update workflow defintion and state to Disabled. +Test Set-AzureLogicApp command to update workflow state to Enabled. +Test Set-AzureLogicApp command to set logic app with null definition. +Test Set-AzureLogicApp command to set non-existing logic app. +#> +function Test-UpdateLogicApp +{ + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $simpleDefinitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $simpleParameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $simpleDefinitionFilePath -ParameterFilePath $simpleParameterFilePath + + Assert-NotNull $workflow + + #Case1: Update definition with no parameters and disable + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -State "Disabled" -DefinitionFilePath $definitionFilePath -Parameters $null + + Assert-NotNull $UpdatedWorkflow + Assert-AreEqual $UpdatedWorkflow.State "Disabled" + + #Case2: Update definition with parameters of logic app + $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $simpleDefinitionFilePath -ParameterFilePath $simpleParameterFilePath + + Assert-NotNull $UpdatedWorkflow + + #Case3: Enable the logic app + $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -State "Enabled" + + Assert-NotNull $UpdatedWorkflow + Assert-AreEqual $UpdatedWorkflow.State "Enabled" + + #Case4: Test update command to set logic app with null definition + try + { + $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Definition $null + } + catch + { + Assert-AreEqual $_.Exception.Message "Definition content needs to be specified." + } + + #Case5: Update non-existing workflow + + try + { + $workflowName = "82D2D842-C312-445C-8A4D-E3EE9542436D" + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath + } + catch + { + Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/$workflowName' under resource group '$resourceGroupName' was not found." + } +} + +<# +.SYNOPSIS +Test New-AzureLogicApp to create logic app for non-existing service plan. Constraint validation. +#> +function Test-CreateLogicAppWithNonExistingAppServicePlan +{ + $resourceGroup = TestSetup-CreateResourceGroup + $workflowName = getAssetname + $resourceGroupName = $resourceGroup.ResourceGroupName + $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" + $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" + $Plan = "B9F87338CAE4470F9116F3D685365748" + try + { + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $Plan -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + } + catch + { + Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Web/serverFarms/$Plan' under resource group '$resourceGroupName' was not found." + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.cs new file mode 100644 index 000000000000..b65710bc1948 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.cs @@ -0,0 +1,58 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests +{ + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; + using Xunit; + + /// + /// Scenario tests for the Workflow trigger commands + /// + public class WorkflowTriggerTests : RMTestBase + { + + /// + /// Test Test-GetAzureLogicAppTrigger command to verify the trigger in the workflow. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAzureLogicAppTrigger() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-GetAzureLogicAppTrigger"); + } + + /// + /// Test Get-AzureLogicAppTriggerHistory command to verify the trigger history for the workflow. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetAzureLogicAppTriggerHistory() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-GetAzureLogicAppTriggerHistory"); + } + + /// + /// Test Start-AzureLogicAppTrigger command to run the trigger of the workflow. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestStartAzureLogicAppTrigger() + { + WorkflowController.NewInstance.RunPowerShellTest("Test-StartAzureLogicAppTrigger"); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 new file mode 100644 index 000000000000..a350118e6107 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 @@ -0,0 +1,104 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Get-AzureLogicAppTrigger for workflow triggers and test to get trigger by name +#> +function Test-GetAzureLogicAppTrigger +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + $workflowTrigger = Get-AzureLogicAppTrigger -ResourceGroupName $resourceGroupName -Name $workflowName + Assert-NotNull $workflowTrigger + + $workflowTrigger = Get-AzureLogicAppTrigger -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + Assert-NotNull $workflowTrigger +} + +<# +.SYNOPSIS +Test Get-AzureLogicAppTriggerHistory command to get workflow trigger histories and history by history name +#> +function Test-GetAzureLogicAppTriggerHistory +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + [int]$counter = 0 + do { + Sleep -seconds 2 + $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + } while ($workflow.State -ne "Enabled" -or $counter++ -lt 5) + + Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + + $workflowTriggerHistories = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + Assert-NotNull $workflowTriggerHistories + $firstHistory = $workflowTriggerHistories[0] + + $workflowTriggerHistory = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" -HistoryName $firstHistory.Name + Assert-NotNull $workflowTriggerHistory +} + +<# +.SYNOPSIS +Test Start-AzureLogicAppTrigger command to run workflow trigger +#> +function Test-StartAzureLogicAppTrigger +{ + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $planName = "StandardServicePlan" + $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName + + $workflowName = getAssetname + $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" + + $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + + [int]$counter = 0 + do { + Sleep -seconds 2 + $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + } while ($workflow.State -ne "Enabled" -or $counter++ -lt 5) + + $workflowTriggerHistories1 = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + $counter = 2 + while($val -lt $counter) + { + Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + Sleep -seconds 1 + $val++ + } + + $workflowTriggerHistories2 = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + $count = $workflowTriggerHistories2.Count - $workflowTriggerHistories1.Count + Assert-AreEqual $counter $count +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json new file mode 100644 index 000000000000..5bde5af3bc70 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json @@ -0,0 +1,460 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14852" + ], + "x-ms-request-id": [ + "fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + ], + "x-ms-correlation-request-id": [ + "fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010906Z:fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:05 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178\",\r\n \"name\": \"onesdk5178\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-request-id": [ + "bca36f12-62d2-4da8-bd72-e59936d61ffd" + ], + "x-ms-correlation-request-id": [ + "bca36f12-62d2-4da8-bd72-e59936d61ffd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010907Z:bca36f12-62d2-4da8-bd72-e59936d61ffd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14851" + ], + "x-ms-request-id": [ + "0729381c-ef54-41ba-a062-9eb95a2fde11" + ], + "x-ms-correlation-request-id": [ + "0729381c-ef54-41ba-a062-9eb95a2fde11" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010908Z:0729381c-ef54-41ba-a062-9eb95a2fde11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7243db3-d679-4df2-bf4c-246c51fd8d1a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5178-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5178\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9bd8879d-7c82-4059-9bcd-ca337e8f7a6a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "570ee219-6ed6-4842-9f8e-809fdf7c93bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010922Z:570ee219-6ed6-4842-9f8e-809fdf7c93bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8671433-f6bc-425e-b4fd-5590b8c6d896" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5243' under resource group 'onesdk5178' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + ], + "x-ms-correlation-request-id": [ + "9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010924Z:9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:24 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "8be2ca11-60d4-46cd-a25b-26d6910d2000" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T01:09:26.655401Z\",\r\n \"changedTime\": \"2016-01-29T01:09:26.655401Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475771190422936\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243\",\r\n \"name\": \"onesdk5243\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1353" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4932d099-158a-4c06-b205-4c87ed84bbea" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "9b0f509c-d637-4f55-aa24-81df77cd6a40" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010927Z:9b0f509c-d637-4f55-aa24-81df77cd6a40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:27 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0My9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2aa9e90b-d68f-441a-820b-d7ce9ad80c18" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"primarySecretKey\": \"Tsh10h0ckKvL8lPc4mKeNfschFYcSEHnmYJyApUJ1o4\",\r\n \"secondarySecretKey\": \"r1saXhjdLwT3fMKXDdIjJP-tTkTjD7lvgct8RRuGSos\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:6ba967a1-8d58-43e2-9efd-1260e2e1a0fe" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "d2786f6c-d6e2-4ce8-a947-a6e4eacb8f47" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010928Z:d2786f6c-d6e2-4ce8-a947-a6e4eacb8f47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0My9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af461cf2-e54a-45eb-9bd6-62f38d2424e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"primarySecretKey\": \"Tsh10h0ckKvL8lPc4mKeNfschFYcSEHnmYJyApUJ1o4\",\r\n \"secondarySecretKey\": \"r1saXhjdLwT3fMKXDdIjJP-tTkTjD7lvgct8RRuGSos\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f2ea06d6-cc1c-45b9-b873-225012dbe621" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "bd12880e-eeb8-4e9f-b6c9-4844bcb763e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010928Z:bd12880e-eeb8-4e9f-b6c9-4844bcb763e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:28 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureLogicAppAccessKey": [ + "onesdk5178", + "onesdk5243" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json new file mode 100644 index 000000000000..d9062dffa8fb --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json @@ -0,0 +1,529 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-request-id": [ + "daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" + ], + "x-ms-correlation-request-id": [ + "daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010954Z:daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:53 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263\",\r\n \"name\": \"onesdk5263\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2b376747-12b6-4a60-ab45-506b49dc409b" + ], + "x-ms-correlation-request-id": [ + "2b376747-12b6-4a60-ab45-506b49dc409b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010954Z:2b376747-12b6-4a60-ab45-506b49dc409b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:54 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-request-id": [ + "67cd25a9-2d45-4c48-8b9e-2549961e1026" + ], + "x-ms-correlation-request-id": [ + "67cd25a9-2d45-4c48-8b9e-2549961e1026" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T010954Z:67cd25a9-2d45-4c48-8b9e-2549961e1026" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:09:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4687a65f-26be-4e0f-8084-36845014b004" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5263-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5263\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f266357-3972-4c1e-b314-20c896073afe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], + "x-ms-correlation-request-id": [ + "7b8d475a-441d-4cf1-a039-3cf6dddfed4f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T011006Z:7b8d475a-441d-4cf1-a039-3cf6dddfed4f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:10:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2201c695-d1dc-46d1-9040-fb0ed1250f6b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1321' under resource group 'onesdk5263' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c074589b-8556-421e-81a9-73577d045289" + ], + "x-ms-correlation-request-id": [ + "c074589b-8556-421e-81a9-73577d045289" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T011006Z:c074589b-8556-421e-81a9-73577d045289" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:10:06 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "e639c8b7-7077-4fd4-ad5e-a9f6d41bfbd5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T01:10:07.0573017Z\",\r\n \"changedTime\": \"2016-01-29T01:10:07.0573017Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475770784639634\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321\",\r\n \"name\": \"onesdk1321\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:a601786f-7220-49b7-9558-8623da54682a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "440dfca1-0f37-49d4-994e-06ede2eec746" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T011007Z:440dfca1-0f37-49d4-994e-06ede2eec746" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:10:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "869ae19b-657a-4227-a82d-b7ab80fb6843" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"primarySecretKey\": \"YZW1xS0prm1_EiQpO_n-HlY7N0OEQm-iJ8sx8XtWMjo\",\r\n \"secondarySecretKey\": \"uih3AnckeTr_v9hlc2auwDdBa6iiH1nIbphML28APMY\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:65882875-a433-4773-9c62-5a3907305d56" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "5e09656a-6e6b-45a7-b30a-1ab6297edb2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T011007Z:5e09656a-6e6b-45a7-b30a-1ab6297edb2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:10:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/regenerate?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvcmVnZW5lcmF0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ], + "x-ms-client-request-id": [ + "afbe2f3a-1bf9-4a01-99bb-c3a2a2009d18" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"primarySecretKey\": \"ecEOidpW_n3a23_FjvsmdWYxuu7pvXUUZvriOBOdeLE\",\r\n \"secondarySecretKey\": \"uih3AnckeTr_v9hlc2auwDdBa6iiH1nIbphML28APMY\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:d1f1d1a6-b00a-4774-84dc-5ec5bb6c8055" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "696869f7-db94-4cb3-b614-c8611875af83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T011008Z:696869f7-db94-4cb3-b614-c8611875af83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:10:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/regenerate?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvcmVnZW5lcmF0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"keyType\": \"Secondary\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "30" + ], + "x-ms-client-request-id": [ + "ab03645f-9f92-40cf-bf67-ff37acc2a812" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"primarySecretKey\": \"ecEOidpW_n3a23_FjvsmdWYxuu7pvXUUZvriOBOdeLE\",\r\n \"secondarySecretKey\": \"OgR-KLRd9Lp2DeQJlorDKuc10Ri53-gwCjFnZOxKZcs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:a6001f0d-580a-4419-b51b-c56d503fe86e" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "4ba7fa28-0afe-4e61-bf1a-a11105ca68d9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T011008Z:4ba7fa28-0afe-4e61-bf1a-a11105ca68d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 01:10:07 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-SetAzureLogicAppAccessKey": [ + "onesdk5263", + "onesdk1321" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json new file mode 100644 index 000000000000..39b66c84db59 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json @@ -0,0 +1,625 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "93737fae-8d0c-4f17-b5db-cf3b3172d621" + ], + "x-ms-correlation-request-id": [ + "93737fae-8d0c-4f17-b5db-cf3b3172d621" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024759Z:93737fae-8d0c-4f17-b5db-cf3b3172d621" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:47:59 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550\",\r\n \"name\": \"onesdk2550\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "514a1e3b-c870-480e-af5c-f653649e6847" + ], + "x-ms-correlation-request-id": [ + "514a1e3b-c870-480e-af5c-f653649e6847" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024800Z:514a1e3b-c870-480e-af5c-f653649e6847" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:00 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-request-id": [ + "df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + ], + "x-ms-correlation-request-id": [ + "df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024800Z:df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de0018a4-0eda-41f0-bf21-32871ed0fec8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2550-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2550\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87367901-0205-46fa-8730-873677922d06" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "2622244f-f0c8-40be-8023-d9cdd2f873fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024808Z:2622244f-f0c8-40be-8023-d9cdd2f873fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:07 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37aebae6-6c20-4a20-994c-9a623a770d17" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6884' under resource group 'onesdk2550' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8d31ca9c-47ab-495b-a361-fc446e35f9ff" + ], + "x-ms-correlation-request-id": [ + "8d31ca9c-47ab-495b-a361-fc446e35f9ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024808Z:8d31ca9c-47ab-495b-a361-fc446e35f9ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:08 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0591f994-0ca6-4c1f-94d7-60f40801ccd1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"changedTime\": \"2016-01-29T02:48:09.501405Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475711961432891\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"name\": \"onesdk6884\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1574" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:70a24cbd-bb7e-4115-bd5b-2208aa9c1448" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "994a90a2-f858-4f61-876c-d0c3f3a433a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024811Z:994a90a2-f858-4f61-876c-d0c3f3a433a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "da1d725d-d8fa-4a21-a431-b8ad042a6888" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"changedTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475711961432891\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"name\": \"onesdk6884\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1574" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:d186fcd2-a21e-42b9-91a4-7242f7621be2" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "045abb91-65f4-4bba-9cff-7aa844b43185" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024809Z:045abb91-65f4-4bba-9cff-7aa844b43185" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54a547e8-0ba1-42c3-844d-6d8c005d29f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:398aa084-4675-4b7b-b934-7c167671ba1d" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "71e254af-4a49-4ffc-a70e-14c2c08c316a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024811Z:71e254af-4a49-4ffc-a70e-14c2c08c316a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "804166eb-03fa-4935-a8d3-8edea326694c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:10.463169Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"5cea1548-f9c6-4664-9411-05e8c18165a1\",\r\n \"workflow\": {\r\n \"name\": \"onesdk6884/08587475711961432891\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/versions/08587475711961432891\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/18AC7_865a111a25224362b8f5b1df2fd39392_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=lwORyOUh0YaR2fSG8z0nfOvQz7vfuZA97AMPgAWKcAY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A0047B09\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/02FD1_e6da7347b9a4438096c2bc41085b1f4e_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=7hohws5kVV%2FPTgZt%2FFCA42WNO3gFwTypDeApbE1Iqow%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A004A21C\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"2yy3GdJGU6Kb3KCABlTSmw==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-29T02:48:10.2693619Z\",\r\n \"endTime\": \"2016-01-29T02:48:10.378733Z\",\r\n \"trackingId\": \"5cea1548-f9c6-4664-9411-05e8c18165a1\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995\",\r\n \"name\": \"08587475711951985995\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1736" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:b52c70cd-007b-41c3-8084-34f7b2cb30cf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "4aba3440-17e3-4c42-b391-e8eb2eb99770" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024812Z:4aba3440-17e3-4c42-b391-e8eb2eb99770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zLzA4NTg3NDc1NzExOTUxOTg1OTk1L2FjdGlvbnM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c21857eb-542e-4485-84e6-6bc091f8a844" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.0974815Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.23151Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"371232c6-0df8-4a38-aef0-5942c3bd071c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/58BEA_86d81cfe9cb94cdf952ed74502a405d6_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=q%2F9%2F3da%2BX8vgu7qLWih%2BGfWNE8LPOVpPHqIvFWE21So%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A078DD60\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/FB019_ca0620fa688c4d669272b2b427853ed3_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=%2B%2BO7U58CmRQnMIxg%2B5iuo8YA46KYtNpk1VG3RKg8ftY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A079EF16\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"e4tJjbeGloY+NYlCsh11vQ==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.019364Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.2611503Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"1b9404db-fa8d-4feb-8a19-9e767ebef4a3\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/773A2_2ccc35b9703443699c5d4f016ccec6fc_http1:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=pn0a2Nv%2FYb5Wj7ooIlj97Q2%2FBz7010LwuofI%2FLTEkOg%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A07C127D\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/75259_2b8cc5c840d5445cb0343dba8092c9f8_http1:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=ECvJY%2BaB5wjT%2B5CUxB9%2BXTGx7mt%2FpDTpSD4oOnRKIrI%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A07E0EC3\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A4CfI9ZoDZ91HJttv0jZHA==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http1\",\r\n \"name\": \"http1\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2568" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:38ca950f-43af-4140-85ac-9eaaf7c8a97d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "x-ms-correlation-request-id": [ + "e7dbf2b3-cb08-415e-a8eb-cf6598855c95" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024812Z:e7dbf2b3-cb08-415e-a8eb-cf6598855c95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zLzA4NTg3NDc1NzExOTUxOTg1OTk1L2FjdGlvbnMvaHR0cD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "072c1fa0-29fd-4a8b-9c54-76f905bbf91b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.0974815Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.23151Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"371232c6-0df8-4a38-aef0-5942c3bd071c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/58BEA_86d81cfe9cb94cdf952ed74502a405d6_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=q%2F9%2F3da%2BX8vgu7qLWih%2BGfWNE8LPOVpPHqIvFWE21So%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A078DD60\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/FB019_ca0620fa688c4d669272b2b427853ed3_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=%2B%2BO7U58CmRQnMIxg%2B5iuo8YA46KYtNpk1VG3RKg8ftY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A079EF16\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"e4tJjbeGloY+NYlCsh11vQ==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1275" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:effda38f-cac9-4a5b-aa8f-ba28adeda7d3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "34a69ebc-354f-475f-8d5e-c7add7f56f95" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160129T024812Z:34a69ebc-354f-475f-8d5e-c7add7f56f95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 29 Jan 2016 02:48:12 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureLogicAppRunAction": [ + "onesdk2550", + "onesdk6884" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json new file mode 100644 index 000000000000..595110e193a5 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json @@ -0,0 +1,853 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-request-id": [ + "631a3d4c-c263-46b6-b1ea-4ed3554af996" + ], + "x-ms-correlation-request-id": [ + "631a3d4c-c263-46b6-b1ea-4ed3554af996" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213734Z:631a3d4c-c263-46b6-b1ea-4ed3554af996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:33 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776\",\r\n \"name\": \"onesdk7776\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + ], + "x-ms-correlation-request-id": [ + "8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213735Z:8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:34 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-request-id": [ + "180a92a6-42e3-4238-b1d8-36b569971c92" + ], + "x-ms-correlation-request-id": [ + "180a92a6-42e3-4238-b1d8-36b569971c92" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213735Z:180a92a6-42e3-4238-b1d8-36b569971c92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed4718ce-3d4a-456c-ad58-22c30db91e1c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk7776-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk7776\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c0e9456-8271-4e80-9877-aa1970dae099" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14861" + ], + "x-ms-correlation-request-id": [ + "71f0a45e-3da7-464d-b5ad-e9c876da204a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213749Z:71f0a45e-3da7-464d-b5ad-e9c876da204a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e8b1ac6-16c9-4f6c-9912-2cb4c3d614c8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9693' under resource group 'onesdk7776' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f4615d65-da3f-41b8-979f-a8df633e554a" + ], + "x-ms-correlation-request-id": [ + "f4615d65-da3f-41b8-979f-a8df633e554a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213750Z:f4615d65-da3f-41b8-979f-a8df633e554a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:49 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "634cebd3-084a-410e-a0ac-20413dd4e3e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:08e7d46b-a9ea-4e88-b9ae-93dea8a26c22" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14727" + ], + "x-ms-correlation-request-id": [ + "7a1c26be-3fcc-4885-b9c0-201955eb1901" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213755Z:7a1c26be-3fcc-4885-b9c0-201955eb1901" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb225472-d8b3-499f-9cbe-44b348f6bb69" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:fe6cd076-7b89-4258-9d31-d8e4c235e4c1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14726" + ], + "x-ms-correlation-request-id": [ + "16e6d15a-872e-4f52-9cd7-29c9e53b33c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213757Z:16e6d15a-872e-4f52-9cd7-29c9e53b33c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2dda5b05-97e0-4601-b9ae-35991856da9d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:7e957de3-df02-4e5b-adb3-5eb347572af9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14725" + ], + "x-ms-correlation-request-id": [ + "46c43656-a5be-411c-8fc9-29a37d6279f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213759Z:46c43656-a5be-411c-8fc9-29a37d6279f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e2383c4-8724-4168-b704-5ad09bec82d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:cb7ab54c-1b85-4013-b526-ffb1fe4903e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14724" + ], + "x-ms-correlation-request-id": [ + "c6e73867-3b31-450c-b94f-de1887ca0928" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213801Z:c6e73867-3b31-450c-b94f-de1887ca0928" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f417649-02a4-4386-a29e-a7d4af0439a0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:448cfd64-caa4-42b2-b9a7-7dcc72409287" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14723" + ], + "x-ms-correlation-request-id": [ + "e6e30169-03ad-491b-82f2-39ca7e8f49f8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213803Z:e6e30169-03ad-491b-82f2-39ca7e8f49f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7b47666-755e-4f90-839e-6b1d80a7100a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4f70933b-daf5-4e58-a3e6-59fd9e33fa00" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14721" + ], + "x-ms-correlation-request-id": [ + "67eac913-453b-4c29-b637-1c7a0edd7ae0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213805Z:67eac913-453b-4c29-b637-1c7a0edd7ae0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "15f548da-0e12-43b3-99bb-50fd788fc02e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:f16fff26-938d-47e1-89ba-0bb84f55b1c5" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8568a751-068e-4ee1-84c7-f0fdd8a05a9f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213753Z:8568a751-068e-4ee1-84c7-f0fdd8a05a9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:37:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "904804de-3055-4e32-a6f1-583d22f88613" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:52b92822-a626-4ddd-8f7f-f623d40c67c4" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c5b18e83-9a9b-4560-81df-954a989eff05" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213806Z:c5b18e83-9a9b-4560-81df-954a989eff05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce116594-1976-41be-9f70-c233ccb50e8d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:37:53.1425437Z\",\r\n \"endTime\": \"2016-01-26T21:37:54.1215716Z\",\r\n \"status\": \"Succeeded\",\r\n \"correlationId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"workflow\": {\r\n \"name\": \"onesdk9693/08587477626139623697\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/versions/08587477626139623697\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F1E4A_4ae25d4a1f0b4c998474628226574c66_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=uTs%2BCKI1r8tG9OcVMNFbLtdFlD4wjqvvtriADVkZ%2FUY%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F220B6BD\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F02A1_327a8e388a3a405ab5c760aba1697587_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=4J0HlZD1VDNRczPjVeD4i2tBZ3KJJNbMrn%2BV7cDjQbg%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F2208FA5\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"S2yNZzvMTD8A2LamZWzk3A==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-26T21:37:52.9544639Z\",\r\n \"endTime\": \"2016-01-26T21:37:53.0325829Z\",\r\n \"trackingId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709\",\r\n \"name\": \"08587477626125197709\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1798" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:003092d8-271e-41f2-838c-56219397318a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14720" + ], + "x-ms-correlation-request-id": [ + "fb6c2e26-c501-43f9-ba0e-8cb1000725eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213806Z:fb6c2e26-c501-43f9-ba0e-8cb1000725eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My9ydW5zLzA4NTg3NDc3NjI2MTI1MTk3NzA5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "554b5d5a-49d1-4e19-8017-5257659254d6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:37:53.1425437Z\",\r\n \"endTime\": \"2016-01-26T21:37:54.1215716Z\",\r\n \"status\": \"Succeeded\",\r\n \"correlationId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"workflow\": {\r\n \"name\": \"onesdk9693/08587477626139623697\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/versions/08587477626139623697\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F1E4A_4ae25d4a1f0b4c998474628226574c66_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=uTs%2BCKI1r8tG9OcVMNFbLtdFlD4wjqvvtriADVkZ%2FUY%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F220B6BD\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F02A1_327a8e388a3a405ab5c760aba1697587_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=4J0HlZD1VDNRczPjVeD4i2tBZ3KJJNbMrn%2BV7cDjQbg%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F2208FA5\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"S2yNZzvMTD8A2LamZWzk3A==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-26T21:37:52.9544639Z\",\r\n \"endTime\": \"2016-01-26T21:37:53.0325829Z\",\r\n \"trackingId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709\",\r\n \"name\": \"08587477626125197709\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1786" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:75c84f22-2a79-4f9b-9e84-e5ceba4ba800" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14719" + ], + "x-ms-correlation-request-id": [ + "4918f084-ec7c-49da-8e8c-e220b4718770" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213806Z:4918f084-ec7c-49da-8e8c-e220b4718770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:38:06 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureLogicAppRunHistory": [ + "onesdk7776", + "onesdk9693" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json new file mode 100644 index 000000000000..8af45285b977 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json @@ -0,0 +1,739 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-request-id": [ + "418d6d13-6725-411e-9166-8945adc37df2" + ], + "x-ms-correlation-request-id": [ + "418d6d13-6725-411e-9166-8945adc37df2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213555Z:418d6d13-6725-411e-9166-8945adc37df2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:35:55 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047\",\r\n \"name\": \"onesdk8047\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + ], + "x-ms-correlation-request-id": [ + "bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213558Z:bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:35:58 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "1aa57fe4-e027-4cde-9450-c22043b23345" + ], + "x-ms-correlation-request-id": [ + "1aa57fe4-e027-4cde-9450-c22043b23345" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213558Z:1aa57fe4-e027-4cde-9450-c22043b23345" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:35:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49961c78-4dd1-4e47-8eb3-2400ce9bb0fa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk8047-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk8047\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "91be29c6-382f-4718-9320-0285b2050935" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "2bd7db75-1399-4a0f-b2b6-ef692e7c3019" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213611Z:2bd7db75-1399-4a0f-b2b6-ef692e7c3019" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:10 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27ffacc6-4364-47a5-93cc-347fedfccbdf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6210' under resource group 'onesdk8047' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b093dcef-712d-47ab-ae9c-86e25305a623" + ], + "x-ms-correlation-request-id": [ + "b093dcef-712d-47ab-ae9c-86e25305a623" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213611Z:b093dcef-712d-47ab-ae9c-86e25305a623" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:11 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "446485ce-750d-4489-9d31-132966c42583" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:e2645e63-68f5-4dba-a3d9-13a635f4b1a7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "838ae18a-3cd9-4343-bf70-b4b94345185a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213616Z:838ae18a-3cd9-4343-bf70-b4b94345185a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3344a378-27c7-4399-91d9-066eaeda1521" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:51433142-99df-4bf2-b271-37b203ee3cbe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "a11fe84c-b81b-474c-b3a5-c8fd48113360" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213618Z:a11fe84c-b81b-474c-b3a5-c8fd48113360" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3dd6c915-2b4c-48ce-b7ba-4162a3daa8ef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4ad9ad49-adc7-42ea-a0fa-4ed00e658755" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "22e7d2df-e5f7-48f5-aaec-4da965478cf5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213620Z:22e7d2df-e5f7-48f5-aaec-4da965478cf5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3335ea7-2ae3-4f59-8fd9-e22e5eb82485" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:6e81bd7c-a799-4237-9342-0ec2b922422c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "e41af364-faf8-496c-986e-cfc1ec053e79" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213622Z:e41af364-faf8-496c-986e-cfc1ec053e79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b43fbdcd-ab30-44e6-8a29-be6991d797e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:ded67c9e-555e-408b-afc3-190637c59caf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "224f2ac0-0fdf-4a56-a834-3bdb317fef0a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213625Z:224f2ac0-0fdf-4a56-a834-3bdb317fef0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68bb1c00-d944-4df9-be37-e691858b9a35" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:43e050b2-46ca-4804-a5ff-6496e92df154" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "f0f0525c-4718-4c7a-b2b4-342b7446b004" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213627Z:f0f0525c-4718-4c7a-b2b4-342b7446b004" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "2e56887a-6e7b-4d62-a999-700eb4d3586d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:cba8483f-f70c-4b83-8488-1d3169103006" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a82788e4-ea57-4211-805e-7e894b1f3d36" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213614Z:a82788e4-ea57-4211-805e-7e894b1f3d36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:13 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMC90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df17c312-1c06-4b15-982e-4e5e3478c5d5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:91043b0a-3d9c-4d8d-ac3f-bbe397a92186" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "4d817e26-e486-453c-aead-473b25d028b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T213627Z:4d817e26-e486-453c-aead-473b25d028b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:36:27 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-StartLogicApp": [ + "onesdk8047", + "onesdk6210" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json new file mode 100644 index 000000000000..18a995549693 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json @@ -0,0 +1,508 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14765" + ], + "x-ms-request-id": [ + "3739f087-6727-4582-ad63-4540a0b4b156" + ], + "x-ms-correlation-request-id": [ + "3739f087-6727-4582-ad63-4540a0b4b156" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211314Z:3739f087-6727-4582-ad63-4540a0b4b156" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:13 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331\",\r\n \"name\": \"onesdk5331\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "15a3aaf6-0854-47d3-bfe6-be12cae3a003" + ], + "x-ms-correlation-request-id": [ + "15a3aaf6-0854-47d3-bfe6-be12cae3a003" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211315Z:15a3aaf6-0854-47d3-bfe6-be12cae3a003" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:14 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14764" + ], + "x-ms-request-id": [ + "bba8bed9-5b64-4e03-8d44-51fd58414cf4" + ], + "x-ms-correlation-request-id": [ + "bba8bed9-5b64-4e03-8d44-51fd58414cf4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211315Z:bba8bed9-5b64-4e03-8d44-51fd58414cf4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e90d103b-327c-4cdd-abc5-44487fc5e91d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5331-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5331\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46e7eb17-4cb6-42c0-b713-782b2bc89e2e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "7158f7f0-50b8-453a-97b1-15dda4ff124e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211330Z:7158f7f0-50b8-453a-97b1-15dda4ff124e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:30 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5245c2b-f404-46b1-84b7-64016dc2f01d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8699' under resource group 'onesdk5331' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d69b1ea4-4d0b-428a-828a-38becee7a245" + ], + "x-ms-correlation-request-id": [ + "d69b1ea4-4d0b-428a-828a-38becee7a245" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211330Z:d69b1ea4-4d0b-428a-828a-38becee7a245" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:30 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "501d3f62-c706-4bde-8c3d-56aa953956fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"changedTime\": \"2016-01-26T21:13:33.4724456Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477640722571179\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"name\": \"onesdk8699\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:16892e0f-8749-436a-a895-a4ba53278f91" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" + ], + "x-ms-correlation-request-id": [ + "19b61baa-0f9a-454a-a67f-51ee1acd7c52" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211334Z:19b61baa-0f9a-454a-a67f-51ee1acd7c52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"string\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"string\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1628" + ], + "x-ms-client-request-id": [ + "169cf574-62f6-48ff-9b01-74737d7a52ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"changedTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477640722571179\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"name\": \"onesdk8699\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:346eecf3-0eb7-469e-a208-4ca6977c40fe" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "746c8256-cbd3-480b-88cc-a4a7d1543d6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211334Z:746c8256-cbd3-480b-88cc-a4a7d1543d6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:33 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/InvalidWorkflow?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvSW52YWxpZFdvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92e96af6-e770-44aa-80a6-eca7985636f6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/InvalidWorkflow' under resource group 'onesdk5331' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "155" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5144a19a-fd67-4be7-8462-579ff6a421f6" + ], + "x-ms-correlation-request-id": [ + "5144a19a-fd67-4be7-8462-579ff6a421f6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211334Z:5144a19a-fd67-4be7-8462-579ff6a421f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:34 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "478e9f7f-f6bc-4209-9945-1b7580609924" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:73688625-c741-4bc9-9308-289b8e22cae9" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "2a7458d2-148c-44e8-a4f7-7c0994c7fd05" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211335Z:2a7458d2-148c-44e8-a4f7-7c0994c7fd05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:13:35 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateAndGetLogicAppUsingDefinitionWithActions": [ + "onesdk5331", + "onesdk8699" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json new file mode 100644 index 000000000000..6be09b3aa189 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json @@ -0,0 +1,861 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "2f48abca-dce1-4c40-90ef-b4e9c213a90b" + ], + "x-ms-correlation-request-id": [ + "2f48abca-dce1-4c40-90ef-b4e9c213a90b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211440Z:2f48abca-dce1-4c40-90ef-b4e9c213a90b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:14:39 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706\",\r\n \"name\": \"onesdk1706\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + ], + "x-ms-correlation-request-id": [ + "6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211441Z:6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:14:40 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "c0b7051e-baf5-4766-881e-1ef78abc88fb" + ], + "x-ms-correlation-request-id": [ + "c0b7051e-baf5-4766-881e-1ef78abc88fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211441Z:c0b7051e-baf5-4766-881e-1ef78abc88fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:14:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05b6d49b-e5df-4178-ac0c-d831234ec90c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a3bd2ed9-d6bc-4d8c-accb-c3e33a75722f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14763" + ], + "x-ms-correlation-request-id": [ + "f6cdc0ad-795c-4053-8a36-3d82e9954c45" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211458Z:f6cdc0ad-795c-4053-8a36-3d82e9954c45" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:14:57 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad329cb9-4196-4412-85b0-9b31e357f6bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d75556ee-4afd-44c1-9216-446ec86acb68" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14790" + ], + "x-ms-correlation-request-id": [ + "b2e8c714-8c5c-4dfc-bb46-85d4d0a589e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211503Z:b2e8c714-8c5c-4dfc-bb46-85d4d0a589e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:02 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6def7a55-51bc-4af4-9961-16c1d7055d69" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e10880c-8d23-4060-8c75-bb5d68b41590" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14788" + ], + "x-ms-correlation-request-id": [ + "5caf050f-14c3-4239-969a-71692a8ea6b8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211507Z:5caf050f-14c3-4239-969a-71692a8ea6b8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:07 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9902ef7-00f5-4e27-9739-90f27cf68ad3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5636' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f67e6609-9155-4b46-b415-fdbaa632b709" + ], + "x-ms-correlation-request-id": [ + "f67e6609-9155-4b46-b415-fdbaa632b709" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211458Z:f67e6609-9155-4b46-b415-fdbaa632b709" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:14:58 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "b7728216-4a55-436b-9c1a-5490d6556092" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:00.2333704Z\",\r\n \"changedTime\": \"2016-01-26T21:15:00.2333704Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639853827918\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636\",\r\n \"name\": \"onesdk5636\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:1e565d4e-a5f8-40e8-a395-c57f873f443f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "ed48668b-5f8f-4250-b8ce-393f40872d3e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211501Z:ed48668b-5f8f-4250-b8ce-393f40872d3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:00 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18387f42-344d-4e04-9d36-835256ad5ff9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:a814e410-f1ea-45d9-81ad-ddf02b88f181" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a92a4429-d57e-41c8-a961-f30c802d38c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211503Z:a92a4429-d57e-41c8-a961-f30c802d38c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3db6cf01-8957-43f3-9b1a-a34340d6b12c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1140' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + ], + "x-ms-correlation-request-id": [ + "9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211503Z:9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:02 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "97002d2f-06a2-4882-a597-2011b7edf0c4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:05.8571989Z\",\r\n \"changedTime\": \"2016-01-26T21:15:05.8571989Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639797421848\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140\",\r\n \"name\": \"onesdk1140\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:8a4176df-c485-45ee-b7b9-055a573ef639" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b4370182-cb05-438a-99bf-aeeb92a8fcda" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211506Z:b4370182-cb05-438a-99bf-aeeb92a8fcda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f140919-5ef4-4d61-8250-990878ee80eb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:9e058706-591e-4e97-8d2a-a8827f8d8606" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "2883b745-a142-46a7-b015-6ec1572ca107" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211507Z:2883b745-a142-46a7-b015-6ec1572ca107" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea0d87ed-2af4-4f55-a7cd-3e4ea2bd0fcb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4837' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3eabe340-7ad0-42f7-bea3-df7a59a0a311" + ], + "x-ms-correlation-request-id": [ + "3eabe340-7ad0-42f7-bea3-df7a59a0a311" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211508Z:3eabe340-7ad0-42f7-bea3-df7a59a0a311" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:07 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "c7b01318-c9c5-4f48-9c14-61dcd188a5c9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:08.9417158Z\",\r\n \"changedTime\": \"2016-01-26T21:15:08.9417158Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639767186944\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837\",\r\n \"name\": \"onesdk4837\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:b7144ab8-4329-45c4-b760-128ea98479f3" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "b1e3fe38-66c4-4630-8f80-5064e2476d0e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211509Z:b1e3fe38-66c4-4630-8f80-5064e2476d0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3423402-81f8-4b57-9b27-1716a56d0934" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:b76a7a6e-6da3-4fa7-b8ea-6f1194c6844c" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "f134e876-0f67-48b4-a7be-57598944579c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211510Z:f134e876-0f67-48b4-a7be-57598944579c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:09 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateAndRemoveLogicApp": [ + "onesdk1706", + "onesdk5636", + "onesdk1140", + "onesdk4837" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json new file mode 100644 index 000000000000..4782d4bca1ac --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json @@ -0,0 +1,397 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-request-id": [ + "60334d78-8e41-41df-92c8-dcefac361e00" + ], + "x-ms-correlation-request-id": [ + "60334d78-8e41-41df-92c8-dcefac361e00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220927Z:60334d78-8e41-41df-92c8-dcefac361e00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:26 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914\",\r\n \"name\": \"onesdk9914\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + ], + "x-ms-correlation-request-id": [ + "58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220928Z:58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:27 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-request-id": [ + "a79c8399-1d54-4317-9ea4-9d251bfe9854" + ], + "x-ms-correlation-request-id": [ + "a79c8399-1d54-4317-9ea4-9d251bfe9854" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220928Z:a79c8399-1d54-4317-9ea4-9d251bfe9854" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5a180d3-1dda-46f8-a21a-313337304d65" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk9914-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk9914\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "56f1f351-b967-4c6f-bb23-8473167a2ee5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "a34708b7-e580-40a5-8214-01fed3002d4b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220936Z:a34708b7-e580-40a5-8214-01fed3002d4b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7deae12e-6848-4dff-92f0-a1eacab7234c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5482' under resource group 'onesdk9914' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9e9f5baa-f867-43a8-a06d-288108dd4e8a" + ], + "x-ms-correlation-request-id": [ + "9e9f5baa-f867-43a8-a06d-288108dd4e8a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220936Z:9e9f5baa-f867-43a8-a06d-288108dd4e8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:36 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "af71d9b1-466e-4c00-98e2-7bd65c806bdc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-27T22:09:37.7063652Z\",\r\n \"changedTime\": \"2016-01-27T22:09:37.7063652Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587476743079470122\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482\",\r\n \"name\": \"onesdk5482\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:693a1897-3bc8-4ef9-983c-5a8e983b8968" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "dda2da40-e0b9-4a22-9234-2c06c0b2e3ae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220938Z:dda2da40-e0b9-4a22-9234-2c06c0b2e3ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:38 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f087576-bf78-498b-9631-dd63385c830a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:eedb201a-c379-44f2-9a79-a42bfbfc3ad5" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "8cb77f05-4e40-4a27-a7fd-2cccd03f481a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160127T220939Z:8cb77f05-4e40-4a27-a7fd-2cccd03f481a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 27 Jan 2016 22:09:38 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateLogicAppUsingDefinitionWithTriggers": [ + "onesdk9914", + "onesdk5482" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json new file mode 100644 index 000000000000..2a0c64abcc4c --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json @@ -0,0 +1,397 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "578eee75-b028-4268-a1d7-4e288b6c63c2" + ], + "x-ms-correlation-request-id": [ + "578eee75-b028-4268-a1d7-4e288b6c63c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211111Z:578eee75-b028-4268-a1d7-4e288b6c63c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:10 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986\",\r\n \"name\": \"onesdk6986\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "b3a0f57e-201c-4d78-836e-661f4db2f748" + ], + "x-ms-correlation-request-id": [ + "b3a0f57e-201c-4d78-836e-661f4db2f748" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211112Z:b3a0f57e-201c-4d78-836e-661f4db2f748" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:11 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "0b7718cf-6924-4a06-8034-505785262a9d" + ], + "x-ms-correlation-request-id": [ + "0b7718cf-6924-4a06-8034-505785262a9d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211112Z:0b7718cf-6924-4a06-8034-505785262a9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59d80a0e-f819-493f-a006-f1a4c812bcb5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk6986-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk6986\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7722aefa-b79b-461b-a7b4-dd358e107837" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14744" + ], + "x-ms-correlation-request-id": [ + "e52cc1f6-cf5d-4b26-a810-a284f99591d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211122Z:e52cc1f6-cf5d-4b26-a810-a284f99591d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37012d8b-2dc7-4b5c-816e-2b426cfe79de" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9396' under resource group 'onesdk6986' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "868acf2c-258d-4442-b20b-1b33d42b9129" + ], + "x-ms-correlation-request-id": [ + "868acf2c-258d-4442-b20b-1b33d42b9129" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211122Z:868acf2c-258d-4442-b20b-1b33d42b9129" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:21 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "08bd30b5-2234-4f0e-8c0f-b6102cfb79d1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:11:23.856472Z\",\r\n \"changedTime\": \"2016-01-26T21:11:23.856472Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477642018102635\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396\",\r\n \"name\": \"onesdk9396\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1354" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:dabccf17-c572-49d0-ab71-ab2fa0521577" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "5940a00f-cc09-4061-92a8-3d251d92901c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211124Z:5940a00f-cc09-4061-92a8-3d251d92901c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:23 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25123977-87b3-44b9-b3d2-3f1342a09589" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6d90c5b7-079b-4a37-8efd-5f0f39961ad2" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "306460fb-fdb6-46e1-9cdc-f52dbfedae80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211124Z:306460fb-fdb6-46e1-9cdc-f52dbfedae80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:11:24 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateLogicAppUsingInputParameterAsHashTable": [ + "onesdk6986", + "onesdk9396" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json new file mode 100644 index 000000000000..4a52a6f1c2af --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json @@ -0,0 +1,578 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-request-id": [ + "cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + ], + "x-ms-correlation-request-id": [ + "cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211212Z:cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193\",\r\n \"name\": \"onesdk5193\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "b8050936-589b-46c3-8e37-580b7b37a966" + ], + "x-ms-correlation-request-id": [ + "b8050936-589b-46c3-8e37-580b7b37a966" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211213Z:b8050936-589b-46c3-8e37-580b7b37a966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:13 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-request-id": [ + "033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + ], + "x-ms-correlation-request-id": [ + "033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211213Z:033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6d208fb-156e-4f5e-8886-2280c35ad636" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5193-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5193\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1aabb6c6-1d60-4b66-97ff-5f099f24117b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "0e677399-ea73-4b8a-84ad-4c2bd4e9a898" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211221Z:0e677399-ea73-4b8a-84ad-4c2bd4e9a898" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "964cf085-5d3f-4484-a7fe-6a89b40c50d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5193-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5193\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c89720b0-9bb9-42de-8d48-f45c697fe7de" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "f6a9f01d-2033-4a35-abbc-6765a0983389" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211226Z:f6a9f01d-2033-4a35-abbc-6765a0983389" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:26 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9709a607-30fc-49a7-a003-2bfa92250572" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7978' under resource group 'onesdk5193' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "83368a65-d09b-4bf9-afe5-6848713adf80" + ], + "x-ms-correlation-request-id": [ + "83368a65-d09b-4bf9-afe5-6848713adf80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211221Z:83368a65-d09b-4bf9-afe5-6848713adf80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:21 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "d61567ae-162a-44bd-b0e1-48c78189329c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:12:23.6049277Z\",\r\n \"changedTime\": \"2016-01-26T21:12:23.6049277Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477641421258515\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978\",\r\n \"name\": \"onesdk7978\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:e7f52e8e-0140-4693-9592-5bfd516b5046" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "33fe3663-d605-48d4-8c5d-71e4aaa55b77" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211226Z:33fe3663-d605-48d4-8c5d-71e4aaa55b77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDkxP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dd28ec0-ac64-4d77-91a2-934ab00a8e65" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk491' under resource group 'onesdk5193' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + ], + "x-ms-correlation-request-id": [ + "ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211226Z:ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:25 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDkxP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "d4ee37d8-d9ec-4ea9-83db-e9e74588cd80" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:12:28.1172752Z\",\r\n \"changedTime\": \"2016-01-26T21:12:28.1172752Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477641375491474\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491\",\r\n \"name\": \"onesdk491\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1353" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:d5bc4b12-126c-43e8-a535-ff36449e93d3" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "afab3bd6-55bf-4ad7-80bd-5a0da1974e71" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211228Z:afab3bd6-55bf-4ad7-80bd-5a0da1974e71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:27 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e8d8f36-f890-4551-9377-ae68c46b9377" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6159b48c-d906-452a-991f-e826c56b76c7" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a2e6985e-aedf-4109-9e5c-527bb8b05c17" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211229Z:a2e6985e-aedf-4109-9e5c-527bb8b05c17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:12:28 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateLogicAppUsingInputfromWorkflowObject": [ + "onesdk5193", + "onesdk7978", + "onesdk491" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json new file mode 100644 index 000000000000..ff8d581e1061 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json @@ -0,0 +1,520 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "c83c209d-880c-420e-a6ee-9e4f56763eed" + ], + "x-ms-correlation-request-id": [ + "c83c209d-880c-420e-a6ee-9e4f56763eed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211555Z:c83c209d-880c-420e-a6ee-9e4f56763eed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:55 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390\",\r\n \"name\": \"onesdk390\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "88264c1b-a46c-43dc-b8c2-4e27801710d0" + ], + "x-ms-correlation-request-id": [ + "88264c1b-a46c-43dc-b8c2-4e27801710d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211557Z:88264c1b-a46c-43dc-b8c2-4e27801710d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "e39af8d4-02bb-44a7-bf88-7fd33543fac0" + ], + "x-ms-correlation-request-id": [ + "e39af8d4-02bb-44a7-bf88-7fd33543fac0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211557Z:e39af8d4-02bb-44a7-bf88-7fd33543fac0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:15:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9TdGFuZGFyZFNlcnZpY2VQbGFuP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6073bec7-97bd-4a88-9ea5-2613e16e0d47" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk390-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk390\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "948" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2e506ad9-2c20-4918-a88e-2a0128acdeed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "e15423f1-1c89-4e75-b2cd-8c369ecd4c56" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211616Z:e15423f1-1c89-4e75-b2cd-8c369ecd4c56" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:15 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9TdGFuZGFyZFNlcnZpY2VQbGFuP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a5b6314-5da0-4591-b9a0-5a71a6c195dc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk390-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk390\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "948" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ec062842-2423-4969-8c27-dc78c5460f7d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "1712e32b-2221-4b02-8b57-c99df91aeb87" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211620Z:1712e32b-2221-4b02-8b57-c99df91aeb87" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2834ab00-ce85-4530-954e-2474601b5868" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9059' under resource group 'onesdk390' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "48988617-71ab-4822-9bcd-20fbf8317218" + ], + "x-ms-correlation-request-id": [ + "48988617-71ab-4822-9bcd-20fbf8317218" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211617Z:48988617-71ab-4822-9bcd-20fbf8317218" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:16 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1eb5117-8675-4c49-a37a-e6f0e2571543" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"changedTime\": \"2016-01-26T21:16:19.7351357Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639059226776\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"name\": \"onesdk9059\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1353" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:711ff212-b530-46e9-bef1-c67072dd1893" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "fb7ef0f5-6212-4c27-b20a-d9ddad1ef169" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211621Z:fb7ef0f5-6212-4c27-b20a-d9ddad1ef169" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1179" + ], + "x-ms-client-request-id": [ + "e8c65b41-2cad-4865-b493-7fd40904c23d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"changedTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639059226776\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"name\": \"onesdk9059\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1353" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:ebd022ae-f261-485b-bf92-e8be9f932833" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "c0cbfa85-b42e-4aa4-999d-68b50d088bcc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211620Z:c0cbfa85-b42e-4aa4-999d-68b50d088bcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:20 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cab4a7da-c45a-41a6-a06a-566c45a3c635" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:1301b7a3-d44b-4b81-8371-0730854f6496" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "69576ba0-208f-4a0b-80de-ddbc4e20cc72" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211622Z:69576ba0-208f-4a0b-80de-ddbc4e20cc72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:16:22 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateLogicAppWithDuplicateName": [ + "onesdk390", + "onesdk9059" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json new file mode 100644 index 000000000000..32e1d858cd88 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json @@ -0,0 +1,217 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7840?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14767" + ], + "x-ms-request-id": [ + "7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + ], + "x-ms-correlation-request-id": [ + "7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T210912Z:7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:09:12 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7840?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840\",\r\n \"name\": \"onesdk7840\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "83be6208-ceda-43d1-ae0b-da973174d031" + ], + "x-ms-correlation-request-id": [ + "83be6208-ceda-43d1-ae0b-da973174d031" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T210913Z:83be6208-ceda-43d1-ae0b-da973174d031" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:09:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4NDAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/providers/Microsoft.Logic/workflows/onesdk6678\",\r\n \"name\": \"onesdk6678\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "220" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], + "x-ms-request-id": [ + "79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + ], + "x-ms-correlation-request-id": [ + "79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T210913Z:79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:09:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/providers/Microsoft.Web/serverfarms/B9F87338CAE4470F9116F3D685365748?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvQjlGODczMzhDQUU0NDcwRjkxMTZGM0Q2ODUzNjU3NDg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4dfa667-d294-4809-b024-399852592049" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/serverFarms/B9F87338CAE4470F9116F3D685365748' under resource group 'onesdk7840' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "defdda90-6e0c-4d89-a182-fa385d4dc58f" + ], + "x-ms-correlation-request-id": [ + "defdda90-6e0c-4d89-a182-fa385d4dc58f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T210914Z:defdda90-6e0c-4d89-a182-fa385d4dc58f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:09:13 GMT" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "Test-CreateLogicAppWithNonExistingAppServicePlan": [ + "onesdk7840", + "onesdk3648" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json new file mode 100644 index 000000000000..6453d46253fb --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json @@ -0,0 +1,213 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3945?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14818" + ], + "x-ms-request-id": [ + "cc157b83-8ddc-420d-b47e-9a994cafe76c" + ], + "x-ms-correlation-request-id": [ + "cc157b83-8ddc-420d-b47e-9a994cafe76c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T210959Z:cc157b83-8ddc-420d-b47e-9a994cafe76c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:09:58 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3945?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945\",\r\n \"name\": \"onesdk3945\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "93004c09-d787-4470-a1fd-4e8b4e2bcd90" + ], + "x-ms-correlation-request-id": [ + "93004c09-d787-4470-a1fd-4e8b4e2bcd90" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211001Z:93004c09-d787-4470-a1fd-4e8b4e2bcd90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:10:00 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NDUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14825" + ], + "x-ms-request-id": [ + "9ca74747-5dfb-4a4e-af39-022f445491d8" + ], + "x-ms-correlation-request-id": [ + "9ca74747-5dfb-4a4e-af39-022f445491d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211001Z:9ca74747-5dfb-4a4e-af39-022f445491d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:10:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945/providers/Microsoft.Logic/workflows/09e81ac4-848a-428d-82a6-7d61953e3940?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvMDllODFhYzQtODQ4YS00MjhkLTgyYTYtN2Q2MTk1M2UzOTQwP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c14d7fc-243a-4695-8182-71cb73dada38" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" + ], + "x-ms-correlation-request-id": [ + "64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211001Z:64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:10:01 GMT" + ] + }, + "StatusCode": 204 + } + ], + "Names": { + "Test-RemoveNonExistingLogicApp": [ + "onesdk3945" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json new file mode 100644 index 000000000000..57b9347447c7 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json @@ -0,0 +1,817 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "63cb408e-8509-45e2-89d1-f87d20986a6a" + ], + "x-ms-correlation-request-id": [ + "63cb408e-8509-45e2-89d1-f87d20986a6a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211707Z:63cb408e-8509-45e2-89d1-f87d20986a6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:06 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523\",\r\n \"name\": \"onesdk8523\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "155504be-b562-4e24-8949-1f2cb2fda8df" + ], + "x-ms-correlation-request-id": [ + "155504be-b562-4e24-8949-1f2cb2fda8df" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211708Z:155504be-b562-4e24-8949-1f2cb2fda8df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-request-id": [ + "68f52c40-c063-4c86-b25e-a58191ecc93b" + ], + "x-ms-correlation-request-id": [ + "68f52c40-c063-4c86-b25e-a58191ecc93b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211708Z:68f52c40-c063-4c86-b25e-a58191ecc93b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "606fbf1e-a359-4115-a8b3-6b65ae04f008" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk8523-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk8523\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "43d513b7-4fbd-4539-9de0-4c2801fcd5f4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14833" + ], + "x-ms-correlation-request-id": [ + "1d82f763-159e-479e-8b92-e2208a6f19a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211716Z:1d82f763-159e-479e-8b92-e2208a6f19a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:16 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9919dec1-c406-49f6-b094-fde2979616ca" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7924' under resource group 'onesdk8523' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6a560abc-2acf-4a20-93b6-b39df09ace69" + ], + "x-ms-correlation-request-id": [ + "6a560abc-2acf-4a20-93b6-b39df09ace69" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211716Z:6a560abc-2acf-4a20-93b6-b39df09ace69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:16 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0d80d4b-2bf8-462d-b160-f5b63aef8950" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:19.785631Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638459058822\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:42a9d0ba-88ae-4bc7-9a24-69cb2fa0f9a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "c1fe7538-a766-458f-886a-cd8d22380c27" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211720Z:c1fe7538-a766-458f-886a-cd8d22380c27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7509cbd-f463-476e-ac22-4980e5c38aef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:20.9319665Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587477638445865613\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:31cfdcc1-b6ea-41ee-81d6-c555b2ab3dc9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "fb5d9c8c-3fce-4a1e-9e17-5d119ea939ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211721Z:fb5d9c8c-3fce-4a1e-9e17-5d119ea939ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb0983af-7088-44f1-b74b-8e357373237b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:22.959016Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638425705705\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:dcca9529-ce41-4ce4-acfa-593ce170b1e5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "f70fcaed-2a6d-4f32-b285-60d3eeb72f68" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211723Z:f70fcaed-2a6d-4f32-b285-60d3eeb72f68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3046264f-3231-4693-a2e1-7d99054256d1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:23.5983276Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638419204380\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4346b67b-0d8f-4860-87a0-77e2dc6c3bfe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "68d17e24-1810-4500-8001-4d51a9f9e586" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211724Z:68d17e24-1810-4500-8001-4d51a9f9e586" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "c446bf2a-7dcc-4d2f-8527-fa922d15d1f4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638459058822\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:2bde5b52-fa3a-4a0e-8659-a656450cef18" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "62f82466-ddb8-4f3d-a4b4-9649fecdcb48" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211720Z:62f82466-ddb8-4f3d-a4b4-9649fecdcb48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:19 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1775" + ], + "x-ms-client-request-id": [ + "e7a75eaa-1661-4213-a876-36fdf7cdf9ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:20.9316415Z\",\r\n \"changedTime\": \"2016-01-26T21:17:20.9319665Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587477638445865613\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1577" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:27f3c1c6-167b-446f-bd61-a838173d4731" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "ec1c83bb-287b-4cb1-9955-65199646016e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211721Z:ec1c83bb-287b-4cb1-9955-65199646016e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "74046e6f-30e7-4f2d-b5b0-27d43a7de13c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:22.9585441Z\",\r\n \"changedTime\": \"2016-01-26T21:17:22.959016Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638425705705\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:cbc90fb0-3fde-4014-88f9-6635c28c8bda" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "107188a5-9f93-48c6-b887-5ca21061fa7d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211723Z:107188a5-9f93-48c6-b887-5ca21061fa7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1180" + ], + "x-ms-client-request-id": [ + "bce1cb54-8032-446f-a24b-d9f7bca91500" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:23.5980425Z\",\r\n \"changedTime\": \"2016-01-26T21:17:23.5983276Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638419204380\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:16da85b2-3b0b-4ad4-b415-f1bf82495b61" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "49bc3a75-06cf-4cb5-ae8a-a80ad81b6727" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211724Z:49bc3a75-06cf-4cb5-ae8a-a80ad81b6727" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvODJEMkQ4NDItQzMxMi00NDVDLThBNEQtRTNFRTk1NDI0MzZEP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80fe3a19-d7c5-48b6-b619-dab1e3e5700b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D' under resource group 'onesdk8523' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1cf89781-ee44-45e3-ad45-47d29a88f393" + ], + "x-ms-correlation-request-id": [ + "1cf89781-ee44-45e3-ad45-47d29a88f393" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T211724Z:1cf89781-ee44-45e3-ad45-47d29a88f393" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:17:23 GMT" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "Test-UpdateLogicApp": [ + "onesdk8523", + "onesdk7924" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json new file mode 100644 index 000000000000..69d35ed048ca --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json @@ -0,0 +1,460 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzNzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-request-id": [ + "0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + ], + "x-ms-correlation-request-id": [ + "0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211833Z:0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:33 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzNzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370\",\r\n \"name\": \"onesdk3370\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "847501f9-774f-4955-af78-d3009069a080" + ], + "x-ms-correlation-request-id": [ + "847501f9-774f-4955-af78-d3009069a080" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211833Z:847501f9-774f-4955-af78-d3009069a080" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:33 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "x-ms-request-id": [ + "643441de-56ba-4daa-9585-7a00bfa1966c" + ], + "x-ms-correlation-request-id": [ + "643441de-56ba-4daa-9585-7a00bfa1966c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211833Z:643441de-56ba-4daa-9585-7a00bfa1966c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9d8505f-f309-4e21-be39-0a8eada098a0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3370-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3370\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "33e976c8-1ec5-4834-8348-cef824833241" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "1dd0e2cd-781e-4b30-8790-925ade20ad81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211841Z:1dd0e2cd-781e-4b30-8790-925ade20ad81" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96ca2a81-b26a-4e8a-be85-f84fbd6347c6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1799' under resource group 'onesdk3370' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b731fd32-2064-4792-8041-dc35fbaf6a45" + ], + "x-ms-correlation-request-id": [ + "b731fd32-2064-4792-8041-dc35fbaf6a45" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211841Z:b731fd32-2064-4792-8041-dc35fbaf6a45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "2a90e9f2-32af-414a-9bc3-271acdde47ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637619829098\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799\",\r\n \"name\": \"onesdk1799\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6ce1f0f7-1751-42b0-a996-8f5c456ca23d" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "146625f1-56ac-4788-8300-75567288fd52" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211844Z:146625f1-56ac-4788-8300-75567288fd52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:43 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OS90cmlnZ2Vycy8/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30f8354c-722b-43ce-a651-2af8a7273ee5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6105006Z\",\r\n \"state\": \"Enabled\",\r\n \"workflow\": {\r\n \"name\": \"onesdk1799/08587477637619829098\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/versions/08587477637619829098\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "645" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:1cb51f7e-537b-4ec6-93b1-b543db4826a6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-correlation-request-id": [ + "a249e649-5f00-4a20-a24d-7222e6edef36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211844Z:a249e649-5f00-4a20-a24d-7222e6edef36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OS90cmlnZ2Vycy9odHRwVHJpZ2dlcj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a027c85b-517e-4c38-b99e-c79f192deac4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6105006Z\",\r\n \"state\": \"Enabled\",\r\n \"workflow\": {\r\n \"name\": \"onesdk1799/08587477637619829098\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/versions/08587477637619829098\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "633" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:5a94e423-110c-4882-9df3-fecb3327ae72" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "x-ms-correlation-request-id": [ + "a54ac5e3-5b6a-4922-8fa7-bf51cafdc089" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211844Z:a54ac5e3-5b6a-4922-8fa7-bf51cafdc089" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:18:44 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureLogicAppTrigger": [ + "onesdk3370", + "onesdk1799" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json new file mode 100644 index 000000000000..107fa895b0ed --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json @@ -0,0 +1,853 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "11b68509-10ea-4482-830a-5b8760f96213" + ], + "x-ms-correlation-request-id": [ + "11b68509-10ea-4482-830a-5b8760f96213" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T212105Z:11b68509-10ea-4482-830a-5b8760f96213" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:05 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247\",\r\n \"name\": \"onesdk2247\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ba6131f4-f415-40d8-979b-bbaacfbb7e23" + ], + "x-ms-correlation-request-id": [ + "ba6131f4-f415-40d8-979b-bbaacfbb7e23" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T212107Z:ba6131f4-f415-40d8-979b-bbaacfbb7e23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:07 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "72dcf158-033a-43b8-9ff4-44a5368268c8" + ], + "x-ms-correlation-request-id": [ + "72dcf158-033a-43b8-9ff4-44a5368268c8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160126T212107Z:72dcf158-033a-43b8-9ff4-44a5368268c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bb7bd9d-2f2a-4188-a7e8-3eac8dc3fcea" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2247-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2247\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "921756d0-6324-4439-a168-64d42f32512b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14870" + ], + "x-ms-correlation-request-id": [ + "8f11a804-1222-4322-8568-e14986203537" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212140Z:8f11a804-1222-4322-8568-e14986203537" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad6de3c7-69f1-4a25-b41f-b957f67b4a06" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk2597' under resource group 'onesdk2247' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1e3a2b8d-f396-49b1-8e11-007047a828b5" + ], + "x-ms-correlation-request-id": [ + "1e3a2b8d-f396-49b1-8e11-007047a828b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212140Z:1e3a2b8d-f396-49b1-8e11-007047a828b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:39 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf7fd87f-4bcd-4a7c-8a0d-acc4792375c1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:841e0715-6013-404f-be37-93e894d65b2b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-correlation-request-id": [ + "76694372-6dcd-4327-84d6-e8d03533aa80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212145Z:76694372-6dcd-4327-84d6-e8d03533aa80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ea432c9-0d14-4374-9320-cca47ee04113" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4bcc9099-3935-4f37-b406-649fd56f5fae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-correlation-request-id": [ + "fdfafa93-b41f-411f-9fd6-45343d1b7135" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212147Z:fdfafa93-b41f-411f-9fd6-45343d1b7135" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26991134-ae62-4838-bd44-48715b6cf3e8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:9373f978-54e1-47cb-8220-457788e8183c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-correlation-request-id": [ + "f1c598bc-d77c-414c-b954-1295b29f2b3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212149Z:f1c598bc-d77c-414c-b954-1295b29f2b3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c5aaca5-cd55-48d4-8d99-d23043a51c98" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4464b4e7-5e89-4482-87d3-640f5b26a80e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-correlation-request-id": [ + "96710e36-2600-4d2b-9fcc-7d528e9413ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212151Z:96710e36-2600-4d2b-9fcc-7d528e9413ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "728c4729-ae01-4c5d-bbbf-b72e9cffbf0c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:8c896338-aa82-44cb-9b05-260f63bd7512" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "42fddc4b-d41e-4741-b8d3-7afdf89a1c97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212153Z:42fddc4b-d41e-4741-b8d3-7afdf89a1c97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa7f7f45-e11b-44ef-ae08-6d0342056df1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:4210dff4-0cda-48b5-9c94-2788f937ef4d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "70b28220-d82d-4721-892b-def6034daa0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212155Z:70b28220-d82d-4721-892b-def6034daa0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "fe4c0e13-6823-49f7-9490-4ccaf73aff64" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:975b423f-d49b-43b3-af39-64174181f67a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "99fb6a60-2329-4386-aa24-8356460a6962" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212143Z:99fb6a60-2329-4386-aa24-8356460a6962" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:42 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aca42615-a20c-460e-8925-227ff855303b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4dba551c-3e0c-44e1-93d0-0309ccf09cd5" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "0db2dd9b-049f-42fe-bb4e-9095a9f34bec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212155Z:0db2dd9b-049f-42fe-bb4e-9095a9f34bec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "634c8044-fa08-4638-ae84-85a59d2e115c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:21:43.8623245Z\",\r\n \"endTime\": \"2016-01-26T21:21:44.7821975Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"29a915aa-1fe2-4cb9-b862-d690fb694730\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/3C16F_820c9e847d324a5c88ffcc09f4715634_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=YOI8IztH78hlz71DhwKluYSIAwVsCQs790zS35484iA%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0980630\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/483BC_33ede65090cb4bfe800536ab08564561_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=pzI%2BcZ8sjUBOWsgOV7GaohOBVuWA8TcjPRHhTdHYpww%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0982D42\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"PpRbpxaSjpygkbUqLreOMw==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477635816147911\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/runs/08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911\",\r\n \"name\": \"08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1575" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:ccfe891b-e9df-4214-a9ae-7cf4b243ba4c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "x-ms-correlation-request-id": [ + "5913a89e-3259-4c1e-93ab-fe24e4953f77" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212155Z:5913a89e-3259-4c1e-93ab-fe24e4953f77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXMvMDg1ODc0Nzc2MzU4MTYxNDc5MTE/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4141ea85-4d8d-4d56-bd02-c0c4f6ec1c2c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:21:43.8623245Z\",\r\n \"endTime\": \"2016-01-26T21:21:44.7821975Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"29a915aa-1fe2-4cb9-b862-d690fb694730\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/3C16F_820c9e847d324a5c88ffcc09f4715634_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=YOI8IztH78hlz71DhwKluYSIAwVsCQs790zS35484iA%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0980630\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/483BC_33ede65090cb4bfe800536ab08564561_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=pzI%2BcZ8sjUBOWsgOV7GaohOBVuWA8TcjPRHhTdHYpww%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0982D42\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"PpRbpxaSjpygkbUqLreOMw==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477635816147911\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/runs/08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911\",\r\n \"name\": \"08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1563" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:ed31f9d2-3be5-41aa-ae94-e94ccb56330d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "eb872390-1b1d-42a3-8ca5-f2a1c2765366" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T212155Z:eb872390-1b1d-42a3-8ca5-f2a1c2765366" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:21:55 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureLogicAppTriggerHistory": [ + "onesdk2247", + "onesdk2597" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json new file mode 100644 index 000000000000..875dbab8314b --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json @@ -0,0 +1,904 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14747" + ], + "x-ms-request-id": [ + "eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + ], + "x-ms-correlation-request-id": [ + "eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211932Z:eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:32 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491\",\r\n \"name\": \"onesdk3491\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "91e27401-8c1d-4e32-86e2-89a931854d5d" + ], + "x-ms-correlation-request-id": [ + "91e27401-8c1d-4e32-86e2-89a931854d5d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211934Z:91e27401-8c1d-4e32-86e2-89a931854d5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:34 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14745" + ], + "x-ms-request-id": [ + "7cc74cb5-3937-4112-8117-3b075533dd48" + ], + "x-ms-correlation-request-id": [ + "7cc74cb5-3937-4112-8117-3b075533dd48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211934Z:7cc74cb5-3937-4112-8117-3b075533dd48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0aa8d261-8175-4ed7-b259-57670d2ede82" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3491-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3491\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "951" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b9bccadd-cb34-4131-9bd7-d7acb7022667" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "1872129b-1aa1-4fcf-9a6a-2a7488272fb0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211940Z:1872129b-1aa1-4fcf-9a6a-2a7488272fb0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c498fc99-6008-4911-9245-238c3ec96d10" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7855' under resource group 'onesdk3491' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7956ec48-da62-49a4-83e7-7fb3dd2e132f" + ], + "x-ms-correlation-request-id": [ + "7956ec48-da62-49a4-83e7-7fb3dd2e132f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211941Z:7956ec48-da62-49a4-83e7-7fb3dd2e132f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53ffefdc-a2d2-4a9b-860c-a65d2c5f051d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:06698313-5301-4804-96cd-2b2ac9e1db6c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "a76749c6-1513-4b16-ad5b-f147ca14a7ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211945Z:a76749c6-1513-4b16-ad5b-f147ca14a7ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f818893-51ad-45d8-b8f7-87a3ac6fabd0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:97097c04-bde7-446e-a060-ab83c07e40a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "c17da8c6-3997-402a-a4e4-c638e3ddcffc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211947Z:c17da8c6-3997-402a-a4e4-c638e3ddcffc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a1c818b-d91f-48f1-9ddb-7f43aa3a20bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f124d8eb-2928-449b-b41d-f83f5909efba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "e28781d7-052f-4ee4-8f49-4a973ddc71d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211949Z:e28781d7-052f-4ee4-8f49-4a973ddc71d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96a56e8a-cae8-40fb-9231-815d04302144" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:a8452737-6482-4b78-9234-61b9a95f731c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "c0a00c76-0da7-4b92-a2c6-9dba39b9ab8d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211951Z:c0a00c76-0da7-4b92-a2c6-9dba39b9ab8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5dc40ca-f8b5-4dab-9264-e7c02d04a0cd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:691102e7-52c6-48cf-b78d-ff5f21e95c0b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "ea048aaf-a0a7-46b5-99ab-3f4d7802ce7f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211953Z:ea048aaf-a0a7-46b5-99ab-3f4d7802ce7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f60409c-dacd-41d7-bcd7-dcab393096ed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:e5825c90-f8e0-47a5-a4bf-fb3605480c7e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "7a0624bd-aeae-46d2-b05e-ee4278d3706b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211955Z:7a0624bd-aeae-46d2-b05e-ee4278d3706b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1774" + ], + "x-ms-client-request-id": [ + "648c3174-61ac-4190-bb5c-6cd5aeb6f288" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4c1d5eb3-8b93-453c-97fb-50c00959186a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "522ee57f-4653-4222-a6ce-1060394e73ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211943Z:522ee57f-4653-4222-a6ce-1060394e73ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:43 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73b77f02-67aa-46b1-aa98-106e223f9045" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:44.5530621Z\",\r\n \"endTime\": \"2016-01-26T21:19:45.1405584Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"8965a27d-4bf6-44be-aea7-bdb17fb4b7c8\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/47A45_20e81a0be3ad4d65bc78552df12a462a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=e%2BTIDr4igws3NsKTDBkCbfNsk2I8e11b6AJbMnRQEjs%3D&se=2016-01-27T01%3A19%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D241A7\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/EDE60_cff97d3aa4604efe95d7eec20500a3af_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=uVD%2FyzThVoAYm%2FUBRplIrmrnYFAYrC%2BSYf3KX2Wq2VM%3D&se=2016-01-27T01%3A19%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D1570E\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6IEFhpGr4WjlWzpiHw8h7g==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477637009230758\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477637009230758\",\r\n \"name\": \"08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:9975fbae-df6a-45c1-8d7e-e80778ab12c6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-correlation-request-id": [ + "bd47d954-556b-4538-af8b-7c2bc7e57085" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211955Z:bd47d954-556b-4538-af8b-7c2bc7e57085" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74a8fcdb-0878-4346-8933-79cd75988115" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:57.2703975Z\",\r\n \"endTime\": \"2016-01-26T21:19:57.7055401Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"be509c6b-b1fd-4071-8407-a4a82ee3ee3d\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/29269_195a149bf6a245a2967f14b806c1dd78_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=rDFB5%2FxcaRe3WNO1pqFqftmxA6a6ay86TXRFKd5aniM%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269671471ABE\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/6465C_76d71c065607479d939a09814ef8f05c_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=7qrNYVn9yd%2Fp6q%2BuuWUe8xeOkwNDB2WslTrxNrY3llA%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269671480557\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6LKYP/2w0ze+Sv8dUfroEA==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477636881938193\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477636881938193\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477636881938193\",\r\n \"name\": \"08587477636881938193\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:56.2909019Z\",\r\n \"endTime\": \"2016-01-26T21:19:56.7015437Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"0469faf7-c52c-4549-a305-2ffe00e7562c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/1C830_d00bc7dd0e634e08a6bf39e66a885c5a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=eNwMPWhyamHFmCnCcsZbl0sV4J5QwwVjCcEOY2kJn7Y%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269670B0A9C3\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/29366_7c3b065db2e74d0db461afccda1b5fa2_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=FvjFGsCFnvqzi8e7awdVu3X9nW%2FQwdHzlf6ICD4g024%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269670B3B7C0\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"nXP7GNOQ+JlCgF01V4lLqg==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477636891796908\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477636891796908\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477636891796908\",\r\n \"name\": \"08587477636891796908\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:44.5530621Z\",\r\n \"endTime\": \"2016-01-26T21:19:45.1405584Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"8965a27d-4bf6-44be-aea7-bdb17fb4b7c8\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/47A45_20e81a0be3ad4d65bc78552df12a462a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=dNaEvDxj1tuGfIDobC7hz2hZvCNaqd71e8fXWZp9%2Blk%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D241A7\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/EDE60_cff97d3aa4604efe95d7eec20500a3af_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=L5m%2BBrHVgAPSyy4x72azOGtj6qTv%2Fb%2BSR7zsz87T4QQ%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D1570E\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6IEFhpGr4WjlWzpiHw8h7g==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477637009230758\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477637009230758\",\r\n \"name\": \"08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4713" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:e6b5032d-3ade-4e5c-8d7b-b4714013e63d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "28cef454-ffdc-4e54-8639-03f85e463069" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211958Z:28cef454-ffdc-4e54-8639-03f85e463069" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ce5932f-b0ef-4c3e-9c5b-7a371d0ca74e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:d321082d-b9e8-433c-a235-416e867f1075" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "a55f1122-d242-4786-bd40-639f087f4c62" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211955Z:a55f1122-d242-4786-bd40-639f087f4c62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94e33fa3-3671-431f-bfe2-dc3392f2680f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:3431f136-0590-458b-9a32-fe5f70e3442d" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1d42dae2-4b38-4be5-bcc3-54681ee80271" + ], + "x-ms-routing-request-id": [ + "WESTUS:20160126T211957Z:1d42dae2-4b38-4be5-bcc3-54681ee80271" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 26 Jan 2016 21:19:56 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-StartAzureLogicAppTrigger": [ + "onesdk3491", + "onesdk7855" + ] + }, + "Variables": { + "SubscriptionId": "57b7034d-72d4-433d-ace2-a7460aed6a99" + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Settings.StyleCop b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Settings.StyleCop new file mode 100644 index 000000000000..bb05f99bc1a1 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Settings.StyleCop @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs new file mode 100644 index 000000000000..d65f2511cc36 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/CreateLogicAppTests.cs @@ -0,0 +1,67 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Test.UnitTests +{ + using System.Management.Automation; + using Xunit; + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.Azure.Commands.LogicApp.Cmdlets; + + /// + /// Unit test for the Create Logic app command. + /// + public class CreateLogicAppTests : LogicAppUnitTestBase + { + + public CreateLogicAppTests() + { + } + + /// + /// This verifies the exception thrown by the commandlet when non-existing definition file is provided as input + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewAzureLogicApp_ThrowsExceptionWithNonexistingDefinitionFile() + { + var cmdlet = new NewAzureLogicAppCommand + { + Name = Name, + DefinitionFilePath = DefinitionFilePath, + ResourceGroupName = ResourceGroupName + }; + + var exception = Assert.Throws(() => cmdlet.ExecuteCmdlet()); + Assert.Equal("File LogicAppDefinition.json does not exist.", exception.Message); + } + + /// + /// This verifies the exception thrown by the commandlet when non-existing parameter file is provided as input + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void NewAzureLogicApp_ThrowsExceptionWithNonexistingParameterFile() + { + var cmdlet = new NewAzureLogicAppCommand + { + Name = Name, + ParameterFilePath = ParameterFilePath, + ResourceGroupName = ResourceGroupName + }; + var exception = Assert.Throws(() => cmdlet.ExecuteCmdlet()); + Assert.Equal("File LogicAppParameter.json does not exist.", exception.Message); + } + } +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs new file mode 100644 index 000000000000..26e8eedd3f20 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/UnitTests/LogicAppUnitTestBase.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Test.UnitTests +{ + using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; + + /// + /// Base class for the Logic app command tests + /// + public class LogicAppUnitTestBase : RMTestBase + { + /// + /// Name of the workflow used for testing. + /// + protected const string Name = "TestWorkflow"; + + /// + /// Definition file name present in Resource folder + /// + protected const string DefinitionFilePath = @"LogicAppDefinition.json"; + + /// + /// Parameter file name present in Resource folder + /// + protected const string ParameterFilePath = @"LogicAppParameter.json"; + + /// + /// Name of the resource group used for testing + /// + protected const string ResourceGroupName = "TestResourceGroup"; + + } +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config new file mode 100644 index 000000000000..ba1bd45405ef --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs new file mode 100644 index 000000000000..eaf108cf9eca --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Stop the workflow run + /// + [Cmdlet(VerbsLifecycle.Stop, "AzureLogicAppRun"), OutputType(typeof(object))] + public class CancelAzureLogicAppRunCommand : LogicAppBaseCmdlet + { + + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow run.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string RunName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the stop workflow run command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + LogicAppClient.CancelWorkflowRun(this.ResourceGroupName, this.Name, this.RunName); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs new file mode 100644 index 000000000000..2aa1634cb352 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs @@ -0,0 +1,67 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Gets the access key of a workflow. + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicAppAccessKey"), OutputType(typeof (object))] + public class GetAzureLogicAppAccessKeyCommand : LogicAppBaseCmdlet + { + #region private attribues + + private string _accessKeyName = "default"; + + #endregion private attribues + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The name of the workflow accesskey.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string AccessKeyName + { + get { return this._accessKeyName; } + set { this._accessKeyName = value; } + } + + #endregion Input Parameters + + /// + /// Executes the get workflow accesskey command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + this.WriteObject( + LogicAppClient.GetWorkflowAccessKey(this.ResourceGroupName, this.Name, this.AccessKeyName), true); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppCommand.cs new file mode 100644 index 000000000000..a864f709a784 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppCommand.cs @@ -0,0 +1,50 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using System.Management.Automation; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Commands.LogicApp.Utilities; + + /// + /// Creates a new LogicApp workflow + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicApp"), OutputType(typeof (object))] + public class GetAzureLogicAppCommand : LogicAppBaseCmdlet + { + + #region Input Paramters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + this.WriteObject(LogicAppClient.GetWorkflow(this.ResourceGroupName, this.Name), true); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs new file mode 100644 index 000000000000..ac978f623c48 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Gets the action in the workflow run + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicAppRunAction"), OutputType(typeof(object))] + public class GetAzureLogicAppRunActionCommand : LogicAppBaseCmdlet + { + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow run.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string RunName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The name of the action in the workflow run.")] + [ValidateNotNullOrEmpty] + public string ActionName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow run action command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (string.IsNullOrEmpty(this.ActionName)) + { + var enumerator = LogicAppClient.GetWorkflowRunActions(this.ResourceGroupName, this.Name, this.RunName).GetEnumerator(); + this.WriteObject(enumerator.ToIEnumerable(), true); + } + else + { + this.WriteObject( + LogicAppClient.GetWorkflowRunAction(this.ResourceGroupName, this.Name, this.RunName, this.ActionName), + true); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs new file mode 100644 index 000000000000..49385cc04560 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs @@ -0,0 +1,65 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Creates a new LogicApp workflow + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicAppRunHistory"), OutputType(typeof(object))] + public class AzureLogicAppRunHistoryCommand : LogicAppBaseCmdlet + { + + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The name of the workflow run.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string RunName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow run history command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + if (string.IsNullOrEmpty(this.RunName)) + { + var enumerator = LogicAppClient.GetWorkflowRuns(this.ResourceGroupName, this.Name).GetEnumerator(); + this.WriteObject(enumerator.ToIEnumerable(), true); + } + else + { + this.WriteObject(LogicAppClient.GetWorkflowRun(this.ResourceGroupName, this.Name, this.RunName), true); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs new file mode 100644 index 000000000000..779cefc8b4e4 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs @@ -0,0 +1,70 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using Microsoft.Azure.Management.Logic; + using System.Management.Automation; + + /// + /// Gets the trigger in the workflow + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicAppTrigger"), OutputType(typeof (object))] + public class GetAzureLogicAppTriggerCommand : LogicAppBaseCmdlet + { + + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The name of the trigger in the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string TriggerName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow trigger command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + if (string.IsNullOrEmpty(this.TriggerName)) + { + var enumerator = LogicAppClient.GetWorkflowTriggers(this.ResourceGroupName, this.Name).GetEnumerator(); + this.WriteObject(enumerator.ToIEnumerable(), true); + } + else + { + this.WriteObject( + LogicAppClient.GetWorkflowTrigger(this.ResourceGroupName, this.Name, this.TriggerName), true); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs new file mode 100644 index 000000000000..d60b9bec8d6a --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs @@ -0,0 +1,75 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using Microsoft.Azure.Management.Logic; + using System.Management.Automation; + + /// + /// Gets the trigger history of the workflow + /// + [Cmdlet(VerbsCommon.Get, "AzureLogicAppTriggerHistory"), OutputType(typeof (object))] + public class GetAzureLogicAppTriggerHistoryCommand : LogicAppBaseCmdlet + { + + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the trigger in the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string TriggerName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The name of the history of workflow trigger.", + ValueFromPipelineByPropertyName = false)] + [ValidateNotNullOrEmpty] + public string HistoryName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow trigger history command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + if (string.IsNullOrEmpty(this.HistoryName)) + { + var enumerator = + LogicAppClient.GetWorkflowTriggerHistories(this.ResourceGroupName, this.Name, this.TriggerName) + .GetEnumerator(); + this.WriteObject(enumerator.ToIEnumerable(), true); + } + else + { + this.WriteObject( + LogicAppClient.GetWorkflowTriggerHistory(this.ResourceGroupName, this.Name, this.TriggerName, + this.HistoryName), true); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs new file mode 100644 index 000000000000..591e07480ee8 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs @@ -0,0 +1,171 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using System; + using System.Collections.Generic; + using System.Management.Automation; + using Microsoft.Azure.Commands.LogicApp.Utilities; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.WindowsAzure.Commands.Utilities.Common; + using Newtonsoft.Json.Linq; + + /// + /// Creates a new LogicApp workflow + /// + [Cmdlet(VerbsCommon.New, "AzureLogicApp"), OutputType(typeof (object))] + public class NewAzureLogicAppCommand : LogicAppBaseCmdlet + { + #region private Variables + + /// + /// Default value for the workflow status parameter + /// + private string _status = Constants.StatusEnabled; + + #endregion private Variables + + #region Input Paramters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "App service plan name.", ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string AppServicePlan { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The location of the workflow.", ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Location { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The state of the workflow.")] + [ValidateSet(Constants.StatusEnabled, Constants.StatusDisabled, IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string State + { + get { return this._status; } + set { this._status = value; } + } + + [Parameter(Mandatory = false, HelpMessage = "The URI link to the workflow definition.", + ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] + [ValidateNotNullOrEmpty] + public string DefinitionLinkUri { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The content version of the definition link.", + ParameterSetName = ParameterSet.LogicAppWithDefinitionLink)] + [ValidateNotNullOrEmpty] + public string DefinitionLinkContentVersion { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The definition of the workflow.", + ParameterSetName = ParameterSet.LogicAppWithDefinition)] + [ValidateNotNullOrEmpty] + public object Definition { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The physical file path of the workflow definition.", + ParameterSetName = ParameterSet.LogicAppWithDefinitionFile)] + [ValidateNotNullOrEmpty] + public string DefinitionFilePath { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters link Uri.")] + [ValidateNotNullOrEmpty] + public string ParameterLinkUri { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters link Uri content version.")] + [ValidateNotNullOrEmpty] + public string ParameterLinkContentVersion { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters parameter for the logic app.")] + [ValidateNotNullOrEmpty] + public object Parameters { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameter file path.")] + [ValidateNotNullOrEmpty] + public string ParameterFilePath { get; set; } + + #endregion Input Parameters + + /// + /// Execute the create new workflow command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (this.Definition != null) + { + this.Definition = JToken.Parse(this.Definition.ToString()); + } + + if (!string.IsNullOrEmpty(this.DefinitionFilePath)) + { + this.Definition = CmdletHelper.GetDefinitionFromFile(this.TryResolvePath(this.DefinitionFilePath)); + } + + if (this.Parameters != null) + { + this.Parameters = CmdletHelper.ConvertToWorkflowParameterDictionary(this.Parameters); + } + + if (!string.IsNullOrEmpty(this.ParameterFilePath)) + { + this.Parameters = CmdletHelper.GetParametersFromFile(this.TryResolvePath(this.ParameterFilePath)); + } + + var servicePlan = WebsitesClient.GetAppServicePlan(this.ResourceGroupName, this.AppServicePlan); + + if (string.IsNullOrEmpty(this.Location)) + { + this.Location = servicePlan.GeoRegion; + } + + this.WriteObject(LogicAppClient.CreateWorkflow(this.ResourceGroupName, this.Name, new Workflow + { + Location = this.Location, + Definition = this.Definition, + Parameters = this.Parameters as Dictionary, + DefinitionLink = string.IsNullOrEmpty(this.DefinitionLinkUri) + ? null + : new ContentLink + { + Uri = this.DefinitionLinkUri, + ContentVersion = this.DefinitionLinkContentVersion + }, + ParametersLink = string.IsNullOrEmpty(this.ParameterLinkUri) + ? null + : new ContentLink + { + Uri = this.ParameterLinkUri, + ContentVersion = this.ParameterLinkContentVersion + }, + State = (WorkflowState) Enum.Parse(typeof (WorkflowState), this.State), + Sku = new Sku + { + Name = (SkuName)Enum.Parse(typeof(SkuName), servicePlan.Sku.Tier), + Plan = new ResourceReference + { + Id = servicePlan.Id + } + } + }), true); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicAppCommand.cs new file mode 100644 index 000000000000..6a3d16dc992a --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicAppCommand.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using System.Globalization; + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Creates a new LogicApp workflow + /// + [Cmdlet(VerbsCommon.Remove, "AzureLogicApp"), OutputType(typeof (object))] + public class RemoveAzureLogicAppCommand : LogicAppBaseCmdlet + { + + #region Input Paramters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")] + public SwitchParameter Force { get; set; } + + #endregion Input Parameters + + /// + /// Executes the remove workflow command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + ConfirmAction(Force.IsPresent, + string.Format(CultureInfo.InvariantCulture, Properties.Resource.RemoveLogicAppWarning, this.Name), + Properties.Resource.RemoveLogicAppMessage, + Name, + () => { + LogicAppClient.RemoveWorkflow(ResourceGroupName, Name); + }); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs new file mode 100644 index 000000000000..f7f30faa8fc3 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs @@ -0,0 +1,72 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic; +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Creates a new LogicApp workflow + /// + [Cmdlet(VerbsLifecycle.Start, "AzureLogicApp"), OutputType(typeof (object))] + public class RunAzureLogicAppCommand : LogicAppBaseCmdlet + { + + #region Input Paramters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters for the workflow run.", ValueFromPipelineByPropertyName = false)] + [ValidateNotNullOrEmpty] + public object Parameters { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the trigger.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string TriggerName { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + if (string.IsNullOrEmpty(this.TriggerName)) + { + this.WriteObject( + LogicAppClient.RunWorkflow(this.ResourceGroupName, this.Name, + new RunWorkflowParameters()), true); + } + else + { + LogicAppClient.RunWorkflowTrigger(this.ResourceGroupName, this.Name, this.TriggerName); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs new file mode 100644 index 000000000000..8ad448cc0bb7 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs @@ -0,0 +1,66 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic.Models; + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using Microsoft.Azure.Commands.LogicApp.Utilities; + using System.Management.Automation; + + /// + /// Sets the secret of the access keys of a workflow + /// + [Cmdlet(VerbsCommon.Set, "AzureLogicAppAccessKey"), OutputType(typeof (object))] + public class UpdateAzureLogicAppAccessKeyCommand : LogicAppBaseCmdlet + { + #region Input Parameters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow accesskey.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string AccessKeyName { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The type of the key.", + ValueFromPipelineByPropertyName = false)] + [ValidateSet(Constants.KeyTypeNotSpecified, Constants.KeyTypePrimary, Constants.KeyTypeSecondary, + IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string KeyType { get; set; } + + #endregion Input Parameters + + /// + /// Executes the get workflow accesskey command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + this.WriteObject( + LogicAppClient.RegenerateWorkflowAccessKey(this.ResourceGroupName, this.Name, this.AccessKeyName, + this.KeyType), true); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs new file mode 100644 index 000000000000..180f63c20981 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs @@ -0,0 +1,218 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Cmdlets +{ + using System; + using System.Management.Automation; + using Microsoft.Azure.Commands.LogicApp.Utilities; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.WindowsAzure.Commands.Utilities.Common; + using Newtonsoft.Json.Linq; + + /// + /// Updates a LogicApp workflow + /// + [Cmdlet(VerbsCommon.Set, "AzureLogicApp"), OutputType(typeof (object))] + public class UpdateAzureLogicAppCommand : LogicAppBaseCmdlet + { + #region private Variables + + /// + /// Default value for the workflow status parameter + /// + private string _status = Constants.StatusEnabled; + + /// + /// Default value for the workflow definition + /// + private object _definition = string.Empty; + + /// + /// Default value for the workflow definition Uri + /// + private string _definitionUri = string.Empty; + + /// + /// Default value for the workflow parameters + /// + private object _parameters = string.Empty; + + /// + /// Default value for the workflow parameters Uri + /// + private string _parametersUri = string.Empty; + + #endregion private Variables + + #region Input Paramters + + [Parameter(Mandatory = true, HelpMessage = "The targeted resource group for the workflow.", + ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, HelpMessage = "The name of the workflow.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "App service plan name.", ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string AppServicePlan { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The state of the workflow.")] + [ValidateSet(Constants.StatusEnabled, Constants.StatusDisabled, IgnoreCase = false)] + [ValidateNotNullOrEmpty] + public string State + { + get { return this._status; } + set { this._status = value; } + } + + [Parameter(Mandatory = false, HelpMessage = "The URI link to the workflow definition.")] + public string DefinitionLinkUri + { + get { return this._definitionUri; } + set { this._definitionUri = value; } + } + + [Parameter(Mandatory = false, HelpMessage = "The content version of the definition link.")] + [ValidateNotNullOrEmpty] + public string DefinitionLinkContentVersion { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The definition of the workflow.")] + public object Definition + { + get { return this._definition; } + set { this._definition = value; } + } + + [Parameter(Mandatory = false, HelpMessage = "The physical file path of the workflow definition.")] + [ValidateNotNullOrEmpty] + public string DefinitionFilePath { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters link Uri.")] + public string ParameterLinkUri + { + get { return this._parametersUri; } + set { this._parametersUri = value; } + } + + [Parameter(Mandatory = false, HelpMessage = "The parameters link Uri content version.")] + [ValidateNotNullOrEmpty] + public string ParameterLinkContentVersion { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "The parameters parameter for the logic app.")] + public object Parameters + { + get { return this._parameters; } + set { this._parameters = value; } + } + + [Parameter(Mandatory = false, HelpMessage = "The parameter file path.")] + [ValidateNotNullOrEmpty] + public string ParameterFilePath { get; set; } + + #endregion Input Parameters + + /// + /// Execute the create new workflow command + /// + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var workflow = LogicAppClient.GetWorkflow(this.ResourceGroupName, this.Name); + + if (this.Definition == null) + { + workflow.Definition = null; + } + else if (this.Definition.ToString() != string.Empty) + { + workflow.Definition = JToken.Parse(this.Definition.ToString()); + } + + if (!string.IsNullOrEmpty(this.DefinitionFilePath)) + { + workflow.Definition = CmdletHelper.GetDefinitionFromFile(this.TryResolvePath(this.DefinitionFilePath)); + } + + if (this.Parameters == null) + { + workflow.Parameters = null; + } + else if (this.Parameters.ToString() != string.Empty) + { + workflow.Parameters = CmdletHelper.ConvertToWorkflowParameterDictionary(this.Parameters); + } + + if (!string.IsNullOrEmpty(this.ParameterFilePath)) + { + workflow.Parameters = CmdletHelper.GetParametersFromFile(this.TryResolvePath(this.ParameterFilePath)); + } + + if (this.DefinitionLinkUri == null) + { + workflow.DefinitionLink = null; + } + else if (this.DefinitionLinkUri != string.Empty) + { + workflow.DefinitionLink = new ContentLink + { + Uri = this.DefinitionLinkUri, + ContentVersion = this.DefinitionLinkContentVersion + }; + } + + if (this.ParameterLinkUri == null) + { + workflow.ParametersLink = null; + } + else if (this.ParameterLinkUri != string.Empty) + { + workflow.ParametersLink = new ContentLink + { + Uri = this.ParameterLinkUri, + ContentVersion = this.ParameterLinkContentVersion + }; + } + + if (!string.IsNullOrEmpty(this.State)) + { + workflow.State = (WorkflowState) Enum.Parse(typeof (WorkflowState), this.State); + } + + if (!string.IsNullOrEmpty(this.AppServicePlan)) + { + var servicePlan = WebsitesClient.GetAppServicePlan(this.ResourceGroupName, this.AppServicePlan); + workflow.Sku = new Sku + { + Name = (SkuName)Enum.Parse(typeof(SkuName), servicePlan.Sku.Tier), + Plan = new ResourceReference + { + Id = servicePlan.Id + } + }; + } + + if (workflow.DefinitionLink == null && workflow.Definition == null) + { + throw new PSArgumentException(Properties.Resource.DefinitionMissingWarning); + } + + this.WriteObject(LogicAppClient.UpdateWorkflow(this.ResourceGroupName, this.Name, workflow), true); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj new file mode 100644 index 000000000000..2babbd103160 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj @@ -0,0 +1,213 @@ + + + + + Debug + AnyCPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74} + Library + Properties + Microsoft.Azure.Commands.LogicApp + Microsoft.Azure.Commands.LogicApp + v4.5 + 512 + + ..\..\..\ + true + + + true + full + false + ..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.LogicApp + DEBUG;TRACE + prompt + 4 + true + false + false + + + true + MSSharedLibKey.snk + true + ..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.LogicApp + TRACE + true + pdbonly + AnyCPU + bin\Release\Microsoft.Azure.Commands.LogicApp.dll.CodeAnalysisLog.xml + true + GlobalSuppressions.cs + prompt + MinimumRecommendedRules.ruleset + ;$(ProgramFiles)\Microsoft Visual Studio 12.0\Team Tools\Static Analysis Tools\Rule Sets + ;$(ProgramFiles)\Microsoft Visual Studio 12.0\Team Tools\Static Analysis Tools\FxCop\Rules + true + false + + + true + + + + False + ..\..\..\packages\Hyak.Common.1.0.2\lib\net45\Hyak.Common.dll + + + False + ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll + + + False + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.6.1-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.Logic.0.1.0-preview\lib\net45\Microsoft.Azure.Management.Logic.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.WebSites.0.16.7-preview\lib\net45\Microsoft.Azure.Management.WebSites.dll + + + False + ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.11-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + + False + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.1.0.20\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll + + + False + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.11.0\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll + + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.TestFramework.0.9.3-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll + + + False + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll + + + ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll + + + False + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + + + + + + + + + + + + + + + + Code + + + + + + + + + + + + + True + True + Resource.resx + + + + Code + + + Code + + + + + + + + + + + AzureRM.LogicApp.psd1 + PreserveNewest + + + + Designer + + + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + + + {e1f5201d-6067-430e-b303-4e367652991b} + Commands.Resources + + + + + + + + ResXFileCodeGenerator + Resource.Designer.cs + + + + + + + + Designer + PreserveNewest + + + PreserveNewest + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/MSSharedLibKey.snk b/src/ResourceManager/LogicApp/Commands.LogicApp/MSSharedLibKey.snk new file mode 100644 index 0000000000000000000000000000000000000000..695f1b38774e839e5b90059bfb7f32df1dff4223 GIT binary patch literal 160 zcmV;R0AK$ABme*efB*oL000060ssI2Bme+XQ$aBR1ONa50098C{E+7Ye`kjtcRG*W zi8#m|)B?I?xgZ^2Sw5D;l4TxtPwG;3)3^j?qDHjEteSTF{rM+4WI`v zCD?tsZ^;k+S&r1&HRMb=j738S=;J$tCKNrc$@P|lZ + + + + Get-AzureLogicApp + + Gets the specified Logic App from the Azure resource group. + + + + + Get + AzureLogicApp + + + + This is the Description section + The Get-AzureLogicApp cmdlet retrieves Azure Logic App from the Azure resource group and returns an object that represents the Workflow. Use this cmdlet to get a Logic App from specified resource group. You can get a Logic App by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.Workflow + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Get a Logic App from specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" + + This command gets a Logic App from the specified Azure resource group. + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : StandardServicePlan +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/StandardServicePlan +Version : 08587489107859952120 + + + + + + + + + + + + + New-AzureLogicApp + + + + Set-AzureLogicApp + + + + Remove-AzureLogicApp + + + + + + + + Get-AzureLogicAppAccessKey + + Gets the access keys of a specified Logic App. + + + + + Get + AzureLogicAppAccessKey + + + + This is the Description section + The Get-AzureLogicAppAccessKey cmdlet retrieves access key of an Azure Logic App and returns an object that represents the WorkflowSecretKeys. Use this cmdlet to get a Logic App access key from a specified resource group. You can get a Logic App access key by specifying the Logic App name, resource group name and access key name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicAppAccessKey + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AccessKeyName + + Specifies the name of the access key. This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + AccessKeyName + + Specifies the name of the access key. This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowSecretKeys + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Get the access key of a Logic App from specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -AccessKeyName "default" + + This command gets an access key of a Logic App from the specified Azure resource group. + + + PrimarySecretKey : lTmyIrecVCcpC2wF8M8HeUW7YUL6Y_Uod7jOlrpW-TU +SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 + + + + + + + + + + + -------------------------- Example 2 : Gets all the access keys of a Logic App from specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" + + This command gets all the access keys of a Logic App from the specified Azure resource group. + + + PrimarySecretKey : lTmyIrecVCcpC2wF8M8HeUW7YUL6Y_Uod7jOlrpW-TU +SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 + + + + + + + + + + + + + + + + + Get-AzureLogicAppRunAction + + Gets the specified action from the Logic App run. + + + + + Get + AzureLogicAppRunAction + + + + This is the Description section + The Get-AzureLogicAppActionRun cmdlet retrieves action from a specified Logic App run and returns an object that represents the WorkflowRunAction. Use this cmdlet to get action(s) from the Logic App run in the specified resource group. You can get a Logic App's run action by specifying the Logic App name, resource group name, run name and action name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicAppRunAction + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + RunName + + Specifies the name of the Logic App run. This parameter is required. + + String + + + ActionName + + Specifies the name of the action in the Logic App run. This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + RunName + + Specifies the name of the Logic App run. This parameter is required. + + String + + String + + + + + + ActionName + + Specifies the name of the action in the Logic App run. This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowRunAction + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Get an action from a Logic App run from a specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppActionRun -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "LogicAppRun1" -ActionName "LogicAppAction1" + + This command gets a Logic App action from the specified Logic App run in an Azure resource group. + + + Code : NotFound +EndTime : 1/13/2016 2:42:56 PM +Error : +InputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink +Name : LogicAppAction1 +OutputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink +StartTime : 1/13/2016 2:42:55 PM +Status : Failed +TrackingId : +Type : + + + + + + + + + + + -------------------------- Example 2 : Get all the actions from a Logic App run from a specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppActionRun -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "LogicAppRun1" + + This command gets all the actions from a Logic App run in a specified Azure resource group. + + + Code : NotFound +EndTime : 1/13/2016 2:42:56 PM +Error : +InputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink +Name : LogicAppAction1 +OutputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink +StartTime : 1/13/2016 2:42:55 PM +Status : Failed +TrackingId : +Type : + + + + + + + + + + + + + Get-AzureLogicAppRunHistory + + + + Start-AzureLogicAppRun + + + + Stop-AzureLogicAppRun + + + + + + + + Get-AzureLogicAppRunHistory + + Gets the Logic App run history. + + + + + Get + AzureLogicAppRunHistory + + + + This is the Description section + The Get-AzureLogicAppRunHistory cmdlet retrieves the Logic App run history and returns a collection of WorkflowRun object for a specified Logic App. Use this cmdlet to get the run history of the Logic App from a specified resource group. You can get a Logic App's run history by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicAppRunHistory + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + RunName + + Specifies the run name of the Logic App. This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + RunName + + Specifies the run name of the Logic App. This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowRun + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Gets the Logic App run history for a specified Logic App and Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppActionRunHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" + + This command gets a Logic App run history for a specified Logic App and Azure resource group. + + + CorrelationId : 55830326-9042-404d-a4c3-fab198106a57 +EndTime : 1/13/2016 2:46:55 PM +Error : {code, message} +Name : 08587489104702792076 +Outputs : {} +StartTime : 1/13/2016 2:46:55 PM +Status : Failed +TriggerName : +LogicAppName : LogicApp1 +LogicAppVersion : 08587489107859952540 + +CorrelationId : d3ddc917-9aaa-47b3-8814-c621c2ae530b +EndTime : 1/13/2016 2:42:56 PM +Error : {code, message} +Name : 08587489107100664541 +Outputs : {} +StartTime : 1/13/2016 2:42:55 PM +Status : Failed +TriggerName : httpTrigger +LogicAppName : LogicApp1 +LogicAppVersion : 08587489107859952120 + + + + + + + + + + + -------------------------- Example 2 : Gets the specific Logic App run for a specified Logic App and Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppActionRunHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "08587489104702792076" + + This command gets a Logic App run for a specified Logic App and Azure resource group. + + + CorrelationId : 55830326-9042-404d-a4c3-fab198106a57 +EndTime : 1/13/2016 2:46:55 PM +Error : {code, message} +Name : 08587489104702792076 +Outputs : {} +StartTime : 1/13/2016 2:46:55 PM +Status : Failed +TriggerName : +LogicAppName : LogicApp1 +LogicAppVersion : 08587489107859952120 + + + + + + + + + + + + + Get-AzureLogicAppRunAction + + + + Start-AzureLogicApp + + + + Stop-AzureLogicAppRun + + + + + + + + Get-AzureLogicAppTrigger + + Gets the specified trigger of the logic app. + + + + + Get + AzureLogicAppTrigger + + + + This is the Description section + The Get-AzureLogicAppTrigger cmdlet retrieves the specified trigger from the logic app and returns an object/collection which represents the workflow trigger. Use this cmdlet to get the trigger(s) of the logic app from a specified resource group. You can get the logic app's trigger by specifying the workflow name, resource group name and trigger name. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicAppTrigger + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + + TriggerName + + Specifies the name of the trigger. This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the logic app. This parameter is required. + + String + + String + + + + + + TriggerName + + Specifies the name of the trigger. This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowTrigger + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Gets the specified Logic App trigger of a Logic App in the specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppTrigger -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" + + This command gets the trigger of the specified Logic App and Azure resource group. + + + ChangedTime : 1/14/2016 11:45:07 AM +CreatedTime : 1/13/2016 2:42:26 PM +LastExecutionTime : 1/14/2016 11:45:07 AM +Name : Trigger1 +NextExecutionTime : 1/14/2016 12:45:07 PM +RecurrenceFrequency : Minute +RecurrenceInterval : 60 +Status : Waiting +Type : Microsoft.Logic/workflows/triggers +LogicAppName : LogicApp1 +LogicAppVersion : 08587489107406290826 + + + + + + + + + + + -------------------------- Example 2 : Gets Logic App triggers of the Logic App from a specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppTrigger -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" + + This command gets trigger(s) of the specified Logic App in the Azure resource group. + + + ChangedTime : 1/14/2016 11:45:07 AM +CreatedTime : 1/13/2016 2:42:26 PM +LastExecutionTime : 1/14/2016 11:45:07 AM +Name : Trigger1 +NextExecutionTime : 1/14/2016 12:45:07 PM +RecurrenceFrequency : Minute +RecurrenceInterval : 60 +Status : Waiting +Type : Microsoft.Logic/workflows/triggers +LogicAppName : LogicApp1 +LogicAppVersion : 08587489107406290826 + + + + + + + + + + + + + Get-AzureLogicAppTriggerHistory + + + + Start-AzureLogicApp + + + + + + + + Get-AzureLogicAppTriggerHistory + + Gets the trigger history of the specified trigger in the Logic App. + + + + + Get + AzureLogicAppTriggerHistory + + + + This is the Description section + The Get-AzureLogicAppTriggerHistory cmdlet retrieves the history of the specified trigger in the Logic App and returns an object/collection which represents the Logic App trigger history. Use this cmdlet to get the trigger history of the Logic App from a specified resource group. You can get the Logic App's trigger history by specifying the Logic App name, resource group name, trigger name and history name (optional). To use the dynamic parameters, just type them in the command, or type a minus sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Get-AzureLogicAppTriggerHistory + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + TriggerName + + Specifies the name of the trigger. This parameter is required. + + String + + + HistoryName + + Specifies the name of the history. This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + TriggerName + + Specifies the name of the trigger. This parameter is required. + + String + + String + + + + + + HistoryName + + Specifies the name of the history. This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowTriggerHistory + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Gets the specified Logic App trigger history for a specified trigger in the Logic App. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppTriggerHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" -HistoryName "08587489107387695768" + + This command gets the Logic App trigger history for a specified trigger in the Logic App. + + + Code : BadRequest +EndTime : 1/13/2016 2:42:26 PM +Error : {code, message} +Fired : False +InputsLink : https://flowprodcu02by01.blob.core.windows.net/flow3ea9ffd11c684c9f9f258b1a6ea5cb6020160113t000000zcontent/A7392_d1e831de68ac4ef89d19a40f05e663 + cb_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=rASa1yg14P71ioIStAji5HJfTFCbSjD3LNt2Ypn%2Byg4%3D&se=2016-01-14T16%3A15%3A16Z&sp=r +Name : 08587489107387695768 +OutputsLink : +Run : +StartTime : 1/13/2016 2:42:26 PM +Status : Failed +TrackingId : f88a499b-f80f-4a28-9bbf-c4cc0d129700 +Type : Microsoft.Logic/workflows/triggers/histories + + + + + + + + + + + -------------------------- Example 2 : Gets the Logic App trigger histories for a specified trigger in the logic app. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicAppTriggerHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" + + This command gets the workflow trigger histories for a specified trigger in the Logic App. + + + Code : BadRequest +EndTime : 1/13/2016 2:43:33 PM +Error : {code, message} +Fired : False +InputsLink : https://flowprodcu02by01.blob.core.windows.net/flow3ea9ffd11c684c9f9f258b1a6ea5cb6020160113t000000zcontent/CAB46_60e2ad0f0e1947e8b5798716914c5d + b6_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=aoyjajRfk5tQucYE%2BW6h9Is%2BAHSE7AcojY%2FOag6DWRA%3D&se=2016-01-14T16%3A18%3A27Z&sp=r +Name : 08587489106716457817 +OutputsLink : +Run : +StartTime : 1/13/2016 2:43:33 PM +Status : Failed +TrackingId : c91a63f1-48b4-4eae-91eb-8f6dbfa9fe06 +Type : Microsoft.Logic/workflows/triggers/histories + +Code : BadRequest +EndTime : 1/13/2016 2:42:26 PM +Error : {code, message} +Fired : False +InputsLink : https://flowprodcu02by01.blob.core.windows.net/flow3ea9ffd11c684c9f9f258b1a6ea5cb6020160113t000000zcontent/A7392_d1e831de68ac4ef89d19a40f05e663 + cb_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=XNBbA0FkBQmGPDd%2Be03J0Vsdj4aFRG9YK5YBJwzBbO0%3D&se=2016-01-14T16%3A18%3A27Z&sp=r +Name : 08587489107387695768 +OutputsLink : +Run : +StartTime : 1/13/2016 2:42:26 PM +Status : Failed +TrackingId : f88a499b-f80f-4a28-9bbf-c4cc0d129700 +Type : Microsoft.Logic/workflows/triggers/histories + + + + + + + + + + + + + Get-AzureLogicAppTrigger + + + + Start-AzureLogicApp + + + + + + + + New-AzureLogicApp + + Creates a new Logic App in the azure resource group. + + + + + New + AzureLogicApp + + + + This is the Description section + The New-AzureLogicApp cmdlet creates an Azure Logic App and returns an object that represents the Workflow. Use this cmdlet to create a new Logic App. A Logic App is a collection of actions or triggers defined in Logic App definition. You can create a Logic App with a name, location, Logic App definition, resource group name and App Service Plan name . However, typically, you use a Logic App template for definition and parameters which is a JSON-based model. To create a Logic App, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the Logic App template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. + + + + New-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + + Location + + Specifies the location of the Logic App. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a Logic App in any location. + + String + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + + DefinitionLinkUri + + Specifies Definition link Uri of the Logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + New-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + + Location + + Specifies the location of the Logic App. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a Logic App in any location. + + String + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + + Definition + + Definition of the Logic App. Expected type object or JSON-formatted string. + + Object + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + New-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + + Location + + Specifies the location of the Logic App. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a Logic App in any location. + + String + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + + DefinitionFilePath + + Path of a JSON-formatted definition file. + + String + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + String + + + + + + Location + + Specifies the location of the Logic App. This parameter is required. Enter an Azure data center location, such as "West US" or "Southeast Asia". You can place a Logic App in any location. + + String + + String + + + + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + String + + + Enabled + + + DefinitionLinkUri + + Specifies Definition link Uri of the Logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + String + + + + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + String + + + + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + String + + + + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + String + + + + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + Object + + + + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + Definition + + Definition of the Logic App. Expected type object or JSON-formatted string. + + Object + + Object + + + + + + DefinitionFilePath + + Path of a JSON-formatted definition file. + + String + + String + + + + + + + + + None + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.Workflow + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Creates a Logic App with definition and parameter template file path -------------------------- + + PS C:\> + + PS C:\>New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" + + This command creates a new Logic App in the specified resource group. + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : ServicePlan1 +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/ServicePlan1 +Version : 08587489107859952120 + + + + + + + + + + + -------------------------- Example 2 : Creates a Logic App with definition and parameter objects -------------------------- + + PS C:\> + + PS C:\>New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -AppServicePlan "ServicePlan1" -Definition [IO.File]::ReadAllText("d:\Workflows\Definition.json") -Parameters @{name1="value1", name2="value2"} + + This command creates a new Logic App in the targeted resource group. + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : ServicePlan1 +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/ServicePlan1 +Version : 08587489107859952120 + + + + + + + + + + + -------------------------- Example 3 : Creates a Logic App using ResourceGroup pipe input -------------------------- + + PS C:\> + + PS C:\>Get-AzureRmResourceGroup -ResourceGroupName "ResourceGroup1" | New-AzureLogicApp -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\Workflow\Definition.json" -ParameterFilePath "d:\Workflow\Parameters.json" + + This command creates a new Logic App in the specified resource group using the pipe input from the resource group object. + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : ServicePlan1 +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/ServicePlan1 +Version : 08587489107859952120 + + + + + + + + + + + -------------------------- Example 4 : Creates a Logic App using existing Logic App. -------------------------- + + PS C:\> + + PS C:\>New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -Definition $workflow.Definition -Parameters $workflow.Parameters + + This command creates a new Logic App in the targeted resource group. In this example, definition and parameters of existing Logic App is used to create new Logic App. + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : ServicePlan1 +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/ServicePlan1 +Version : 08587489107859952120 + + + + + + + + + + + + + Get-AzureLogicApp + + + + Set-AzureLogicApp + + + + Remove-AzureLogicApp + + + + + + + + Remove-AzureLogicApp + + Removes the specified Logic App from the specified Azure resource group. + + + + + Remove + AzureLogicApp + + + + This is the Description section + The Remove-AzureLogicApp cmdlet removes a Logic App from an Azure resource group. Use this cmdlet to remove Logic App from specified resource group. You can remove a Logic App by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Remove-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + Force + + Optional switch parameter to force the remove operation without prompt. + + SwitchParameter + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + Force + + Optional switch parameter to force the remove operation without prompt. + + SwitchParameter + + SwitchParameter + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Removes a Logic App from specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Remove-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Force + + This command removes a Logic App from the specified Azure resource group. + + + + + + + + + + + + + + + + Set-AzureLogicApp + + + + Get-AzureLogicApp + + + + New-AzureLogicApp + + + + + + + + Set-AzureLogicApp + + Updates a new Logic App in an azure resource group. + + + + + Set + AzureLogicApp + + + + This is the Description section + The Set-AzureLogicApp cmdlet updates an Azure Logic App and returns an object that represents the Workflow. Use this cmdlet to update a Logic App. You can update a Logic App with a name, Logic App definition, resource group name, App Service Plan name. However, typically, you use a Logic App template for definition and parameters which is JSON-based model. To update a Logic App, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the Logic App template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. + + + + Set-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + + DefinitionLinkUri + + Specifies Definition link Uri of the Logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + + Definition + + Definition of the Logic App. Expected type object or JSON-formatted string. + + Object + + + DefinitionFilePath + + Path of a JSON-formatted definition file. + + String + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + AppServicePlan + + Specifies the name of the App Service Plan. This parameter is required. + + String + + String + + + + + + State + + Specifies a state of the Logic App. Expected values e.g. Enabled, Disabled + + String + + String + + + + + + DefinitionLinkUri + + Specifies Definition link Uri of the Logic App. If DefinitionLinkUri is provided as parameter then user must provide the "DefinitionLinkContentVersion" parameter. + + String + + String + + + + + + DefinitionLinkContentVersion + + Specifies the content version of the Definition link Uri. + + String + + String + + + + + + Definition + + Definition of the Logic App. Expected type object or JSON-formatted string. + + Object + + Object + + + + + + DefinitionFilePath + + Path of a JSON-formatted definition file. + + String + + String + + + + + + ParameterLinkUri + + Specifies parameter link Uri of the Logic App. If ParameterLinkUri is provided as parameter then user must provide the "ParameterLinkContentVersion" parameter. + + String + + String + + + + + + ParameterLinkContentVersion + + Specifies the content version of the Parameter Link Uri of the Logic App. + + String + + String + + + + + + Parameters + + Parameters collection object of the Logic App. Expected Type HashTable or Dictionary<string,> or Dictionary<string, WorkflowParameter>. + + Object + + Object + + + + + + ParameterFilePath + + Path of a JSON-formatted parameter file. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.Workflow + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Updates a Logic App -------------------------- + + PS C:\> + + PS C:\>Set-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" + + This command updates a Logic App + + + Id : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/LogicAppCmdletTest/providers/Microsoft.Logic/workflows/LogicApp1 +Name : LogicApp1 +Type : Microsoft.Logic/workflows +Location : westus +ChangedTime : 1/13/2016 2:41:39 PM +CreatedTime : 1/13/2016 2:41:39 PM +AccessEndpoint : https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/ResourceGroup1/providers/Microsoft.Logic/workflows/LogicApp1 +State : Enabled +DefinitionLinkUri : +DefinitionLinkContentVersion : +Definition : {$schema, contentVersion, parameters, triggers...} +ParametersLinkUri : +ParametersLinkContentVersion : +Parameters : {[destinationUri, Microsoft.Azure.Management.Logic.Models.WorkflowParameter]} +SkuName : Standard +PlanName : ServicePlan1 +PlanType : Microsoft.Web/ServerFarms +PlanId : /subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/ResourceGroup1/providers/Microsoft.Web/serverfarms/ServicePlan1 +Version : 08587489107859952120 + + + + + + + + + + + + + New-AzureLogicApp + + + + Get-AzureLogicApp + + + + Remove-AzureLogicApp + + + + + + + + Set-AzureLogicAppAccessKey + + Updates the access keys of a specified Logic App. + + + + + Set + AzureLogicAppAccessKey + + + + This is the Description section + The Set-AzureLogicAppAccessKey cmdlet updates the access key of an Azure Logic App and returns an object that represents the WorkflowSecretKeys. Use this cmdlet to update a Logic App access key in a specified resource group. You can set Logic App access keys by specifying the Logic App name, resource group name, Access key name and KeyType. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Set-AzureLogicAppAccessKey + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + AccessKeyName + + Specifies the name of the access key. This parameter is required. + + String + + + KeyType + + Specifies the value of KeyType (Primary, Secondary & NotSpecified). This parameter is optional. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + AccessKeyName + + Specifies the name of the access key. This parameter is required. + + String + + String + + + + + + KeyType + + Specifies the value of KeyType (Primary, Secondary & NotSpecified). This parameter is optional. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowSecretKeys + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Sets the access key of a Logic App in a specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Set-AzureLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -AccessKeyName "AccessKey1" -KeyType "Primary" + + This command sets the access key of a Logic App in a specified Azure resource group. + + + PrimarySecretKey : lTmyIrecVCcpC2wF8M8HeUW7YUL6Y_Uod7jOlrpW-TU +SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 + + + + + + + + + + + + + Get-AzureLogicAppAccessKey + + + + + + + + Start-AzureLogicApp + + Runs the specified Logic App in the Azure resource group. + + + + + Start + AzureLogicApp + + + + This is the Description section + The Start-AzureLogicApp cmdlet runs the Azure Logic App. Use this cmdlet to run a Logic App from a specified resource group. You can run a Logic App by specifying the Logic App name, resource group name, parameters(optional) and trigger name. To use the dynamic parameters, just type them in the command, or type a hyphen(-) sign to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Start-AzureLogicApp + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + Parameters + + Specifies the run parameters for the Logic App. This parameter is optional. + + Object + + + TriggerName + + Specifies the trigger name of the Logic App. This parameter is required. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + Parameters + + Specifies the run parameters for the Logic App. This parameter is optional. + + Object + + Object + + + + + + TriggerName + + Specifies the trigger name of the Logic App. This parameter is required. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Runs the Logic App present in the specified Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Start-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -TriggerName "Trigger1" + + This command runs the Logic App present in the specified Azure resource group. + + + + + + + + + + + + + + + + Stop-AzureLogicAppRun + + + + + + + + Stop-AzureLogicAppRun + + Cancel the specified run of a Logic App present in the Azure resource group. + + + + + Stop + AzureLogicAppRun + + + + This is the Description section + The Stop-AzureLogicAppRun cmdlet cancels the run of the Azure Logic App. Use this cmdlet to cancel the specified run of a Logic App. You can cancel the run of a Logic App by specifying the Logic App name, resource group name and run name. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + + + + Stop-AzureLogicAppRun + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + + RunName + + Specifies the name of the Logic App run. This parameter is required. + + String + + + InformationAction + + + + ActionPreference + + + InformationVariable + + + + String + + + + + + ResourceGroupName + + Specifies a name for the resource group. This parameter is required. + + String + + String + + + + + + Name + + Specifies the name of the Logic App. This parameter is required. + + String + + String + + + + + + RunName + + Specifies the name of the Logic App run. This parameter is required. + + String + + String + + + + + + InformationAction + + + + ActionPreference + + ActionPreference + + + + + + InformationVariable + + + + String + + String + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- Example 1 : Cancels the specified run of the Logic App present in an Azure resource group. -------------------------- + + PS C:\> + + PS C:\>Get-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -RunName "Run1" + + This command cancels the specified run of the Logic App present in an Azure resource group. + + + + + + + + + + + + + + + + Start-AzureLogicApp + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.psd1 b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.psd1 new file mode 100644 index 000000000000..e8ae99c36f0f --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-help.psd1 @@ -0,0 +1,85 @@ +# +# Module manifest for module 'Azure' +# +# Generated by: Microsoft Corporation +# +# Generated on: 5/23/2012 +# + +@{ + +# Version number of this module. +ModuleVersion = '0.9.10' + +# ID used to uniquely identify this module +GUID = '929A5C9C-AB3F-4E46-A1B9-F185CAB5B479' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = 'Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = '' + +# Minimum version of the Windows PowerShell engine required by this module +PowerShellVersion = '3.0' + +# Name of the Windows PowerShell host required by this module +PowerShellHostName = '' + +# Minimum version of the Windows PowerShell host required by this module +PowerShellHostVersion = '' + +# Minimum version of the .NET Framework required by this module +DotNetFrameworkVersion = '4.0' + +# Minimum version of the common language runtime (CLR) required by this module +CLRVersion='4.0' + +# Processor architecture (None, X86, Amd64, IA64) required by this module +ProcessorArchitecture = 'None' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @() + +# Assemblies that must be loaded prior to importing this module +RequiredAssemblies = @() + +# Script files (.ps1) that are run in the caller's environment prior to importing this module +ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +FormatsToProcess = @() + +# Modules to import as nested modules of the module specified in ModuleToProcess +NestedModules = '..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.LogicApp\Microsoft.Azure.Commands.LogicApp.dll' +# Functions to export from this module +FunctionsToExport = '*' + +# Cmdlets to export from this module +CmdletsToExport = '*' + +# Variables to export from this module +VariablesToExport = '*' + +# Aliases to export from this module +AliasesToExport = @() + +# List of all modules packaged with this module +ModuleList = @() + +# List of all files packaged with this module +FileList = @() + +# Private data to pass to the module specified in ModuleToProcess +PrivateData = '' + +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.format.ps1xml b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.format.ps1xml new file mode 100644 index 000000000000..cfaab3bf2770 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.format.ps1xml @@ -0,0 +1,375 @@ + + + + + Microsoft.Azure.Management.Logic.Models.Workflow + + Microsoft.Azure.Management.Logic.Models.Workflow + + + + + + + + Id + + + + Name + + + + Type + + + + Location + + + + ChangedTime + + + + CreatedTime + + + + AccessEndpoint + + + + State + + + + $_.DefinitionLink.Uri.ToString() + + + + $_.DefinitionLink.ContentVersion.ToString() + + + + Definition + + + + $_.ParametersLink.Uri.ToString() + + + + $_.ParametersLink.ContentVersion.ToString() + + + + Parameters + + + + $_.Sku.Name.ToString() + + + + $_.Sku.Plan.Name.ToString() + + + + $_.Sku.Plan.Type.ToString() + + + + $_.Sku.Plan.Id.ToString() + + + + Version + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowRun + + Microsoft.Azure.Management.Logic.Models.WorkflowRun + + + + + + + + CorrelationId + + + + EndTime + + + + Error + + + + Name + + + + Outputs + + + + StartTime + + + + Status + + + + $_.Trigger.Name.ToString() + + + + $_.Workflow.Name.Split('/')[0] + + + + $_.Workflow.Name.Split('/')[1] + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowRunAction + + Microsoft.Azure.Management.Logic.Models.WorkflowRunAction + + + + + + + + Code + + + + EndTime + + + + Error + + + + $_.InputsLink.Uri + + + + Name + + + + $_.OutputsLink.Uri + + + + StartTime + + + + Status + + + + TrackingId + + + + Type + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowTrigger + + Microsoft.Azure.Management.Logic.Models.WorkflowTrigger + + + + + + + + ChangedTime + + + + CreatedTime + + + + LastExecutionTime + + + + Name + + + + NextExecutionTime + + + + $_.Recurrence.Frequency.ToString() + + + + $_.Recurrence.Interval + + + + Status + + + + Type + + + + $_.Workflow.Name.Split('/')[0] + + + + $_.Workflow.Name.Split('/')[1] + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowTriggerHistory + + Microsoft.Azure.Management.Logic.Models.WorkflowTriggerHistory + + + + + + + + Code + + + + EndTime + + + + Error + + + + Fired + + + + $_.InputsLink.Uri + + + + Name + + + + $_.OutputsLink.Uri + + + + $_.Run.Name + + + + StartTime + + + + Status + + + + TrackingId + + + + Type + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowAccessKey + + Microsoft.Azure.Management.Logic.Models.WorkflowAccessKey + + + + + + + + Name + + + + NotAfter + + + + NotBefore + + + + Type + + + + + + + + Microsoft.Azure.Management.Logic.Models.WorkflowSecretKeys + + Microsoft.Azure.Management.Logic.Models.WorkflowSecretKeys + + + + + + + + PrimarySecretKey + + + + SecondarySecretKey + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..e5552af75c32 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs @@ -0,0 +1,39 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Microsoft Azure Powershell - LogicApp")] +[assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)] +[assembly: AssemblyProduct(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyProduct)] +[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] + +[assembly: ComVisible(false)] +[assembly: CLSCompliant(false)] + +[assembly: Guid("e50b915e-1c94-4cd1-bbea-72ff2246d237")] +[assembly: AssemblyVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyVersion)] +[assembly: AssemblyFileVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyFileVersion)] + +#if SIGN +//[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.LogicApp.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] +#else +//[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.LogicApp.Test")] +#endif \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs new file mode 100644 index 000000000000..537fd4eeb557 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.Designer.cs @@ -0,0 +1,135 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.LogicApp.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resource { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resource() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.LogicApp.Properties.Resource", typeof(Resource).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Web/serverfarms/{2}. + /// + internal static string ApplicationServicePlanIdFormat { + get { + return ResourceManager.GetString("ApplicationServicePlanIdFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Definition content needs to be specified.. + /// + internal static string DefinitionMissingWarning { + get { + return ResourceManager.GetString("DefinitionMissingWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File {0} does not exist.. + /// + internal static string FileDoesNotExist { + get { + return ResourceManager.GetString("FileDoesNotExist", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} needs to be specified.. + /// + internal static string ParameterNeedsToBeSpecified { + get { + return ResourceManager.GetString("ParameterNeedsToBeSpecified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removing logic app.. + /// + internal static string RemoveLogicAppMessage { + get { + return ResourceManager.GetString("RemoveLogicAppMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove the logic app "{0}".. + /// + internal static string RemoveLogicAppWarning { + get { + return ResourceManager.GetString("RemoveLogicAppWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The Resource 'Microsoft.Logic/workflows/{0}' under resource group '{1}' already exists.. + /// + internal static string ResourceAlreadyExists { + get { + return ResourceManager.GetString("ResourceAlreadyExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The Resource 'Microsoft.Logic/workflows/{0}' under resource group '{1}' was not found.. + /// + internal static string ResourceNotFound { + get { + return ResourceManager.GetString("ResourceNotFound", resourceCulture); + } + } + } +} diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx new file mode 100644 index 000000000000..e0c15064deaa --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/Resource.resx @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + /subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Web/serverfarms/{2} + + + Definition content needs to be specified. + + + File {0} does not exist. + + + {0} needs to be specified. + + + Removing logic app. + + + Are you sure you want to remove the logic app "{0}". + + + The Resource 'Microsoft.Logic/workflows/{0}' under resource group '{1}' already exists. + + + The Resource 'Microsoft.Logic/workflows/{0}' under resource group '{1}' was not found. + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs new file mode 100644 index 000000000000..4b3da5f52c8e --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/CmdletHelper.cs @@ -0,0 +1,146 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Logic; + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using System.Collections; + using System.Collections.Generic; + using System.Globalization; + using System.IO; + using System.Management.Automation; + using Microsoft.Azure.Management.Logic.Models; + using Newtonsoft.Json.Linq; + using Newtonsoft.Json; + using Microsoft.Azure.Management.WebSites.Models; + + /// + /// Helper class for the logic app commands + /// + public static class CmdletHelper + { + /// + /// Creates the definition object from file. + /// + /// File path of the definition + /// Json model defintion object + internal static JToken GetDefinitionFromFile(string definitionFilePath) + { + JToken definition = null; + + if (!string.IsNullOrEmpty(definitionFilePath)) + { + if (!(new FileInfo(definitionFilePath)).Exists) + { + throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, + Properties.Resource.FileDoesNotExist, definitionFilePath)); + } + + definition = JToken.Parse(File.ReadAllText(definitionFilePath)); + } + + return definition; + } + + /// + /// Creates the dictionary collection from the parameter file + /// + /// Parameter file path + /// Workflow parameter dictionary + internal static Dictionary GetParametersFromFile(string parametersFilePath) + { + Dictionary inputParameters = null; + + if (!string.IsNullOrEmpty(parametersFilePath)) + { + if (!(new FileInfo(parametersFilePath)).Exists) + { + throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, + Properties.Resource.FileDoesNotExist, parametersFilePath)); + } + + var inputParametersObject = JObject.Parse(File.ReadAllText(parametersFilePath)); + var values = JsonConvert.DeserializeObject>(inputParametersObject.ToString()); + + inputParameters = new Dictionary(); + + foreach (var parameter in values) + { + var workflowParameter = JsonConvert.DeserializeObject(parameter.Value.ToString()); + inputParameters.Add(parameter.Key, workflowParameter); + } + } + return inputParameters; + } + + /// + /// Convert object to WorkflowParameter dictionary. + /// + /// Parameters object + /// Workflow parameter dictionary + internal static Dictionary ConvertToWorkflowParameterDictionary( + object parametersObject) + { + Dictionary workflowParameters = null; + if (parametersObject is Hashtable) + { + var collection = parametersObject as Hashtable; + var inputParameters = new Dictionary(); + + foreach (var key in collection.Keys) + { + inputParameters.Add(key.ToString(), new WorkflowParameter + { + Value = collection[key].ToString() + }); + } + workflowParameters = inputParameters; + } + else if (parametersObject is Dictionary) + { + workflowParameters = parametersObject as Dictionary; + } + return workflowParameters; + } + + /// + /// Build App service plan id using plan name and resourcegroup name + /// Null check for parameter not needed as both these parameters are required parameters. + /// + /// App service plan name + /// Resource group name + /// Subscription id + /// App service plan id + internal static string BuildAppServicePlanId(string planName, string resourceGroupName, string subscriptionId) + { + return string.Format(CultureInfo.InvariantCulture, + Properties.Resource.ApplicationServicePlanIdFormat, subscriptionId, resourceGroupName, planName); + } + + /// + /// Converts IEnumerator to IEnumerable + /// + /// Generic Type + /// Enumerator to be converted + /// IEnumerable collection + public static IEnumerable ToIEnumerable(this IEnumerator enumerator) + { + while (enumerator.MoveNext()) + { + yield return enumerator.Current; + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs new file mode 100644 index 000000000000..ac704c62909d --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/Constants.cs @@ -0,0 +1,29 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + /// + /// Constant class + /// + public class Constants + { + public const string StatusEnabled = "Enabled"; + public const string StatusDisabled = "Disabled"; + + public const string KeyTypeNotSpecified = "NotSpecified"; + public const string KeyTypePrimary = "Primary"; + public const string KeyTypeSecondary = "Secondary"; + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs new file mode 100644 index 000000000000..15ff67207f61 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppBaseCmdlet.cs @@ -0,0 +1,75 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using ResourceManager.Common; + + public abstract class LogicAppBaseCmdlet : AzureRMCmdlet + { + /// + /// LogicApp client + /// + private LogicAppClient _logicAppClient = null; + + /// + /// Websites client + /// + private WebsitesClient _websitesClient = null; + + /// + /// Gets or sets the LogicApp client used in the PowerShell commands. + /// + public LogicAppClient LogicAppClient + { + get + { + this._logicAppClient = new LogicAppClient(DefaultProfile.Context) + { + VerboseLogger = WriteVerboseWithTimestamp, + ErrorLogger = WriteErrorWithTimestamp + }; + + return _logicAppClient; + } + + set + { + this._logicAppClient = value; + } + } + + /// + /// Gets or sets the WebsitesClient client used in the PowerShell commands. + /// + public WebsitesClient WebsitesClient + { + get + { + this._websitesClient = new WebsitesClient(DefaultProfile.Context) + { + VerboseLogger = WriteVerboseWithTimestamp, + ErrorLogger = WriteErrorWithTimestamp + }; + + return _websitesClient; + } + + set + { + this._websitesClient = value; + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs new file mode 100644 index 000000000000..bd7cdf1e8ca3 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClient.cs @@ -0,0 +1,146 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using System; + using System.Management.Automation; + using System.Globalization; + using Microsoft.Azure.Common.Authentication; + using Microsoft.Azure.Common.Authentication.Models; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + + /// + /// LogicApp client class + /// + public partial class LogicAppClient + { + /// + /// Gets or sets the Verbose Logger + /// + public Action VerboseLogger { get; set; } + + /// + /// Gets or sets the Error Logger + /// + public Action ErrorLogger { get; set; } + + /// + /// Creates new LogicManagement client instance. + /// + /// The Azure context instance + public LogicAppClient(AzureContext context) + { + this.LogicManagementClient = AzureSession.ClientFactory.CreateArmClient(context, AzureEnvironment.Endpoint.ResourceManager); + this.LogicManagementClient.SubscriptionId = context.Subscription.Id.ToString(); + } + + /// + /// Creates new LogicManagement client instance. + /// + public LogicAppClient() + { + } + + /// + /// Creates new LogicManagement client instance. + /// + /// client reference + public LogicAppClient(ILogicManagementClient client) + { + this.LogicManagementClient = client; + } + + /// + /// Gets or sets the Logic client instance + /// + public ILogicManagementClient LogicManagementClient { get; set; } + + /// + /// Updates workflow in the azure resource group + /// + /// Name of the resource group + /// Workflow name + /// Workflow object + /// Newly created workflow object + public Workflow UpdateWorkflow(string resourceGroupName, string workflowName, Workflow workflow) + { + return this.LogicManagementClient.Workflows.CreateOrUpdate(resourceGroupName, workflowName, workflow); + } + + /// + /// Creates workflow in the azure resource group + /// + /// Name of the resource group + /// Workflow name + /// Workflow object + /// Newly created workflow object + public Workflow CreateWorkflow(string resourceGroupName, string workflowName, Workflow workflow) + { + if (!this.DoesLogicAppExist(resourceGroupName, workflowName)) + { + return this.LogicManagementClient.Workflows.CreateOrUpdate(resourceGroupName, workflowName, workflow); + } + else + { + throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, + Properties.Resource.ResourceAlreadyExists, workflowName, resourceGroupName)); + } + } + + /// + /// Gets the workflow by name from given resource group. + /// + /// Name of the resource group + /// Workflow name + /// Workflow object + public Workflow GetWorkflow(string resourceGroupName, string workflowName) + { + return this.LogicManagementClient.Workflows.Get(resourceGroupName, workflowName); + } + + /// + /// Removes the specified workflow from the given resource group. + /// + /// Name of the resource group + /// Workflow name + public void RemoveWorkflow(string resourceGroupName, string workflowName) + { + this.LogicManagementClient.Workflows.Delete(resourceGroupName, workflowName); + } + + /// + /// Checks whether logic app exists or not + /// + /// Name of the resource group + /// Name of the workflow + /// Boolean result + private bool DoesLogicAppExist(string resourceGroupName, string workflowName) + { + bool result = false; + try + { + var workflow = this.LogicManagementClient.Workflows.GetAsync(resourceGroupName, workflowName).Result; + result = workflow != null; + } + catch + { + result = false; + } + return result; + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientAccessKeyOperations.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientAccessKeyOperations.cs new file mode 100644 index 000000000000..b84f2fac9588 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientAccessKeyOperations.cs @@ -0,0 +1,74 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Azure.Management.Logic; + using Microsoft.Rest.Azure; + using System; + + /// + /// LogicApp client partial class for access key operations + /// + public partial class LogicAppClient + { + /// + /// Gets the workflow access key by name + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the access key + /// Workflow accesskey object + public WorkflowSecretKeys GetWorkflowAccessKey(string resourceGroupName, string workflowName, + string accessKeyName) + { + return this.LogicManagementClient.WorkflowAccessKeys.ListSecretKeys(resourceGroupName, workflowName, accessKeyName); + } + + /// + /// Gets the list of access keys of specified workflow + /// + /// Name of the resource group + /// Name of the workflow + /// List of the access keys + public Page GetWorkflowAccessKeys(string resourceGroupName, string workflowName) + { + return + (Page) + this.LogicManagementClient.WorkflowAccessKeys.List(resourceGroupName, workflowName); + } + + /// + /// Regenerate secrets for the AccessKeys of the workflow + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the access key + /// Type of key 'NotSpecified', 'Primary', 'Secondary' + /// Workflow secret key object + public WorkflowSecretKeys RegenerateWorkflowAccessKey(string resourceGroupName, string workflowName, + string accessKeyName, string keyType) + { + return this.LogicManagementClient.WorkflowAccessKeys.RegenerateSecretKey( + resourceGroupName, + workflowName, + accessKeyName, + new RegenerateSecretKeyParameters + { + KeyType = (KeyType) Enum.Parse(typeof (KeyType), keyType) + }); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientRunOperations.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientRunOperations.cs new file mode 100644 index 000000000000..85deda045b36 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientRunOperations.cs @@ -0,0 +1,107 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using System; + using System.Collections.Generic; + using System.Linq; + using System.Text; + using System.Threading.Tasks; + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Azure.Management.Logic; + using Microsoft.Rest.Azure; + + /// + /// LogicApp client partial class for run operations + /// + public partial class LogicAppClient + { + /// + /// Starts the logic app + /// + /// Name of the resource group + /// Name of the logic app + /// Run parameters + /// Workflow run output + public WorkflowRun RunWorkflow(string resourceGroupName, string workflowName, + RunWorkflowParameters runWorkflowParameters) + { + return this.LogicManagementClient.Workflows.Run(resourceGroupName, workflowName, runWorkflowParameters); + } + + /// + /// Cancels the logic app run. + /// + /// Name of the resource group + /// Name of the workflow + /// Workflow run name + public void CancelWorkflowRun(string resourceGroupName, string workflowName, + string runName) + { + this.LogicManagementClient.WorkflowRuns.Cancel(resourceGroupName, workflowName, runName); + } + + /// + /// Gets the workflow run history. + /// + /// Name of the resource group + /// Name of the workflow + /// List of workflow runs + public Page GetWorkflowRuns(string resourceGroupName, string workflowName) + { + return (Page)this.LogicManagementClient.WorkflowRuns.List(resourceGroupName, workflowName); + } + + /// + /// Gets the logic app run. + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the workflow run + /// Workflow run + public WorkflowRun GetWorkflowRun(string resourceGroupName, string workflowName, + string runName) + { + return this.LogicManagementClient.WorkflowRuns.Get(resourceGroupName, workflowName, runName); + } + + /// + /// Gets the workflow run action + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the workflow run + /// Name of the workflow run action + /// Workflow run action + public WorkflowRunAction GetWorkflowRunAction(string resourceGroupName, string workflowName, + string runName, string actionName) + { + return this.LogicManagementClient.WorkflowRunActions.Get(resourceGroupName, workflowName, runName, + actionName); + } + + /// + /// Gets actions of the specified workflow run. + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the workflow run + /// Actions of the specified workflow run + public Page GetWorkflowRunActions(string resourceGroupName, string workflowName, string runName) + { + return (Page)this.LogicManagementClient.WorkflowRunActions.List(resourceGroupName, workflowName, runName); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientTriggerOperations.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientTriggerOperations.cs new file mode 100644 index 000000000000..b700a77b4c1d --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/LogicAppClientTriggerOperations.cs @@ -0,0 +1,92 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using Microsoft.Azure.Management.Logic.Models; + using Microsoft.Azure.Management.Logic; + using Microsoft.Rest.Azure; + + /// + /// LogicApp client partial class for trigger operations + /// + public partial class LogicAppClient + { + /// + /// Gets the list of triggers in the workflow + /// + /// Name of the resource group + /// Name of the workflow + /// List of triggers in the workflow + public Page GetWorkflowTriggers(string resourceGroupName, string workflowName) + { + return (Page) + this.LogicManagementClient.WorkflowTriggers.List(resourceGroupName, workflowName); + } + + /// + /// Gets the specified trigger from the workflow + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the trigger + /// Workflow trigger + public WorkflowTrigger GetWorkflowTrigger(string resourceGroupName, string workflowName, string triggerName) + { + return this.LogicManagementClient.WorkflowTriggers.Get(resourceGroupName, workflowName, triggerName); + } + + /// + /// Gets the workflow trigger histories. + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the trigger + /// List of trigger histories + public Page GetWorkflowTriggerHistories(string resourceGroupName, string workflowName, + string triggerName) + { + return + (Page) + this.LogicManagementClient.WorkflowTriggerHistories.List(resourceGroupName, workflowName, + triggerName); + } + + /// + /// Gets the workflow history by name + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the trigger + /// Name of the trigger history + /// Workflow history + public WorkflowTriggerHistory GetWorkflowTriggerHistory(string resourceGroupName, string workflowName, + string triggerName, string historyName) + { + return this.LogicManagementClient.WorkflowTriggerHistories.Get(resourceGroupName, workflowName, triggerName, historyName); + } + + /// + /// Runs the workflow trigger + /// + /// Name of the resource group + /// Name of the workflow + /// Name of the trigger + public void RunWorkflowTrigger(string resourceGroupName, string workflowName, + string triggerName) + { + this.LogicManagementClient.WorkflowTriggers.Run(resourceGroupName, workflowName, triggerName); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs new file mode 100644 index 000000000000..dc00a0742e1a --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/ParameterSet.cs @@ -0,0 +1,34 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + internal static class ParameterSet + { + /// + /// Parameter set top create Logic app with definition object + /// + public const string LogicAppWithDefinition = "LogicAppWithDefinitionParameterSet"; + + /// + /// Parameter set top create Logic app with definition link + /// + public const string LogicAppWithDefinitionLink = "LogicAppWithDefinitionLinkParameterSet"; + + /// + /// Parameter set top create Logic app with definition file + /// + public const string LogicAppWithDefinitionFile = "LogicAppWithDefinitionFileParameterSet"; + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/WebsitesClient.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/WebsitesClient.cs new file mode 100644 index 000000000000..2373c40f6c07 --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Utilities/WebsitesClient.cs @@ -0,0 +1,113 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.Azure.Commands.LogicApp.Utilities +{ + using System; + using Microsoft.Azure.Common.Authentication; + using Microsoft.Azure.Common.Authentication.Models; + using Microsoft.Azure.Management.WebSites; + using Microsoft.Azure.Management.WebSites.Models; + + /// + /// Website client to perform operation on AppServicePlan + /// + public class WebsitesClient + { + /// + /// Verbose Logger + /// + public Action VerboseLogger { get; set; } + + /// + /// Error Logger + /// + public Action ErrorLogger { get; set; } + + /// + /// Warning Logger + /// + public Action WarningLogger { get; set; } + + /// + /// Initializes the client instance + /// + /// + public WebsitesClient(AzureContext context) + { + this.WrappedWebsitesClient = AzureSession.ClientFactory.CreateArmClient(context, AzureEnvironment.Endpoint.ResourceManager); + } + + /// + /// Public property exposing the client instance + /// + public WebSiteManagementClient WrappedWebsitesClient + { + get; + private set; + } + + /// + /// Gets the app service plan from the specified resource group + /// + /// Name of the resource group + /// Name of the App Service Plan name + /// Object represents the AppServicePlan + public ServerFarmWithRichSku GetAppServicePlan(string resourceGroupName, string appServicePlanName) + { + return WrappedWebsitesClient.ServerFarms.GetServerFarm(resourceGroupName, appServicePlanName); + } + + /// + /// Writes verbose + /// + /// Verbose format + /// Arguments to write verbose + private void WriteVerbose(string verboseFormat, params object[] args) + { + if (VerboseLogger != null) + { + VerboseLogger(string.Format(verboseFormat, args)); + } + } + + /// + /// Write warning + /// + /// Warning format + /// Arguments to write warning + private void WriteWarning(string warningFormat, params object[] args) + { + if (WarningLogger != null) + { + WarningLogger(string.Format(warningFormat, args)); + } + } + + /// + /// Write error + /// + /// Error format + /// Arguments to write error + + private void WriteError(string errorFormat, params object[] args) + { + if (ErrorLogger != null) + { + ErrorLogger(string.Format(errorFormat, args)); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/packages.config b/src/ResourceManager/LogicApp/Commands.LogicApp/packages.config new file mode 100644 index 000000000000..87731414abed --- /dev/null +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/packages.config @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/LogicApp.sln b/src/ResourceManager/LogicApp/LogicApp.sln new file mode 100644 index 000000000000..50ed70c8d59e --- /dev/null +++ b/src/ResourceManager/LogicApp/LogicApp.sln @@ -0,0 +1,80 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.40629.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{95C16AED-FD57-42A0-86C3-2CF4300A4817}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManager.Common", "..\Common\Commands.ResourceManager.Common\Commands.ResourceManager.Common.csproj", "{3819D8A7-C62C-4C47-8DDD-0332D9CE1252}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Resources", "..\Resources\Commands.Resources\Commands.Resources.csproj", "{E1F5201D-6067-430E-B303-4E367652991B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Resources.Rest", "..\Resources\Commands.ResourceManager\Cmdlets\Commands.Resources.Rest.csproj", "{8058D403-06E3-4BED-8924-D166CE303961}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ScenarioTests.ResourceManager.Common", "..\Common\Commands.ScenarioTests.ResourceManager.Common\Commands.ScenarioTests.ResourceManager.Common.csproj", "{3436A126-EDC9-4060-8952-9A1BE34CDD95}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Profile", "..\Profile\Commands.Profile\Commands.Profile.csproj", "{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common", "..\..\Common\Commands.Common\Commands.Common.csproj", "{5EE72C53-1720-4309-B54B-5FB79703195F}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{33C9DADF-8EE1-4FCB-8E15-FEEB28330BC1}" + ProjectSection(SolutionItems) = preProject + .nuget\packages.config = .nuget\packages.config + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Tags", "..\Tags\Commands.Tags\Commands.Tags.csproj", "{2493A8F7-1949-4F29-8D53-9D459046C3B8}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.LogicApp", "Commands.LogicApp\Commands.LogicApp.csproj", "{FFE4E475-B32C-4F89-9D52-F7CEBF709C74}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.LogicApp.Test", "Commands.LogicApp.Test\Commands.LogicApp.Test.csproj", "{F1F11BB1-592B-45A3-844C-7F8A585AD107}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Release|Any CPU.Build.0 = Release|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Release|Any CPU.Build.0 = Release|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.Build.0 = Release|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3436A126-EDC9-4060-8952-9A1BE34CDD95}.Release|Any CPU.Build.0 = Release|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Release|Any CPU.Build.0 = Release|Any CPU + {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Release|Any CPU.Build.0 = Release|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Release|Any CPU.Build.0 = Release|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {3436A126-EDC9-4060-8952-9A1BE34CDD95} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {F1F11BB1-592B-45A3-844C-7F8A585AD107} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + EndGlobalSection +EndGlobal diff --git a/src/ResourceManager/LogicApp/NuGet.Config b/src/ResourceManager/LogicApp/NuGet.Config new file mode 100644 index 000000000000..2de911013532 --- /dev/null +++ b/src/ResourceManager/LogicApp/NuGet.Config @@ -0,0 +1,6 @@ + + + + + + From 9fbe613e49f0d4344cd06f78aa6f817a04cb64a5 Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Fri, 29 Jan 2016 14:35:40 -0800 Subject: [PATCH 05/19] Regenerated Session records with latest Test run. Removed App.config in Test project Signed-off-by: Pankaj Singh Negi --- .../Commands.LogicApp.Test.csproj | 7 +- .../TestGetAzureLogicAppAccessKey.json | 150 +++--- .../TestSetAzureLogicAppAccessKey.json | 152 +++--- .../TestGetAzureLogicAppRunAction.json | 200 ++++---- .../TestGetAzureLogicAppRunHistory.json | 461 ++++-------------- .../TestRunLogicApp.json | 421 +++------------- ...GetLogicAppUsingDefinitionWithActions.json | 156 +++--- .../TestCreateAndRemoveLogicApp.json | 256 +++++----- ...teLogicAppUsingDefinitionWithTriggers.json | 116 ++--- ...ogicAppUsingInputParameterAsHashTable.json | 122 ++--- ...eLogicAppUsingInputfromWorkflowObject.json | 178 +++---- .../TestCreateLogicAppWithDuplicateName.json | 166 +++---- ...LogicAppWithNonExistingAppServicePlan.json | 80 +-- .../TestRemoveNonExistingLogicApp.json | 62 +-- .../TestUpdateLogicApp.json | 268 +++++----- .../TestGetAzureLogicAppTrigger.json | 138 +++--- .../TestGetAzureLogicAppTriggerHistory.json | 266 +++++----- .../TestStartAzureLogicAppTrigger.json | 280 +++++------ 18 files changed, 1457 insertions(+), 2022 deletions(-) diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj index 1b87d9776786..52ca6846a504 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj @@ -152,9 +152,6 @@ - - PreserveNewest - Designer @@ -192,7 +189,9 @@ PreserveNewest - + + PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json index 5bde5af3bc70..19538599e64e 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk714?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazcxND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "102" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14944" ], "x-ms-request-id": [ - "fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + "81759903-7d0b-4d25-9fc9-1a7320294ba4" ], "x-ms-correlation-request-id": [ - "fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + "81759903-7d0b-4d25-9fc9-1a7320294ba4" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010906Z:fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + "WESTUS:20160129T221246Z:81759903-7d0b-4d25-9fc9-1a7320294ba4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:05 GMT" + "Fri, 29 Jan 2016 22:12:46 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk714?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazcxND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,10 +67,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178\",\r\n \"name\": \"onesdk5178\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk714\",\r\n \"name\": \"onesdk714\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1199" ], "x-ms-request-id": [ - "bca36f12-62d2-4da8-bd72-e59936d61ffd" + "8608402a-796a-4f90-b5ef-213ef4015185" ], "x-ms-correlation-request-id": [ - "bca36f12-62d2-4da8-bd72-e59936d61ffd" + "8608402a-796a-4f90-b5ef-213ef4015185" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010907Z:bca36f12-62d2-4da8-bd72-e59936d61ffd" + "WESTUS:20160129T221247Z:8608402a-796a-4f90-b5ef-213ef4015185" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:07 GMT" + "Fri, 29 Jan 2016 22:12:47 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk714/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "14942" ], "x-ms-request-id": [ - "0729381c-ef54-41ba-a062-9eb95a2fde11" + "ff920b73-2528-4cf1-bc7c-c5020cdd8122" ], "x-ms-correlation-request-id": [ - "0729381c-ef54-41ba-a062-9eb95a2fde11" + "ff920b73-2528-4cf1-bc7c-c5020cdd8122" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010908Z:0729381c-ef54-41ba-a062-9eb95a2fde11" + "WESTUS:20160129T221247Z:ff920b73-2528-4cf1-bc7c-c5020cdd8122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:07 GMT" + "Fri, 29 Jan 2016 22:12:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk714/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9TdGFuZGFyZFNlcnZpY2VQbGFuP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7243db3-d679-4df2-bf4c-246c51fd8d1a" + "7d26d55e-9ec1-401e-b524-5e2ffd2957ff" ], "accept-language": [ "en-US" @@ -172,10 +172,10 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5178-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5178\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk714/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk714-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk714\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "951" + "948" ], "Content-Type": [ "application/json" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9bd8879d-7c82-4059-9bcd-ca337e8f7a6a" + "e3144fd5-efe3-4c20-aa11-39d1d0955ea9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14965" ], "x-ms-correlation-request-id": [ - "570ee219-6ed6-4842-9f8e-809fdf7c93bf" + "cdbba261-47a1-4abb-bf04-72efcb9f3898" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010922Z:570ee219-6ed6-4842-9f8e-809fdf7c93bf" + "WESTUS:20160129T221305Z:cdbba261-47a1-4abb-bf04-72efcb9f3898" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:21 GMT" + "Fri, 29 Jan 2016 22:13:05 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk714/providers/Microsoft.Logic/workflows/onesdk2491?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGsyNDkxP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8671433-f6bc-425e-b4fd-5590b8c6d896" + "c5d006f7-e3ab-4cf0-a5c5-ff32dfc022b5" ], "accept-language": [ "en-US" @@ -235,10 +235,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5243' under resource group 'onesdk5178' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk2491' under resource group 'onesdk714' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "150" + "149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + "eeca8aea-15f7-4d65-9c83-540bf07d50d4" ], "x-ms-correlation-request-id": [ - "9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + "eeca8aea-15f7-4d65-9c83-540bf07d50d4" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010924Z:9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + "WESTUS:20160129T221307Z:eeca8aea-15f7-4d65-9c83-540bf07d50d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,25 +268,25 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:24 GMT" + "Fri, 29 Jan 2016 22:13:07 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk714/providers/Microsoft.Logic/workflows/onesdk2491?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGsyNDkxP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk714/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1179" + "1178" ], "x-ms-client-request-id": [ - "8be2ca11-60d4-46cd-a25b-26d6910d2000" + "8e58a6c3-a913-4d1e-99f4-2874c7d0b5ac" ], "accept-language": [ "en-US" @@ -295,10 +295,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T01:09:26.655401Z\",\r\n \"changedTime\": \"2016-01-29T01:09:26.655401Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475771190422936\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243\",\r\n \"name\": \"onesdk5243\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:13:07.353892Z\",\r\n \"changedTime\": \"2016-01-29T22:13:07.353892Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475012981977063\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk714/providers/Microsoft.Logic/workflows/onesdk2491\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk714/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk714/providers/Microsoft.Logic/workflows/onesdk2491\",\r\n \"name\": \"onesdk2491\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1353" + "1350" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,16 +310,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:4932d099-158a-4c06-b205-4c87ed84bbea" + "westus:33f283a4-ec94-4ce1-b53b-22d31fa25a8f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "9b0f509c-d637-4f55-aa24-81df77cd6a40" + "846e11d9-8715-4510-87e9-8cac8bd2f233" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010927Z:9b0f509c-d637-4f55-aa24-81df77cd6a40" + "WESTUS:20160129T221308Z:846e11d9-8715-4510-87e9-8cac8bd2f233" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -328,19 +328,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:27 GMT" + "Fri, 29 Jan 2016 22:13:08 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243/accessKeys/default/list?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0My9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk714/providers/Microsoft.Logic/workflows/onesdk2491/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGsyNDkxL2FjY2Vzc0tleXMvZGVmYXVsdC9saXN0P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2aa9e90b-d68f-441a-820b-d7ce9ad80c18" + "715aa51d-8da8-4e91-b25b-77b279772cbc" ], "accept-language": [ "en-US" @@ -349,7 +349,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"primarySecretKey\": \"Tsh10h0ckKvL8lPc4mKeNfschFYcSEHnmYJyApUJ1o4\",\r\n \"secondarySecretKey\": \"r1saXhjdLwT3fMKXDdIjJP-tTkTjD7lvgct8RRuGSos\"\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"Vq4hTG21NWbyO51KJ_9mSX3aylGxGtzs4i_9Ksu32D0\",\r\n \"secondarySecretKey\": \"nGrfBeTiKLgBok1J1ffsWBe5_KJDoPm4XRitoytuhbc\"\r\n}", "ResponseHeaders": { "Content-Length": [ "133" @@ -367,16 +367,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:6ba967a1-8d58-43e2-9efd-1260e2e1a0fe" + "westus:8fcd2b7a-7f22-4fe9-a5f0-f20b456363ef" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-correlation-request-id": [ - "d2786f6c-d6e2-4ce8-a947-a6e4eacb8f47" + "42cdbf2d-c168-4735-8c25-432f4be328ee" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010928Z:d2786f6c-d6e2-4ce8-a947-a6e4eacb8f47" + "WESTUS:20160129T221309Z:42cdbf2d-c168-4735-8c25-432f4be328ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,19 +385,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:27 GMT" + "Fri, 29 Jan 2016 22:13:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243/accessKeys/default/list?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0My9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk714/providers/Microsoft.Logic/workflows/onesdk2491/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGsyNDkxL2FjY2Vzc0tleXMvZGVmYXVsdC9saXN0P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af461cf2-e54a-45eb-9bd6-62f38d2424e6" + "44f13322-c4fb-4565-a1bb-bf3bb078f0bf" ], "accept-language": [ "en-US" @@ -406,7 +406,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"primarySecretKey\": \"Tsh10h0ckKvL8lPc4mKeNfschFYcSEHnmYJyApUJ1o4\",\r\n \"secondarySecretKey\": \"r1saXhjdLwT3fMKXDdIjJP-tTkTjD7lvgct8RRuGSos\"\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"Vq4hTG21NWbyO51KJ_9mSX3aylGxGtzs4i_9Ksu32D0\",\r\n \"secondarySecretKey\": \"nGrfBeTiKLgBok1J1ffsWBe5_KJDoPm4XRitoytuhbc\"\r\n}", "ResponseHeaders": { "Content-Length": [ "133" @@ -424,16 +424,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:f2ea06d6-cc1c-45b9-b873-225012dbe621" + "westus:475256b4-50d7-4982-8d4e-3cf7996973f5" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-correlation-request-id": [ - "bd12880e-eeb8-4e9f-b6c9-4844bcb763e1" + "bd5e0a13-ef4a-409c-b864-95d369669717" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010928Z:bd12880e-eeb8-4e9f-b6c9-4844bcb763e1" + "WESTUS:20160129T221309Z:bd5e0a13-ef4a-409c-b864-95d369669717" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,7 +442,7 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:28 GMT" + "Fri, 29 Jan 2016 22:13:08 GMT" ] }, "StatusCode": 200 @@ -450,8 +450,8 @@ ], "Names": { "Test-GetAzureLogicAppAccessKey": [ - "onesdk5178", - "onesdk5243" + "onesdk714", + "onesdk2491" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json index d9062dffa8fb..773dbf1abb4c 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3830?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -31,13 +31,13 @@ "14968" ], "x-ms-request-id": [ - "daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" + "00d4e1bf-8f45-4ef2-a77e-6de0ffb76165" ], "x-ms-correlation-request-id": [ - "daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" + "00d4e1bf-8f45-4ef2-a77e-6de0ffb76165" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010954Z:daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" + "WESTUS:20160129T221208Z:00d4e1bf-8f45-4ef2-a77e-6de0ffb76165" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:53 GMT" + "Fri, 29 Jan 2016 22:12:08 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3830?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263\",\r\n \"name\": \"onesdk5263\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830\",\r\n \"name\": \"onesdk3830\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "2b376747-12b6-4a60-ab45-506b49dc409b" + "7874487d-c5dd-401c-862c-d6de04f2bf4d" ], "x-ms-correlation-request-id": [ - "2b376747-12b6-4a60-ab45-506b49dc409b" + "7874487d-c5dd-401c-862c-d6de04f2bf4d" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010954Z:2b376747-12b6-4a60-ab45-506b49dc409b" + "WESTUS:20160129T221209Z:7874487d-c5dd-401c-862c-d6de04f2bf4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:54 GMT" + "Fri, 29 Jan 2016 22:12:09 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM4MzAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -133,13 +133,13 @@ "14967" ], "x-ms-request-id": [ - "67cd25a9-2d45-4c48-8b9e-2549961e1026" + "b35af272-d175-4566-b946-6754fc44af12" ], "x-ms-correlation-request-id": [ - "67cd25a9-2d45-4c48-8b9e-2549961e1026" + "b35af272-d175-4566-b946-6754fc44af12" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010954Z:67cd25a9-2d45-4c48-8b9e-2549961e1026" + "WESTUS:20160129T221209Z:b35af272-d175-4566-b946-6754fc44af12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:54 GMT" + "Fri, 29 Jan 2016 22:12:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM4MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4687a65f-26be-4e0f-8084-36845014b004" + "17d3a7b5-0790-484a-8552-2da9eb33dabc" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5263-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5263\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3830-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3830\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f266357-3972-4c1e-b314-20c896073afe" + "4ab2046d-cf70-4a1f-8cda-499f9185bcdb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14961" ], "x-ms-correlation-request-id": [ - "7b8d475a-441d-4cf1-a039-3cf6dddfed4f" + "9f252bca-c7fc-452c-bbe9-c6616b64231b" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011006Z:7b8d475a-441d-4cf1-a039-3cf6dddfed4f" + "WESTUS:20160129T221218Z:9f252bca-c7fc-452c-bbe9-c6616b64231b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:05 GMT" + "Fri, 29 Jan 2016 22:12:18 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830/providers/Microsoft.Logic/workflows/onesdk8944?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM4MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODk0ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2201c695-d1dc-46d1-9040-fb0ed1250f6b" + "a8475af0-f5e9-4ec1-9075-35db5f4381bd" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1321' under resource group 'onesdk5263' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8944' under resource group 'onesdk3830' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "c074589b-8556-421e-81a9-73577d045289" + "ee530c22-6397-4455-8300-ac259a5a6849" ], "x-ms-correlation-request-id": [ - "c074589b-8556-421e-81a9-73577d045289" + "ee530c22-6397-4455-8300-ac259a5a6849" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011006Z:c074589b-8556-421e-81a9-73577d045289" + "WESTUS:20160129T221217Z:ee530c22-6397-4455-8300-ac259a5a6849" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,16 +268,16 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:06 GMT" + "Fri, 29 Jan 2016 22:12:17 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830/providers/Microsoft.Logic/workflows/onesdk8944?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM4MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODk0ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -286,7 +286,7 @@ "1179" ], "x-ms-client-request-id": [ - "e639c8b7-7077-4fd4-ad5e-a9f6d41bfbd5" + "d08b70ca-fa8d-4023-b795-1ca15cfd5605" ], "accept-language": [ "en-US" @@ -295,7 +295,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T01:10:07.0573017Z\",\r\n \"changedTime\": \"2016-01-29T01:10:07.0573017Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475770784639634\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321\",\r\n \"name\": \"onesdk1321\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:12:19.3431277Z\",\r\n \"changedTime\": \"2016-01-29T22:12:19.3431277Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475013471380353\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3830/providers/Microsoft.Logic/workflows/onesdk8944\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830/providers/Microsoft.Logic/workflows/onesdk8944\",\r\n \"name\": \"onesdk8944\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -310,16 +310,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:a601786f-7220-49b7-9558-8623da54682a" + "westus:573e3950-3c99-4357-99cf-9a387fff35d2" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1198" ], "x-ms-correlation-request-id": [ - "440dfca1-0f37-49d4-994e-06ede2eec746" + "09842449-e7f0-473f-a778-4cd6ef4a1ab9" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011007Z:440dfca1-0f37-49d4-994e-06ede2eec746" + "WESTUS:20160129T221220Z:09842449-e7f0-473f-a778-4cd6ef4a1ab9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -328,19 +328,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:07 GMT" + "Fri, 29 Jan 2016 22:12:20 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/list?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830/providers/Microsoft.Logic/workflows/onesdk8944/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM4MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODk0NC9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "869ae19b-657a-4227-a82d-b7ab80fb6843" + "0eb926cb-b494-4820-8cf4-424cd603eb9a" ], "accept-language": [ "en-US" @@ -349,7 +349,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"primarySecretKey\": \"YZW1xS0prm1_EiQpO_n-HlY7N0OEQm-iJ8sx8XtWMjo\",\r\n \"secondarySecretKey\": \"uih3AnckeTr_v9hlc2auwDdBa6iiH1nIbphML28APMY\"\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"rAuvo9A4kw6I-RhDvZysuV93MRjLZtslG_9DBjywSbQ\",\r\n \"secondarySecretKey\": \"kA6EfzOxHhUbQPsCifiKTik3rx9e4LaRo6Pcy_uyA4M\"\r\n}", "ResponseHeaders": { "Content-Length": [ "133" @@ -367,16 +367,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:65882875-a433-4773-9c62-5a3907305d56" + "westus:4e378704-5e9a-4a88-8261-0e54010d156b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1197" ], "x-ms-correlation-request-id": [ - "5e09656a-6e6b-45a7-b30a-1ab6297edb2c" + "b06875e9-cadc-41b1-a0ac-1e48d5b9e0e7" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011007Z:5e09656a-6e6b-45a7-b30a-1ab6297edb2c" + "WESTUS:20160129T221220Z:b06875e9-cadc-41b1-a0ac-1e48d5b9e0e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,14 +385,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:07 GMT" + "Fri, 29 Jan 2016 22:12:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/regenerate?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvcmVnZW5lcmF0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830/providers/Microsoft.Logic/workflows/onesdk8944/accessKeys/default/regenerate?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM4MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODk0NC9hY2Nlc3NLZXlzL2RlZmF1bHQvcmVnZW5lcmF0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { @@ -403,7 +403,7 @@ "28" ], "x-ms-client-request-id": [ - "afbe2f3a-1bf9-4a01-99bb-c3a2a2009d18" + "0bf67a58-a444-4b38-9792-84899707ad4c" ], "accept-language": [ "en-US" @@ -412,7 +412,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"primarySecretKey\": \"ecEOidpW_n3a23_FjvsmdWYxuu7pvXUUZvriOBOdeLE\",\r\n \"secondarySecretKey\": \"uih3AnckeTr_v9hlc2auwDdBa6iiH1nIbphML28APMY\"\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"CuLqVtlycVYAKFdiuAjJQvkfr8GwSFey2Jtu1vjcgMQ\",\r\n \"secondarySecretKey\": \"kA6EfzOxHhUbQPsCifiKTik3rx9e4LaRo6Pcy_uyA4M\"\r\n}", "ResponseHeaders": { "Content-Length": [ "133" @@ -430,16 +430,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:d1f1d1a6-b00a-4774-84dc-5ec5bb6c8055" + "westus:09749a53-7b36-48f5-ad8b-a15b5246bc65" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1196" ], "x-ms-correlation-request-id": [ - "696869f7-db94-4cb3-b614-c8611875af83" + "7681123d-5116-479e-8425-8ad934bd7845" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011008Z:696869f7-db94-4cb3-b614-c8611875af83" + "WESTUS:20160129T221221Z:7681123d-5116-479e-8425-8ad934bd7845" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,14 +448,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:07 GMT" + "Fri, 29 Jan 2016 22:12:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/regenerate?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvcmVnZW5lcmF0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3830/providers/Microsoft.Logic/workflows/onesdk8944/accessKeys/default/regenerate?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM4MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODk0NC9hY2Nlc3NLZXlzL2RlZmF1bHQvcmVnZW5lcmF0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"Secondary\"\r\n}", "RequestHeaders": { @@ -466,7 +466,7 @@ "30" ], "x-ms-client-request-id": [ - "ab03645f-9f92-40cf-bf67-ff37acc2a812" + "194de73c-6509-4e5b-b4f9-a9303fd59f4d" ], "accept-language": [ "en-US" @@ -475,7 +475,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"primarySecretKey\": \"ecEOidpW_n3a23_FjvsmdWYxuu7pvXUUZvriOBOdeLE\",\r\n \"secondarySecretKey\": \"OgR-KLRd9Lp2DeQJlorDKuc10Ri53-gwCjFnZOxKZcs\"\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"CuLqVtlycVYAKFdiuAjJQvkfr8GwSFey2Jtu1vjcgMQ\",\r\n \"secondarySecretKey\": \"nkFinxt7GIYjSBRvZ8dss11MU0tCnpg_oQmy3G80YK8\"\r\n}", "ResponseHeaders": { "Content-Length": [ "133" @@ -493,16 +493,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:a6001f0d-580a-4419-b51b-c56d503fe86e" + "westus:e7067e42-ba42-43b8-9458-a45b16ddacb9" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1195" ], "x-ms-correlation-request-id": [ - "4ba7fa28-0afe-4e61-bf1a-a11105ca68d9" + "c40af44a-0991-45be-847a-1c9dfe37a07e" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011008Z:4ba7fa28-0afe-4e61-bf1a-a11105ca68d9" + "WESTUS:20160129T221221Z:c40af44a-0991-45be-847a-1c9dfe37a07e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,7 +511,7 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:07 GMT" + "Fri, 29 Jan 2016 22:12:21 GMT" ] }, "StatusCode": 200 @@ -519,8 +519,8 @@ ], "Names": { "Test-SetAzureLogicAppAccessKey": [ - "onesdk5263", - "onesdk1321" + "onesdk3830", + "onesdk8944" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json index 39b66c84db59..c1ea207013f6 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3131?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMxMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14902" ], "x-ms-request-id": [ - "93737fae-8d0c-4f17-b5db-cf3b3172d621" + "5c508153-50f7-42e5-b663-e472875c7dbc" ], "x-ms-correlation-request-id": [ - "93737fae-8d0c-4f17-b5db-cf3b3172d621" + "5c508153-50f7-42e5-b663-e472875c7dbc" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024759Z:93737fae-8d0c-4f17-b5db-cf3b3172d621" + "WESTUS:20160129T222948Z:5c508153-50f7-42e5-b663-e472875c7dbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:47:59 GMT" + "Fri, 29 Jan 2016 22:29:47 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3131?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMxMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550\",\r\n \"name\": \"onesdk2550\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131\",\r\n \"name\": \"onesdk3131\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "514a1e3b-c870-480e-af5c-f653649e6847" + "4b1431e8-339b-4fba-96e6-84c68bc835b6" ], "x-ms-correlation-request-id": [ - "514a1e3b-c870-480e-af5c-f653649e6847" + "4b1431e8-339b-4fba-96e6-84c68bc835b6" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024800Z:514a1e3b-c870-480e-af5c-f653649e6847" + "WESTUS:20160129T222949Z:4b1431e8-339b-4fba-96e6-84c68bc835b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:00 GMT" + "Fri, 29 Jan 2016 22:29:49 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMxMzEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14901" ], "x-ms-request-id": [ - "df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + "8352c72b-43ed-4376-a808-cf745800cc33" ], "x-ms-correlation-request-id": [ - "df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + "8352c72b-43ed-4376-a808-cf745800cc33" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024800Z:df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + "WESTUS:20160129T222950Z:8352c72b-43ed-4376-a808-cf745800cc33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:00 GMT" + "Fri, 29 Jan 2016 22:29:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de0018a4-0eda-41f0-bf21-32871ed0fec8" + "a2c62557-d8b2-416c-a1a4-8c4dab23c047" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2550-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2550\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3131-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3131\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87367901-0205-46fa-8730-873677922d06" + "b581bd57-2f44-4f16-b2bf-ecbbd895ede8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14962" ], "x-ms-correlation-request-id": [ - "2622244f-f0c8-40be-8023-d9cdd2f873fc" + "3134efc6-4e72-43fe-bcb3-d8382a093f09" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024808Z:2622244f-f0c8-40be-8023-d9cdd2f873fc" + "WESTUS:20160129T222958Z:3134efc6-4e72-43fe-bcb3-d8382a093f09" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:07 GMT" + "Fri, 29 Jan 2016 22:29:58 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI3OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37aebae6-6c20-4a20-994c-9a623a770d17" + "bd633bc1-e1e8-4c83-b1f3-0a14e7c229c2" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6884' under resource group 'onesdk2550' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk2279' under resource group 'onesdk3131' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "8d31ca9c-47ab-495b-a361-fc446e35f9ff" + "e1d35f45-ee3c-4836-8c80-28d539bff3e5" ], "x-ms-correlation-request-id": [ - "8d31ca9c-47ab-495b-a361-fc446e35f9ff" + "e1d35f45-ee3c-4836-8c80-28d539bff3e5" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024808Z:8d31ca9c-47ab-495b-a361-fc446e35f9ff" + "WESTUS:20160129T222958Z:e1d35f45-ee3c-4836-8c80-28d539bff3e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,19 +268,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:08 GMT" + "Fri, 29 Jan 2016 22:29:58 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI3OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0591f994-0ca6-4c1f-94d7-60f40801ccd1" + "720a2a5f-e987-4e57-aab7-3ddd7e185328" ], "accept-language": [ "en-US" @@ -289,10 +289,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"changedTime\": \"2016-01-29T02:48:09.501405Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475711961432891\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"name\": \"onesdk6884\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:29:59.9028426Z\",\r\n \"changedTime\": \"2016-01-29T22:29:59.9033572Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475002857136925\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279\",\r\n \"name\": \"onesdk2279\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1574" + "1576" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:70a24cbd-bb7e-4115-bd5b-2208aa9c1448" + "westus:bdee8888-28c5-4815-bbd1-d193dca450d4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14942" ], "x-ms-correlation-request-id": [ - "994a90a2-f858-4f61-876c-d0c3f3a433a3" + "42328027-a2e1-4618-bc15-0d58c6ea48bc" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024811Z:994a90a2-f858-4f61-876c-d0c3f3a433a3" + "WESTUS:20160129T223002Z:42328027-a2e1-4618-bc15-0d58c6ea48bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,16 +325,16 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:11 GMT" + "Fri, 29 Jan 2016 22:30:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI3OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -343,7 +343,7 @@ "1774" ], "x-ms-client-request-id": [ - "da1d725d-d8fa-4a21-a431-b8ad042a6888" + "6e0e02a0-9a25-44c6-899e-30bb0e05e09f" ], "accept-language": [ "en-US" @@ -352,10 +352,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"changedTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475711961432891\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"name\": \"onesdk6884\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:29:59.9028426Z\",\r\n \"changedTime\": \"2016-01-29T22:29:59.9028426Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475002857136925\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279\",\r\n \"name\": \"onesdk2279\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1574" + "1576" ], "Content-Type": [ "application/json; charset=utf-8" @@ -367,16 +367,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:d186fcd2-a21e-42b9-91a4-7242f7621be2" + "westus:8aca3c76-627f-426f-ba6e-04cde2dc4186" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "045abb91-65f4-4bba-9cff-7aa844b43185" + "3b9decf0-6cfb-43b7-9ba2-ca2da1549594" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024809Z:045abb91-65f4-4bba-9cff-7aa844b43185" + "WESTUS:20160129T223000Z:3b9decf0-6cfb-43b7-9ba2-ca2da1549594" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,19 +385,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:09 GMT" + "Fri, 29 Jan 2016 22:30:00 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI3OS90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54a547e8-0ba1-42c3-844d-6d8c005d29f1" + "63c61041-0f1f-435a-8f91-1400b507eff6" ], "accept-language": [ "en-US" @@ -418,16 +418,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:398aa084-4675-4b7b-b934-7c167671ba1d" + "westus:57f1f210-6e6c-463a-9a31-7d00d2ceb370" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "71e254af-4a49-4ffc-a70e-14c2c08c316a" + "6d8f87b7-eb24-4e52-a725-aa0515e991ea" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024811Z:71e254af-4a49-4ffc-a70e-14c2c08c316a" + "WESTUS:20160129T223002Z:6d8f87b7-eb24-4e52-a725-aa0515e991ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,19 +436,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:11 GMT" + "Fri, 29 Jan 2016 22:30:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279/runs?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI3OS9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "804166eb-03fa-4935-a8d3-8edea326694c" + "36276394-60a0-4671-b134-0ef2b99b531d" ], "accept-language": [ "en-US" @@ -457,10 +457,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:10.463169Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"5cea1548-f9c6-4664-9411-05e8c18165a1\",\r\n \"workflow\": {\r\n \"name\": \"onesdk6884/08587475711961432891\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/versions/08587475711961432891\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/18AC7_865a111a25224362b8f5b1df2fd39392_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=lwORyOUh0YaR2fSG8z0nfOvQz7vfuZA97AMPgAWKcAY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A0047B09\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/02FD1_e6da7347b9a4438096c2bc41085b1f4e_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=7hohws5kVV%2FPTgZt%2FFCA42WNO3gFwTypDeApbE1Iqow%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A004A21C\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"2yy3GdJGU6Kb3KCABlTSmw==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-29T02:48:10.2693619Z\",\r\n \"endTime\": \"2016-01-29T02:48:10.378733Z\",\r\n \"trackingId\": \"5cea1548-f9c6-4664-9411-05e8c18165a1\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995\",\r\n \"name\": \"08587475711951985995\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:30:01.5263478Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"2bd50c44-1835-4abb-b3d1-67eddc597ce7\",\r\n \"workflow\": {\r\n \"name\": \"onesdk2279/08587475002857136925\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279/versions/08587475002857136925\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowaca040d3726645a0be4334b9186cf2c920160129t000000zcontent/F126E_425229758d084dae854d038d40c7bcc0_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=9GFY35DlF4Pd8ikc8E0YmaFWBr6FI2O9qnT6asKhxW8%3D&se=2016-01-30T02%3A30%3A02Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBB9F25550\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowaca040d3726645a0be4334b9186cf2c920160129t000000zcontent/6FF14_3ee48b1f9e2344c29ac92eaa664f225d_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=lPv2s8mHcVIQ%2BkE8UZQlJkZ0suCVCRn4ezQSL58Utso%3D&se=2016-01-30T02%3A30%3A02Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBB9F2A384\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"RhkpKtCqAyiE/7HzL6whFA==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-29T22:30:01.364958Z\",\r\n \"endTime\": \"2016-01-29T22:30:01.4274534Z\",\r\n \"trackingId\": \"2bd50c44-1835-4abb-b3d1-67eddc597ce7\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279/runs/08587475002841126244\",\r\n \"name\": \"08587475002841126244\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1736" + "1735" ], "Content-Type": [ "application/json; charset=utf-8" @@ -475,16 +475,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:b52c70cd-007b-41c3-8084-34f7b2cb30cf" + "westus:d0b09df1-3e3c-4180-a1ad-425b5e7558d8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14941" ], "x-ms-correlation-request-id": [ - "4aba3440-17e3-4c42-b391-e8eb2eb99770" + "412db0af-62a4-44c9-8100-f4d660babc24" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024812Z:4aba3440-17e3-4c42-b391-e8eb2eb99770" + "WESTUS:20160129T223002Z:412db0af-62a4-44c9-8100-f4d660babc24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,19 +493,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:11 GMT" + "Fri, 29 Jan 2016 22:30:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zLzA4NTg3NDc1NzExOTUxOTg1OTk1L2FjdGlvbnM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279/runs/08587475002841126244/actions?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI3OS9ydW5zLzA4NTg3NDc1MDAyODQxMTI2MjQ0L2FjdGlvbnM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c21857eb-542e-4485-84e6-6bc091f8a844" + "a8bad692-9bd7-4c07-939e-66da029fad95" ], "accept-language": [ "en-US" @@ -514,10 +514,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.0974815Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.23151Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"371232c6-0df8-4a38-aef0-5942c3bd071c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/58BEA_86d81cfe9cb94cdf952ed74502a405d6_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=q%2F9%2F3da%2BX8vgu7qLWih%2BGfWNE8LPOVpPHqIvFWE21So%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A078DD60\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/FB019_ca0620fa688c4d669272b2b427853ed3_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=%2B%2BO7U58CmRQnMIxg%2B5iuo8YA46KYtNpk1VG3RKg8ftY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A079EF16\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"e4tJjbeGloY+NYlCsh11vQ==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.019364Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.2611503Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"1b9404db-fa8d-4feb-8a19-9e767ebef4a3\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/773A2_2ccc35b9703443699c5d4f016ccec6fc_http1:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=pn0a2Nv%2FYb5Wj7ooIlj97Q2%2FBz7010LwuofI%2FLTEkOg%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A07C127D\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/75259_2b8cc5c840d5445cb0343dba8092c9f8_http1:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=ECvJY%2BaB5wjT%2B5CUxB9%2BXTGx7mt%2FpDTpSD4oOnRKIrI%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A07E0EC3\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A4CfI9ZoDZ91HJttv0jZHA==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http1\",\r\n \"name\": \"http1\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:30:02.4930811Z\",\r\n \"endTime\": \"2016-01-29T22:30:02.6223148Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"6aea6494-47b0-4633-aad4-ebb511da1d37\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowaca040d3726645a0be4334b9186cf2c920160129t000000zcontent/D5175_241bab9c54f14ca683239a5c5540ca79_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=3aG8Hi7lNgmUeeHKOFj3MImMgBYVcuLEjvpf3pTy%2BNc%3D&se=2016-01-30T02%3A30%3A02Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBBA98AC35\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowaca040d3726645a0be4334b9186cf2c920160129t000000zcontent/10667_b311c7551967424d982d9dc2567f63c0_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=ddK%2BabOoaAZK17Jr4pUEqyLAvc5OdXlIJTNFxXCCJo0%3D&se=2016-01-30T02%3A30%3A02Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBBA98D351\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"ZP3HxRZ1aoA9mx4wZl7Tdw==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279/runs/08587475002841126244/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:30:02.5086741Z\",\r\n \"endTime\": \"2016-01-29T22:30:02.6701012Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"814a483f-e7c2-46d7-9933-d48c49d50ed0\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowaca040d3726645a0be4334b9186cf2c920160129t000000zcontent/1DE66_5779970ad5b24cfebcd557d82fb7abd4_http1:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=Kg8GhtL8Ev7AcsTmjKh9Ef1yE7S7LZPkmo7lLzZJn%2Bk%3D&se=2016-01-30T02%3A30%3A02Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBBA98D351\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowaca040d3726645a0be4334b9186cf2c920160129t000000zcontent/2B420_62cb9a035aec4be8a824f9f0b31a8de9_http1:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=71IahBTLJQM1me3h8EnI24wL4yntNgR4u8jNGxOki0Y%3D&se=2016-01-30T02%3A30%3A02Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBBA9D8F7E\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"f2YWMJitWJWDODRIm5Bgkw==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279/runs/08587475002841126244/actions/http1\",\r\n \"name\": \"http1\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2568" + "2549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,16 +532,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:38ca950f-43af-4140-85ac-9eaaf7c8a97d" + "westus:984993f7-8b3d-456e-92f3-8b62419d9f4a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14940" ], "x-ms-correlation-request-id": [ - "e7dbf2b3-cb08-415e-a8eb-cf6598855c95" + "8ab04a9f-0a00-43ee-8c52-a03ad345437a" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024812Z:e7dbf2b3-cb08-415e-a8eb-cf6598855c95" + "WESTUS:20160129T223002Z:8ab04a9f-0a00-43ee-8c52-a03ad345437a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,19 +550,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:12 GMT" + "Fri, 29 Jan 2016 22:30:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zLzA4NTg3NDc1NzExOTUxOTg1OTk1L2FjdGlvbnMvaHR0cD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279/runs/08587475002841126244/actions/http?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMxMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI3OS9ydW5zLzA4NTg3NDc1MDAyODQxMTI2MjQ0L2FjdGlvbnMvaHR0cD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "072c1fa0-29fd-4a8b-9c54-76f905bbf91b" + "970f0702-70e8-4838-b1c3-13fbc1ffd0ed" ], "accept-language": [ "en-US" @@ -571,10 +571,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.0974815Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.23151Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"371232c6-0df8-4a38-aef0-5942c3bd071c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/58BEA_86d81cfe9cb94cdf952ed74502a405d6_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=q%2F9%2F3da%2BX8vgu7qLWih%2BGfWNE8LPOVpPHqIvFWE21So%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A078DD60\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/FB019_ca0620fa688c4d669272b2b427853ed3_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=%2B%2BO7U58CmRQnMIxg%2B5iuo8YA46KYtNpk1VG3RKg8ftY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A079EF16\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"e4tJjbeGloY+NYlCsh11vQ==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:30:02.4930811Z\",\r\n \"endTime\": \"2016-01-29T22:30:02.6223148Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"6aea6494-47b0-4633-aad4-ebb511da1d37\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowaca040d3726645a0be4334b9186cf2c920160129t000000zcontent/D5175_241bab9c54f14ca683239a5c5540ca79_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=3aG8Hi7lNgmUeeHKOFj3MImMgBYVcuLEjvpf3pTy%2BNc%3D&se=2016-01-30T02%3A30%3A02Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBBA98AC35\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowaca040d3726645a0be4334b9186cf2c920160129t000000zcontent/10667_b311c7551967424d982d9dc2567f63c0_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=ddK%2BabOoaAZK17Jr4pUEqyLAvc5OdXlIJTNFxXCCJo0%3D&se=2016-01-30T02%3A30%3A02Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBBA98D351\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"ZP3HxRZ1aoA9mx4wZl7Tdw==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3131/providers/Microsoft.Logic/workflows/onesdk2279/runs/08587475002841126244/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1275" + "1267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -589,16 +589,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:effda38f-cac9-4a5b-aa8f-ba28adeda7d3" + "westus:0743ab15-b522-4a58-b351-12026324c6bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" + "14939" ], "x-ms-correlation-request-id": [ - "34a69ebc-354f-475f-8d5e-c7add7f56f95" + "36c230b6-e479-4003-8b64-d0e1e572a855" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024812Z:34a69ebc-354f-475f-8d5e-c7add7f56f95" + "WESTUS:20160129T223002Z:36c230b6-e479-4003-8b64-d0e1e572a855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -607,7 +607,7 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:12 GMT" + "Fri, 29 Jan 2016 22:30:02 GMT" ] }, "StatusCode": 200 @@ -615,8 +615,8 @@ ], "Names": { "Test-GetAzureLogicAppRunAction": [ - "onesdk2550", - "onesdk6884" + "onesdk3131", + "onesdk2279" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json index 595110e193a5..f1bd2668c931 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4708?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14849" ], "x-ms-request-id": [ - "631a3d4c-c263-46b6-b1ea-4ed3554af996" + "be821929-a970-4490-b8ea-c2a557e99704" ], "x-ms-correlation-request-id": [ - "631a3d4c-c263-46b6-b1ea-4ed3554af996" + "be821929-a970-4490-b8ea-c2a557e99704" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213734Z:631a3d4c-c263-46b6-b1ea-4ed3554af996" + "WESTUS:20160129T223027Z:be821929-a970-4490-b8ea-c2a557e99704" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:33 GMT" + "Fri, 29 Jan 2016 22:30:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4708?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776\",\r\n \"name\": \"onesdk7776\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708\",\r\n \"name\": \"onesdk4708\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + "11f420f1-9dd7-4461-8b3d-9b242597cfa8" ], "x-ms-correlation-request-id": [ - "8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + "11f420f1-9dd7-4461-8b3d-9b242597cfa8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213735Z:8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + "WESTUS:20160129T223028Z:11f420f1-9dd7-4461-8b3d-9b242597cfa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:34 GMT" + "Fri, 29 Jan 2016 22:30:28 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ3MDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "14848" ], "x-ms-request-id": [ - "180a92a6-42e3-4238-b1d8-36b569971c92" + "f592d499-84c8-4303-9468-38f1e5c071d5" ], "x-ms-correlation-request-id": [ - "180a92a6-42e3-4238-b1d8-36b569971c92" + "f592d499-84c8-4303-9468-38f1e5c071d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213735Z:180a92a6-42e3-4238-b1d8-36b569971c92" + "WESTUS:20160129T223028Z:f592d499-84c8-4303-9468-38f1e5c071d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:34 GMT" + "Fri, 29 Jan 2016 22:30:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed4718ce-3d4a-456c-ad58-22c30db91e1c" + "074ddce1-ad35-4c0f-a354-83f3556f26e3" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk7776-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk7776\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk4708-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk4708\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c0e9456-8271-4e80-9877-aa1970dae099" + "2092e855-8234-4589-a331-3537aa213373" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14938" ], "x-ms-correlation-request-id": [ - "71f0a45e-3da7-464d-b5ad-e9c876da204a" + "d18dd484-c179-44b0-a1d9-c8abfee4faac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213749Z:71f0a45e-3da7-464d-b5ad-e9c876da204a" + "WESTUS:20160129T223037Z:d18dd484-c179-44b0-a1d9-c8abfee4faac" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:48 GMT" + "Fri, 29 Jan 2016 22:30:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQwNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e8b1ac6-16c9-4f6c-9912-2cb4c3d614c8" + "93778cdc-8c17-4a85-ae4d-26ef76d04376" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9693' under resource group 'onesdk7776' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5407' under resource group 'onesdk4708' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "f4615d65-da3f-41b8-979f-a8df633e554a" + "c114b079-9ce9-453e-9f81-754f7351a568" ], "x-ms-correlation-request-id": [ - "f4615d65-da3f-41b8-979f-a8df633e554a" + "c114b079-9ce9-453e-9f81-754f7351a568" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213750Z:f4615d65-da3f-41b8-979f-a8df633e554a" + "WESTUS:20160129T223038Z:c114b079-9ce9-453e-9f81-754f7351a568" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,247 +268,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:49 GMT" + "Fri, 29 Jan 2016 22:30:38 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "634cebd3-084a-410e-a0ac-20413dd4e3e9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:08e7d46b-a9ea-4e88-b9ae-93dea8a26c22" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" - ], - "x-ms-correlation-request-id": [ - "7a1c26be-3fcc-4885-b9c0-201955eb1901" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213755Z:7a1c26be-3fcc-4885-b9c0-201955eb1901" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:37:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fb225472-d8b3-499f-9cbe-44b348f6bb69" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:fe6cd076-7b89-4258-9d31-d8e4c235e4c1" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" - ], - "x-ms-correlation-request-id": [ - "16e6d15a-872e-4f52-9cd7-29c9e53b33c7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213757Z:16e6d15a-872e-4f52-9cd7-29c9e53b33c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:37:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2dda5b05-97e0-4601-b9ae-35991856da9d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:7e957de3-df02-4e5b-adb3-5eb347572af9" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" - ], - "x-ms-correlation-request-id": [ - "46c43656-a5be-411c-8fc9-29a37d6279f7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213759Z:46c43656-a5be-411c-8fc9-29a37d6279f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:37:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5e2383c4-8724-4168-b704-5ad09bec82d2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:cb7ab54c-1b85-4013-b526-ffb1fe4903e1" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" - ], - "x-ms-correlation-request-id": [ - "c6e73867-3b31-450c-b94f-de1887ca0928" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213801Z:c6e73867-3b31-450c-b94f-de1887ca0928" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:38:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQwNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f417649-02a4-4386-a29e-a7d4af0439a0" + "c165f279-cb4c-40bb-b46e-6e3825b5f184" ], "accept-language": [ "en-US" @@ -517,7 +289,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:30:39.5861522Z\",\r\n \"changedTime\": \"2016-01-29T22:30:39.5866944Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475002460475631\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407\",\r\n \"name\": \"onesdk5407\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -535,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:448cfd64-caa4-42b2-b9a7-7dcc72409287" + "westus:81a8b043-a2ab-4678-8a54-52e40520764a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" + "14972" ], "x-ms-correlation-request-id": [ - "e6e30169-03ad-491b-82f2-39ca7e8f49f8" + "f7f88d7b-e199-4d19-bd44-ba3311ec86c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213803Z:e6e30169-03ad-491b-82f2-39ca7e8f49f8" + "WESTUS:20160129T223041Z:f7f88d7b-e199-4d19-bd44-ba3311ec86c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,73 +325,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:38:03 GMT" + "Fri, 29 Jan 2016 22:30:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f7b47666-755e-4f90-839e-6b1d80a7100a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:4f70933b-daf5-4e58-a3e6-59fd9e33fa00" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" - ], - "x-ms-correlation-request-id": [ - "67eac913-453b-4c29-b637-1c7a0edd7ae0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213805Z:67eac913-453b-4c29-b637-1c7a0edd7ae0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:38:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQwNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -628,7 +343,7 @@ "1774" ], "x-ms-client-request-id": [ - "15f548da-0e12-43b3-99bb-50fd788fc02e" + "814eb50a-7b39-4150-9860-db94368b2c79" ], "accept-language": [ "en-US" @@ -637,7 +352,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:30:39.5861522Z\",\r\n \"changedTime\": \"2016-01-29T22:30:39.5861522Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475002460475631\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407\",\r\n \"name\": \"onesdk5407\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -652,16 +367,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:f16fff26-938d-47e1-89ba-0bb84f55b1c5" + "westus:f2af123c-e5ab-4299-9431-3fd3a373b442" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "8568a751-068e-4ee1-84c7-f0fdd8a05a9f" + "76932aaf-9d6b-460c-91ca-53353fac4666" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213753Z:8568a751-068e-4ee1-84c7-f0fdd8a05a9f" + "WESTUS:20160129T223039Z:76932aaf-9d6b-460c-91ca-53353fac4666" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,19 +385,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:52 GMT" + "Fri, 29 Jan 2016 22:30:39 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQwNy90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "904804de-3055-4e32-a6f1-583d22f88613" + "e234df99-7d97-43e5-a003-95933957bbf2" ], "accept-language": [ "en-US" @@ -703,16 +418,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:52b92822-a626-4ddd-8f7f-f623d40c67c4" + "westus:a8640853-368e-4511-aafe-6212736cc154" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "c5b18e83-9a9b-4560-81df-954a989eff05" + "4f60a6b6-41c6-404a-b6d3-3c47db6f390e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213806Z:c5b18e83-9a9b-4560-81df-954a989eff05" + "WESTUS:20160129T223042Z:4f60a6b6-41c6-404a-b6d3-3c47db6f390e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -721,19 +436,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:38:06 GMT" + "Fri, 29 Jan 2016 22:30:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407/runs?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQwNy9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce116594-1976-41be-9f70-c233ccb50e8d" + "1525b9fb-9ef4-4530-be5f-f3ddc73c0376" ], "accept-language": [ "en-US" @@ -742,10 +457,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:37:53.1425437Z\",\r\n \"endTime\": \"2016-01-26T21:37:54.1215716Z\",\r\n \"status\": \"Succeeded\",\r\n \"correlationId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"workflow\": {\r\n \"name\": \"onesdk9693/08587477626139623697\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/versions/08587477626139623697\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F1E4A_4ae25d4a1f0b4c998474628226574c66_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=uTs%2BCKI1r8tG9OcVMNFbLtdFlD4wjqvvtriADVkZ%2FUY%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F220B6BD\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F02A1_327a8e388a3a405ab5c760aba1697587_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=4J0HlZD1VDNRczPjVeD4i2tBZ3KJJNbMrn%2BV7cDjQbg%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F2208FA5\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"S2yNZzvMTD8A2LamZWzk3A==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-26T21:37:52.9544639Z\",\r\n \"endTime\": \"2016-01-26T21:37:53.0325829Z\",\r\n \"trackingId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709\",\r\n \"name\": \"08587477626125197709\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:30:40.9385488Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"784a2db3-aad7-470c-8356-5bbdb23a3263\",\r\n \"workflow\": {\r\n \"name\": \"onesdk5407/08587475002460475631\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407/versions/08587475002460475631\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe50ad96a3a854ac7aad1323a2d087b0220160129t000000zcontent/77EFA_4816dc40fde44f5b9228042a7d2e08d7_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=vj%2FYUeQmYZZisu%2FTL02LMHFKyU1c4WgDbbQzGDtTdbY%3D&se=2016-01-30T02%3A30%3A42Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBD1708543\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe50ad96a3a854ac7aad1323a2d087b0220160129t000000zcontent/FD79A_cb7b24e7669f4dee9dc242492d255ebb_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=bWmdEuninX9fk3lKHbvdK7t1a2MMAZVB3592a3Pg7oI%3D&se=2016-01-30T02%3A30%3A42Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBD1708543\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"NPkaCHXwTEv7OX8AebNAtA==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-29T22:30:40.7134781Z\",\r\n \"endTime\": \"2016-01-29T22:30:40.8072288Z\",\r\n \"trackingId\": \"784a2db3-aad7-470c-8356-5bbdb23a3263\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407/runs/08587475002447513577\",\r\n \"name\": \"08587475002447513577\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1798" + "1738" ], "Content-Type": [ "application/json; charset=utf-8" @@ -760,16 +475,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:003092d8-271e-41f2-838c-56219397318a" + "westus:0cb4ec30-1ed0-4ae3-a22b-cde791470db6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14971" ], "x-ms-correlation-request-id": [ - "fb6c2e26-c501-43f9-ba0e-8cb1000725eb" + "b47de646-6716-4fa2-a16b-13253f251ce3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213806Z:fb6c2e26-c501-43f9-ba0e-8cb1000725eb" + "WESTUS:20160129T223042Z:b47de646-6716-4fa2-a16b-13253f251ce3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,19 +493,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:38:06 GMT" + "Fri, 29 Jan 2016 22:30:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My9ydW5zLzA4NTg3NDc3NjI2MTI1MTk3NzA5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407/runs/08587475002447513577?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQwNy9ydW5zLzA4NTg3NDc1MDAyNDQ3NTEzNTc3P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "554b5d5a-49d1-4e19-8017-5257659254d6" + "d4ea3db5-77e3-40c7-8d91-924658461e6f" ], "accept-language": [ "en-US" @@ -799,10 +514,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:37:53.1425437Z\",\r\n \"endTime\": \"2016-01-26T21:37:54.1215716Z\",\r\n \"status\": \"Succeeded\",\r\n \"correlationId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"workflow\": {\r\n \"name\": \"onesdk9693/08587477626139623697\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/versions/08587477626139623697\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F1E4A_4ae25d4a1f0b4c998474628226574c66_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=uTs%2BCKI1r8tG9OcVMNFbLtdFlD4wjqvvtriADVkZ%2FUY%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F220B6BD\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F02A1_327a8e388a3a405ab5c760aba1697587_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=4J0HlZD1VDNRczPjVeD4i2tBZ3KJJNbMrn%2BV7cDjQbg%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F2208FA5\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"S2yNZzvMTD8A2LamZWzk3A==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-26T21:37:52.9544639Z\",\r\n \"endTime\": \"2016-01-26T21:37:53.0325829Z\",\r\n \"trackingId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709\",\r\n \"name\": \"08587477626125197709\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:30:40.9385488Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"784a2db3-aad7-470c-8356-5bbdb23a3263\",\r\n \"workflow\": {\r\n \"name\": \"onesdk5407/08587475002460475631\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407/versions/08587475002460475631\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe50ad96a3a854ac7aad1323a2d087b0220160129t000000zcontent/77EFA_4816dc40fde44f5b9228042a7d2e08d7_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=vj%2FYUeQmYZZisu%2FTL02LMHFKyU1c4WgDbbQzGDtTdbY%3D&se=2016-01-30T02%3A30%3A42Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBD1708543\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe50ad96a3a854ac7aad1323a2d087b0220160129t000000zcontent/FD79A_cb7b24e7669f4dee9dc242492d255ebb_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=bWmdEuninX9fk3lKHbvdK7t1a2MMAZVB3592a3Pg7oI%3D&se=2016-01-30T02%3A30%3A42Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FBD1708543\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"NPkaCHXwTEv7OX8AebNAtA==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-29T22:30:40.7134781Z\",\r\n \"endTime\": \"2016-01-29T22:30:40.8072288Z\",\r\n \"trackingId\": \"784a2db3-aad7-470c-8356-5bbdb23a3263\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4708/providers/Microsoft.Logic/workflows/onesdk5407/runs/08587475002447513577\",\r\n \"name\": \"08587475002447513577\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1786" + "1726" ], "Content-Type": [ "application/json; charset=utf-8" @@ -817,16 +532,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:75c84f22-2a79-4f9b-9e84-e5ceba4ba800" + "westus:81a8eaf8-2b1e-4158-aaea-14049e76fd78" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14970" ], "x-ms-correlation-request-id": [ - "4918f084-ec7c-49da-8e8c-e220b4718770" + "a7f94df3-1d83-4a1b-a569-c569f265f978" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213806Z:4918f084-ec7c-49da-8e8c-e220b4718770" + "WESTUS:20160129T223042Z:a7f94df3-1d83-4a1b-a569-c569f265f978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -835,7 +550,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:38:06 GMT" + "Fri, 29 Jan 2016 22:30:42 GMT" ] }, "StatusCode": 200 @@ -843,8 +558,8 @@ ], "Names": { "Test-GetAzureLogicAppRunHistory": [ - "onesdk7776", - "onesdk9693" + "onesdk4708", + "onesdk5407" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json index 8af45285b977..a1e88b98085e 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7146?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazcxNDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14953" ], "x-ms-request-id": [ - "418d6d13-6725-411e-9166-8945adc37df2" + "ceecb989-bbd2-4839-8fd8-d82917126602" ], "x-ms-correlation-request-id": [ - "418d6d13-6725-411e-9166-8945adc37df2" + "ceecb989-bbd2-4839-8fd8-d82917126602" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213555Z:418d6d13-6725-411e-9166-8945adc37df2" + "CENTRALUS:20160129T221408Z:ceecb989-bbd2-4839-8fd8-d82917126602" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:35:55 GMT" + "Fri, 29 Jan 2016 22:14:07 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7146?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazcxNDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047\",\r\n \"name\": \"onesdk8047\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146\",\r\n \"name\": \"onesdk7146\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + "96e3f938-6c53-45b6-a255-6b101b0d01c9" ], "x-ms-correlation-request-id": [ - "bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + "96e3f938-6c53-45b6-a255-6b101b0d01c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213558Z:bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + "CENTRALUS:20160129T221409Z:96e3f938-6c53-45b6-a255-6b101b0d01c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:35:58 GMT" + "Fri, 29 Jan 2016 22:14:09 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNDYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14952" ], "x-ms-request-id": [ - "1aa57fe4-e027-4cde-9450-c22043b23345" + "7a95ee2b-092a-4dab-acae-f3b268c275cb" ], "x-ms-correlation-request-id": [ - "1aa57fe4-e027-4cde-9450-c22043b23345" + "7a95ee2b-092a-4dab-acae-f3b268c275cb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213558Z:1aa57fe4-e027-4cde-9450-c22043b23345" + "CENTRALUS:20160129T221409Z:7a95ee2b-092a-4dab-acae-f3b268c275cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:35:58 GMT" + "Fri, 29 Jan 2016 22:14:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49961c78-4dd1-4e47-8eb3-2400ce9bb0fa" + "df2c3c34-ee7c-423f-9e74-5959ae94ef73" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk8047-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk8047\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk7146-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk7146\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91be29c6-382f-4718-9320-0285b2050935" + "900a3733-3628-4d31-bd98-1a5d97d398b3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14971" ], "x-ms-correlation-request-id": [ - "2bd7db75-1399-4a0f-b2b6-ef692e7c3019" + "e8cd2c94-f654-41cb-ab17-b5cfae68cedc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213611Z:2bd7db75-1399-4a0f-b2b6-ef692e7c3019" + "CENTRALUS:20160129T221419Z:e8cd2c94-f654-41cb-ab17-b5cfae68cedc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:36:10 GMT" + "Fri, 29 Jan 2016 22:14:19 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/providers/Microsoft.Logic/workflows/onesdk1160?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE2MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27ffacc6-4364-47a5-93cc-347fedfccbdf" + "0cd0a39d-e435-4094-8ca6-b2e602e13989" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6210' under resource group 'onesdk8047' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1160' under resource group 'onesdk7146' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "b093dcef-712d-47ab-ae9c-86e25305a623" + "c6d5949d-f785-401b-b0ba-9988f724e167" ], "x-ms-correlation-request-id": [ - "b093dcef-712d-47ab-ae9c-86e25305a623" + "c6d5949d-f785-401b-b0ba-9988f724e167" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213611Z:b093dcef-712d-47ab-ae9c-86e25305a623" + "CENTRALUS:20160129T221420Z:c6d5949d-f785-401b-b0ba-9988f724e167" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,190 +268,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:36:11 GMT" + "Fri, 29 Jan 2016 22:14:19 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "446485ce-750d-4489-9d31-132966c42583" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:e2645e63-68f5-4dba-a3d9-13a635f4b1a7" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" - ], - "x-ms-correlation-request-id": [ - "838ae18a-3cd9-4343-bf70-b4b94345185a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213616Z:838ae18a-3cd9-4343-bf70-b4b94345185a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:36:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3344a378-27c7-4399-91d9-066eaeda1521" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:51433142-99df-4bf2-b271-37b203ee3cbe" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" - ], - "x-ms-correlation-request-id": [ - "a11fe84c-b81b-474c-b3a5-c8fd48113360" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213618Z:a11fe84c-b81b-474c-b3a5-c8fd48113360" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:36:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3dd6c915-2b4c-48ce-b7ba-4162a3daa8ef" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:4ad9ad49-adc7-42ea-a0fa-4ed00e658755" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" - ], - "x-ms-correlation-request-id": [ - "22e7d2df-e5f7-48f5-aaec-4da965478cf5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213620Z:22e7d2df-e5f7-48f5-aaec-4da965478cf5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:36:20 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/providers/Microsoft.Logic/workflows/onesdk1160?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE2MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3335ea7-2ae3-4f59-8fd9-e22e5eb82485" + "4bfcfe78-c844-4cc1-822f-fb7d6e373c91" ], "accept-language": [ "en-US" @@ -460,7 +289,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:14:21.9413756Z\",\r\n \"changedTime\": \"2016-01-29T22:14:21.9421884Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475012236528224\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7146/providers/Microsoft.Logic/workflows/onesdk1160\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/providers/Microsoft.Logic/workflows/onesdk1160\",\r\n \"name\": \"onesdk1160\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -478,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:6e81bd7c-a799-4237-9342-0ec2b922422c" + "westus:0b4f153a-6fde-405f-8e54-441502cb05f3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14899" ], "x-ms-correlation-request-id": [ - "e41af364-faf8-496c-986e-cfc1ec053e79" + "3c41b2b9-d2b4-4a3b-b1b5-415dcdff65e1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213622Z:e41af364-faf8-496c-986e-cfc1ec053e79" + "CENTRALUS:20160129T221424Z:3c41b2b9-d2b4-4a3b-b1b5-415dcdff65e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,130 +325,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:36:22 GMT" + "Fri, 29 Jan 2016 22:14:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b43fbdcd-ab30-44e6-8a29-be6991d797e6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:ded67c9e-555e-408b-afc3-190637c59caf" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], - "x-ms-correlation-request-id": [ - "224f2ac0-0fdf-4a56-a834-3bdb317fef0a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213625Z:224f2ac0-0fdf-4a56-a834-3bdb317fef0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:36:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "68bb1c00-d944-4df9-be37-e691858b9a35" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:43e050b2-46ca-4804-a5ff-6496e92df154" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" - ], - "x-ms-correlation-request-id": [ - "f0f0525c-4718-4c7a-b2b4-342b7446b004" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213627Z:f0f0525c-4718-4c7a-b2b4-342b7446b004" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:36:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/providers/Microsoft.Logic/workflows/onesdk1160?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE2MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -628,7 +343,7 @@ "1774" ], "x-ms-client-request-id": [ - "2e56887a-6e7b-4d62-a999-700eb4d3586d" + "89588461-e646-4d9f-8b75-b56623036963" ], "accept-language": [ "en-US" @@ -637,7 +352,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:14:21.9413756Z\",\r\n \"changedTime\": \"2016-01-29T22:14:21.9413756Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475012236528224\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7146/providers/Microsoft.Logic/workflows/onesdk1160\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/providers/Microsoft.Logic/workflows/onesdk1160\",\r\n \"name\": \"onesdk1160\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -652,16 +367,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:cba8483f-f70c-4b83-8488-1d3169103006" + "westus:d61e8dd1-c93c-4723-970a-2f91f9a68793" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "a82788e4-ea57-4211-805e-7e894b1f3d36" + "a6a9b52f-272d-4f46-adcf-b2839ba5fe08" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213614Z:a82788e4-ea57-4211-805e-7e894b1f3d36" + "CENTRALUS:20160129T221422Z:a6a9b52f-272d-4f46-adcf-b2839ba5fe08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,19 +385,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:36:13 GMT" + "Fri, 29 Jan 2016 22:14:21 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMC90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7146/providers/Microsoft.Logic/workflows/onesdk1160/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE2MC90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df17c312-1c06-4b15-982e-4e5e3478c5d5" + "9f1b15be-6e72-4389-b3da-8785c4a5c26e" ], "accept-language": [ "en-US" @@ -703,16 +418,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:91043b0a-3d9c-4d8d-ac3f-bbe397a92186" + "westus:7c1a9433-24f6-4d2a-bf23-97170c6e5bb0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "4d817e26-e486-453c-aead-473b25d028b2" + "5cfaea68-abb8-4a22-8cf1-dde90c2e1501" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213627Z:4d817e26-e486-453c-aead-473b25d028b2" + "CENTRALUS:20160129T221425Z:5cfaea68-abb8-4a22-8cf1-dde90c2e1501" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -721,7 +436,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:36:27 GMT" + "Fri, 29 Jan 2016 22:14:25 GMT" ] }, "StatusCode": 200 @@ -729,8 +444,8 @@ ], "Names": { "Test-StartLogicApp": [ - "onesdk8047", - "onesdk6210" + "onesdk7146", + "onesdk1160" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json index 18a995549693..8b6209ea646b 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5191?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxOTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14765" + "14944" ], "x-ms-request-id": [ - "3739f087-6727-4582-ad63-4540a0b4b156" + "85563436-37e1-41fb-acc0-7280137d4b25" ], "x-ms-correlation-request-id": [ - "3739f087-6727-4582-ad63-4540a0b4b156" + "85563436-37e1-41fb-acc0-7280137d4b25" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211314Z:3739f087-6727-4582-ad63-4540a0b4b156" + "WESTUS:20160129T222058Z:85563436-37e1-41fb-acc0-7280137d4b25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:13 GMT" + "Fri, 29 Jan 2016 22:20:58 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5191?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxOTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331\",\r\n \"name\": \"onesdk5331\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191\",\r\n \"name\": \"onesdk5191\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "15a3aaf6-0854-47d3-bfe6-be12cae3a003" + "d072ae26-d3e1-4f32-be73-98d1196d8794" ], "x-ms-correlation-request-id": [ - "15a3aaf6-0854-47d3-bfe6-be12cae3a003" + "d072ae26-d3e1-4f32-be73-98d1196d8794" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211315Z:15a3aaf6-0854-47d3-bfe6-be12cae3a003" + "WESTUS:20160129T222059Z:d072ae26-d3e1-4f32-be73-98d1196d8794" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:14 GMT" + "Fri, 29 Jan 2016 22:20:58 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" + "14943" ], "x-ms-request-id": [ - "bba8bed9-5b64-4e03-8d44-51fd58414cf4" + "be82518e-48df-445d-990d-9b0798a59d4d" ], "x-ms-correlation-request-id": [ - "bba8bed9-5b64-4e03-8d44-51fd58414cf4" + "be82518e-48df-445d-990d-9b0798a59d4d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211315Z:bba8bed9-5b64-4e03-8d44-51fd58414cf4" + "WESTUS:20160129T222059Z:be82518e-48df-445d-990d-9b0798a59d4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:14 GMT" + "Fri, 29 Jan 2016 22:20:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e90d103b-327c-4cdd-abc5-44487fc5e91d" + "b4956375-4ac3-4a36-ac0e-c7ed4d5ffc92" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5331-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5331\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5191-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5191\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46e7eb17-4cb6-42c0-b713-782b2bc89e2e" + "7db9d302-450f-424c-87f7-fc23f208b9c0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" + "14931" ], "x-ms-correlation-request-id": [ - "7158f7f0-50b8-453a-97b1-15dda4ff124e" + "53d1e057-84bb-49c1-b0de-c98eedbf338d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211330Z:7158f7f0-50b8-453a-97b1-15dda4ff124e" + "WESTUS:20160129T222106Z:53d1e057-84bb-49c1-b0de-c98eedbf338d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:30 GMT" + "Fri, 29 Jan 2016 22:21:05 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Logic/workflows/onesdk5265?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI2NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5245c2b-f404-46b1-84b7-64016dc2f01d" + "39e55891-ed39-4fc8-92c1-9550902ea6fe" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8699' under resource group 'onesdk5331' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5265' under resource group 'onesdk5191' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "d69b1ea4-4d0b-428a-828a-38becee7a245" + "6bda0c79-416e-4de0-84ab-9929c506b580" ], "x-ms-correlation-request-id": [ - "d69b1ea4-4d0b-428a-828a-38becee7a245" + "6bda0c79-416e-4de0-84ab-9929c506b580" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211330Z:d69b1ea4-4d0b-428a-828a-38becee7a245" + "WESTUS:20160129T222106Z:6bda0c79-416e-4de0-84ab-9929c506b580" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,19 +268,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:30 GMT" + "Fri, 29 Jan 2016 22:21:05 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Logic/workflows/onesdk5265?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI2NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "501d3f62-c706-4bde-8c3d-56aa953956fb" + "416042cd-b337-4c96-a4e8-1751ecd3ecc3" ], "accept-language": [ "en-US" @@ -289,10 +289,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"changedTime\": \"2016-01-26T21:13:33.4724456Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477640722571179\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"name\": \"onesdk8699\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:21:07.5697847Z\",\r\n \"changedTime\": \"2016-01-29T22:21:07.5707533Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475008179549791\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5191/providers/Microsoft.Logic/workflows/onesdk5265\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Logic/workflows/onesdk5265\",\r\n \"name\": \"onesdk5265\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1679" + "1680" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:16892e0f-8749-436a-a895-a4ba53278f91" + "westus:80cebc8b-f5f6-4bf3-9a1c-f7e2bf67b57c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14880" + "14937" ], "x-ms-correlation-request-id": [ - "19b61baa-0f9a-454a-a67f-51ee1acd7c52" + "efdcbbf5-bdf1-4fa9-9915-b7ed8e7ca1b8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211334Z:19b61baa-0f9a-454a-a67f-51ee1acd7c52" + "WESTUS:20160129T222107Z:efdcbbf5-bdf1-4fa9-9915-b7ed8e7ca1b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,16 +325,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:34 GMT" + "Fri, 29 Jan 2016 22:21:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Logic/workflows/onesdk5265?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI2NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"string\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"string\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"string\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"string\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -343,7 +343,7 @@ "1628" ], "x-ms-client-request-id": [ - "169cf574-62f6-48ff-9b01-74737d7a52ba" + "83d9336d-3299-42a2-84b1-5c2a4ef08d98" ], "accept-language": [ "en-US" @@ -352,10 +352,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"changedTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477640722571179\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"name\": \"onesdk8699\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:21:07.5697847Z\",\r\n \"changedTime\": \"2016-01-29T22:21:07.5697847Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475008179549791\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5191/providers/Microsoft.Logic/workflows/onesdk5265\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Logic/workflows/onesdk5265\",\r\n \"name\": \"onesdk5265\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1678" + "1680" ], "Content-Type": [ "application/json; charset=utf-8" @@ -367,16 +367,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:346eecf3-0eb7-469e-a208-4ca6977c40fe" + "westus:d0951d65-ac02-4b27-b1ec-5e6a9869959d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "746c8256-cbd3-480b-88cc-a4a7d1543d6b" + "7078fb00-72c9-41b9-9aa4-780d6ee3a5b6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211334Z:746c8256-cbd3-480b-88cc-a4a7d1543d6b" + "WESTUS:20160129T222107Z:7078fb00-72c9-41b9-9aa4-780d6ee3a5b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,19 +385,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:33 GMT" + "Fri, 29 Jan 2016 22:21:07 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/InvalidWorkflow?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvSW52YWxpZFdvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Logic/workflows/InvalidWorkflow?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvSW52YWxpZFdvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92e96af6-e770-44aa-80a6-eca7985636f6" + "d685bb0b-126e-4c84-9414-3a583d05efaa" ], "accept-language": [ "en-US" @@ -406,7 +406,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/InvalidWorkflow' under resource group 'onesdk5331' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/InvalidWorkflow' under resource group 'onesdk5191' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "155" @@ -424,13 +424,13 @@ "gateway" ], "x-ms-request-id": [ - "5144a19a-fd67-4be7-8462-579ff6a421f6" + "2b8121a8-7ba0-4c19-9d55-5bba2c74f3f2" ], "x-ms-correlation-request-id": [ - "5144a19a-fd67-4be7-8462-579ff6a421f6" + "2b8121a8-7ba0-4c19-9d55-5bba2c74f3f2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211334Z:5144a19a-fd67-4be7-8462-579ff6a421f6" + "WESTUS:20160129T222108Z:2b8121a8-7ba0-4c19-9d55-5bba2c74f3f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,19 +439,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:34 GMT" + "Fri, 29 Jan 2016 22:21:07 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5191/providers/Microsoft.Logic/workflows/onesdk5265?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI2NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "478e9f7f-f6bc-4209-9945-1b7580609924" + "3bce4c75-9d9d-4de1-ba55-ec1274e4ce59" ], "accept-language": [ "en-US" @@ -472,16 +472,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:73688625-c741-4bc9-9308-289b8e22cae9" + "westus:0849b125-f858-4a51-afed-710ebc2fa059" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "2a7458d2-148c-44e8-a4f7-7c0994c7fd05" + "d04b583f-a549-4373-9685-836f8d17d82e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211335Z:2a7458d2-148c-44e8-a4f7-7c0994c7fd05" + "WESTUS:20160129T222108Z:d04b583f-a549-4373-9685-836f8d17d82e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,7 +490,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:35 GMT" + "Fri, 29 Jan 2016 22:21:07 GMT" ] }, "StatusCode": 200 @@ -498,8 +498,8 @@ ], "Names": { "Test-CreateAndGetLogicAppUsingDefinitionWithActions": [ - "onesdk5331", - "onesdk8699" + "onesdk5191", + "onesdk5265" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json index 6be09b3aa189..490f143f3b47 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9024?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazkwMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14963" ], "x-ms-request-id": [ - "2f48abca-dce1-4c40-90ef-b4e9c213a90b" + "83da1de4-d154-452d-a541-e2ddffb04f60" ], "x-ms-correlation-request-id": [ - "2f48abca-dce1-4c40-90ef-b4e9c213a90b" + "83da1de4-d154-452d-a541-e2ddffb04f60" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211440Z:2f48abca-dce1-4c40-90ef-b4e9c213a90b" + "WESTUS:20160129T221900Z:83da1de4-d154-452d-a541-e2ddffb04f60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:14:39 GMT" + "Fri, 29 Jan 2016 22:18:59 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9024?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazkwMjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706\",\r\n \"name\": \"onesdk1706\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024\",\r\n \"name\": \"onesdk9024\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + "aaaa8429-6c4f-4321-a5f3-0cba2d12da19" ], "x-ms-correlation-request-id": [ - "6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + "aaaa8429-6c4f-4321-a5f3-0cba2d12da19" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211441Z:6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + "WESTUS:20160129T221900Z:aaaa8429-6c4f-4321-a5f3-0cba2d12da19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:14:40 GMT" + "Fri, 29 Jan 2016 22:19:00 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14962" ], "x-ms-request-id": [ - "c0b7051e-baf5-4766-881e-1ef78abc88fb" + "42a2a19d-17e1-493b-b8e5-b326fb25b24a" ], "x-ms-correlation-request-id": [ - "c0b7051e-baf5-4766-881e-1ef78abc88fb" + "42a2a19d-17e1-493b-b8e5-b326fb25b24a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211441Z:c0b7051e-baf5-4766-881e-1ef78abc88fb" + "WESTUS:20160129T221900Z:42a2a19d-17e1-493b-b8e5-b326fb25b24a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:14:41 GMT" + "Fri, 29 Jan 2016 22:19:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05b6d49b-e5df-4178-ac0c-d831234ec90c" + "37ec1652-11b2-4981-af92-84a0bb1e7ec0" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk9024-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk9024\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3bd2ed9-d6bc-4d8c-accb-c3e33a75722f" + "c5d7712b-d615-4743-9dbc-67ff7aa91fe5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "14922" ], "x-ms-correlation-request-id": [ - "f6cdc0ad-795c-4053-8a36-3d82e9954c45" + "3cafc6d3-2f0f-4567-b98e-e1f97bb5305d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211458Z:f6cdc0ad-795c-4053-8a36-3d82e9954c45" + "WESTUS:20160129T221907Z:3cafc6d3-2f0f-4567-b98e-e1f97bb5305d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:14:57 GMT" + "Fri, 29 Jan 2016 22:19:06 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad329cb9-4196-4412-85b0-9b31e357f6bc" + "0a7d45fe-fedd-46b5-a787-c534794f154d" ], "accept-language": [ "en-US" @@ -238,7 +238,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk9024-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk9024\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -256,22 +256,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d75556ee-4afd-44c1-9216-446ec86acb68" + "792abf9d-34ab-4a7d-99d2-400baf2c9762" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14790" + "14921" ], "x-ms-correlation-request-id": [ - "b2e8c714-8c5c-4dfc-bb46-85d4d0a589e0" + "df5531c5-68d1-48d2-bba9-948141f15bab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211503Z:b2e8c714-8c5c-4dfc-bb46-85d4d0a589e0" + "WESTUS:20160129T221909Z:df5531c5-68d1-48d2-bba9-948141f15bab" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:02 GMT" + "Fri, 29 Jan 2016 22:19:08 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -286,13 +286,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6def7a55-51bc-4af4-9961-16c1d7055d69" + "0ad77f27-c104-4289-aa04-e4eb0253f135" ], "accept-language": [ "en-US" @@ -304,7 +304,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk9024-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk9024\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -322,22 +322,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e10880c-8d23-4060-8c75-bb5d68b41590" + "16f87ff5-4212-4bc3-a502-27327a222260" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14920" ], "x-ms-correlation-request-id": [ - "5caf050f-14c3-4239-969a-71692a8ea6b8" + "37841c4e-29d6-4477-86b7-1567b950a747" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211507Z:5caf050f-14c3-4239-969a-71692a8ea6b8" + "WESTUS:20160129T221912Z:37841c4e-29d6-4477-86b7-1567b950a747" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:07 GMT" + "Fri, 29 Jan 2016 22:19:11 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -352,13 +352,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk7241?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzI0MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9902ef7-00f5-4e27-9739-90f27cf68ad3" + "870be863-fd3e-4774-972d-adf05a6338a2" ], "accept-language": [ "en-US" @@ -367,7 +367,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5636' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7241' under resource group 'onesdk9024' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -385,13 +385,13 @@ "gateway" ], "x-ms-request-id": [ - "f67e6609-9155-4b46-b415-fdbaa632b709" + "f5d5ba89-6ed9-4a8d-9d30-5717e8148a6e" ], "x-ms-correlation-request-id": [ - "f67e6609-9155-4b46-b415-fdbaa632b709" + "f5d5ba89-6ed9-4a8d-9d30-5717e8148a6e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211458Z:f67e6609-9155-4b46-b415-fdbaa632b709" + "WESTUS:20160129T221910Z:f5d5ba89-6ed9-4a8d-9d30-5717e8148a6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,16 +400,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:14:58 GMT" + "Fri, 29 Jan 2016 22:19:09 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk7241?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzI0MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -418,7 +418,7 @@ "1180" ], "x-ms-client-request-id": [ - "b7728216-4a55-436b-9c1a-5490d6556092" + "796e841f-c985-4f70-849a-2fef1096490a" ], "accept-language": [ "en-US" @@ -427,10 +427,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:00.2333704Z\",\r\n \"changedTime\": \"2016-01-26T21:15:00.2333704Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639853827918\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636\",\r\n \"name\": \"onesdk5636\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:19:08.708234Z\",\r\n \"changedTime\": \"2016-01-29T22:19:08.708234Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475009368560487\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk7241\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk7241\",\r\n \"name\": \"onesdk7241\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1356" + "1354" ], "Content-Type": [ "application/json; charset=utf-8" @@ -442,16 +442,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:1e565d4e-a5f8-40e8-a395-c57f873f443f" + "westus:36dc9607-85d7-443e-b226-419a39b62b4d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "ed48668b-5f8f-4250-b8ce-393f40872d3e" + "d25f6e16-6263-4202-b3d6-e5e901e97786" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211501Z:ed48668b-5f8f-4250-b8ce-393f40872d3e" + "WESTUS:20160129T221911Z:d25f6e16-6263-4202-b3d6-e5e901e97786" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -460,19 +460,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:00 GMT" + "Fri, 29 Jan 2016 22:19:10 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk7241?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzI0MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18387f42-344d-4e04-9d36-835256ad5ff9" + "1cc98604-1e7a-4873-8075-cbe14320b8a4" ], "accept-language": [ "en-US" @@ -493,16 +493,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:a814e410-f1ea-45d9-81ad-ddf02b88f181" + "westus:a502a5eb-f761-4ac7-a5fd-7f8f30490b95" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "a92a4429-d57e-41c8-a961-f30c802d38c4" + "9e703e45-2b5f-49c3-b161-ec42d95e92b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211503Z:a92a4429-d57e-41c8-a961-f30c802d38c4" + "WESTUS:20160129T221911Z:9e703e45-2b5f-49c3-b161-ec42d95e92b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,19 +511,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:02 GMT" + "Fri, 29 Jan 2016 22:19:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk7620?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzYyMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3db6cf01-8957-43f3-9b1a-a34340d6b12c" + "5199f36c-743b-4712-b776-b3a285a0c111" ], "accept-language": [ "en-US" @@ -532,7 +532,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1140' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7620' under resource group 'onesdk9024' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -550,13 +550,13 @@ "gateway" ], "x-ms-request-id": [ - "9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + "0e76843c-4279-43a3-8508-3ac184fff62a" ], "x-ms-correlation-request-id": [ - "9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + "0e76843c-4279-43a3-8508-3ac184fff62a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211503Z:9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + "WESTUS:20160129T221911Z:0e76843c-4279-43a3-8508-3ac184fff62a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,16 +565,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:02 GMT" + "Fri, 29 Jan 2016 22:19:10 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk7620?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzYyMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -583,7 +583,7 @@ "1180" ], "x-ms-client-request-id": [ - "97002d2f-06a2-4882-a597-2011b7edf0c4" + "38195421-e1f6-4627-9e55-827e74508589" ], "accept-language": [ "en-US" @@ -592,7 +592,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:05.8571989Z\",\r\n \"changedTime\": \"2016-01-26T21:15:05.8571989Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639797421848\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140\",\r\n \"name\": \"onesdk1140\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:19:10.9491001Z\",\r\n \"changedTime\": \"2016-01-29T22:19:10.9491001Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475009345641085\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk7620\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk7620\",\r\n \"name\": \"onesdk7620\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1356" @@ -607,16 +607,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:8a4176df-c485-45ee-b7b9-055a573ef639" + "westus:e58f2335-3308-4009-baaa-98495906a71a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "b4370182-cb05-438a-99bf-aeeb92a8fcda" + "4b962e4c-e2ee-4322-9fb1-6d3c7b4f38e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211506Z:b4370182-cb05-438a-99bf-aeeb92a8fcda" + "WESTUS:20160129T221913Z:4b962e4c-e2ee-4322-9fb1-6d3c7b4f38e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -625,19 +625,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:05 GMT" + "Fri, 29 Jan 2016 22:19:13 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk7620?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzYyMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f140919-5ef4-4d61-8250-990878ee80eb" + "79e61657-ede4-4235-86a2-fff27277783c" ], "accept-language": [ "en-US" @@ -658,16 +658,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:9e058706-591e-4e97-8d2a-a8827f8d8606" + "westus:c3624715-d0b7-417f-9680-5ac44c40e585" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "2883b745-a142-46a7-b015-6ec1572ca107" + "cdab1a43-4e97-4ef7-9314-2ff92dee27e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211507Z:2883b745-a142-46a7-b015-6ec1572ca107" + "WESTUS:20160129T221913Z:cdab1a43-4e97-4ef7-9314-2ff92dee27e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,19 +676,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:06 GMT" + "Fri, 29 Jan 2016 22:19:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk3578?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzU3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea0d87ed-2af4-4f55-a7cd-3e4ea2bd0fcb" + "ee97ea6e-9007-4184-8caf-318ac8dd5447" ], "accept-language": [ "en-US" @@ -697,7 +697,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4837' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk3578' under resource group 'onesdk9024' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -715,13 +715,13 @@ "gateway" ], "x-ms-request-id": [ - "3eabe340-7ad0-42f7-bea3-df7a59a0a311" + "dcf85eac-18e7-4b07-ada0-7f4440b614e3" ], "x-ms-correlation-request-id": [ - "3eabe340-7ad0-42f7-bea3-df7a59a0a311" + "dcf85eac-18e7-4b07-ada0-7f4440b614e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211508Z:3eabe340-7ad0-42f7-bea3-df7a59a0a311" + "WESTUS:20160129T221914Z:dcf85eac-18e7-4b07-ada0-7f4440b614e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -730,25 +730,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:07 GMT" + "Fri, 29 Jan 2016 22:19:14 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk3578?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzU3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1180" + "1179" ], "x-ms-client-request-id": [ - "c7b01318-c9c5-4f48-9c14-61dcd188a5c9" + "8c440189-e7a2-4a53-bdc5-55d40eb25f8d" ], "accept-language": [ "en-US" @@ -757,10 +757,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:08.9417158Z\",\r\n \"changedTime\": \"2016-01-26T21:15:08.9417158Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639767186944\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837\",\r\n \"name\": \"onesdk4837\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:19:13.0157938Z\",\r\n \"changedTime\": \"2016-01-29T22:19:13.0157938Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475009325169529\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk3578\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk3578\",\r\n \"name\": \"onesdk3578\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1356" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -772,16 +772,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:b7144ab8-4329-45c4-b760-128ea98479f3" + "westus:c706530a-45d1-4573-bc2c-4611cd362a10" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], "x-ms-correlation-request-id": [ - "b1e3fe38-66c4-4630-8f80-5064e2476d0e" + "313a16e9-cde1-4c85-a385-7aad89556541" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211509Z:b1e3fe38-66c4-4630-8f80-5064e2476d0e" + "WESTUS:20160129T221915Z:313a16e9-cde1-4c85-a385-7aad89556541" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -790,19 +790,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:08 GMT" + "Fri, 29 Jan 2016 22:19:15 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9024/providers/Microsoft.Logic/workflows/onesdk3578?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzU3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3423402-81f8-4b57-9b27-1716a56d0934" + "799e178a-4c28-4d78-81bd-d7b9e39c383e" ], "accept-language": [ "en-US" @@ -823,16 +823,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:b76a7a6e-6da3-4fa7-b8ea-6f1194c6844c" + "westus:c029ca49-6709-4dca-a4c6-68c10434ae9e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], "x-ms-correlation-request-id": [ - "f134e876-0f67-48b4-a7be-57598944579c" + "e56009db-25c5-41e9-a45a-5de8087b8143" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211510Z:f134e876-0f67-48b4-a7be-57598944579c" + "WESTUS:20160129T221915Z:e56009db-25c5-41e9-a45a-5de8087b8143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -841,7 +841,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:09 GMT" + "Fri, 29 Jan 2016 22:19:15 GMT" ] }, "StatusCode": 200 @@ -849,10 +849,10 @@ ], "Names": { "Test-CreateAndRemoveLogicApp": [ - "onesdk1706", - "onesdk5636", - "onesdk1140", - "onesdk4837" + "onesdk9024", + "onesdk7241", + "onesdk7620", + "onesdk3578" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json index 4782d4bca1ac..cfa07fb46cd2 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5856?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4NTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14902" ], "x-ms-request-id": [ - "60334d78-8e41-41df-92c8-dcefac361e00" + "88c2bc64-8345-4555-aa96-f88a3307c07d" ], "x-ms-correlation-request-id": [ - "60334d78-8e41-41df-92c8-dcefac361e00" + "88c2bc64-8345-4555-aa96-f88a3307c07d" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220927Z:60334d78-8e41-41df-92c8-dcefac361e00" + "CENTRALUS:20160129T221720Z:88c2bc64-8345-4555-aa96-f88a3307c07d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:26 GMT" + "Fri, 29 Jan 2016 22:17:19 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5856?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4NTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914\",\r\n \"name\": \"onesdk9914\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5856\",\r\n \"name\": \"onesdk5856\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -85,13 +85,13 @@ "1199" ], "x-ms-request-id": [ - "58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + "cf6cd9da-3737-46c2-bf71-b91dea5d0e3e" ], "x-ms-correlation-request-id": [ - "58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + "cf6cd9da-3737-46c2-bf71-b91dea5d0e3e" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220928Z:58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + "CENTRALUS:20160129T221721Z:cf6cd9da-3737-46c2-bf71-b91dea5d0e3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:27 GMT" + "Fri, 29 Jan 2016 22:17:21 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5856/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4NTYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14901" ], "x-ms-request-id": [ - "a79c8399-1d54-4317-9ea4-9d251bfe9854" + "e69c5578-9d7b-4d22-a6f8-b1dff58f9f86" ], "x-ms-correlation-request-id": [ - "a79c8399-1d54-4317-9ea4-9d251bfe9854" + "e69c5578-9d7b-4d22-a6f8-b1dff58f9f86" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220928Z:a79c8399-1d54-4317-9ea4-9d251bfe9854" + "CENTRALUS:20160129T221721Z:e69c5578-9d7b-4d22-a6f8-b1dff58f9f86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:27 GMT" + "Fri, 29 Jan 2016 22:17:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5856/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5a180d3-1dda-46f8-a21a-313337304d65" + "b8167b21-2cc8-49f9-bea6-122416414a75" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk9914-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk9914\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5856/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5856-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5856\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56f1f351-b967-4c6f-bb23-8473167a2ee5" + "c51589dc-a45c-4e20-b9f2-d86616153d0f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14968" ], "x-ms-correlation-request-id": [ - "a34708b7-e580-40a5-8214-01fed3002d4b" + "3520da3b-5863-4943-946c-870afbe43579" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220936Z:a34708b7-e580-40a5-8214-01fed3002d4b" + "CENTRALUS:20160129T221737Z:3520da3b-5863-4943-946c-870afbe43579" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:35 GMT" + "Fri, 29 Jan 2016 22:17:36 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5856/providers/Microsoft.Logic/workflows/onesdk8121?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODEyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7deae12e-6848-4dff-92f0-a1eacab7234c" + "ff90b1c2-fa4f-41d5-a325-fc19f741efb0" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5482' under resource group 'onesdk9914' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8121' under resource group 'onesdk5856' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "9e9f5baa-f867-43a8-a06d-288108dd4e8a" + "55553a79-50cd-4b5f-b5ef-e62d35535187" ], "x-ms-correlation-request-id": [ - "9e9f5baa-f867-43a8-a06d-288108dd4e8a" + "55553a79-50cd-4b5f-b5ef-e62d35535187" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220936Z:9e9f5baa-f867-43a8-a06d-288108dd4e8a" + "CENTRALUS:20160129T221737Z:55553a79-50cd-4b5f-b5ef-e62d35535187" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,16 +268,16 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:36 GMT" + "Fri, 29 Jan 2016 22:17:37 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5856/providers/Microsoft.Logic/workflows/onesdk8121?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODEyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5856/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -286,7 +286,7 @@ "1774" ], "x-ms-client-request-id": [ - "af71d9b1-466e-4c00-98e2-7bd65c806bdc" + "037e4dd0-4abe-404f-9ed2-b837cf2e0527" ], "accept-language": [ "en-US" @@ -295,7 +295,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-27T22:09:37.7063652Z\",\r\n \"changedTime\": \"2016-01-27T22:09:37.7063652Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587476743079470122\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482\",\r\n \"name\": \"onesdk5482\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:17:38.9820644Z\",\r\n \"changedTime\": \"2016-01-29T22:17:38.9820644Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475010265834542\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5856/providers/Microsoft.Logic/workflows/onesdk8121\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5856/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5856/providers/Microsoft.Logic/workflows/onesdk8121\",\r\n \"name\": \"onesdk8121\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -310,16 +310,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:693a1897-3bc8-4ef9-983c-5a8e983b8968" + "westus:67aa7e04-34ef-4d63-bdac-5b2d7e58c0f0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "dda2da40-e0b9-4a22-9234-2c06c0b2e3ae" + "c1a0979d-3688-45d9-a10e-26ed86b10aa3" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220938Z:dda2da40-e0b9-4a22-9234-2c06c0b2e3ae" + "CENTRALUS:20160129T221740Z:c1a0979d-3688-45d9-a10e-26ed86b10aa3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -328,19 +328,19 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:38 GMT" + "Fri, 29 Jan 2016 22:17:39 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5856/providers/Microsoft.Logic/workflows/onesdk8121?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODEyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f087576-bf78-498b-9631-dd63385c830a" + "39e4d636-2d60-403e-b854-f6f841c2daba" ], "accept-language": [ "en-US" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:eedb201a-c379-44f2-9a79-a42bfbfc3ad5" + "westus:bbd271ce-6474-4f20-8753-23feb9945213" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "8cb77f05-4e40-4a27-a7fd-2cccd03f481a" + "40c14fdb-4bdd-4c33-a09b-da4d37834254" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220939Z:8cb77f05-4e40-4a27-a7fd-2cccd03f481a" + "CENTRALUS:20160129T221741Z:40c14fdb-4bdd-4c33-a09b-da4d37834254" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:38 GMT" + "Fri, 29 Jan 2016 22:17:40 GMT" ] }, "StatusCode": 200 @@ -387,8 +387,8 @@ ], "Names": { "Test-CreateLogicAppUsingDefinitionWithTriggers": [ - "onesdk9914", - "onesdk5482" + "onesdk5856", + "onesdk8121" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json index 2a0c64abcc4c..08c93549516f 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1728?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3Mjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14958" ], "x-ms-request-id": [ - "578eee75-b028-4268-a1d7-4e288b6c63c2" + "841c8d8c-15e3-488b-93fa-a7e9b700abd7" ], "x-ms-correlation-request-id": [ - "578eee75-b028-4268-a1d7-4e288b6c63c2" + "841c8d8c-15e3-488b-93fa-a7e9b700abd7" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211111Z:578eee75-b028-4268-a1d7-4e288b6c63c2" + "WESTUS:20160129T222016Z:841c8d8c-15e3-488b-93fa-a7e9b700abd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:10 GMT" + "Fri, 29 Jan 2016 22:20:16 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1728?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3Mjg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986\",\r\n \"name\": \"onesdk6986\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1728\",\r\n \"name\": \"onesdk1728\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-request-id": [ - "b3a0f57e-201c-4d78-836e-661f4db2f748" + "68b91c0e-2a48-45ee-bd97-0713d63339fb" ], "x-ms-correlation-request-id": [ - "b3a0f57e-201c-4d78-836e-661f4db2f748" + "68b91c0e-2a48-45ee-bd97-0713d63339fb" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211112Z:b3a0f57e-201c-4d78-836e-661f4db2f748" + "WESTUS:20160129T222017Z:68b91c0e-2a48-45ee-bd97-0713d63339fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:11 GMT" + "Fri, 29 Jan 2016 22:20:16 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1728/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MjgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14957" ], "x-ms-request-id": [ - "0b7718cf-6924-4a06-8034-505785262a9d" + "dacca8fa-f84d-4991-a6ea-85cc55e31d75" ], "x-ms-correlation-request-id": [ - "0b7718cf-6924-4a06-8034-505785262a9d" + "dacca8fa-f84d-4991-a6ea-85cc55e31d75" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211112Z:0b7718cf-6924-4a06-8034-505785262a9d" + "WESTUS:20160129T222017Z:dacca8fa-f84d-4991-a6ea-85cc55e31d75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:11 GMT" + "Fri, 29 Jan 2016 22:20:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1728/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59d80a0e-f819-493f-a006-f1a4c812bcb5" + "e8e31df1-a428-40ec-9237-8601f8f17417" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk6986-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk6986\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1728/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1728-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1728\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7722aefa-b79b-461b-a7b4-dd358e107837" + "71602ba7-166b-48c8-844d-52cf8fff47ff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14933" ], "x-ms-correlation-request-id": [ - "e52cc1f6-cf5d-4b26-a810-a284f99591d7" + "6125b943-68f3-42f4-9f0b-1d068ea7ee20" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211122Z:e52cc1f6-cf5d-4b26-a810-a284f99591d7" + "WESTUS:20160129T222030Z:6125b943-68f3-42f4-9f0b-1d068ea7ee20" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:21 GMT" + "Fri, 29 Jan 2016 22:20:29 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1728/providers/Microsoft.Logic/workflows/onesdk3567?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzU2Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37012d8b-2dc7-4b5c-816e-2b426cfe79de" + "c4e64546-1238-4088-921a-43b0ef056e94" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9396' under resource group 'onesdk6986' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk3567' under resource group 'onesdk1728' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "868acf2c-258d-4442-b20b-1b33d42b9129" + "e35c25c2-227c-4b1b-b064-5ef62ceeea2b" ], "x-ms-correlation-request-id": [ - "868acf2c-258d-4442-b20b-1b33d42b9129" + "e35c25c2-227c-4b1b-b064-5ef62ceeea2b" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211122Z:868acf2c-258d-4442-b20b-1b33d42b9129" + "WESTUS:20160129T222030Z:e35c25c2-227c-4b1b-b064-5ef62ceeea2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,25 +268,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:21 GMT" + "Fri, 29 Jan 2016 22:20:29 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1728/providers/Microsoft.Logic/workflows/onesdk3567?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzU2Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1728/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://www.bing.com\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1180" + "1172" ], "x-ms-client-request-id": [ - "08bd30b5-2234-4f0e-8c0f-b6102cfb79d1" + "73a056e6-a05c-4d02-aafe-554f634f2832" ], "accept-language": [ "en-US" @@ -295,10 +295,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:11:23.856472Z\",\r\n \"changedTime\": \"2016-01-26T21:11:23.856472Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477642018102635\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396\",\r\n \"name\": \"onesdk9396\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:20:32.4973472Z\",\r\n \"changedTime\": \"2016-01-29T22:20:32.4973472Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475008531646505\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1728/providers/Microsoft.Logic/workflows/onesdk3567\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1728/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://www.bing.com\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1728/providers/Microsoft.Logic/workflows/onesdk3567\",\r\n \"name\": \"onesdk3567\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1354" + "1348" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,16 +310,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:dabccf17-c572-49d0-ab71-ab2fa0521577" + "westus:e0f6b624-4933-4ac3-8f20-0e5678eb142b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "5940a00f-cc09-4061-92a8-3d251d92901c" + "81d9dde4-f645-426c-be7a-5a70efc1c82a" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211124Z:5940a00f-cc09-4061-92a8-3d251d92901c" + "WESTUS:20160129T222032Z:81d9dde4-f645-426c-be7a-5a70efc1c82a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -328,19 +328,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:23 GMT" + "Fri, 29 Jan 2016 22:20:31 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1728/providers/Microsoft.Logic/workflows/onesdk3567?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzU2Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25123977-87b3-44b9-b3d2-3f1342a09589" + "172f9f3f-f08f-484c-a4b2-0347d45c6b0b" ], "accept-language": [ "en-US" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:6d90c5b7-079b-4a37-8efd-5f0f39961ad2" + "westus:b20bcb11-b79e-4715-b900-693ec54cbab0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "306460fb-fdb6-46e1-9cdc-f52dbfedae80" + "5c5e1e61-df6c-467f-a6ae-8d7f37d28ff9" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211124Z:306460fb-fdb6-46e1-9cdc-f52dbfedae80" + "WESTUS:20160129T222033Z:5c5e1e61-df6c-467f-a6ae-8d7f37d28ff9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:24 GMT" + "Fri, 29 Jan 2016 22:20:32 GMT" ] }, "StatusCode": 200 @@ -387,8 +387,8 @@ ], "Names": { "Test-CreateLogicAppUsingInputParameterAsHashTable": [ - "onesdk6986", - "onesdk9396" + "onesdk1728", + "onesdk3567" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json index 4a52a6f1c2af..06c0cd2dff0c 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9495?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk0OTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "14979" ], "x-ms-request-id": [ - "cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + "6cba9c2c-70f3-42fe-b248-454e7ba647a4" ], "x-ms-correlation-request-id": [ - "cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + "6cba9c2c-70f3-42fe-b248-454e7ba647a4" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211212Z:cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + "WESTUS:20160129T221642Z:6cba9c2c-70f3-42fe-b248-454e7ba647a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:12 GMT" + "Fri, 29 Jan 2016 22:16:41 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9495?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk0OTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193\",\r\n \"name\": \"onesdk5193\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495\",\r\n \"name\": \"onesdk9495\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-request-id": [ - "b8050936-589b-46c3-8e37-580b7b37a966" + "ae47d160-f054-4ea0-ade1-6e5cc4946ae3" ], "x-ms-correlation-request-id": [ - "b8050936-589b-46c3-8e37-580b7b37a966" + "ae47d160-f054-4ea0-ade1-6e5cc4946ae3" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211213Z:b8050936-589b-46c3-8e37-580b7b37a966" + "WESTUS:20160129T221642Z:ae47d160-f054-4ea0-ade1-6e5cc4946ae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:13 GMT" + "Fri, 29 Jan 2016 22:16:42 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk0OTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "14978" ], "x-ms-request-id": [ - "033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + "816d1c8c-31ed-463d-a009-a8da34663cb9" ], "x-ms-correlation-request-id": [ - "033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + "816d1c8c-31ed-463d-a009-a8da34663cb9" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211213Z:033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + "WESTUS:20160129T221642Z:816d1c8c-31ed-463d-a009-a8da34663cb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:13 GMT" + "Fri, 29 Jan 2016 22:16:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk0OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6d208fb-156e-4f5e-8886-2280c35ad636" + "6e4d67d9-2a63-4e76-8c4c-c1548ecde360" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5193-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5193\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk9495-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk9495\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1aabb6c6-1d60-4b66-97ff-5f099f24117b" + "de43b540-eb0c-47ea-b3ae-f3c8f5c6b154" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14965" ], "x-ms-correlation-request-id": [ - "0e677399-ea73-4b8a-84ad-4c2bd4e9a898" + "00ff7887-d498-41f1-8188-26af4b8aaa75" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211221Z:0e677399-ea73-4b8a-84ad-4c2bd4e9a898" + "WESTUS:20160129T221650Z:00ff7887-d498-41f1-8188-26af4b8aaa75" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:20 GMT" + "Fri, 29 Jan 2016 22:16:49 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk0OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "964cf085-5d3f-4484-a7fe-6a89b40c50d2" + "2be239e5-7cee-49d1-90ad-b101b9aed45a" ], "accept-language": [ "en-US" @@ -238,7 +238,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5193-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5193\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk9495-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk9495\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -256,22 +256,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c89720b0-9bb9-42de-8d48-f45c697fe7de" + "a1364c86-f5f5-47a8-b93e-b0730b518dbc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14964" ], "x-ms-correlation-request-id": [ - "f6a9f01d-2033-4a35-abbc-6765a0983389" + "c93c336b-0065-4dd7-8285-85605d5cfc69" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211226Z:f6a9f01d-2033-4a35-abbc-6765a0983389" + "WESTUS:20160129T221653Z:c93c336b-0065-4dd7-8285-85605d5cfc69" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:26 GMT" + "Fri, 29 Jan 2016 22:16:52 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -286,13 +286,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Logic/workflows/onesdk5752?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk0OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTc1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9709a607-30fc-49a7-a003-2bfa92250572" + "25665e2e-6fb5-487e-beab-1fc2dbdf0621" ], "accept-language": [ "en-US" @@ -301,7 +301,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7978' under resource group 'onesdk5193' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5752' under resource group 'onesdk9495' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -319,13 +319,13 @@ "gateway" ], "x-ms-request-id": [ - "83368a65-d09b-4bf9-afe5-6848713adf80" + "54e4a79c-8b3f-43bf-8c1b-16e4e52d4761" ], "x-ms-correlation-request-id": [ - "83368a65-d09b-4bf9-afe5-6848713adf80" + "54e4a79c-8b3f-43bf-8c1b-16e4e52d4761" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211221Z:83368a65-d09b-4bf9-afe5-6848713adf80" + "WESTUS:20160129T221651Z:54e4a79c-8b3f-43bf-8c1b-16e4e52d4761" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,16 +334,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:21 GMT" + "Fri, 29 Jan 2016 22:16:51 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Logic/workflows/onesdk5752?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk0OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTc1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -352,7 +352,7 @@ "1180" ], "x-ms-client-request-id": [ - "d61567ae-162a-44bd-b0e1-48c78189329c" + "1f19d732-169e-4d22-b0d2-bb78c65022a7" ], "accept-language": [ "en-US" @@ -361,7 +361,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:12:23.6049277Z\",\r\n \"changedTime\": \"2016-01-26T21:12:23.6049277Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477641421258515\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978\",\r\n \"name\": \"onesdk7978\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:16:52.4999396Z\",\r\n \"changedTime\": \"2016-01-29T22:16:52.4999396Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475010730915790\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9495/providers/Microsoft.Logic/workflows/onesdk5752\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Logic/workflows/onesdk5752\",\r\n \"name\": \"onesdk5752\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1356" @@ -376,16 +376,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:e7f52e8e-0140-4693-9592-5bfd516b5046" + "westus:f43df64a-50ea-48d7-b8fe-db1dd733553b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-correlation-request-id": [ - "33fe3663-d605-48d4-8c5d-71e4aaa55b77" + "427dfb46-713f-4fd8-a1ea-e98965b42c3f" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211226Z:33fe3663-d605-48d4-8c5d-71e4aaa55b77" + "WESTUS:20160129T221654Z:427dfb46-713f-4fd8-a1ea-e98965b42c3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,19 +394,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:25 GMT" + "Fri, 29 Jan 2016 22:16:53 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDkxP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Logic/workflows/onesdk7186?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk0OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzE4Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6dd28ec0-ac64-4d77-91a2-934ab00a8e65" + "2b6b2c96-e09d-4d7a-9945-2c4e0d91cc01" ], "accept-language": [ "en-US" @@ -415,10 +415,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk491' under resource group 'onesdk5193' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7186' under resource group 'onesdk9495' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "149" + "150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -433,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + "3f61acd2-7a5e-434b-bbc7-0144c1fdb32b" ], "x-ms-correlation-request-id": [ - "ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + "3f61acd2-7a5e-434b-bbc7-0144c1fdb32b" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211226Z:ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + "WESTUS:20160129T221654Z:3f61acd2-7a5e-434b-bbc7-0144c1fdb32b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +448,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:25 GMT" + "Fri, 29 Jan 2016 22:16:54 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDkxP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Logic/workflows/onesdk7186?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk0OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzE4Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -466,7 +466,7 @@ "1180" ], "x-ms-client-request-id": [ - "d4ee37d8-d9ec-4ea9-83db-e9e74588cd80" + "28699b7e-a991-4375-9cc0-0458388c5ed6" ], "accept-language": [ "en-US" @@ -475,10 +475,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:12:28.1172752Z\",\r\n \"changedTime\": \"2016-01-26T21:12:28.1172752Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477641375491474\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491\",\r\n \"name\": \"onesdk491\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:16:55.3149852Z\",\r\n \"changedTime\": \"2016-01-29T22:16:55.3149852Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475010702421005\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9495/providers/Microsoft.Logic/workflows/onesdk7186\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Logic/workflows/onesdk7186\",\r\n \"name\": \"onesdk7186\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1353" + "1356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -490,16 +490,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:d5bc4b12-126c-43e8-a535-ff36449e93d3" + "westus:4d78da5c-afe6-4298-9de4-d1e0ec78bd26" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-correlation-request-id": [ - "afab3bd6-55bf-4ad7-80bd-5a0da1974e71" + "9e132fde-67ef-4ef9-ab0a-df2f15a3e889" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211228Z:afab3bd6-55bf-4ad7-80bd-5a0da1974e71" + "WESTUS:20160129T221656Z:9e132fde-67ef-4ef9-ab0a-df2f15a3e889" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,19 +508,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:27 GMT" + "Fri, 29 Jan 2016 22:16:56 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9495/providers/Microsoft.Logic/workflows/onesdk5752?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk0OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTc1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e8d8f36-f890-4551-9377-ae68c46b9377" + "77cd3cf7-b840-46c4-b0c1-afc73df775bd" ], "accept-language": [ "en-US" @@ -541,16 +541,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:6159b48c-d906-452a-991f-e826c56b76c7" + "westus:6d0ecf5f-dd57-4ed0-99a6-9c6e28c0877c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-correlation-request-id": [ - "a2e6985e-aedf-4109-9e5c-527bb8b05c17" + "dc8c7762-d2ff-4795-a6ae-014b54ba71aa" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211229Z:a2e6985e-aedf-4109-9e5c-527bb8b05c17" + "WESTUS:20160129T221657Z:dc8c7762-d2ff-4795-a6ae-014b54ba71aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -559,7 +559,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:28 GMT" + "Fri, 29 Jan 2016 22:16:57 GMT" ] }, "StatusCode": 200 @@ -567,9 +567,9 @@ ], "Names": { "Test-CreateLogicAppUsingInputfromWorkflowObject": [ - "onesdk5193", - "onesdk7978", - "onesdk491" + "onesdk9495", + "onesdk5752", + "onesdk7186" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json index ff8d581e1061..236dcb1aa4e6 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2480?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI0ODA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "101" + "102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14950" ], "x-ms-request-id": [ - "c83c209d-880c-420e-a6ee-9e4f56763eed" + "4c87bf3e-a5c4-439a-8279-e5e61a60b069" ], "x-ms-correlation-request-id": [ - "c83c209d-880c-420e-a6ee-9e4f56763eed" + "4c87bf3e-a5c4-439a-8279-e5e61a60b069" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211555Z:c83c209d-880c-420e-a6ee-9e4f56763eed" + "WESTUS:20160129T221939Z:4c87bf3e-a5c4-439a-8279-e5e61a60b069" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:55 GMT" + "Fri, 29 Jan 2016 22:19:38 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2480?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI0ODA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,10 +67,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390\",\r\n \"name\": \"onesdk390\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480\",\r\n \"name\": \"onesdk2480\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "171" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "88264c1b-a46c-43dc-b8c2-4e27801710d0" + "9bc00ec8-d411-40c2-a0c2-fbf90b428720" ], "x-ms-correlation-request-id": [ - "88264c1b-a46c-43dc-b8c2-4e27801710d0" + "9bc00ec8-d411-40c2-a0c2-fbf90b428720" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211557Z:88264c1b-a46c-43dc-b8c2-4e27801710d0" + "WESTUS:20160129T221940Z:9bc00ec8-d411-40c2-a0c2-fbf90b428720" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:57 GMT" + "Fri, 29 Jan 2016 22:19:39 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI0ODAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14949" ], "x-ms-request-id": [ - "e39af8d4-02bb-44a7-bf88-7fd33543fac0" + "8b7d1991-eb56-4d92-b9ec-001d6f45e401" ], "x-ms-correlation-request-id": [ - "e39af8d4-02bb-44a7-bf88-7fd33543fac0" + "8b7d1991-eb56-4d92-b9ec-001d6f45e401" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211557Z:e39af8d4-02bb-44a7-bf88-7fd33543fac0" + "WESTUS:20160129T221940Z:8b7d1991-eb56-4d92-b9ec-001d6f45e401" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:57 GMT" + "Fri, 29 Jan 2016 22:19:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9TdGFuZGFyZFNlcnZpY2VQbGFuP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI0ODAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6073bec7-97bd-4a88-9ea5-2613e16e0d47" + "74ce34c9-29c1-47e3-8807-c77f9b3e4d5a" ], "accept-language": [ "en-US" @@ -172,10 +172,10 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk390-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk390\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2480-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2480\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "948" + "951" ], "Content-Type": [ "application/json" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e506ad9-2c20-4918-a88e-2a0128acdeed" + "98b6bdd3-25eb-4f10-b5d8-73fed629f100" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14937" ], "x-ms-correlation-request-id": [ - "e15423f1-1c89-4e75-b2cd-8c369ecd4c56" + "835373c3-bfb9-41bd-ad83-7d2e8c2be5c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211616Z:e15423f1-1c89-4e75-b2cd-8c369ecd4c56" + "WESTUS:20160129T221946Z:835373c3-bfb9-41bd-ad83-7d2e8c2be5c6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:15 GMT" + "Fri, 29 Jan 2016 22:19:45 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9TdGFuZGFyZFNlcnZpY2VQbGFuP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI0ODAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5b6314-5da0-4591-b9a0-5a71a6c195dc" + "192e354f-95d7-4301-847c-31899dc20ccd" ], "accept-language": [ "en-US" @@ -238,10 +238,10 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk390-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk390\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2480-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2480\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "948" + "951" ], "Content-Type": [ "application/json" @@ -256,22 +256,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec062842-2423-4969-8c27-dc78c5460f7d" + "fa14574f-c532-4c96-b363-d9f1108d0b1a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14936" ], "x-ms-correlation-request-id": [ - "1712e32b-2221-4b02-8b57-c99df91aeb87" + "2b5265aa-c1f0-4099-939c-9fcb70a63d59" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211620Z:1712e32b-2221-4b02-8b57-c99df91aeb87" + "WESTUS:20160129T221947Z:2b5265aa-c1f0-4099-939c-9fcb70a63d59" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:20 GMT" + "Fri, 29 Jan 2016 22:19:47 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -286,13 +286,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Logic/workflows/onesdk104?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI0ODAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTA0P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2834ab00-ce85-4530-954e-2474601b5868" + "c0ddede1-b5d6-4a92-be77-b23c88513d1a" ], "accept-language": [ "en-US" @@ -301,7 +301,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9059' under resource group 'onesdk390' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk104' under resource group 'onesdk2480' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "149" @@ -319,13 +319,13 @@ "gateway" ], "x-ms-request-id": [ - "48988617-71ab-4822-9bcd-20fbf8317218" + "80b4583e-e888-415f-8c9b-2176c8cb52bf" ], "x-ms-correlation-request-id": [ - "48988617-71ab-4822-9bcd-20fbf8317218" + "80b4583e-e888-415f-8c9b-2176c8cb52bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211617Z:48988617-71ab-4822-9bcd-20fbf8317218" + "WESTUS:20160129T221946Z:80b4583e-e888-415f-8c9b-2176c8cb52bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,19 +334,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:16 GMT" + "Fri, 29 Jan 2016 22:19:46 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Logic/workflows/onesdk104?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI0ODAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTA0P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1eb5117-8675-4c49-a37a-e6f0e2571543" + "69275226-8ce1-45e1-9de5-17af02df8a3c" ], "accept-language": [ "en-US" @@ -355,10 +355,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"changedTime\": \"2016-01-26T21:16:19.7351357Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639059226776\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"name\": \"onesdk9059\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:19:47.4170547Z\",\r\n \"changedTime\": \"2016-01-29T22:19:47.4177421Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475008981454888\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2480/providers/Microsoft.Logic/workflows/onesdk104\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Logic/workflows/onesdk104\",\r\n \"name\": \"onesdk104\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1353" + "1352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -373,16 +373,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:711ff212-b530-46e9-bef1-c67072dd1893" + "westus:c358f077-9cd5-49e7-8ff3-15ed335545eb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" + "14965" ], "x-ms-correlation-request-id": [ - "fb7ef0f5-6212-4c27-b20a-d9ddad1ef169" + "386a2b74-de36-4a05-ae10-f03ddc2c3f07" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211621Z:fb7ef0f5-6212-4c27-b20a-d9ddad1ef169" + "WESTUS:20160129T221948Z:386a2b74-de36-4a05-ae10-f03ddc2c3f07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -391,16 +391,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:20 GMT" + "Fri, 29 Jan 2016 22:19:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Logic/workflows/onesdk104?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI0ODAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTA0P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -409,7 +409,7 @@ "1179" ], "x-ms-client-request-id": [ - "e8c65b41-2cad-4865-b493-7fd40904c23d" + "f7297369-0270-4dd2-a460-1fc16b89992d" ], "accept-language": [ "en-US" @@ -418,10 +418,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"changedTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639059226776\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"name\": \"onesdk9059\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:19:47.4170547Z\",\r\n \"changedTime\": \"2016-01-29T22:19:47.4170547Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475008981454888\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2480/providers/Microsoft.Logic/workflows/onesdk104\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Logic/workflows/onesdk104\",\r\n \"name\": \"onesdk104\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1353" + "1352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -433,16 +433,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:ebd022ae-f261-485b-bf92-e8be9f932833" + "westus:59a60360-33fe-462b-8793-a06d3e16cf39" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "c0cbfa85-b42e-4aa4-999d-68b50d088bcc" + "c25b06c0-575f-43a7-9a52-daed29016a65" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211620Z:c0cbfa85-b42e-4aa4-999d-68b50d088bcc" + "WESTUS:20160129T221947Z:c25b06c0-575f-43a7-9a52-daed29016a65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -451,19 +451,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:20 GMT" + "Fri, 29 Jan 2016 22:19:47 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2480/providers/Microsoft.Logic/workflows/onesdk104?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI0ODAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTA0P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cab4a7da-c45a-41a6-a06a-566c45a3c635" + "4c6c434b-c36f-4cb3-a774-d4112aebe9e4" ], "accept-language": [ "en-US" @@ -484,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:1301b7a3-d44b-4b81-8371-0730854f6496" + "westus:9df50e1d-7896-40da-8a7b-0224563bb70d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "69576ba0-208f-4a0b-80de-ddbc4e20cc72" + "6ef9acd5-265a-4ec8-b828-1c46c3ceb68d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211622Z:69576ba0-208f-4a0b-80de-ddbc4e20cc72" + "WESTUS:20160129T221948Z:6ef9acd5-265a-4ec8-b828-1c46c3ceb68d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,7 +502,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:22 GMT" + "Fri, 29 Jan 2016 22:19:48 GMT" ] }, "StatusCode": 200 @@ -510,8 +510,8 @@ ], "Names": { "Test-CreateLogicAppWithDuplicateName": [ - "onesdk390", - "onesdk9059" + "onesdk2480", + "onesdk104" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json index 32e1d858cd88..bccbe8c9ed60 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7840?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1222?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +13,10 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "0" + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -21,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" + "14977" ], "x-ms-request-id": [ - "7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + "339c1fd7-2288-4d2c-83ec-3f9ab52b1768" ], "x-ms-correlation-request-id": [ - "7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + "339c1fd7-2288-4d2c-83ec-3f9ab52b1768" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T210912Z:7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + "CENTRALUS:20160129T221835Z:339c1fd7-2288-4d2c-83ec-3f9ab52b1768" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -40,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:09:12 GMT" + "Fri, 29 Jan 2016 22:18:35 GMT" ] }, - "StatusCode": 204 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7840?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1222?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazEyMjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -61,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840\",\r\n \"name\": \"onesdk7840\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1222\",\r\n \"name\": \"onesdk1222\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -76,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "83be6208-ceda-43d1-ae0b-da973174d031" + "039a9dbd-e523-44ba-a242-ea98c49fca1d" ], "x-ms-correlation-request-id": [ - "83be6208-ceda-43d1-ae0b-da973174d031" + "039a9dbd-e523-44ba-a242-ea98c49fca1d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T210913Z:83be6208-ceda-43d1-ae0b-da973174d031" + "CENTRALUS:20160129T221836Z:039a9dbd-e523-44ba-a242-ea98c49fca1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:09:13 GMT" + "Fri, 29 Jan 2016 22:18:36 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4NDAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1222/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazEyMjIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -109,10 +115,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/providers/Microsoft.Logic/workflows/onesdk6678\",\r\n \"name\": \"onesdk6678\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "220" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -124,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" + "14976" ], "x-ms-request-id": [ - "79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + "3b953eab-ff92-4bd3-8e6b-4eb56670a2bc" ], "x-ms-correlation-request-id": [ - "79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + "3b953eab-ff92-4bd3-8e6b-4eb56670a2bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T210913Z:79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + "CENTRALUS:20160129T221836Z:3b953eab-ff92-4bd3-8e6b-4eb56670a2bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -142,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:09:13 GMT" + "Fri, 29 Jan 2016 22:18:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/providers/Microsoft.Web/serverfarms/B9F87338CAE4470F9116F3D685365748?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvQjlGODczMzhDQUU0NDcwRjkxMTZGM0Q2ODUzNjU3NDg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1222/providers/Microsoft.Web/serverfarms/B9F87338CAE4470F9116F3D685365748?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazEyMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvQjlGODczMzhDQUU0NDcwRjkxMTZGM0Q2ODUzNjU3NDg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4dfa667-d294-4809-b024-399852592049" + "f4a6b7f0-9b13-48de-8a84-d716bd1f9445" ], "accept-language": [ "en-US" @@ -166,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/serverFarms/B9F87338CAE4470F9116F3D685365748' under resource group 'onesdk7840' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/serverFarms/B9F87338CAE4470F9116F3D685365748' under resource group 'onesdk1222' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "172" @@ -184,13 +190,13 @@ "gateway" ], "x-ms-request-id": [ - "defdda90-6e0c-4d89-a182-fa385d4dc58f" + "ef835c00-600b-4b7f-a22f-581f085eef9d" ], "x-ms-correlation-request-id": [ - "defdda90-6e0c-4d89-a182-fa385d4dc58f" + "ef835c00-600b-4b7f-a22f-581f085eef9d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T210914Z:defdda90-6e0c-4d89-a182-fa385d4dc58f" + "CENTRALUS:20160129T221837Z:ef835c00-600b-4b7f-a22f-581f085eef9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,7 +205,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:09:13 GMT" + "Fri, 29 Jan 2016 22:18:36 GMT" ] }, "StatusCode": 404 @@ -207,8 +213,8 @@ ], "Names": { "Test-CreateLogicAppWithNonExistingAppServicePlan": [ - "onesdk7840", - "onesdk3648" + "onesdk1222", + "onesdk7916" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json index 6453d46253fb..949c1f03339b 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3945?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7419?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc0MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "14980" ], "x-ms-request-id": [ - "cc157b83-8ddc-420d-b47e-9a994cafe76c" + "c247bcc6-5b91-4a43-b883-8d7fdeca6abc" ], "x-ms-correlation-request-id": [ - "cc157b83-8ddc-420d-b47e-9a994cafe76c" + "c247bcc6-5b91-4a43-b883-8d7fdeca6abc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T210959Z:cc157b83-8ddc-420d-b47e-9a994cafe76c" + "CENTRALUS:20160129T221804Z:c247bcc6-5b91-4a43-b883-8d7fdeca6abc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:09:58 GMT" + "Fri, 29 Jan 2016 22:18:03 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3945?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7419?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc0MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945\",\r\n \"name\": \"onesdk3945\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7419\",\r\n \"name\": \"onesdk7419\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "93004c09-d787-4470-a1fd-4e8b4e2bcd90" + "c3bb443c-9155-4148-9966-ffc3f5e29268" ], "x-ms-correlation-request-id": [ - "93004c09-d787-4470-a1fd-4e8b4e2bcd90" + "c3bb443c-9155-4148-9966-ffc3f5e29268" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211001Z:93004c09-d787-4470-a1fd-4e8b4e2bcd90" + "CENTRALUS:20160129T221805Z:c3bb443c-9155-4148-9966-ffc3f5e29268" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:10:00 GMT" + "Fri, 29 Jan 2016 22:18:04 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NDUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7419/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc0MTkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "14979" ], "x-ms-request-id": [ - "9ca74747-5dfb-4a4e-af39-022f445491d8" + "f04103dd-2488-43f1-9f97-28f5c2acf125" ], "x-ms-correlation-request-id": [ - "9ca74747-5dfb-4a4e-af39-022f445491d8" + "f04103dd-2488-43f1-9f97-28f5c2acf125" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211001Z:9ca74747-5dfb-4a4e-af39-022f445491d8" + "CENTRALUS:20160129T221805Z:f04103dd-2488-43f1-9f97-28f5c2acf125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:10:00 GMT" + "Fri, 29 Jan 2016 22:18:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945/providers/Microsoft.Logic/workflows/09e81ac4-848a-428d-82a6-7d61953e3940?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvMDllODFhYzQtODQ4YS00MjhkLTgyYTYtN2Q2MTk1M2UzOTQwP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7419/providers/Microsoft.Logic/workflows/09e81ac4-848a-428d-82a6-7d61953e3940?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvMDllODFhYzQtODQ4YS00MjhkLTgyYTYtN2Q2MTk1M2UzOTQwP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c14d7fc-243a-4695-8182-71cb73dada38" + "3031f64d-9f7f-4040-a325-170af29db9b7" ], "accept-language": [ "en-US" @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" + "34350dd2-6980-46f3-a9d6-5ac4e08e9300" ], "x-ms-correlation-request-id": [ - "64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" + "34350dd2-6980-46f3-a9d6-5ac4e08e9300" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211001Z:64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" + "CENTRALUS:20160129T221806Z:34350dd2-6980-46f3-a9d6-5ac4e08e9300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,7 +196,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:10:01 GMT" + "Fri, 29 Jan 2016 22:18:06 GMT" ] }, "StatusCode": 204 @@ -204,7 +204,7 @@ ], "Names": { "Test-RemoveNonExistingLogicApp": [ - "onesdk3945" + "onesdk7419" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json index 57b9347447c7..5ba8a05fe8cd 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2543?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1NDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14949" ], "x-ms-request-id": [ - "63cb408e-8509-45e2-89d1-f87d20986a6a" + "8bc74203-d099-4345-89e2-03d5fa4b3e23" ], "x-ms-correlation-request-id": [ - "63cb408e-8509-45e2-89d1-f87d20986a6a" + "8bc74203-d099-4345-89e2-03d5fa4b3e23" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211707Z:63cb408e-8509-45e2-89d1-f87d20986a6a" + "WESTUS:20160129T221555Z:8bc74203-d099-4345-89e2-03d5fa4b3e23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:06 GMT" + "Fri, 29 Jan 2016 22:15:54 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2543?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1NDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523\",\r\n \"name\": \"onesdk8523\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543\",\r\n \"name\": \"onesdk2543\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "155504be-b562-4e24-8949-1f2cb2fda8df" + "f54eb31f-56d3-4be6-bc8f-f57f8833f879" ], "x-ms-correlation-request-id": [ - "155504be-b562-4e24-8949-1f2cb2fda8df" + "f54eb31f-56d3-4be6-bc8f-f57f8833f879" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211708Z:155504be-b562-4e24-8949-1f2cb2fda8df" + "WESTUS:20160129T221556Z:f54eb31f-56d3-4be6-bc8f-f57f8833f879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:07 GMT" + "Fri, 29 Jan 2016 22:15:55 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14948" ], "x-ms-request-id": [ - "68f52c40-c063-4c86-b25e-a58191ecc93b" + "ff56e366-f7c4-4522-94d0-8811c184a85c" ], "x-ms-correlation-request-id": [ - "68f52c40-c063-4c86-b25e-a58191ecc93b" + "ff56e366-f7c4-4522-94d0-8811c184a85c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211708Z:68f52c40-c063-4c86-b25e-a58191ecc93b" + "WESTUS:20160129T221556Z:ff56e366-f7c4-4522-94d0-8811c184a85c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:07 GMT" + "Fri, 29 Jan 2016 22:15:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "606fbf1e-a359-4115-a8b3-6b65ae04f008" + "98b070da-73d9-448d-a4c9-5d92a42802a2" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk8523-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk8523\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2543-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2543\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43d513b7-4fbd-4539-9de0-4c2801fcd5f4" + "033c2de1-66a6-4ae8-a134-9ee842a0978a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14917" ], "x-ms-correlation-request-id": [ - "1d82f763-159e-479e-8b92-e2208a6f19a6" + "1ed5e292-3302-471b-b91b-51c0e0bbf99a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211716Z:1d82f763-159e-479e-8b92-e2208a6f19a6" + "WESTUS:20160129T221611Z:1ed5e292-3302-471b-b91b-51c0e0bbf99a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:16 GMT" + "Fri, 29 Jan 2016 22:16:11 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjcyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9919dec1-c406-49f6-b094-fde2979616ca" + "4f03c4c6-4b97-4d44-81c9-11a3f06106a8" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7924' under resource group 'onesdk8523' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6721' under resource group 'onesdk2543' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "6a560abc-2acf-4a20-93b6-b39df09ace69" + "7ff4a87e-84f0-475e-bcda-09059c8ca10b" ], "x-ms-correlation-request-id": [ - "6a560abc-2acf-4a20-93b6-b39df09ace69" + "7ff4a87e-84f0-475e-bcda-09059c8ca10b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211716Z:6a560abc-2acf-4a20-93b6-b39df09ace69" + "WESTUS:20160129T221612Z:7ff4a87e-84f0-475e-bcda-09059c8ca10b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,19 +268,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:16 GMT" + "Fri, 29 Jan 2016 22:16:11 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjcyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0d80d4b-2bf8-462d-b160-f5b63aef8950" + "68945717-4a8f-4cd6-90f3-8cd0b73831e5" ], "accept-language": [ "en-US" @@ -289,7 +289,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:19.785631Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638459058822\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:16:13.8324068Z\",\r\n \"changedTime\": \"2016-01-29T22:16:13.8327754Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475011116918888\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"name\": \"onesdk6721\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -307,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:42a9d0ba-88ae-4bc7-9a24-69cb2fa0f9a1" + "westus:c4d93952-b2c6-4e11-930f-298e38c9d02e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14973" ], "x-ms-correlation-request-id": [ - "c1fe7538-a766-458f-886a-cd8d22380c27" + "3e6242de-5114-45bf-86b8-2ff9be4e606d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211720Z:c1fe7538-a766-458f-886a-cd8d22380c27" + "WESTUS:20160129T221614Z:3e6242de-5114-45bf-86b8-2ff9be4e606d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,19 +325,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:20 GMT" + "Fri, 29 Jan 2016 22:16:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjcyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7509cbd-f463-476e-ac22-4980e5c38aef" + "4e282d4c-d499-4b53-82ed-8245d713c4a1" ], "accept-language": [ "en-US" @@ -346,10 +346,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:20.9319665Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587477638445865613\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:16:13.8324068Z\",\r\n \"changedTime\": \"2016-01-29T22:16:15.1004614Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587475011104127425\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"name\": \"onesdk6721\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1577" + "1576" ], "Content-Type": [ "application/json; charset=utf-8" @@ -364,16 +364,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:31cfdcc1-b6ea-41ee-81d6-c555b2ab3dc9" + "westus:44a48bfd-814a-4075-bf7c-2e674e5c8a02" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14972" ], "x-ms-correlation-request-id": [ - "fb5d9c8c-3fce-4a1e-9e17-5d119ea939ca" + "0bd62be2-1429-4d0f-a219-97a2b5d9b462" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211721Z:fb5d9c8c-3fce-4a1e-9e17-5d119ea939ca" + "WESTUS:20160129T221615Z:0bd62be2-1429-4d0f-a219-97a2b5d9b462" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,19 +382,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:20 GMT" + "Fri, 29 Jan 2016 22:16:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjcyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb0983af-7088-44f1-b74b-8e357373237b" + "b32770c7-953b-49c8-8f7b-77d755eb09a0" ], "accept-language": [ "en-US" @@ -403,7 +403,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:22.959016Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638425705705\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:16:13.8324068Z\",\r\n \"changedTime\": \"2016-01-29T22:16:16.8592647Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475011086629102\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"name\": \"onesdk6721\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -421,16 +421,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:dcca9529-ce41-4ce4-acfa-593ce170b1e5" + "westus:fe4e15df-5838-47c5-a77f-492b0c69b2a0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14971" ], "x-ms-correlation-request-id": [ - "f70fcaed-2a6d-4f32-b285-60d3eeb72f68" + "2cf9fbc0-a6ce-4359-9430-6e3dbacdd2bb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211723Z:f70fcaed-2a6d-4f32-b285-60d3eeb72f68" + "WESTUS:20160129T221617Z:2cf9fbc0-a6ce-4359-9430-6e3dbacdd2bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,19 +439,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:22 GMT" + "Fri, 29 Jan 2016 22:16:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjcyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3046264f-3231-4693-a2e1-7d99054256d1" + "39724f93-fb98-43e5-a515-2427670dc869" ], "accept-language": [ "en-US" @@ -460,10 +460,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:23.5983276Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638419204380\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:16:13.8324068Z\",\r\n \"changedTime\": \"2016-01-29T22:16:17.5459997Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475011079737843\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"name\": \"onesdk6721\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1356" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -478,16 +478,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4346b67b-0d8f-4860-87a0-77e2dc6c3bfe" + "westus:f7e5b517-bec0-4fc5-91c6-8fee48fb74cb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14970" ], "x-ms-correlation-request-id": [ - "68d17e24-1810-4500-8001-4d51a9f9e586" + "a0e598f9-6555-4ec0-906e-00ce62baeb60" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211724Z:68d17e24-1810-4500-8001-4d51a9f9e586" + "WESTUS:20160129T221617Z:a0e598f9-6555-4ec0-906e-00ce62baeb60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,25 +496,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:23 GMT" + "Fri, 29 Jan 2016 22:16:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjcyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1180" + "1179" ], "x-ms-client-request-id": [ - "c446bf2a-7dcc-4d2f-8527-fa922d15d1f4" + "6e664631-7cc0-42f7-9c87-75d4fc63d018" ], "accept-language": [ "en-US" @@ -523,10 +523,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638459058822\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:16:13.8324068Z\",\r\n \"changedTime\": \"2016-01-29T22:16:13.8324068Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475011116918888\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"name\": \"onesdk6721\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1356" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -538,16 +538,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:2bde5b52-fa3a-4a0e-8659-a656450cef18" + "westus:2e1cac57-e1da-40df-86b5-b512a4b0d857" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "62f82466-ddb8-4f3d-a4b4-9649fecdcb48" + "2d83d357-780c-4cf0-822b-0f70f1303fb3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211720Z:62f82466-ddb8-4f3d-a4b4-9649fecdcb48" + "WESTUS:20160129T221614Z:2d83d357-780c-4cf0-822b-0f70f1303fb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,25 +556,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:19 GMT" + "Fri, 29 Jan 2016 22:16:14 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjcyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1775" + "1774" ], "x-ms-client-request-id": [ - "e7a75eaa-1661-4213-a876-36fdf7cdf9ba" + "7faafb60-6afe-4158-85fd-84d2ae006e49" ], "accept-language": [ "en-US" @@ -583,10 +583,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:20.9316415Z\",\r\n \"changedTime\": \"2016-01-26T21:17:20.9319665Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587477638445865613\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:16:15.0997216Z\",\r\n \"changedTime\": \"2016-01-29T22:16:15.1004614Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587475011104127425\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"name\": \"onesdk6721\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1577" + "1576" ], "Content-Type": [ "application/json; charset=utf-8" @@ -601,16 +601,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:27f3c1c6-167b-446f-bd61-a838173d4731" + "westus:4b33ec3e-5397-48ab-b3c7-2b83825e5794" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "ec1c83bb-287b-4cb1-9955-65199646016e" + "45f942bb-9949-471c-9204-8962a86a827b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211721Z:ec1c83bb-287b-4cb1-9955-65199646016e" + "WESTUS:20160129T221615Z:45f942bb-9949-471c-9204-8962a86a827b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -619,25 +619,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:20 GMT" + "Fri, 29 Jan 2016 22:16:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjcyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1180" + "1179" ], "x-ms-client-request-id": [ - "74046e6f-30e7-4f2d-b5b0-27d43a7de13c" + "f625102a-8109-47ea-9584-fc1532d71d37" ], "accept-language": [ "en-US" @@ -646,7 +646,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:22.9585441Z\",\r\n \"changedTime\": \"2016-01-26T21:17:22.959016Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638425705705\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:16:16.8589691Z\",\r\n \"changedTime\": \"2016-01-29T22:16:16.8592647Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475011086629102\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"name\": \"onesdk6721\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -664,16 +664,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:cbc90fb0-3fde-4014-88f9-6635c28c8bda" + "westus:4c760f26-5fdd-44e4-8924-aeedd3650d4e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "107188a5-9f93-48c6-b887-5ca21061fa7d" + "3b0994fb-b7a0-499c-bbf7-5398f409c56a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211723Z:107188a5-9f93-48c6-b887-5ca21061fa7d" + "WESTUS:20160129T221617Z:3b0994fb-b7a0-499c-bbf7-5398f409c56a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -682,25 +682,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:22 GMT" + "Fri, 29 Jan 2016 22:16:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjcyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1180" + "1179" ], "x-ms-client-request-id": [ - "bce1cb54-8032-446f-a24b-d9f7bca91500" + "0a321723-5041-4ee7-baf0-6f22b0d3118f" ], "accept-language": [ "en-US" @@ -709,10 +709,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:23.5980425Z\",\r\n \"changedTime\": \"2016-01-26T21:17:23.5983276Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638419204380\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:16:17.5454265Z\",\r\n \"changedTime\": \"2016-01-29T22:16:17.5459997Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475011079737843\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/onesdk6721\",\r\n \"name\": \"onesdk6721\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1356" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -727,16 +727,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:16da85b2-3b0b-4ad4-b415-f1bf82495b61" + "westus:a4a3871d-6913-4049-909b-0fa289d05613" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-correlation-request-id": [ - "49bc3a75-06cf-4cb5-ae8a-a80ad81b6727" + "2498c6c8-c5d5-4d2a-8af0-f853cc77c995" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211724Z:49bc3a75-06cf-4cb5-ae8a-a80ad81b6727" + "WESTUS:20160129T221617Z:2498c6c8-c5d5-4d2a-8af0-f853cc77c995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -745,19 +745,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:23 GMT" + "Fri, 29 Jan 2016 22:16:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvODJEMkQ4NDItQzMxMi00NDVDLThBNEQtRTNFRTk1NDI0MzZEP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2543/providers/Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvODJEMkQ4NDItQzMxMi00NDVDLThBNEQtRTNFRTk1NDI0MzZEP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80fe3a19-d7c5-48b6-b619-dab1e3e5700b" + "9b486259-2abd-4713-a8e4-43d8a0327f17" ], "accept-language": [ "en-US" @@ -766,7 +766,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D' under resource group 'onesdk8523' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D' under resource group 'onesdk2543' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "176" @@ -784,13 +784,13 @@ "gateway" ], "x-ms-request-id": [ - "1cf89781-ee44-45e3-ad45-47d29a88f393" + "3926b713-fe3f-4b90-8db7-ee479c70d348" ], "x-ms-correlation-request-id": [ - "1cf89781-ee44-45e3-ad45-47d29a88f393" + "3926b713-fe3f-4b90-8db7-ee479c70d348" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211724Z:1cf89781-ee44-45e3-ad45-47d29a88f393" + "WESTUS:20160129T221617Z:3926b713-fe3f-4b90-8db7-ee479c70d348" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -799,7 +799,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:23 GMT" + "Fri, 29 Jan 2016 22:16:17 GMT" ] }, "StatusCode": 404 @@ -807,8 +807,8 @@ ], "Names": { "Test-UpdateLogicApp": [ - "onesdk8523", - "onesdk7924" + "onesdk2543", + "onesdk6721" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json index 69d35ed048ca..7256504f9c8e 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzNzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7383?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazczODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14968" ], "x-ms-request-id": [ - "0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + "8b2eb4db-6481-419a-9adf-3564da995947" ], "x-ms-correlation-request-id": [ - "0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + "8b2eb4db-6481-419a-9adf-3564da995947" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211833Z:0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + "WESTUS:20160129T222233Z:8b2eb4db-6481-419a-9adf-3564da995947" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:33 GMT" + "Fri, 29 Jan 2016 22:22:32 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzNzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7383?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazczODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370\",\r\n \"name\": \"onesdk3370\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383\",\r\n \"name\": \"onesdk7383\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1194" ], "x-ms-request-id": [ - "847501f9-774f-4955-af78-d3009069a080" + "bc0290ab-6f19-49b2-8601-248fd93a901a" ], "x-ms-correlation-request-id": [ - "847501f9-774f-4955-af78-d3009069a080" + "bc0290ab-6f19-49b2-8601-248fd93a901a" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211833Z:847501f9-774f-4955-af78-d3009069a080" + "WESTUS:20160129T222233Z:bc0290ab-6f19-49b2-8601-248fd93a901a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:33 GMT" + "Fri, 29 Jan 2016 22:22:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazczODMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14967" ], "x-ms-request-id": [ - "643441de-56ba-4daa-9585-7a00bfa1966c" + "2fe64337-addc-408f-be2c-22c0e458f650" ], "x-ms-correlation-request-id": [ - "643441de-56ba-4daa-9585-7a00bfa1966c" + "2fe64337-addc-408f-be2c-22c0e458f650" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211833Z:643441de-56ba-4daa-9585-7a00bfa1966c" + "WESTUS:20160129T222233Z:2fe64337-addc-408f-be2c-22c0e458f650" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:33 GMT" + "Fri, 29 Jan 2016 22:22:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazczODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9d8505f-f309-4e21-be39-0a8eada098a0" + "4e87c122-fcfb-4095-92e8-cfea9e32c7be" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3370-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3370\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk7383-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk7383\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33e976c8-1ec5-4834-8348-cef824833241" + "de2d98a9-52f9-43ba-8b02-31fe2f299270" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14912" ], "x-ms-correlation-request-id": [ - "1dd0e2cd-781e-4b30-8790-925ade20ad81" + "b88ff123-b287-4d1c-b16f-a9019d952ddb" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211841Z:1dd0e2cd-781e-4b30-8790-925ade20ad81" + "WESTUS:20160129T222240Z:b88ff123-b287-4d1c-b16f-a9019d952ddb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:40 GMT" + "Fri, 29 Jan 2016 22:22:40 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Logic/workflows/onesdk4652?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazczODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDY1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96ca2a81-b26a-4e8a-be85-f84fbd6347c6" + "9c3997e6-cbf0-43e3-8f20-f25274b3d1bc" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1799' under resource group 'onesdk3370' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4652' under resource group 'onesdk7383' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "b731fd32-2064-4792-8041-dc35fbaf6a45" + "dd64aae2-b249-40c9-a544-1e77ee30cc16" ], "x-ms-correlation-request-id": [ - "b731fd32-2064-4792-8041-dc35fbaf6a45" + "dd64aae2-b249-40c9-a544-1e77ee30cc16" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211841Z:b731fd32-2064-4792-8041-dc35fbaf6a45" + "WESTUS:20160129T222241Z:dd64aae2-b249-40c9-a544-1e77ee30cc16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,16 +268,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:41 GMT" + "Fri, 29 Jan 2016 22:22:41 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Logic/workflows/onesdk4652?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazczODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDY1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -286,7 +286,7 @@ "1774" ], "x-ms-client-request-id": [ - "2a90e9f2-32af-414a-9bc3-271acdde47ba" + "da2e950f-781d-4011-9c7a-0850243ff6b5" ], "accept-language": [ "en-US" @@ -295,7 +295,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637619829098\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799\",\r\n \"name\": \"onesdk1799\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:22:41.8335464Z\",\r\n \"changedTime\": \"2016-01-29T22:22:41.8335464Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475007237796771\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7383/providers/Microsoft.Logic/workflows/onesdk4652\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Logic/workflows/onesdk4652\",\r\n \"name\": \"onesdk4652\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -310,16 +310,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:6ce1f0f7-1751-42b0-a996-8f5c456ca23d" + "westus:b296aeb8-c999-4b76-8b21-945ee275994f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "146625f1-56ac-4788-8300-75567288fd52" + "e1a648ff-283b-49f3-98bc-c6b56237c694" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211844Z:146625f1-56ac-4788-8300-75567288fd52" + "WESTUS:20160129T222242Z:e1a648ff-283b-49f3-98bc-c6b56237c694" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -328,19 +328,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:43 GMT" + "Fri, 29 Jan 2016 22:22:42 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OS90cmlnZ2Vycy8/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Logic/workflows/onesdk4652/triggers/?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazczODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDY1Mi90cmlnZ2Vycy8/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30f8354c-722b-43ce-a651-2af8a7273ee5" + "fcaee6fb-8cd1-47be-905b-f80b9d10d0c2" ], "accept-language": [ "en-US" @@ -349,7 +349,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6105006Z\",\r\n \"state\": \"Enabled\",\r\n \"workflow\": {\r\n \"name\": \"onesdk1799/08587477637619829098\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/versions/08587477637619829098\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"createdTime\": \"2016-01-29T22:22:41.8335464Z\",\r\n \"changedTime\": \"2016-01-29T22:22:41.8342765Z\",\r\n \"state\": \"Enabled\",\r\n \"workflow\": {\r\n \"name\": \"onesdk4652/08587475007237796771\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Logic/workflows/onesdk4652/versions/08587475007237796771\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Logic/workflows/onesdk4652/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "645" @@ -367,16 +367,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:1cb51f7e-537b-4ec6-93b1-b543db4826a6" + "westus:2ea9f579-81b2-46a3-9291-070c7ef45a92" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14921" ], "x-ms-correlation-request-id": [ - "a249e649-5f00-4a20-a24d-7222e6edef36" + "07115d95-7e24-4b65-8eb4-787f6bdf0f6c" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211844Z:a249e649-5f00-4a20-a24d-7222e6edef36" + "WESTUS:20160129T222242Z:07115d95-7e24-4b65-8eb4-787f6bdf0f6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,19 +385,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:44 GMT" + "Fri, 29 Jan 2016 22:22:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OS90cmlnZ2Vycy9odHRwVHJpZ2dlcj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Logic/workflows/onesdk4652/triggers/httpTrigger?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazczODMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDY1Mi90cmlnZ2Vycy9odHRwVHJpZ2dlcj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a027c85b-517e-4c38-b99e-c79f192deac4" + "5597fc6c-dcab-4219-a00c-7eafd27cae4a" ], "accept-language": [ "en-US" @@ -406,7 +406,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6105006Z\",\r\n \"state\": \"Enabled\",\r\n \"workflow\": {\r\n \"name\": \"onesdk1799/08587477637619829098\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/versions/08587477637619829098\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"createdTime\": \"2016-01-29T22:22:41.8335464Z\",\r\n \"changedTime\": \"2016-01-29T22:22:41.8342765Z\",\r\n \"state\": \"Enabled\",\r\n \"workflow\": {\r\n \"name\": \"onesdk4652/08587475007237796771\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Logic/workflows/onesdk4652/versions/08587475007237796771\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7383/providers/Microsoft.Logic/workflows/onesdk4652/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n}", "ResponseHeaders": { "Content-Length": [ "633" @@ -424,16 +424,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:5a94e423-110c-4882-9df3-fecb3327ae72" + "westus:47b94ec9-fa49-43de-9ffe-5f7879e0e999" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14920" ], "x-ms-correlation-request-id": [ - "a54ac5e3-5b6a-4922-8fa7-bf51cafdc089" + "19d659c2-0d22-40a8-bc73-d21d38eef0da" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211844Z:a54ac5e3-5b6a-4922-8fa7-bf51cafdc089" + "WESTUS:20160129T222242Z:19d659c2-0d22-40a8-bc73-d21d38eef0da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,7 +442,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:44 GMT" + "Fri, 29 Jan 2016 22:22:42 GMT" ] }, "StatusCode": 200 @@ -450,8 +450,8 @@ ], "Names": { "Test-GetAzureLogicAppTrigger": [ - "onesdk3370", - "onesdk1799" + "onesdk7383", + "onesdk4652" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json index 107fa895b0ed..98b34f9efcd7 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1136?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazExMzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14963" ], "x-ms-request-id": [ - "11b68509-10ea-4482-830a-5b8760f96213" + "17f48365-690a-4a98-9ae8-29daf51cb1f3" ], "x-ms-correlation-request-id": [ - "11b68509-10ea-4482-830a-5b8760f96213" + "17f48365-690a-4a98-9ae8-29daf51cb1f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T212105Z:11b68509-10ea-4482-830a-5b8760f96213" + "WESTUS:20160129T222306Z:17f48365-690a-4a98-9ae8-29daf51cb1f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:05 GMT" + "Fri, 29 Jan 2016 22:23:05 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1136?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazExMzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247\",\r\n \"name\": \"onesdk2247\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136\",\r\n \"name\": \"onesdk1136\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "ba6131f4-f415-40d8-979b-bbaacfbb7e23" + "130d7394-29c3-40e4-b733-3027305da55d" ], "x-ms-correlation-request-id": [ - "ba6131f4-f415-40d8-979b-bbaacfbb7e23" + "130d7394-29c3-40e4-b733-3027305da55d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T212107Z:ba6131f4-f415-40d8-979b-bbaacfbb7e23" + "WESTUS:20160129T222307Z:130d7394-29c3-40e4-b733-3027305da55d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:07 GMT" + "Fri, 29 Jan 2016 22:23:07 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14962" ], "x-ms-request-id": [ - "72dcf158-033a-43b8-9ff4-44a5368268c8" + "e20c3495-432b-4dd3-8fe1-df6bf8162133" ], "x-ms-correlation-request-id": [ - "72dcf158-033a-43b8-9ff4-44a5368268c8" + "e20c3495-432b-4dd3-8fe1-df6bf8162133" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T212107Z:72dcf158-033a-43b8-9ff4-44a5368268c8" + "WESTUS:20160129T222307Z:e20c3495-432b-4dd3-8fe1-df6bf8162133" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:07 GMT" + "Fri, 29 Jan 2016 22:23:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bb7bd9d-2f2a-4188-a7e8-3eac8dc3fcea" + "97c95337-b01d-45cb-97fc-2b603c343998" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2247-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2247\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1136-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1136\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "921756d0-6324-4439-a168-64d42f32512b" + "1a896d8b-a9f4-4db3-8599-4e5a87360817" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14923" ], "x-ms-correlation-request-id": [ - "8f11a804-1222-4322-8568-e14986203537" + "7712a727-6557-4413-9a33-d89967ef1f0f" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212140Z:8f11a804-1222-4322-8568-e14986203537" + "WESTUS:20160129T222314Z:7712a727-6557-4413-9a33-d89967ef1f0f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:39 GMT" + "Fri, 29 Jan 2016 22:23:13 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI5MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad6de3c7-69f1-4a25-b41f-b957f67b4a06" + "25bc462d-528f-4283-86e6-5c04ab65f835" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk2597' under resource group 'onesdk2247' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk2291' under resource group 'onesdk1136' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "1e3a2b8d-f396-49b1-8e11-007047a828b5" + "e527c38a-c7c3-4c53-899d-41a1cdf60431" ], "x-ms-correlation-request-id": [ - "1e3a2b8d-f396-49b1-8e11-007047a828b5" + "e527c38a-c7c3-4c53-899d-41a1cdf60431" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212140Z:1e3a2b8d-f396-49b1-8e11-007047a828b5" + "WESTUS:20160129T222316Z:e527c38a-c7c3-4c53-899d-41a1cdf60431" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,19 +268,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:39 GMT" + "Fri, 29 Jan 2016 22:23:16 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI5MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf7fd87f-4bcd-4a7c-8a0d-acc4792375c1" + "df55c753-0800-45df-b6a3-23994b20cae1" ], "accept-language": [ "en-US" @@ -289,7 +289,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:23:15.3997178Z\",\r\n \"changedTime\": \"2016-01-29T22:23:15.4005194Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475006901452942\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"name\": \"onesdk2291\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -307,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:841e0715-6013-404f-be37-93e894d65b2b" + "westus:03d1a28a-9434-4404-af69-4695efa25877" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" + "14955" ], "x-ms-correlation-request-id": [ - "76694372-6dcd-4327-84d6-e8d03533aa80" + "ba6e0c76-7733-461c-ba7e-a68476f9dc85" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212145Z:76694372-6dcd-4327-84d6-e8d03533aa80" + "WESTUS:20160129T222319Z:ba6e0c76-7733-461c-ba7e-a68476f9dc85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,19 +325,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:44 GMT" + "Fri, 29 Jan 2016 22:23:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI5MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ea432c9-0d14-4374-9320-cca47ee04113" + "e200c77d-c833-4ea6-9d8c-5c6c206ee3ac" ], "accept-language": [ "en-US" @@ -346,7 +346,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:23:15.3997178Z\",\r\n \"changedTime\": \"2016-01-29T22:23:15.4005194Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475006901452942\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"name\": \"onesdk2291\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -364,16 +364,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4bcc9099-3935-4f37-b406-649fd56f5fae" + "westus:7a1e2203-eeec-44e4-b237-2dc1721cdfdf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" + "14954" ], "x-ms-correlation-request-id": [ - "fdfafa93-b41f-411f-9fd6-45343d1b7135" + "1943ffc0-46be-4bc6-b85d-0fb664d37af5" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212147Z:fdfafa93-b41f-411f-9fd6-45343d1b7135" + "WESTUS:20160129T222321Z:1943ffc0-46be-4bc6-b85d-0fb664d37af5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,19 +382,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:47 GMT" + "Fri, 29 Jan 2016 22:23:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI5MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26991134-ae62-4838-bd44-48715b6cf3e8" + "03dd560f-df8a-4901-a2bb-96a7cbb6d8bc" ], "accept-language": [ "en-US" @@ -403,7 +403,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:23:15.3997178Z\",\r\n \"changedTime\": \"2016-01-29T22:23:15.4005194Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475006901452942\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"name\": \"onesdk2291\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -421,16 +421,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:9373f978-54e1-47cb-8220-457788e8183c" + "westus:3aa462eb-ca21-4519-b1a0-aa40520a5b9d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14888" + "14953" ], "x-ms-correlation-request-id": [ - "f1c598bc-d77c-414c-b954-1295b29f2b3e" + "bd6e9a1e-de28-45ae-ae0c-d92d9aea3153" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212149Z:f1c598bc-d77c-414c-b954-1295b29f2b3e" + "WESTUS:20160129T222323Z:bd6e9a1e-de28-45ae-ae0c-d92d9aea3153" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,19 +439,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:49 GMT" + "Fri, 29 Jan 2016 22:23:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI5MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c5aaca5-cd55-48d4-8d99-d23043a51c98" + "b7c9fe4c-302f-488e-9c12-3b07361aaa79" ], "accept-language": [ "en-US" @@ -460,7 +460,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:23:15.3997178Z\",\r\n \"changedTime\": \"2016-01-29T22:23:15.4005194Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475006901452942\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"name\": \"onesdk2291\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -478,16 +478,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4464b4e7-5e89-4482-87d3-640f5b26a80e" + "westus:349184ef-3f59-425f-ac5e-8c1dcb51e626" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" + "14952" ], "x-ms-correlation-request-id": [ - "96710e36-2600-4d2b-9fcc-7d528e9413ff" + "4e2d1796-201f-46d8-b4b5-e0f45745c5fa" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212151Z:96710e36-2600-4d2b-9fcc-7d528e9413ff" + "WESTUS:20160129T222325Z:4e2d1796-201f-46d8-b4b5-e0f45745c5fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,19 +496,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:51 GMT" + "Fri, 29 Jan 2016 22:23:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI5MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "728c4729-ae01-4c5d-bbbf-b72e9cffbf0c" + "470eeb7f-37ca-414c-8f25-d0a8c7ceba90" ], "accept-language": [ "en-US" @@ -517,7 +517,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:23:15.3997178Z\",\r\n \"changedTime\": \"2016-01-29T22:23:15.4005194Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475006901452942\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"name\": \"onesdk2291\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -535,16 +535,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:8c896338-aa82-44cb-9b05-260f63bd7512" + "westus:8c88ae87-ec8a-4e32-ab11-0f0e33cc4bb1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14951" ], "x-ms-correlation-request-id": [ - "42fddc4b-d41e-4741-b8d3-7afdf89a1c97" + "48b7c1b2-0199-4388-8f9f-e48ec9209f60" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212153Z:42fddc4b-d41e-4741-b8d3-7afdf89a1c97" + "WESTUS:20160129T222328Z:48b7c1b2-0199-4388-8f9f-e48ec9209f60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,19 +553,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:53 GMT" + "Fri, 29 Jan 2016 22:23:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI5MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa7f7f45-e11b-44ef-ae08-6d0342056df1" + "e29c4bec-c0e7-406d-b776-a3a862eea154" ], "accept-language": [ "en-US" @@ -574,7 +574,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:23:15.3997178Z\",\r\n \"changedTime\": \"2016-01-29T22:23:15.4005194Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475006901452942\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"name\": \"onesdk2291\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -592,16 +592,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4210dff4-0cda-48b5-9c94-2788f937ef4d" + "westus:812c2461-df45-4eee-9960-93e635ea4af5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14950" ], "x-ms-correlation-request-id": [ - "70b28220-d82d-4721-892b-def6034daa0b" + "e7c70b1d-a455-4af1-98e4-6598f53fed66" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212155Z:70b28220-d82d-4721-892b-def6034daa0b" + "WESTUS:20160129T222330Z:e7c70b1d-a455-4af1-98e4-6598f53fed66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -610,16 +610,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:55 GMT" + "Fri, 29 Jan 2016 22:23:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI5MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -628,7 +628,7 @@ "1774" ], "x-ms-client-request-id": [ - "fe4c0e13-6823-49f7-9490-4ccaf73aff64" + "7777a8bf-2eda-4fe6-9a4a-415f5109d25c" ], "accept-language": [ "en-US" @@ -637,7 +637,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:23:15.3997178Z\",\r\n \"changedTime\": \"2016-01-29T22:23:15.3997178Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475006901452942\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291\",\r\n \"name\": \"onesdk2291\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -652,16 +652,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:975b423f-d49b-43b3-af39-64174181f67a" + "westus:d53a4c5f-8e72-4ea7-b1ac-36ff18ebe1da" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-correlation-request-id": [ - "99fb6a60-2329-4386-aa24-8356460a6962" + "a5751e8a-9404-4237-ab31-7088f7db3d3b" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212143Z:99fb6a60-2329-4386-aa24-8356460a6962" + "WESTUS:20160129T222317Z:a5751e8a-9404-4237-ab31-7088f7db3d3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,19 +670,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:42 GMT" + "Fri, 29 Jan 2016 22:23:17 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI5MS90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aca42615-a20c-460e-8925-227ff855303b" + "7ccbcfd9-3308-4621-8322-4433d9f7fc5b" ], "accept-language": [ "en-US" @@ -703,16 +703,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:4dba551c-3e0c-44e1-93d0-0309ccf09cd5" + "westus:fa85c357-a460-48e6-bd15-4dff5a0b9097" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-correlation-request-id": [ - "0db2dd9b-049f-42fe-bb4e-9095a9f34bec" + "9062f712-a71e-41cb-9ca0-4e33c4cd778f" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212155Z:0db2dd9b-049f-42fe-bb4e-9095a9f34bec" + "WESTUS:20160129T222330Z:9062f712-a71e-41cb-9ca0-4e33c4cd778f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -721,19 +721,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:55 GMT" + "Fri, 29 Jan 2016 22:23:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI5MS90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "634c8044-fa08-4638-ae84-85a59d2e115c" + "dfc743fb-a448-4aba-b546-18a87bbaf073" ], "accept-language": [ "en-US" @@ -742,10 +742,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:21:43.8623245Z\",\r\n \"endTime\": \"2016-01-26T21:21:44.7821975Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"29a915aa-1fe2-4cb9-b862-d690fb694730\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/3C16F_820c9e847d324a5c88ffcc09f4715634_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=YOI8IztH78hlz71DhwKluYSIAwVsCQs790zS35484iA%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0980630\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/483BC_33ede65090cb4bfe800536ab08564561_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=pzI%2BcZ8sjUBOWsgOV7GaohOBVuWA8TcjPRHhTdHYpww%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0982D42\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"PpRbpxaSjpygkbUqLreOMw==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477635816147911\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/runs/08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911\",\r\n \"name\": \"08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:23:16.4256481Z\",\r\n \"endTime\": \"2016-01-29T22:23:17.2538095Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"3c82d6cc-c215-4916-893f-99454e6825f6\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu06by01.blob.core.windows.net/flowe5d13be57f1442069aef088f54300c0a20160129t000000zcontent/31EB2_bff8914bff1d417190f8331d0d7ecace_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=EABAv2G%2FiJgRc0QN4G97gXtJ8HEGPLH50Db%2Fnbp7O00%3D&se=2016-01-30T02%3A23%3A28Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FAC8E4052A\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu06by01.blob.core.windows.net/flowe5d13be57f1442069aef088f54300c0a20160129t000000zcontent/465BD_0143390094f34c839cbeec61bd2dd65a_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=LN5lQmilxdHEO4YbJ4YmDn%2FjJKlpFKuGJBZ%2B3OernJY%3D&se=2016-01-30T02%3A23%3A28Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FAC8EA9671\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"ejumRv+f0ccgMiQsBfjYDQ==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587475006890505562\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291/runs/08587475006890505562\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291/triggers/httpTrigger/histories/08587475006890505562\",\r\n \"name\": \"08587475006890505562\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1575" + "1581" ], "Content-Type": [ "application/json; charset=utf-8" @@ -760,16 +760,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:ccfe891b-e9df-4214-a9ae-7cf4b243ba4c" + "westus:92c7edcb-a211-45cf-8f85-6c95b26d58e7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14949" ], "x-ms-correlation-request-id": [ - "5913a89e-3259-4c1e-93ab-fe24e4953f77" + "04de1400-0978-4112-94ce-ad7c14a052b0" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212155Z:5913a89e-3259-4c1e-93ab-fe24e4953f77" + "WESTUS:20160129T222330Z:04de1400-0978-4112-94ce-ad7c14a052b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,19 +778,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:55 GMT" + "Fri, 29 Jan 2016 22:23:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXMvMDg1ODc0Nzc2MzU4MTYxNDc5MTE/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291/triggers/httpTrigger/histories/08587475006890505562?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExMzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjI5MS90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXMvMDg1ODc0NzUwMDY4OTA1MDU1NjI/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4141ea85-4d8d-4d56-bd02-c0c4f6ec1c2c" + "96bc5c10-16d1-484d-a383-ad1286d2a343" ], "accept-language": [ "en-US" @@ -799,10 +799,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:21:43.8623245Z\",\r\n \"endTime\": \"2016-01-26T21:21:44.7821975Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"29a915aa-1fe2-4cb9-b862-d690fb694730\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/3C16F_820c9e847d324a5c88ffcc09f4715634_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=YOI8IztH78hlz71DhwKluYSIAwVsCQs790zS35484iA%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0980630\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/483BC_33ede65090cb4bfe800536ab08564561_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=pzI%2BcZ8sjUBOWsgOV7GaohOBVuWA8TcjPRHhTdHYpww%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0982D42\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"PpRbpxaSjpygkbUqLreOMw==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477635816147911\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/runs/08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911\",\r\n \"name\": \"08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:23:16.4256481Z\",\r\n \"endTime\": \"2016-01-29T22:23:17.2538095Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"3c82d6cc-c215-4916-893f-99454e6825f6\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu06by01.blob.core.windows.net/flowe5d13be57f1442069aef088f54300c0a20160129t000000zcontent/31EB2_bff8914bff1d417190f8331d0d7ecace_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=EABAv2G%2FiJgRc0QN4G97gXtJ8HEGPLH50Db%2Fnbp7O00%3D&se=2016-01-30T02%3A23%3A28Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FAC8E4052A\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu06by01.blob.core.windows.net/flowe5d13be57f1442069aef088f54300c0a20160129t000000zcontent/465BD_0143390094f34c839cbeec61bd2dd65a_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=LN5lQmilxdHEO4YbJ4YmDn%2FjJKlpFKuGJBZ%2B3OernJY%3D&se=2016-01-30T02%3A23%3A28Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FAC8EA9671\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"ejumRv+f0ccgMiQsBfjYDQ==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587475006890505562\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291/runs/08587475006890505562\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1136/providers/Microsoft.Logic/workflows/onesdk2291/triggers/httpTrigger/histories/08587475006890505562\",\r\n \"name\": \"08587475006890505562\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1563" + "1569" ], "Content-Type": [ "application/json; charset=utf-8" @@ -817,16 +817,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:ed31f9d2-3be5-41aa-ae94-e94ccb56330d" + "westus:e1de6bbd-af4d-43e3-a3b8-472cf9d016e9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" + "14948" ], "x-ms-correlation-request-id": [ - "eb872390-1b1d-42a3-8ca5-f2a1c2765366" + "d1b5647e-fe30-4f01-a8eb-4a7df4a785ec" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212155Z:eb872390-1b1d-42a3-8ca5-f2a1c2765366" + "WESTUS:20160129T222330Z:d1b5647e-fe30-4f01-a8eb-4a7df4a785ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -835,7 +835,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:55 GMT" + "Fri, 29 Jan 2016 22:23:29 GMT" ] }, "StatusCode": 200 @@ -843,8 +843,8 @@ ], "Names": { "Test-GetAzureLogicAppTriggerHistory": [ - "onesdk2247", - "onesdk2597" + "onesdk1136", + "onesdk2291" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json index 875dbab8314b..364d9c7f9835 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4550?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" + "14940" ], "x-ms-request-id": [ - "eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + "67c02a84-5259-4f19-9849-4e089f8f1656" ], "x-ms-correlation-request-id": [ - "eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + "67c02a84-5259-4f19-9849-4e089f8f1656" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211932Z:eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + "WESTUS:20160129T222134Z:67c02a84-5259-4f19-9849-4e089f8f1656" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:32 GMT" + "Fri, 29 Jan 2016 22:21:33 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4550?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491\",\r\n \"name\": \"onesdk3491\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550\",\r\n \"name\": \"onesdk4550\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-request-id": [ - "91e27401-8c1d-4e32-86e2-89a931854d5d" + "eef6b3e4-0ea2-4584-8bf3-9581b71df969" ], "x-ms-correlation-request-id": [ - "91e27401-8c1d-4e32-86e2-89a931854d5d" + "eef6b3e4-0ea2-4584-8bf3-9581b71df969" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211934Z:91e27401-8c1d-4e32-86e2-89a931854d5d" + "WESTUS:20160129T222135Z:eef6b3e4-0ea2-4584-8bf3-9581b71df969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:34 GMT" + "Fri, 29 Jan 2016 22:21:34 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14745" + "14939" ], "x-ms-request-id": [ - "7cc74cb5-3937-4112-8117-3b075533dd48" + "311359da-e1bc-439d-b170-cedcd205b4bc" ], "x-ms-correlation-request-id": [ - "7cc74cb5-3937-4112-8117-3b075533dd48" + "311359da-e1bc-439d-b170-cedcd205b4bc" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211934Z:7cc74cb5-3937-4112-8117-3b075533dd48" + "WESTUS:20160129T222135Z:311359da-e1bc-439d-b170-cedcd205b4bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:34 GMT" + "Fri, 29 Jan 2016 22:21:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0aa8d261-8175-4ed7-b259-57670d2ede82" + "888c345b-0093-4be1-ab8e-16dcad03e833" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3491-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3491\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk4550-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk4550\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b9bccadd-cb34-4131-9bd7-d7acb7022667" + "e844ae57-c252-4fc3-adbd-22cb6fb3ba9c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14942" ], "x-ms-correlation-request-id": [ - "1872129b-1aa1-4fcf-9a6a-2a7488272fb0" + "f42816cc-e863-4532-af14-8d645f79752e" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211940Z:1872129b-1aa1-4fcf-9a6a-2a7488272fb0" + "WESTUS:20160129T222150Z:f42816cc-e863-4532-af14-8d645f79752e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:39 GMT" + "Fri, 29 Jan 2016 22:21:50 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c498fc99-6008-4911-9245-238c3ec96d10" + "189b77b6-07d3-4f7e-9396-3eeeb60fc7db" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7855' under resource group 'onesdk3491' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6652' under resource group 'onesdk4550' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "7956ec48-da62-49a4-83e7-7fb3dd2e132f" + "52bc5ec4-1a31-44ea-ab2e-b19aa141429e" ], "x-ms-correlation-request-id": [ - "7956ec48-da62-49a4-83e7-7fb3dd2e132f" + "52bc5ec4-1a31-44ea-ab2e-b19aa141429e" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211941Z:7956ec48-da62-49a4-83e7-7fb3dd2e132f" + "WESTUS:20160129T222151Z:52bc5ec4-1a31-44ea-ab2e-b19aa141429e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,19 +268,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:41 GMT" + "Fri, 29 Jan 2016 22:21:51 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53ffefdc-a2d2-4a9b-860c-a65d2c5f051d" + "6f07e7a0-1d10-4692-9595-6dfdb23b1d85" ], "accept-language": [ "en-US" @@ -289,7 +289,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:21:52.5246815Z\",\r\n \"changedTime\": \"2016-01-29T22:21:52.5254123Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475007731335271\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"name\": \"onesdk6652\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -307,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:06698313-5301-4804-96cd-2b2ac9e1db6c" + "westus:b67a4d85-34b3-46e5-89ef-81da56288708" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14920" ], "x-ms-correlation-request-id": [ - "a76749c6-1513-4b16-ad5b-f147ca14a7ba" + "92a93756-c5ea-446d-8f9b-a8afce5c4169" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211945Z:a76749c6-1513-4b16-ad5b-f147ca14a7ba" + "WESTUS:20160129T222155Z:92a93756-c5ea-446d-8f9b-a8afce5c4169" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,19 +325,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:45 GMT" + "Fri, 29 Jan 2016 22:21:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f818893-51ad-45d8-b8f7-87a3ac6fabd0" + "9ff3c59a-6c54-4ff6-989f-f0fb7c47016e" ], "accept-language": [ "en-US" @@ -346,7 +346,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:21:52.5246815Z\",\r\n \"changedTime\": \"2016-01-29T22:21:52.5254123Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475007731335271\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"name\": \"onesdk6652\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -364,16 +364,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:97097c04-bde7-446e-a060-ab83c07e40a0" + "westus:00235571-f606-4b9f-9da4-ca69dc5d23e2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14919" ], "x-ms-correlation-request-id": [ - "c17da8c6-3997-402a-a4e4-c638e3ddcffc" + "6cea6abf-4fb9-401f-a350-9f0feafe8708" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211947Z:c17da8c6-3997-402a-a4e4-c638e3ddcffc" + "WESTUS:20160129T222157Z:6cea6abf-4fb9-401f-a350-9f0feafe8708" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,19 +382,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:47 GMT" + "Fri, 29 Jan 2016 22:21:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a1c818b-d91f-48f1-9ddb-7f43aa3a20bb" + "06ecb49f-a5f1-4bbb-a9f8-562fecb027b2" ], "accept-language": [ "en-US" @@ -403,7 +403,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:21:52.5246815Z\",\r\n \"changedTime\": \"2016-01-29T22:21:52.5254123Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475007731335271\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"name\": \"onesdk6652\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -421,16 +421,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:f124d8eb-2928-449b-b41d-f83f5909efba" + "westus:62956f86-e1e9-4fe8-87dd-b58ab035e167" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14918" ], "x-ms-correlation-request-id": [ - "e28781d7-052f-4ee4-8f49-4a973ddc71d8" + "8f0c9a75-57b8-4b81-94a0-5b2d9ad01f78" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211949Z:e28781d7-052f-4ee4-8f49-4a973ddc71d8" + "WESTUS:20160129T222159Z:8f0c9a75-57b8-4b81-94a0-5b2d9ad01f78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,19 +439,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:49 GMT" + "Fri, 29 Jan 2016 22:21:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96a56e8a-cae8-40fb-9231-815d04302144" + "b1b49901-984c-4b39-82cd-918336a2a840" ], "accept-language": [ "en-US" @@ -460,7 +460,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:21:52.5246815Z\",\r\n \"changedTime\": \"2016-01-29T22:21:52.5254123Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475007731335271\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"name\": \"onesdk6652\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -478,16 +478,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:a8452737-6482-4b78-9234-61b9a95f731c" + "westus:c5969443-76fb-475d-a666-c6262a22dd0e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14917" ], "x-ms-correlation-request-id": [ - "c0a00c76-0da7-4b92-a2c6-9dba39b9ab8d" + "0427e04c-5952-429b-8bcf-033df6b527ca" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211951Z:c0a00c76-0da7-4b92-a2c6-9dba39b9ab8d" + "WESTUS:20160129T222201Z:0427e04c-5952-429b-8bcf-033df6b527ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,19 +496,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:51 GMT" + "Fri, 29 Jan 2016 22:22:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5dc40ca-f8b5-4dab-9264-e7c02d04a0cd" + "12b5164c-4335-411a-9ac3-479fac2fad5d" ], "accept-language": [ "en-US" @@ -517,7 +517,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:21:52.5246815Z\",\r\n \"changedTime\": \"2016-01-29T22:21:52.5254123Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475007731335271\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"name\": \"onesdk6652\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -535,16 +535,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:691102e7-52c6-48cf-b78d-ff5f21e95c0b" + "westus:9fb3ede1-1300-4a0e-8922-773ba634ab67" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14916" ], "x-ms-correlation-request-id": [ - "ea048aaf-a0a7-46b5-99ab-3f4d7802ce7f" + "f873090a-364c-44b9-a179-dcb9731564ee" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211953Z:ea048aaf-a0a7-46b5-99ab-3f4d7802ce7f" + "WESTUS:20160129T222203Z:f873090a-364c-44b9-a179-dcb9731564ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,19 +553,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:53 GMT" + "Fri, 29 Jan 2016 22:22:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f60409c-dacd-41d7-bcd7-dcab393096ed" + "556c1f4f-bd57-41f1-b536-d9e727a9fcc8" ], "accept-language": [ "en-US" @@ -574,7 +574,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:21:52.5246815Z\",\r\n \"changedTime\": \"2016-01-29T22:21:52.5254123Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475007731335271\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"name\": \"onesdk6652\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -592,16 +592,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:e5825c90-f8e0-47a5-a4bf-fb3605480c7e" + "westus:cd4d1ae8-cb05-4700-ad43-90a6bd9c7ae8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14915" ], "x-ms-correlation-request-id": [ - "7a0624bd-aeae-46d2-b05e-ee4278d3706b" + "831a61a7-e923-4f36-8dc3-e59c3de698b0" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211955Z:7a0624bd-aeae-46d2-b05e-ee4278d3706b" + "WESTUS:20160129T222205Z:831a61a7-e923-4f36-8dc3-e59c3de698b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -610,16 +610,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:55 GMT" + "Fri, 29 Jan 2016 22:22:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -628,7 +628,7 @@ "1774" ], "x-ms-client-request-id": [ - "648c3174-61ac-4190-bb5c-6cd5aeb6f288" + "78909276-c874-47eb-bc05-c278d9fea83b" ], "accept-language": [ "en-US" @@ -637,7 +637,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T22:21:52.5246815Z\",\r\n \"changedTime\": \"2016-01-29T22:21:52.5246815Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475007731335271\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652\",\r\n \"name\": \"onesdk6652\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -652,16 +652,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:4c1d5eb3-8b93-453c-97fb-50c00959186a" + "westus:56853877-7c55-4ed3-822e-650cf3ae12ca" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "522ee57f-4653-4222-a6ce-1060394e73ba" + "db4db9b9-6342-42a0-8616-b2599ed0403f" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211943Z:522ee57f-4653-4222-a6ce-1060394e73ba" + "WESTUS:20160129T222152Z:db4db9b9-6342-42a0-8616-b2599ed0403f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,19 +670,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:43 GMT" + "Fri, 29 Jan 2016 22:21:52 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mi90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73b77f02-67aa-46b1-aa98-106e223f9045" + "d0d1a4fb-2bd9-496f-b632-7dc127901c57" ], "accept-language": [ "en-US" @@ -691,7 +691,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:44.5530621Z\",\r\n \"endTime\": \"2016-01-26T21:19:45.1405584Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"8965a27d-4bf6-44be-aea7-bdb17fb4b7c8\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/47A45_20e81a0be3ad4d65bc78552df12a462a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=e%2BTIDr4igws3NsKTDBkCbfNsk2I8e11b6AJbMnRQEjs%3D&se=2016-01-27T01%3A19%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D241A7\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/EDE60_cff97d3aa4604efe95d7eec20500a3af_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=uVD%2FyzThVoAYm%2FUBRplIrmrnYFAYrC%2BSYf3KX2Wq2VM%3D&se=2016-01-27T01%3A19%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D1570E\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6IEFhpGr4WjlWzpiHw8h7g==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477637009230758\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477637009230758\",\r\n \"name\": \"08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:21:54.6213542Z\",\r\n \"endTime\": \"2016-01-29T22:21:55.4261418Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"0167d5d3-3232-46ab-8e8c-74d87ea29961\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/flow27e4e16512c34cb28c8d4eda3dd2fc2d20160129t000000zcontent/BB029_2973e467eb924db8885548f9ff0b2009_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=pEnvCkpAl37lPpyHioDJyU92A%2FFLeFo%2BL6zLdnjkHwU%3D&se=2016-01-30T02%3A22%3A05Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FA97C88925\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/flow27e4e16512c34cb28c8d4eda3dd2fc2d20160129t000000zcontent/73BBA_1f41a8092cf141018668243c4e12d39b_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=Wmqjyi7SpgW5oWBh399SUfB%2FsnU%2BHxq8EANQLRTkMwc%3D&se=2016-01-30T02%3A22%3A05Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FA97C9258E\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"vvsqLODSQE5kt/rBJa5gMw==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587475007708513415\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/runs/08587475007708513415\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/triggers/httpTrigger/histories/08587475007708513415\",\r\n \"name\": \"08587475007708513415\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1581" @@ -709,16 +709,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:9975fbae-df6a-45c1-8d7e-e80778ab12c6" + "westus:21040b9b-25ed-4df6-899f-e10e7508e9f6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14914" ], "x-ms-correlation-request-id": [ - "bd47d954-556b-4538-af8b-7c2bc7e57085" + "b9f6c0fc-17e8-4749-bf18-52234e9f65fe" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211955Z:bd47d954-556b-4538-af8b-7c2bc7e57085" + "WESTUS:20160129T222205Z:b9f6c0fc-17e8-4749-bf18-52234e9f65fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,19 +727,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:55 GMT" + "Fri, 29 Jan 2016 22:22:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mi90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74a8fcdb-0878-4346-8933-79cd75988115" + "bbb40027-e7b4-4230-930b-1e83c3f0026e" ], "accept-language": [ "en-US" @@ -748,10 +748,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:57.2703975Z\",\r\n \"endTime\": \"2016-01-26T21:19:57.7055401Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"be509c6b-b1fd-4071-8407-a4a82ee3ee3d\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/29269_195a149bf6a245a2967f14b806c1dd78_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=rDFB5%2FxcaRe3WNO1pqFqftmxA6a6ay86TXRFKd5aniM%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269671471ABE\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/6465C_76d71c065607479d939a09814ef8f05c_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=7qrNYVn9yd%2Fp6q%2BuuWUe8xeOkwNDB2WslTrxNrY3llA%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269671480557\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6LKYP/2w0ze+Sv8dUfroEA==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477636881938193\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477636881938193\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477636881938193\",\r\n \"name\": \"08587477636881938193\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:56.2909019Z\",\r\n \"endTime\": \"2016-01-26T21:19:56.7015437Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"0469faf7-c52c-4549-a305-2ffe00e7562c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/1C830_d00bc7dd0e634e08a6bf39e66a885c5a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=eNwMPWhyamHFmCnCcsZbl0sV4J5QwwVjCcEOY2kJn7Y%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269670B0A9C3\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/29366_7c3b065db2e74d0db461afccda1b5fa2_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=FvjFGsCFnvqzi8e7awdVu3X9nW%2FQwdHzlf6ICD4g024%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269670B3B7C0\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"nXP7GNOQ+JlCgF01V4lLqg==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477636891796908\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477636891796908\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477636891796908\",\r\n \"name\": \"08587477636891796908\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:44.5530621Z\",\r\n \"endTime\": \"2016-01-26T21:19:45.1405584Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"8965a27d-4bf6-44be-aea7-bdb17fb4b7c8\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/47A45_20e81a0be3ad4d65bc78552df12a462a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=dNaEvDxj1tuGfIDobC7hz2hZvCNaqd71e8fXWZp9%2Blk%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D241A7\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/EDE60_cff97d3aa4604efe95d7eec20500a3af_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=L5m%2BBrHVgAPSyy4x72azOGtj6qTv%2Fb%2BSR7zsz87T4QQ%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D1570E\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6IEFhpGr4WjlWzpiHw8h7g==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477637009230758\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477637009230758\",\r\n \"name\": \"08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:22:07.3495176Z\",\r\n \"endTime\": \"2016-01-29T22:22:07.6548848Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"69bf37cd-2a96-4965-bf7d-8016867f288f\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/flow27e4e16512c34cb28c8d4eda3dd2fc2d20160129t000000zcontent/2ACC4_b152543452cb4398836d965b22c2fb68_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=OguQlx6xWIddU2RYoYibtdr9LFb1acjzpBjNShzCXfY%3D&se=2016-01-30T02%3A22%3A08Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FA9F5BA2B2\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/flow27e4e16512c34cb28c8d4eda3dd2fc2d20160129t000000zcontent/58B30_bfedf131282849f9a59c4b4359000e42_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=wyIDTmmBpgPw%2F50LA7EAHp1GVpnpE541leePuzsorbs%3D&se=2016-01-30T02%3A22%3A08Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FA9F5BF0E7\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"f8enwBX+llP1SEHBHF+Z+g==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587475007581138187\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/runs/08587475007581138187\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/triggers/httpTrigger/histories/08587475007581138187\",\r\n \"name\": \"08587475007581138187\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:22:06.0435224Z\",\r\n \"endTime\": \"2016-01-29T22:22:06.9015793Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"df06f14b-76cc-4888-9c8a-d8242b0e656f\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/flow27e4e16512c34cb28c8d4eda3dd2fc2d20160129t000000zcontent/60860_2e76c36835cd45b8aa96b19f868fdcb3_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=gXdo7un4A8ElXnPyRzQ6jIrmlFF201ZRUqPuxrn0NbI%3D&se=2016-01-30T02%3A22%3A08Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FA9E92EDA3\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/flow27e4e16512c34cb28c8d4eda3dd2fc2d20160129t000000zcontent/57B23_909ea73573414eca9e9a5504141a4b13_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=hhT4A8ZNAVbuvTYskN3T%2FlhHNcKfbzdzOA2kLMjY%2FeE%3D&se=2016-01-30T02%3A22%3A08Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FA9E93FF5D\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"2pzeL0mVelmHc5wfbXcOzg==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587475007594200209\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/runs/08587475007594200209\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/triggers/httpTrigger/histories/08587475007594200209\",\r\n \"name\": \"08587475007594200209\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T22:21:54.6213542Z\",\r\n \"endTime\": \"2016-01-29T22:21:55.4261418Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"0167d5d3-3232-46ab-8e8c-74d87ea29961\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/flow27e4e16512c34cb28c8d4eda3dd2fc2d20160129t000000zcontent/BB029_2973e467eb924db8885548f9ff0b2009_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=qiii9%2Fwapsef16Mu7GbTEbva2Wd96z6JUWNMQqAyr6Y%3D&se=2016-01-30T02%3A22%3A08Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FA97C88925\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/flow27e4e16512c34cb28c8d4eda3dd2fc2d20160129t000000zcontent/73BBA_1f41a8092cf141018668243c4e12d39b_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=EVO%2B0Cp6smI%2BwHKj95bfOeaNepYQjuq6MJ7sCKPocjo%3D&se=2016-01-30T02%3A22%3A08Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D328FA97C9258E\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"vvsqLODSQE5kt/rBJa5gMw==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587475007708513415\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/runs/08587475007708513415\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/triggers/httpTrigger/histories/08587475007708513415\",\r\n \"name\": \"08587475007708513415\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4713" + "4709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -766,16 +766,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:e6b5032d-3ade-4e5c-8d7b-b4714013e63d" + "westus:3696f082-6a97-4b59-8eb0-222db304d7b1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14913" ], "x-ms-correlation-request-id": [ - "28cef454-ffdc-4e54-8639-03f85e463069" + "7771ea26-576c-433a-bfcd-86c6749c07e2" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211958Z:28cef454-ffdc-4e54-8639-03f85e463069" + "WESTUS:20160129T222208Z:7771ea26-576c-433a-bfcd-86c6749c07e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -784,19 +784,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:57 GMT" + "Fri, 29 Jan 2016 22:22:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mi90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ce5932f-b0ef-4c3e-9c5b-7a371d0ca74e" + "9d4680e7-15e7-4a12-83d9-e6f4f1ed99a9" ], "accept-language": [ "en-US" @@ -817,16 +817,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:d321082d-b9e8-433c-a235-416e867f1075" + "westus:6be07790-d98a-4386-9c03-d8a8bae5912e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "a55f1122-d242-4786-bd40-639f087f4c62" + "fd3f7c53-1f89-46a0-a2c3-8b8c358baea8" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211955Z:a55f1122-d242-4786-bd40-639f087f4c62" + "WESTUS:20160129T222205Z:fd3f7c53-1f89-46a0-a2c3-8b8c358baea8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -835,19 +835,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:55 GMT" + "Fri, 29 Jan 2016 22:22:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk4550/providers/Microsoft.Logic/workflows/onesdk6652/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazQ1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjY1Mi90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94e33fa3-3671-431f-bfe2-dc3392f2680f" + "4c87f18e-1a43-4f8c-85a3-d33adc63a4f9" ], "accept-language": [ "en-US" @@ -868,16 +868,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:3431f136-0590-458b-9a32-fe5f70e3442d" + "westus:1bc8875a-cdae-4666-8612-acb19f897af8" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "1d42dae2-4b38-4be5-bcc3-54681ee80271" + "9fce4347-30fe-46cd-83ea-0480f5eb9e09" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211957Z:1d42dae2-4b38-4be5-bcc3-54681ee80271" + "WESTUS:20160129T222207Z:9fce4347-30fe-46cd-83ea-0480f5eb9e09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -886,7 +886,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:56 GMT" + "Fri, 29 Jan 2016 22:22:06 GMT" ] }, "StatusCode": 200 @@ -894,8 +894,8 @@ ], "Names": { "Test-StartAzureLogicAppTrigger": [ - "onesdk3491", - "onesdk7855" + "onesdk4550", + "onesdk6652" ] }, "Variables": { From 02e6cab2ac0f98b5941020929445f0beaed962cc Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Fri, 29 Jan 2016 14:56:40 -0800 Subject: [PATCH 06/19] App.config removed --- .../Commands.LogicApp.Test/Commands.LogicApp.Test.csproj | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj index 1b87d9776786..b6e986937d81 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj @@ -152,9 +152,6 @@ - - PreserveNewest - Designer From 90ced651455584e994f93a565da43c15d35354ba Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Fri, 29 Jan 2016 16:19:01 -0800 Subject: [PATCH 07/19] Session records updated with latest test run. Signed-off-by: Pankaj Singh Negi --- .../Commands.LogicApp.Test.csproj | 4 +- .../TestGetAzureLogicAppAccessKey.json | 138 ++--- .../TestSetAzureLogicAppAccessKey.json | 168 +++---- .../TestGetAzureLogicAppRunAction.json | 198 ++++---- .../TestGetAzureLogicAppRunHistory.json | 471 ++++-------------- .../TestRunLogicApp.json | 433 +++------------- ...GetLogicAppUsingDefinitionWithActions.json | 156 +++--- .../TestCreateAndRemoveLogicApp.json | 268 +++++----- ...teLogicAppUsingDefinitionWithTriggers.json | 122 ++--- ...ogicAppUsingInputParameterAsHashTable.json | 122 ++--- ...eLogicAppUsingInputfromWorkflowObject.json | 178 +++---- .../TestCreateLogicAppWithDuplicateName.json | 168 +++---- ...LogicAppWithNonExistingAppServicePlan.json | 80 +-- .../TestRemoveNonExistingLogicApp.json | 62 +-- .../TestUpdateLogicApp.json | 268 +++++----- .../TestGetAzureLogicAppTrigger.json | 142 +++--- .../TestGetAzureLogicAppTriggerHistory.json | 266 +++++----- .../TestStartAzureLogicAppTrigger.json | 296 +++++------ 18 files changed, 1486 insertions(+), 2054 deletions(-) diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj index b6e986937d81..52ca6846a504 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj @@ -189,7 +189,9 @@ PreserveNewest - + + PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json index 5bde5af3bc70..355b7a6742f1 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestGetAzureLogicAppAccessKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5824?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14958" ], "x-ms-request-id": [ - "fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + "2caafd60-be51-4308-a18e-61b8534928af" ], "x-ms-correlation-request-id": [ - "fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + "2caafd60-be51-4308-a18e-61b8534928af" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010906Z:fd7482b5-ad83-49d5-9bd7-bb47c88c0522" + "WESTUS:20160129T231143Z:2caafd60-be51-4308-a18e-61b8534928af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:05 GMT" + "Fri, 29 Jan 2016 23:11:42 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxNzg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5824?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178\",\r\n \"name\": \"onesdk5178\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5824\",\r\n \"name\": \"onesdk5824\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1195" ], "x-ms-request-id": [ - "bca36f12-62d2-4da8-bd72-e59936d61ffd" + "586dc86b-a861-4f00-b070-0f7e58ebd2b5" ], "x-ms-correlation-request-id": [ - "bca36f12-62d2-4da8-bd72-e59936d61ffd" + "586dc86b-a861-4f00-b070-0f7e58ebd2b5" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010907Z:bca36f12-62d2-4da8-bd72-e59936d61ffd" + "WESTUS:20160129T231143Z:586dc86b-a861-4f00-b070-0f7e58ebd2b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:07 GMT" + "Fri, 29 Jan 2016 23:11:43 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5824/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4MjQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "14957" ], "x-ms-request-id": [ - "0729381c-ef54-41ba-a062-9eb95a2fde11" + "de677b08-7efb-4920-90a8-e7ae7bd39f66" ], "x-ms-correlation-request-id": [ - "0729381c-ef54-41ba-a062-9eb95a2fde11" + "de677b08-7efb-4920-90a8-e7ae7bd39f66" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010908Z:0729381c-ef54-41ba-a062-9eb95a2fde11" + "WESTUS:20160129T231143Z:de677b08-7efb-4920-90a8-e7ae7bd39f66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:07 GMT" + "Fri, 29 Jan 2016 23:11:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5824/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7243db3-d679-4df2-bf4c-246c51fd8d1a" + "78783fa8-8ebe-4034-bb48-4c42fd4e9399" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5178-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5178\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5824/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5824-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5824\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9bd8879d-7c82-4059-9bcd-ca337e8f7a6a" + "4cc671fc-2c32-456e-b941-6ba029e4cfdb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14933" ], "x-ms-correlation-request-id": [ - "570ee219-6ed6-4842-9f8e-809fdf7c93bf" + "61fb7361-a280-4221-80bc-5be424558d2a" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010922Z:570ee219-6ed6-4842-9f8e-809fdf7c93bf" + "WESTUS:20160129T231151Z:61fb7361-a280-4221-80bc-5be424558d2a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:21 GMT" + "Fri, 29 Jan 2016 23:11:50 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5824/providers/Microsoft.Logic/workflows/onesdk1269?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTI2OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8671433-f6bc-425e-b4fd-5590b8c6d896" + "0b366b2a-d999-4cef-a56b-902e7311a04c" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5243' under resource group 'onesdk5178' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1269' under resource group 'onesdk5824' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + "0ac07530-9857-4728-98db-4f88af0df8ce" ], "x-ms-correlation-request-id": [ - "9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + "0ac07530-9857-4728-98db-4f88af0df8ce" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010924Z:9aa721d3-7399-4ec1-a2c0-025ac1146a6b" + "WESTUS:20160129T231151Z:0ac07530-9857-4728-98db-4f88af0df8ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,16 +268,16 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:24 GMT" + "Fri, 29 Jan 2016 23:11:50 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5824/providers/Microsoft.Logic/workflows/onesdk1269?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTI2OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5824/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -286,7 +286,7 @@ "1179" ], "x-ms-client-request-id": [ - "8be2ca11-60d4-46cd-a25b-26d6910d2000" + "2492554b-b174-4d9e-b0e7-dcd6726ed1cc" ], "accept-language": [ "en-US" @@ -295,7 +295,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T01:09:26.655401Z\",\r\n \"changedTime\": \"2016-01-29T01:09:26.655401Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475771190422936\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243\",\r\n \"name\": \"onesdk5243\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:11:52.521502Z\",\r\n \"changedTime\": \"2016-01-29T23:11:52.521502Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474977730633971\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5824/providers/Microsoft.Logic/workflows/onesdk1269\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5824/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5824/providers/Microsoft.Logic/workflows/onesdk1269\",\r\n \"name\": \"onesdk1269\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1353" @@ -310,16 +310,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:4932d099-158a-4c06-b205-4c87ed84bbea" + "westus:fb233ca6-798b-4b95-9496-761143e39e03" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-correlation-request-id": [ - "9b0f509c-d637-4f55-aa24-81df77cd6a40" + "c9354c25-abc3-42fb-ae67-0614ee5bea94" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010927Z:9b0f509c-d637-4f55-aa24-81df77cd6a40" + "WESTUS:20160129T231153Z:c9354c25-abc3-42fb-ae67-0614ee5bea94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -328,19 +328,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:27 GMT" + "Fri, 29 Jan 2016 23:11:52 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243/accessKeys/default/list?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0My9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5824/providers/Microsoft.Logic/workflows/onesdk1269/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTI2OS9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2aa9e90b-d68f-441a-820b-d7ce9ad80c18" + "8e1cd479-cc4d-46cc-b382-564466a342b1" ], "accept-language": [ "en-US" @@ -349,7 +349,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"primarySecretKey\": \"Tsh10h0ckKvL8lPc4mKeNfschFYcSEHnmYJyApUJ1o4\",\r\n \"secondarySecretKey\": \"r1saXhjdLwT3fMKXDdIjJP-tTkTjD7lvgct8RRuGSos\"\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"b03N2Hav0DHJ_eEvo_Z_ysipl7SSId_l7HkvNmVLOx0\",\r\n \"secondarySecretKey\": \"hpTUXIrKCU-PI-5dKgVm0u7jGTUk-imawZPNXrSCJBs\"\r\n}", "ResponseHeaders": { "Content-Length": [ "133" @@ -367,16 +367,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:6ba967a1-8d58-43e2-9efd-1260e2e1a0fe" + "westus:ada39e2c-826a-4b47-8fcc-e4ab71970974" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1190" ], "x-ms-correlation-request-id": [ - "d2786f6c-d6e2-4ce8-a947-a6e4eacb8f47" + "4a51038f-ea07-4409-88eb-f344054f2815" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010928Z:d2786f6c-d6e2-4ce8-a947-a6e4eacb8f47" + "WESTUS:20160129T231153Z:4a51038f-ea07-4409-88eb-f344054f2815" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,19 +385,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:27 GMT" + "Fri, 29 Jan 2016 23:11:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5178/providers/Microsoft.Logic/workflows/onesdk5243/accessKeys/default/list?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTI0My9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5824/providers/Microsoft.Logic/workflows/onesdk1269/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTI2OS9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af461cf2-e54a-45eb-9bd6-62f38d2424e6" + "78e373ff-1744-4c89-8acd-fc1f5a462656" ], "accept-language": [ "en-US" @@ -406,7 +406,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"primarySecretKey\": \"Tsh10h0ckKvL8lPc4mKeNfschFYcSEHnmYJyApUJ1o4\",\r\n \"secondarySecretKey\": \"r1saXhjdLwT3fMKXDdIjJP-tTkTjD7lvgct8RRuGSos\"\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"b03N2Hav0DHJ_eEvo_Z_ysipl7SSId_l7HkvNmVLOx0\",\r\n \"secondarySecretKey\": \"hpTUXIrKCU-PI-5dKgVm0u7jGTUk-imawZPNXrSCJBs\"\r\n}", "ResponseHeaders": { "Content-Length": [ "133" @@ -424,16 +424,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:f2ea06d6-cc1c-45b9-b873-225012dbe621" + "westus:ee7e4d13-1552-4d73-a207-598486955dbf" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1189" ], "x-ms-correlation-request-id": [ - "bd12880e-eeb8-4e9f-b6c9-4844bcb763e1" + "fc057b00-1eff-4a12-a54f-cff182cb1fd5" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010928Z:bd12880e-eeb8-4e9f-b6c9-4844bcb763e1" + "WESTUS:20160129T231153Z:fc057b00-1eff-4a12-a54f-cff182cb1fd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,7 +442,7 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:28 GMT" + "Fri, 29 Jan 2016 23:11:52 GMT" ] }, "StatusCode": 200 @@ -450,8 +450,8 @@ ], "Names": { "Test-GetAzureLogicAppAccessKey": [ - "onesdk5178", - "onesdk5243" + "onesdk5824", + "onesdk1269" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json index d9062dffa8fb..56ac08fee637 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowAccessKeyTests/TestSetAzureLogicAppAccessKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk894?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg5ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "102" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14905" ], "x-ms-request-id": [ - "daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" + "853a82ac-3fde-4eeb-8398-e04ebb2a97c0" ], "x-ms-correlation-request-id": [ - "daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" + "853a82ac-3fde-4eeb-8398-e04ebb2a97c0" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010954Z:daa2fee2-2c0b-4ebe-ad53-dfe743deb5d3" + "WESTUS:20160129T231216Z:853a82ac-3fde-4eeb-8398-e04ebb2a97c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:53 GMT" + "Fri, 29 Jan 2016 23:12:16 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUyNjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk894?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg5ND9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,10 +67,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263\",\r\n \"name\": \"onesdk5263\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894\",\r\n \"name\": \"onesdk894\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "2b376747-12b6-4a60-ab45-506b49dc409b" + "4208f081-df8e-435d-970d-697b8f9dbb89" ], "x-ms-correlation-request-id": [ - "2b376747-12b6-4a60-ab45-506b49dc409b" + "4208f081-df8e-435d-970d-697b8f9dbb89" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010954Z:2b376747-12b6-4a60-ab45-506b49dc409b" + "WESTUS:20160129T231217Z:4208f081-df8e-435d-970d-697b8f9dbb89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:54 GMT" + "Fri, 29 Jan 2016 23:12:16 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5NC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14904" ], "x-ms-request-id": [ - "67cd25a9-2d45-4c48-8b9e-2549961e1026" + "9e74e303-398e-48f2-a3be-aef7cd647176" ], "x-ms-correlation-request-id": [ - "67cd25a9-2d45-4c48-8b9e-2549961e1026" + "9e74e303-398e-48f2-a3be-aef7cd647176" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T010954Z:67cd25a9-2d45-4c48-8b9e-2549961e1026" + "WESTUS:20160129T231217Z:9e74e303-398e-48f2-a3be-aef7cd647176" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:09:54 GMT" + "Fri, 29 Jan 2016 23:12:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9TdGFuZGFyZFNlcnZpY2VQbGFuP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4687a65f-26be-4e0f-8084-36845014b004" + "0d9a2ea8-2ada-43c7-b24e-fc1d24012ee3" ], "accept-language": [ "en-US" @@ -172,10 +172,10 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5263-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5263\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk894-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk894\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "951" + "948" ], "Content-Type": [ "application/json" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f266357-3972-4c1e-b314-20c896073afe" + "92b02a50-ccc0-465e-9284-23d22fbea760" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14929" ], "x-ms-correlation-request-id": [ - "7b8d475a-441d-4cf1-a039-3cf6dddfed4f" + "d8d628d9-0d51-4986-9587-2135771a3cfa" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011006Z:7b8d475a-441d-4cf1-a039-3cf6dddfed4f" + "WESTUS:20160129T231232Z:d8d628d9-0d51-4986-9587-2135771a3cfa" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:05 GMT" + "Fri, 29 Jan 2016 23:12:32 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894/providers/Microsoft.Logic/workflows/onesdk4976?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs0OTc2P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2201c695-d1dc-46d1-9040-fb0ed1250f6b" + "3697c829-b5bf-4c02-a4b1-a99bf035ce6c" ], "accept-language": [ "en-US" @@ -235,10 +235,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1321' under resource group 'onesdk5263' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4976' under resource group 'onesdk894' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "150" + "149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "c074589b-8556-421e-81a9-73577d045289" + "89886dce-dda5-4e84-bb78-f729010cd34c" ], "x-ms-correlation-request-id": [ - "c074589b-8556-421e-81a9-73577d045289" + "89886dce-dda5-4e84-bb78-f729010cd34c" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011006Z:c074589b-8556-421e-81a9-73577d045289" + "WESTUS:20160129T231231Z:89886dce-dda5-4e84-bb78-f729010cd34c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,25 +268,25 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:06 GMT" + "Fri, 29 Jan 2016 23:12:30 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894/providers/Microsoft.Logic/workflows/onesdk4976?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs0OTc2P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1179" + "1178" ], "x-ms-client-request-id": [ - "e639c8b7-7077-4fd4-ad5e-a9f6d41bfbd5" + "b29cd782-916d-4411-912c-88f6f1669502" ], "accept-language": [ "en-US" @@ -295,10 +295,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T01:10:07.0573017Z\",\r\n \"changedTime\": \"2016-01-29T01:10:07.0573017Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475770784639634\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321\",\r\n \"name\": \"onesdk1321\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:12:32.5477965Z\",\r\n \"changedTime\": \"2016-01-29T23:12:32.5477965Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474977330753204\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk894/providers/Microsoft.Logic/workflows/onesdk4976\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894/providers/Microsoft.Logic/workflows/onesdk4976\",\r\n \"name\": \"onesdk4976\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1355" + "1352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,16 +310,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:a601786f-7220-49b7-9558-8623da54682a" + "westus:da9d0520-da37-44ed-837a-135302a1c000" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1199" ], "x-ms-correlation-request-id": [ - "440dfca1-0f37-49d4-994e-06ede2eec746" + "3c00217e-855c-4f41-a8ca-9a457dd0c24e" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011007Z:440dfca1-0f37-49d4-994e-06ede2eec746" + "WESTUS:20160129T231232Z:3c00217e-855c-4f41-a8ca-9a457dd0c24e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -328,19 +328,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:07 GMT" + "Fri, 29 Jan 2016 23:12:31 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/list?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894/providers/Microsoft.Logic/workflows/onesdk4976/accessKeys/default/list?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs0OTc2L2FjY2Vzc0tleXMvZGVmYXVsdC9saXN0P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "869ae19b-657a-4227-a82d-b7ab80fb6843" + "cd1bc523-9278-4a20-a87e-33502d508d53" ], "accept-language": [ "en-US" @@ -349,7 +349,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"primarySecretKey\": \"YZW1xS0prm1_EiQpO_n-HlY7N0OEQm-iJ8sx8XtWMjo\",\r\n \"secondarySecretKey\": \"uih3AnckeTr_v9hlc2auwDdBa6iiH1nIbphML28APMY\"\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"sEpHFneu6pOwAaeuGNEQo-zk-LWK-3SdZUvrF5MhFeU\",\r\n \"secondarySecretKey\": \"_HMwYzRiWQlnPXe7bAtUnoKVIbYFpseotJ93tRuv24Q\"\r\n}", "ResponseHeaders": { "Content-Length": [ "133" @@ -367,16 +367,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:65882875-a433-4773-9c62-5a3907305d56" + "westus:1149002e-94db-4111-aef1-82f7ae954ae7" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1198" ], "x-ms-correlation-request-id": [ - "5e09656a-6e6b-45a7-b30a-1ab6297edb2c" + "3287ed58-7edf-4dd1-ac16-bf88454e169c" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011007Z:5e09656a-6e6b-45a7-b30a-1ab6297edb2c" + "WESTUS:20160129T231233Z:3287ed58-7edf-4dd1-ac16-bf88454e169c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,14 +385,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:07 GMT" + "Fri, 29 Jan 2016 23:12:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/regenerate?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvcmVnZW5lcmF0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894/providers/Microsoft.Logic/workflows/onesdk4976/accessKeys/default/regenerate?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs0OTc2L2FjY2Vzc0tleXMvZGVmYXVsdC9yZWdlbmVyYXRlP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { @@ -403,7 +403,7 @@ "28" ], "x-ms-client-request-id": [ - "afbe2f3a-1bf9-4a01-99bb-c3a2a2009d18" + "5cb0338b-8dd0-4f29-9d3e-348acaddf6b0" ], "accept-language": [ "en-US" @@ -412,7 +412,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"primarySecretKey\": \"ecEOidpW_n3a23_FjvsmdWYxuu7pvXUUZvriOBOdeLE\",\r\n \"secondarySecretKey\": \"uih3AnckeTr_v9hlc2auwDdBa6iiH1nIbphML28APMY\"\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"K1x7LWnpzT6BxDhNvBFiRWZwIPG_ErjHqeueHiNkG38\",\r\n \"secondarySecretKey\": \"_HMwYzRiWQlnPXe7bAtUnoKVIbYFpseotJ93tRuv24Q\"\r\n}", "ResponseHeaders": { "Content-Length": [ "133" @@ -430,16 +430,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:d1f1d1a6-b00a-4774-84dc-5ec5bb6c8055" + "westus:6247d31e-d11c-4d60-b82f-1ecd9e2a9ec9" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1197" ], "x-ms-correlation-request-id": [ - "696869f7-db94-4cb3-b614-c8611875af83" + "eecb4f8b-151c-42bd-a222-fe69c487e1f7" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011008Z:696869f7-db94-4cb3-b614-c8611875af83" + "WESTUS:20160129T231233Z:eecb4f8b-151c-42bd-a222-fe69c487e1f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,14 +448,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:07 GMT" + "Fri, 29 Jan 2016 23:12:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5263/providers/Microsoft.Logic/workflows/onesdk1321/accessKeys/default/regenerate?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUyNjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTMyMS9hY2Nlc3NLZXlzL2RlZmF1bHQvcmVnZW5lcmF0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk894/providers/Microsoft.Logic/workflows/onesdk4976/accessKeys/default/regenerate?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs0OTc2L2FjY2Vzc0tleXMvZGVmYXVsdC9yZWdlbmVyYXRlP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"Secondary\"\r\n}", "RequestHeaders": { @@ -466,7 +466,7 @@ "30" ], "x-ms-client-request-id": [ - "ab03645f-9f92-40cf-bf67-ff37acc2a812" + "b1e2b83a-24c1-4d9e-a8e4-39b0f78da844" ], "accept-language": [ "en-US" @@ -475,7 +475,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"primarySecretKey\": \"ecEOidpW_n3a23_FjvsmdWYxuu7pvXUUZvriOBOdeLE\",\r\n \"secondarySecretKey\": \"OgR-KLRd9Lp2DeQJlorDKuc10Ri53-gwCjFnZOxKZcs\"\r\n}", + "ResponseBody": "{\r\n \"primarySecretKey\": \"K1x7LWnpzT6BxDhNvBFiRWZwIPG_ErjHqeueHiNkG38\",\r\n \"secondarySecretKey\": \"jt5nvJ0SJ5kUYNE10_hIOL2-qj6Yf5kZy5k2eAJ1s84\"\r\n}", "ResponseHeaders": { "Content-Length": [ "133" @@ -493,16 +493,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:a6001f0d-580a-4419-b51b-c56d503fe86e" + "westus:80f8fa13-aa5a-4d28-a156-9edf3fc1fa8c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1196" ], "x-ms-correlation-request-id": [ - "4ba7fa28-0afe-4e61-bf1a-a11105ca68d9" + "3e2a7917-ea04-4f7b-a347-b0f5127319e7" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T011008Z:4ba7fa28-0afe-4e61-bf1a-a11105ca68d9" + "WESTUS:20160129T231233Z:3e2a7917-ea04-4f7b-a347-b0f5127319e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,7 +511,7 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 01:10:07 GMT" + "Fri, 29 Jan 2016 23:12:32 GMT" ] }, "StatusCode": 200 @@ -519,8 +519,8 @@ ], "Names": { "Test-SetAzureLogicAppAccessKey": [ - "onesdk5263", - "onesdk1321" + "onesdk894", + "onesdk4976" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json index 39b66c84db59..e074293eca67 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunAction.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1772?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3NzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14952" ], "x-ms-request-id": [ - "93737fae-8d0c-4f17-b5db-cf3b3172d621" + "cef59fa1-f9cc-4700-96e7-2bdd9b984cf9" ], "x-ms-correlation-request-id": [ - "93737fae-8d0c-4f17-b5db-cf3b3172d621" + "cef59fa1-f9cc-4700-96e7-2bdd9b984cf9" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024759Z:93737fae-8d0c-4f17-b5db-cf3b3172d621" + "WESTUS:20160129T231301Z:cef59fa1-f9cc-4700-96e7-2bdd9b984cf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:47:59 GMT" + "Fri, 29 Jan 2016 23:13:00 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazI1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1772?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3NzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550\",\r\n \"name\": \"onesdk2550\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772\",\r\n \"name\": \"onesdk1772\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-request-id": [ - "514a1e3b-c870-480e-af5c-f653649e6847" + "51da4c4a-d568-4e5b-babe-974074550ba7" ], "x-ms-correlation-request-id": [ - "514a1e3b-c870-480e-af5c-f653649e6847" + "51da4c4a-d568-4e5b-babe-974074550ba7" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024800Z:514a1e3b-c870-480e-af5c-f653649e6847" + "WESTUS:20160129T231301Z:51da4c4a-d568-4e5b-babe-974074550ba7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:00 GMT" + "Fri, 29 Jan 2016 23:13:01 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14951" ], "x-ms-request-id": [ - "df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + "eb45ff7d-5db5-408b-b4f9-793585d7b660" ], "x-ms-correlation-request-id": [ - "df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + "eb45ff7d-5db5-408b-b4f9-793585d7b660" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024800Z:df7d5a2c-6cdc-4ec9-a2c5-d7060ad1f459" + "WESTUS:20160129T231302Z:eb45ff7d-5db5-408b-b4f9-793585d7b660" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:00 GMT" + "Fri, 29 Jan 2016 23:13:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de0018a4-0eda-41f0-bf21-32871ed0fec8" + "b4082418-cf5f-4452-b92a-146c47668461" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2550-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2550\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1772-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1772\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87367901-0205-46fa-8730-873677922d06" + "656621e7-83ee-4c3c-a559-1ff63e956790" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14892" ], "x-ms-correlation-request-id": [ - "2622244f-f0c8-40be-8023-d9cdd2f873fc" + "ab957250-e9f5-434d-91cb-53fc4f84d93f" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024808Z:2622244f-f0c8-40be-8023-d9cdd2f873fc" + "WESTUS:20160129T231316Z:ab957250-e9f5-434d-91cb-53fc4f84d93f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:07 GMT" + "Fri, 29 Jan 2016 23:13:15 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzY2MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37aebae6-6c20-4a20-994c-9a623a770d17" + "0a1cda17-fe86-4c49-942a-bb1bd5c62770" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6884' under resource group 'onesdk2550' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk3661' under resource group 'onesdk1772' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "8d31ca9c-47ab-495b-a361-fc446e35f9ff" + "35ccb6ff-6d02-4bcb-aa16-a14b42eb4a9c" ], "x-ms-correlation-request-id": [ - "8d31ca9c-47ab-495b-a361-fc446e35f9ff" + "35ccb6ff-6d02-4bcb-aa16-a14b42eb4a9c" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024808Z:8d31ca9c-47ab-495b-a361-fc446e35f9ff" + "WESTUS:20160129T231317Z:35ccb6ff-6d02-4bcb-aa16-a14b42eb4a9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,19 +268,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:08 GMT" + "Fri, 29 Jan 2016 23:13:17 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzY2MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0591f994-0ca6-4c1f-94d7-60f40801ccd1" + "7183d12d-eb9f-47ab-82b2-1279acc5d6d5" ], "accept-language": [ "en-US" @@ -289,10 +289,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"changedTime\": \"2016-01-29T02:48:09.501405Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475711961432891\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"name\": \"onesdk6884\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:13:17.5875872Z\",\r\n \"changedTime\": \"2016-01-29T23:13:17.5884329Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474976881295076\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661\",\r\n \"name\": \"onesdk3661\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1574" + "1576" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:70a24cbd-bb7e-4115-bd5b-2208aa9c1448" + "westus:8d46cb4f-4b23-40aa-b143-e24b4af852d1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14923" ], "x-ms-correlation-request-id": [ - "994a90a2-f858-4f61-876c-d0c3f3a433a3" + "9c282202-02a1-42a4-8581-45d93968b6bd" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024811Z:994a90a2-f858-4f61-876c-d0c3f3a433a3" + "WESTUS:20160129T231320Z:9c282202-02a1-42a4-8581-45d93968b6bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,16 +325,16 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:11 GMT" + "Fri, 29 Jan 2016 23:13:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4ND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzY2MT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -343,7 +343,7 @@ "1774" ], "x-ms-client-request-id": [ - "da1d725d-d8fa-4a21-a431-b8ad042a6888" + "840a97f4-156c-4bb7-964c-2780f2caf56e" ], "accept-language": [ "en-US" @@ -352,10 +352,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"changedTime\": \"2016-01-29T02:48:09.500611Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587475711961432891\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884\",\r\n \"name\": \"onesdk6884\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:13:17.5875872Z\",\r\n \"changedTime\": \"2016-01-29T23:13:17.5875872Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474976881295076\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661\",\r\n \"name\": \"onesdk3661\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1574" + "1576" ], "Content-Type": [ "application/json; charset=utf-8" @@ -367,16 +367,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:d186fcd2-a21e-42b9-91a4-7242f7621be2" + "westus:9984f89d-4dba-41a6-93ca-88e39bfbe5cc" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "045abb91-65f4-4bba-9cff-7aa844b43185" + "f82c9c36-bc44-4a26-bfea-3a89520db891" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024809Z:045abb91-65f4-4bba-9cff-7aa844b43185" + "WESTUS:20160129T231318Z:f82c9c36-bc44-4a26-bfea-3a89520db891" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,19 +385,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:09 GMT" + "Fri, 29 Jan 2016 23:13:18 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzY2MS90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54a547e8-0ba1-42c3-844d-6d8c005d29f1" + "1e74a313-ad96-4283-9fe0-e10dec4aa145" ], "accept-language": [ "en-US" @@ -418,16 +418,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:398aa084-4675-4b7b-b934-7c167671ba1d" + "westus:50264be2-9688-42df-b50c-b002a16bd576" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-correlation-request-id": [ - "71e254af-4a49-4ffc-a70e-14c2c08c316a" + "e0e8e2a9-505c-4e66-8ddc-b235274a8d03" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024811Z:71e254af-4a49-4ffc-a70e-14c2c08c316a" + "WESTUS:20160129T231321Z:e0e8e2a9-505c-4e66-8ddc-b235274a8d03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,19 +436,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:11 GMT" + "Fri, 29 Jan 2016 23:13:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661/runs?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzY2MS9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "804166eb-03fa-4935-a8d3-8edea326694c" + "d81e8d33-1abc-43d9-9b3f-ec46339ef2c2" ], "accept-language": [ "en-US" @@ -457,7 +457,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:10.463169Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"5cea1548-f9c6-4664-9411-05e8c18165a1\",\r\n \"workflow\": {\r\n \"name\": \"onesdk6884/08587475711961432891\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/versions/08587475711961432891\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/18AC7_865a111a25224362b8f5b1df2fd39392_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=lwORyOUh0YaR2fSG8z0nfOvQz7vfuZA97AMPgAWKcAY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A0047B09\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/02FD1_e6da7347b9a4438096c2bc41085b1f4e_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=7hohws5kVV%2FPTgZt%2FFCA42WNO3gFwTypDeApbE1Iqow%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A004A21C\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"2yy3GdJGU6Kb3KCABlTSmw==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-29T02:48:10.2693619Z\",\r\n \"endTime\": \"2016-01-29T02:48:10.378733Z\",\r\n \"trackingId\": \"5cea1548-f9c6-4664-9411-05e8c18165a1\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995\",\r\n \"name\": \"08587475711951985995\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:13:18.5310179Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"09b96c1a-71bc-4f71-8352-3f7390a7d02f\",\r\n \"workflow\": {\r\n \"name\": \"onesdk3661/08587474976881295076\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661/versions/08587474976881295076\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe15d2593bb2a4e8eb4f58292024e5d5b20160129t000000zcontent/3A49B_e9cdc417594f419887d6cbbaab4d385b_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=CozfkMQoijlDYYAZJ3UEiNAH7ztxIy%2BRGrr704bCZJY%3D&se=2016-01-30T03%3A13%3A20Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901C66E7C96\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe15d2593bb2a4e8eb4f58292024e5d5b20160129t000000zcontent/84767_069f8c2d3bbe4db1b12fe24fda397dc1_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=hZNWdljsRHQANu3izZ6qkQv6lJ2JLqb2SiNPyqOiHKw%3D&se=2016-01-30T03%3A13%3A20Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901C66E2E64\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"4yHVgiJiy7TiwLO4cxF6DA==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-29T23:13:18.3493147Z\",\r\n \"endTime\": \"2016-01-29T23:13:18.4274386Z\",\r\n \"trackingId\": \"09b96c1a-71bc-4f71-8352-3f7390a7d02f\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661/runs/08587474976871167923\",\r\n \"name\": \"08587474976871167923\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "1736" @@ -475,16 +475,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:b52c70cd-007b-41c3-8084-34f7b2cb30cf" + "westus:86fc8247-5070-4ab6-a69d-a008c9bcc07a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14922" ], "x-ms-correlation-request-id": [ - "4aba3440-17e3-4c42-b391-e8eb2eb99770" + "6c64b79e-9b0d-4668-9582-26efef86d809" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024812Z:4aba3440-17e3-4c42-b391-e8eb2eb99770" + "WESTUS:20160129T231321Z:6c64b79e-9b0d-4668-9582-26efef86d809" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,19 +493,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:11 GMT" + "Fri, 29 Jan 2016 23:13:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zLzA4NTg3NDc1NzExOTUxOTg1OTk1L2FjdGlvbnM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661/runs/08587474976871167923/actions?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzY2MS9ydW5zLzA4NTg3NDc0OTc2ODcxMTY3OTIzL2FjdGlvbnM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c21857eb-542e-4485-84e6-6bc091f8a844" + "103dc2b4-c4d7-446f-ac0a-9763aa1a3863" ], "accept-language": [ "en-US" @@ -514,10 +514,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.0974815Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.23151Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"371232c6-0df8-4a38-aef0-5942c3bd071c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/58BEA_86d81cfe9cb94cdf952ed74502a405d6_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=q%2F9%2F3da%2BX8vgu7qLWih%2BGfWNE8LPOVpPHqIvFWE21So%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A078DD60\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/FB019_ca0620fa688c4d669272b2b427853ed3_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=%2B%2BO7U58CmRQnMIxg%2B5iuo8YA46KYtNpk1VG3RKg8ftY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A079EF16\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"e4tJjbeGloY+NYlCsh11vQ==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.019364Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.2611503Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"1b9404db-fa8d-4feb-8a19-9e767ebef4a3\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/773A2_2ccc35b9703443699c5d4f016ccec6fc_http1:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=pn0a2Nv%2FYb5Wj7ooIlj97Q2%2FBz7010LwuofI%2FLTEkOg%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A07C127D\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/75259_2b8cc5c840d5445cb0343dba8092c9f8_http1:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=ECvJY%2BaB5wjT%2B5CUxB9%2BXTGx7mt%2FpDTpSD4oOnRKIrI%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A07E0EC3\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A4CfI9ZoDZ91HJttv0jZHA==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http1\",\r\n \"name\": \"http1\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:13:19.8298261Z\",\r\n \"endTime\": \"2016-01-29T23:13:19.9419846Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"f98812cb-3b62-469a-8709-fae1621dafb0\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe15d2593bb2a4e8eb4f58292024e5d5b20160129t000000zcontent/AE20F_768f8bbb9357406bb37b6c3c27025efc_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=Y6jQ3Q%2Bg4SMbQeBe04QKTWEnSe1I48EBwJY1O3SjwfM%3D&se=2016-01-30T03%3A13%3A20Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901C749A7BA\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe15d2593bb2a4e8eb4f58292024e5d5b20160129t000000zcontent/119C1_a2040f72919645e0952d38b758161194_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=XToyZe0APTSZAuEFmCOaPI2MIxlDlPdFv8MTTDt61vY%3D&se=2016-01-30T03%3A13%3A20Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901C7495982\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"l3Y2XLyys2BTr/5CySs7Ug==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661/runs/08587474976871167923/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:13:19.8599063Z\",\r\n \"endTime\": \"2016-01-29T23:13:19.9720664Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"781cb6f7-5b0b-4ca5-aa53-6513fe03084f\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe15d2593bb2a4e8eb4f58292024e5d5b20160129t000000zcontent/982E0_5533514b531146b492267b98a2847d95_http1:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=PqOLM%2FkMe%2BdNhh6qKvLvJ68da9cGsGr4e5XvR5B2d3Q%3D&se=2016-01-30T03%3A13%3A20Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901C74B07A0\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe15d2593bb2a4e8eb4f58292024e5d5b20160129t000000zcontent/60F3F_b280426e37dd4029a05eca76ca6291ba_http1:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=bOsAG37UA8PiRmrK4iLa4IswGSDvnyD23dHK15q88TM%3D&se=2016-01-30T03%3A13%3A20Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901C74D03EC\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"KXGRlLVkon2MZzdxND72jQ==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661/runs/08587474976871167923/actions/http1\",\r\n \"name\": \"http1\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2568" + "2549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,16 +532,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:38ca950f-43af-4140-85ac-9eaaf7c8a97d" + "westus:e1aa46ab-9379-40b7-8ce4-26f5d11eb835" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14921" ], "x-ms-correlation-request-id": [ - "e7dbf2b3-cb08-415e-a8eb-cf6598855c95" + "610e848c-f2e1-4a10-9528-47e9721a1933" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024812Z:e7dbf2b3-cb08-415e-a8eb-cf6598855c95" + "WESTUS:20160129T231321Z:610e848c-f2e1-4a10-9528-47e9721a1933" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -550,19 +550,19 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:12 GMT" + "Fri, 29 Jan 2016 23:13:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazI1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjg4NC9ydW5zLzA4NTg3NDc1NzExOTUxOTg1OTk1L2FjdGlvbnMvaHR0cD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661/runs/08587474976871167923/actions/http?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzY2MS9ydW5zLzA4NTg3NDc0OTc2ODcxMTY3OTIzL2FjdGlvbnMvaHR0cD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "072c1fa0-29fd-4a8b-9c54-76f905bbf91b" + "881776ad-128a-4c3b-9f32-30f7660da202" ], "accept-language": [ "en-US" @@ -571,10 +571,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T02:48:11.0974815Z\",\r\n \"endTime\": \"2016-01-29T02:48:11.23151Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"371232c6-0df8-4a38-aef0-5942c3bd071c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/58BEA_86d81cfe9cb94cdf952ed74502a405d6_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=q%2F9%2F3da%2BX8vgu7qLWih%2BGfWNE8LPOVpPHqIvFWE21So%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A078DD60\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow7b7e4538d8f44e03b6d9c532ac2df57c20160129t000000zcontent/FB019_ca0620fa688c4d669272b2b427853ed3_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=%2B%2BO7U58CmRQnMIxg%2B5iuo8YA46KYtNpk1VG3RKg8ftY%3D&se=2016-01-29T06%3A48%3A12Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32856A079EF16\\\"\",\r\n \"contentSize\": 79746,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"e4tJjbeGloY+NYlCsh11vQ==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2550/providers/Microsoft.Logic/workflows/onesdk6884/runs/08587475711951985995/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:13:19.8298261Z\",\r\n \"endTime\": \"2016-01-29T23:13:19.9419846Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"f98812cb-3b62-469a-8709-fae1621dafb0\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe15d2593bb2a4e8eb4f58292024e5d5b20160129t000000zcontent/AE20F_768f8bbb9357406bb37b6c3c27025efc_http:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=Y6jQ3Q%2Bg4SMbQeBe04QKTWEnSe1I48EBwJY1O3SjwfM%3D&se=2016-01-30T03%3A13%3A20Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901C749A7BA\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/flowe15d2593bb2a4e8eb4f58292024e5d5b20160129t000000zcontent/119C1_a2040f72919645e0952d38b758161194_http:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=XToyZe0APTSZAuEFmCOaPI2MIxlDlPdFv8MTTDt61vY%3D&se=2016-01-30T03%3A13%3A20Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901C7495982\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"l3Y2XLyys2BTr/5CySs7Ug==\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1772/providers/Microsoft.Logic/workflows/onesdk3661/runs/08587474976871167923/actions/http\",\r\n \"name\": \"http\",\r\n \"type\": \"Microsoft.Logic/workflows/runs/actions\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1275" + "1265" ], "Content-Type": [ "application/json; charset=utf-8" @@ -589,16 +589,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:effda38f-cac9-4a5b-aa8f-ba28adeda7d3" + "westus:e8841de4-e6fa-4735-bd02-79bdf8e42dc7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" + "14920" ], "x-ms-correlation-request-id": [ - "34a69ebc-354f-475f-8d5e-c7add7f56f95" + "e7727d77-b776-4a51-91ca-d539ba4dfcfd" ], "x-ms-routing-request-id": [ - "WESTUS:20160129T024812Z:34a69ebc-354f-475f-8d5e-c7add7f56f95" + "WESTUS:20160129T231321Z:e7727d77-b776-4a51-91ca-d539ba4dfcfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -607,7 +607,7 @@ "no-cache" ], "Date": [ - "Fri, 29 Jan 2016 02:48:12 GMT" + "Fri, 29 Jan 2016 23:13:21 GMT" ] }, "StatusCode": 200 @@ -615,8 +615,8 @@ ], "Names": { "Test-GetAzureLogicAppRunAction": [ - "onesdk2550", - "onesdk6884" + "onesdk1772", + "onesdk3661" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json index 595110e193a5..73d8d1af1cef 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestGetAzureLogicAppRunHistory.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3251?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMyNTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,10 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "102" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -24,20 +21,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14866" ], "x-ms-request-id": [ - "631a3d4c-c263-46b6-b1ea-4ed3554af996" + "1e0f3807-a014-449c-a095-fd79e0b85507" ], "x-ms-correlation-request-id": [ - "631a3d4c-c263-46b6-b1ea-4ed3554af996" + "1e0f3807-a014-449c-a095-fd79e0b85507" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213734Z:631a3d4c-c263-46b6-b1ea-4ed3554af996" + "WESTUS:20160129T231424Z:1e0f3807-a014-449c-a095-fd79e0b85507" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +40,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:33 GMT" + "Fri, 29 Jan 2016 23:14:23 GMT" ] }, - "StatusCode": 404 + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc3NzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3251?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMyNTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +61,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776\",\r\n \"name\": \"onesdk7776\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251\",\r\n \"name\": \"onesdk3251\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -85,13 +79,13 @@ "1195" ], "x-ms-request-id": [ - "8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + "d09207e6-84a1-4dc5-8700-10fb36a43904" ], "x-ms-correlation-request-id": [ - "8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + "d09207e6-84a1-4dc5-8700-10fb36a43904" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213735Z:8ae8ebef-79c2-4c1c-8f47-014bc4d36e40" + "WESTUS:20160129T231424Z:d09207e6-84a1-4dc5-8700-10fb36a43904" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +94,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:34 GMT" + "Fri, 29 Jan 2016 23:14:24 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +124,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "14865" ], "x-ms-request-id": [ - "180a92a6-42e3-4238-b1d8-36b569971c92" + "e19d3653-a54d-4972-836f-03cac06a4e71" ], "x-ms-correlation-request-id": [ - "180a92a6-42e3-4238-b1d8-36b569971c92" + "e19d3653-a54d-4972-836f-03cac06a4e71" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213735Z:180a92a6-42e3-4238-b1d8-36b569971c92" + "WESTUS:20160129T231424Z:e19d3653-a54d-4972-836f-03cac06a4e71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +142,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:34 GMT" + "Fri, 29 Jan 2016 23:14:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed4718ce-3d4a-456c-ad58-22c30db91e1c" + "ab157327-48c7-45e6-9161-1c1a3edac510" ], "accept-language": [ "en-US" @@ -172,7 +166,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk7776-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk7776\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3251-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3251\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +184,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c0e9456-8271-4e80-9877-aa1970dae099" + "211f2a27-80f7-4082-b79b-f7d4c762e5b4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14861" + "14949" ], "x-ms-correlation-request-id": [ - "71f0a45e-3da7-464d-b5ad-e9c876da204a" + "e1b3f2e9-7ef5-41b6-a3ae-d16b7f8a200a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213749Z:71f0a45e-3da7-464d-b5ad-e9c876da204a" + "WESTUS:20160129T231440Z:e1b3f2e9-7ef5-41b6-a3ae-d16b7f8a200a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:48 GMT" + "Fri, 29 Jan 2016 23:14:39 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +214,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODUwNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e8b1ac6-16c9-4f6c-9912-2cb4c3d614c8" + "e4dca37a-a874-49be-badc-0d32f22817f6" ], "accept-language": [ "en-US" @@ -235,7 +229,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9693' under resource group 'onesdk7776' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8506' under resource group 'onesdk3251' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +247,13 @@ "gateway" ], "x-ms-request-id": [ - "f4615d65-da3f-41b8-979f-a8df633e554a" + "da6eb6c3-b54d-4c01-98e6-c9a8c34efadf" ], "x-ms-correlation-request-id": [ - "f4615d65-da3f-41b8-979f-a8df633e554a" + "da6eb6c3-b54d-4c01-98e6-c9a8c34efadf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213750Z:f4615d65-da3f-41b8-979f-a8df633e554a" + "WESTUS:20160129T231440Z:da6eb6c3-b54d-4c01-98e6-c9a8c34efadf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,304 +262,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:49 GMT" + "Fri, 29 Jan 2016 23:14:39 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "634cebd3-084a-410e-a0ac-20413dd4e3e9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:08e7d46b-a9ea-4e88-b9ae-93dea8a26c22" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" - ], - "x-ms-correlation-request-id": [ - "7a1c26be-3fcc-4885-b9c0-201955eb1901" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213755Z:7a1c26be-3fcc-4885-b9c0-201955eb1901" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:37:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fb225472-d8b3-499f-9cbe-44b348f6bb69" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:fe6cd076-7b89-4258-9d31-d8e4c235e4c1" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" - ], - "x-ms-correlation-request-id": [ - "16e6d15a-872e-4f52-9cd7-29c9e53b33c7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213757Z:16e6d15a-872e-4f52-9cd7-29c9e53b33c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:37:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2dda5b05-97e0-4601-b9ae-35991856da9d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:7e957de3-df02-4e5b-adb3-5eb347572af9" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" - ], - "x-ms-correlation-request-id": [ - "46c43656-a5be-411c-8fc9-29a37d6279f7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213759Z:46c43656-a5be-411c-8fc9-29a37d6279f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:37:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5e2383c4-8724-4168-b704-5ad09bec82d2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:cb7ab54c-1b85-4013-b526-ffb1fe4903e1" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" - ], - "x-ms-correlation-request-id": [ - "c6e73867-3b31-450c-b94f-de1887ca0928" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213801Z:c6e73867-3b31-450c-b94f-de1887ca0928" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:38:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3f417649-02a4-4386-a29e-a7d4af0439a0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:448cfd64-caa4-42b2-b9a7-7dcc72409287" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" - ], - "x-ms-correlation-request-id": [ - "e6e30169-03ad-491b-82f2-39ca7e8f49f8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213803Z:e6e30169-03ad-491b-82f2-39ca7e8f49f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:38:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODUwNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7b47666-755e-4f90-839e-6b1d80a7100a" + "d017dd71-2a71-4d76-9bdc-abee56e5f48d" ], "accept-language": [ "en-US" @@ -574,7 +283,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7086747Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:14:41.5475104Z\",\r\n \"changedTime\": \"2016-01-29T23:14:41.5477742Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474976039952476\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506\",\r\n \"name\": \"onesdk8506\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -592,16 +301,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4f70933b-daf5-4e58-a3e6-59fd9e33fa00" + "westus:f7ccff64-7adc-4b6b-9bf0-2b22bca4c3b7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" + "14920" ], "x-ms-correlation-request-id": [ - "67eac913-453b-4c29-b637-1c7a0edd7ae0" + "1e5285f7-491b-460d-ba7d-b87df9465e3a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213805Z:67eac913-453b-4c29-b637-1c7a0edd7ae0" + "WESTUS:20160129T231443Z:1e5285f7-491b-460d-ba7d-b87df9465e3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -610,16 +319,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:38:05 GMT" + "Fri, 29 Jan 2016 23:14:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODUwNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -628,7 +337,7 @@ "1774" ], "x-ms-client-request-id": [ - "15f548da-0e12-43b3-99bb-50fd788fc02e" + "6fe56edf-75fa-49e1-b4a1-851191f26bc4" ], "accept-language": [ "en-US" @@ -637,7 +346,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"changedTime\": \"2016-01-26T21:37:51.7084029Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477626139623697\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693\",\r\n \"name\": \"onesdk9693\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:14:41.5475104Z\",\r\n \"changedTime\": \"2016-01-29T23:14:41.5475104Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474976039952476\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506\",\r\n \"name\": \"onesdk8506\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -652,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:f16fff26-938d-47e1-89ba-0bb84f55b1c5" + "westus:89b4d62b-e9df-4067-8649-ce6f856124b9" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "8568a751-068e-4ee1-84c7-f0fdd8a05a9f" + "0db420c6-a6e1-4202-9783-a12b518ba87e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213753Z:8568a751-068e-4ee1-84c7-f0fdd8a05a9f" + "WESTUS:20160129T231441Z:0db420c6-a6e1-4202-9783-a12b518ba87e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,19 +379,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:37:52 GMT" + "Fri, 29 Jan 2016 23:14:40 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODUwNi90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "904804de-3055-4e32-a6f1-583d22f88613" + "db257f8b-b87c-4024-b445-f23caf64973b" ], "accept-language": [ "en-US" @@ -703,16 +412,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:52b92822-a626-4ddd-8f7f-f623d40c67c4" + "westus:a1c6ccef-a850-440f-ae8f-97be081ee239" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-correlation-request-id": [ - "c5b18e83-9a9b-4560-81df-954a989eff05" + "f593cc3b-6569-4104-9a42-581678ed2c6c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213806Z:c5b18e83-9a9b-4560-81df-954a989eff05" + "WESTUS:20160129T231444Z:f593cc3b-6569-4104-9a42-581678ed2c6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -721,19 +430,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:38:06 GMT" + "Fri, 29 Jan 2016 23:14:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506/runs?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODUwNi9ydW5zP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce116594-1976-41be-9f70-c233ccb50e8d" + "49895bdd-6d4d-45f4-a67e-9f94c21e4d4c" ], "accept-language": [ "en-US" @@ -742,10 +451,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:37:53.1425437Z\",\r\n \"endTime\": \"2016-01-26T21:37:54.1215716Z\",\r\n \"status\": \"Succeeded\",\r\n \"correlationId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"workflow\": {\r\n \"name\": \"onesdk9693/08587477626139623697\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/versions/08587477626139623697\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F1E4A_4ae25d4a1f0b4c998474628226574c66_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=uTs%2BCKI1r8tG9OcVMNFbLtdFlD4wjqvvtriADVkZ%2FUY%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F220B6BD\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F02A1_327a8e388a3a405ab5c760aba1697587_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=4J0HlZD1VDNRczPjVeD4i2tBZ3KJJNbMrn%2BV7cDjQbg%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F2208FA5\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"S2yNZzvMTD8A2LamZWzk3A==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-26T21:37:52.9544639Z\",\r\n \"endTime\": \"2016-01-26T21:37:53.0325829Z\",\r\n \"trackingId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709\",\r\n \"name\": \"08587477626125197709\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:14:43.0194846Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"b1c42d36-9720-43b1-9e65-b2af859f2f9a\",\r\n \"workflow\": {\r\n \"name\": \"onesdk8506/08587474976039952476\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506/versions/08587474976039952476\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flow8b2ac32b67314c98b42e0083689a9eea20160129t000000zcontent/DDAA1_21eebb3045dd4a4183d6529ed2d214de_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=YDZARzh7J9t1U09fvsNlMGVxXhPR56a5%2F7fOstVYYzI%3D&se=2016-01-30T03%3A14%3A44Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901F8A01D0B\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flow8b2ac32b67314c98b42e0083689a9eea20160129t000000zcontent/1E8C4_5305af09597e4dae89f0703b890540df_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=pV%2BXzxLCdzAbHY7JH6AVe3kRzXuwfUJluQzg8NaiQMc%3D&se=2016-01-30T03%3A14%3A44Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901F8A06B30\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"cdlWmYyU1uFowWjS8poZFQ==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-29T23:14:42.8664202Z\",\r\n \"endTime\": \"2016-01-29T23:14:42.9445506Z\",\r\n \"trackingId\": \"b1c42d36-9720-43b1-9e65-b2af859f2f9a\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506/runs/08587474976026031776\",\r\n \"name\": \"08587474976026031776\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1798" + "1738" ], "Content-Type": [ "application/json; charset=utf-8" @@ -760,16 +469,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:003092d8-271e-41f2-838c-56219397318a" + "westus:a7e1e7e1-9a2b-4f6e-af29-f68793df23bc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14919" ], "x-ms-correlation-request-id": [ - "fb6c2e26-c501-43f9-ba0e-8cb1000725eb" + "90b94f42-1243-4ffb-a447-de9a4991735b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213806Z:fb6c2e26-c501-43f9-ba0e-8cb1000725eb" + "WESTUS:20160129T231444Z:90b94f42-1243-4ffb-a447-de9a4991735b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,19 +487,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:38:06 GMT" + "Fri, 29 Jan 2016 23:14:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc3NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTY5My9ydW5zLzA4NTg3NDc3NjI2MTI1MTk3NzA5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506/runs/08587474976026031776?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODUwNi9ydW5zLzA4NTg3NDc0OTc2MDI2MDMxNzc2P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "554b5d5a-49d1-4e19-8017-5257659254d6" + "93baa541-cc40-4035-9a67-ce7ad25c94a9" ], "accept-language": [ "en-US" @@ -799,10 +508,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:37:53.1425437Z\",\r\n \"endTime\": \"2016-01-26T21:37:54.1215716Z\",\r\n \"status\": \"Succeeded\",\r\n \"correlationId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"workflow\": {\r\n \"name\": \"onesdk9693/08587477626139623697\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/versions/08587477626139623697\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F1E4A_4ae25d4a1f0b4c998474628226574c66_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=uTs%2BCKI1r8tG9OcVMNFbLtdFlD4wjqvvtriADVkZ%2FUY%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F220B6BD\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu05by01.blob.core.windows.net/flow441bffb57bde4d3ebc01edfb75af8eb020160126t000000zcontent/F02A1_327a8e388a3a405ab5c760aba1697587_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=4J0HlZD1VDNRczPjVeD4i2tBZ3KJJNbMrn%2BV7cDjQbg%3D&se=2016-01-27T01%3A38%3A06Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32698F2208FA5\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"S2yNZzvMTD8A2LamZWzk3A==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-26T21:37:52.9544639Z\",\r\n \"endTime\": \"2016-01-26T21:37:53.0325829Z\",\r\n \"trackingId\": \"55a6b3b4-d206-4b60-8a48-86002cfbb440\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7776/providers/Microsoft.Logic/workflows/onesdk9693/runs/08587477626125197709\",\r\n \"name\": \"08587477626125197709\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:14:43.0194846Z\",\r\n \"status\": \"Running\",\r\n \"correlationId\": \"b1c42d36-9720-43b1-9e65-b2af859f2f9a\",\r\n \"workflow\": {\r\n \"name\": \"onesdk8506/08587474976039952476\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506/versions/08587474976039952476\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n },\r\n \"trigger\": {\r\n \"name\": \"httpTrigger\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flow8b2ac32b67314c98b42e0083689a9eea20160129t000000zcontent/DDAA1_21eebb3045dd4a4183d6529ed2d214de_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=YDZARzh7J9t1U09fvsNlMGVxXhPR56a5%2F7fOstVYYzI%3D&se=2016-01-30T03%3A14%3A44Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901F8A01D0B\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flow8b2ac32b67314c98b42e0083689a9eea20160129t000000zcontent/1E8C4_5305af09597e4dae89f0703b890540df_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=pV%2BXzxLCdzAbHY7JH6AVe3kRzXuwfUJluQzg8NaiQMc%3D&se=2016-01-30T03%3A14%3A44Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32901F8A06B30\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"cdlWmYyU1uFowWjS8poZFQ==\"\r\n }\r\n },\r\n \"startTime\": \"2016-01-29T23:14:42.8664202Z\",\r\n \"endTime\": \"2016-01-29T23:14:42.9445506Z\",\r\n \"trackingId\": \"b1c42d36-9720-43b1-9e65-b2af859f2f9a\",\r\n \"code\": \"OK\",\r\n \"status\": \"Succeeded\"\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3251/providers/Microsoft.Logic/workflows/onesdk8506/runs/08587474976026031776\",\r\n \"name\": \"08587474976026031776\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1786" + "1726" ], "Content-Type": [ "application/json; charset=utf-8" @@ -817,16 +526,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:75c84f22-2a79-4f9b-9e84-e5ceba4ba800" + "westus:f333df82-cb4f-415e-b268-8dba8fa1769d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14918" ], "x-ms-correlation-request-id": [ - "4918f084-ec7c-49da-8e8c-e220b4718770" + "71f2059b-a3f9-45c8-b05e-721a964c2e04" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213806Z:4918f084-ec7c-49da-8e8c-e220b4718770" + "WESTUS:20160129T231444Z:71f2059b-a3f9-45c8-b05e-721a964c2e04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -835,7 +544,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:38:06 GMT" + "Fri, 29 Jan 2016 23:14:44 GMT" ] }, "StatusCode": 200 @@ -843,8 +552,8 @@ ], "Names": { "Test-GetAzureLogicAppRunHistory": [ - "onesdk7776", - "onesdk9693" + "onesdk3251", + "onesdk8506" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json index 8af45285b977..dfaedcd3c9cf 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowRunTests/TestRunLogicApp.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk589?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "102" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14895" ], "x-ms-request-id": [ - "418d6d13-6725-411e-9166-8945adc37df2" + "61c97ff1-1e86-4721-9e7c-aa1fc06b7e28" ], "x-ms-correlation-request-id": [ - "418d6d13-6725-411e-9166-8945adc37df2" + "61c97ff1-1e86-4721-9e7c-aa1fc06b7e28" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213555Z:418d6d13-6725-411e-9166-8945adc37df2" + "WESTUS:20160129T231346Z:61c97ff1-1e86-4721-9e7c-aa1fc06b7e28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:35:55 GMT" + "Fri, 29 Jan 2016 23:13:46 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazgwNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk589?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU4OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,10 +67,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047\",\r\n \"name\": \"onesdk8047\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589\",\r\n \"name\": \"onesdk589\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1188" ], "x-ms-request-id": [ - "bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + "5cdd4ac2-5811-4236-b486-3b26ae51e00f" ], "x-ms-correlation-request-id": [ - "bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + "5cdd4ac2-5811-4236-b486-3b26ae51e00f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213558Z:bdf3ce90-c9fd-4adb-aa6f-004d0289f58f" + "WESTUS:20160129T231347Z:5cdd4ac2-5811-4236-b486-3b26ae51e00f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:35:58 GMT" + "Fri, 29 Jan 2016 23:13:46 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4OS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14894" ], "x-ms-request-id": [ - "1aa57fe4-e027-4cde-9450-c22043b23345" + "6b5a6444-9f75-45ae-a01f-8e2ce800db9c" ], "x-ms-correlation-request-id": [ - "1aa57fe4-e027-4cde-9450-c22043b23345" + "6b5a6444-9f75-45ae-a01f-8e2ce800db9c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213558Z:1aa57fe4-e027-4cde-9450-c22043b23345" + "WESTUS:20160129T231347Z:6b5a6444-9f75-45ae-a01f-8e2ce800db9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:35:58 GMT" + "Fri, 29 Jan 2016 23:13:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4OS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9TdGFuZGFyZFNlcnZpY2VQbGFuP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49961c78-4dd1-4e47-8eb3-2400ce9bb0fa" + "c41280ae-a42a-449c-abe5-202fd52ff97e" ], "accept-language": [ "en-US" @@ -172,10 +172,10 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk8047-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk8047\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk589-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk589\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "951" + "948" ], "Content-Type": [ "application/json" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91be29c6-382f-4718-9320-0285b2050935" + "f2af35b8-c251-4078-ac2c-43aca6c66027" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14903" ], "x-ms-correlation-request-id": [ - "2bd7db75-1399-4a0f-b2b6-ef692e7c3019" + "e7b9cfbb-6e0d-4865-887f-4ff8676acdd8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213611Z:2bd7db75-1399-4a0f-b2b6-ef692e7c3019" + "WESTUS:20160129T231356Z:e7b9cfbb-6e0d-4865-887f-4ff8676acdd8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:36:10 GMT" + "Fri, 29 Jan 2016 23:13:56 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/providers/Microsoft.Logic/workflows/onesdk8528?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs4NTI4P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27ffacc6-4364-47a5-93cc-347fedfccbdf" + "c3122de0-4ca7-45d9-a21e-475f115913d5" ], "accept-language": [ "en-US" @@ -235,10 +235,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk6210' under resource group 'onesdk8047' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8528' under resource group 'onesdk589' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "150" + "149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "b093dcef-712d-47ab-ae9c-86e25305a623" + "3d899d4e-e080-4434-82f4-41b36a7115b1" ], "x-ms-correlation-request-id": [ - "b093dcef-712d-47ab-ae9c-86e25305a623" + "3d899d4e-e080-4434-82f4-41b36a7115b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213611Z:b093dcef-712d-47ab-ae9c-86e25305a623" + "WESTUS:20160129T231356Z:3d899d4e-e080-4434-82f4-41b36a7115b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,19 +268,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:36:11 GMT" + "Fri, 29 Jan 2016 23:13:55 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/providers/Microsoft.Logic/workflows/onesdk8528?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs4NTI4P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "446485ce-750d-4489-9d31-132966c42583" + "967f1407-2769-4cc0-9d5e-8bf610c17019" ], "accept-language": [ "en-US" @@ -289,10 +289,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:13:57.8098145Z\",\r\n \"changedTime\": \"2016-01-29T23:13:57.8107219Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474976477350733\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk589/providers/Microsoft.Logic/workflows/onesdk8528\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/providers/Microsoft.Logic/workflows/onesdk8528\",\r\n \"name\": \"onesdk8528\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1576" + "1573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,130 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:e2645e63-68f5-4dba-a3d9-13a635f4b1a7" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" - ], - "x-ms-correlation-request-id": [ - "838ae18a-3cd9-4343-bf70-b4b94345185a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213616Z:838ae18a-3cd9-4343-bf70-b4b94345185a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:36:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3344a378-27c7-4399-91d9-066eaeda1521" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:51433142-99df-4bf2-b271-37b203ee3cbe" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" - ], - "x-ms-correlation-request-id": [ - "a11fe84c-b81b-474c-b3a5-c8fd48113360" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213618Z:a11fe84c-b81b-474c-b3a5-c8fd48113360" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:36:18 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3dd6c915-2b4c-48ce-b7ba-4162a3daa8ef" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:4ad9ad49-adc7-42ea-a0fa-4ed00e658755" + "westus:ea49258c-b0eb-4037-b740-451650d46dc0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14925" ], "x-ms-correlation-request-id": [ - "22e7d2df-e5f7-48f5-aaec-4da965478cf5" + "9f96c73c-6238-4dc0-83d9-67c2cd1a6528" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213620Z:22e7d2df-e5f7-48f5-aaec-4da965478cf5" + "WESTUS:20160129T231400Z:9f96c73c-6238-4dc0-83d9-67c2cd1a6528" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,196 +325,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:36:20 GMT" + "Fri, 29 Jan 2016 23:13:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d3335ea7-2ae3-4f59-8fd9-e22e5eb82485" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:6e81bd7c-a799-4237-9342-0ec2b922422c" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" - ], - "x-ms-correlation-request-id": [ - "e41af364-faf8-496c-986e-cfc1ec053e79" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213622Z:e41af364-faf8-496c-986e-cfc1ec053e79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:36:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b43fbdcd-ab30-44e6-8a29-be6991d797e6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:ded67c9e-555e-408b-afc3-190637c59caf" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], - "x-ms-correlation-request-id": [ - "224f2ac0-0fdf-4a56-a834-3bdb317fef0a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213625Z:224f2ac0-0fdf-4a56-a834-3bdb317fef0a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:36:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "68bb1c00-d944-4df9-be37-e691858b9a35" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4011081Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1576" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:43e050b2-46ca-4804-a5ff-6496e92df154" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" - ], - "x-ms-correlation-request-id": [ - "f0f0525c-4718-4c7a-b2b4-342b7446b004" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213627Z:f0f0525c-4718-4c7a-b2b4-342b7446b004" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Jan 2016 21:36:26 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/providers/Microsoft.Logic/workflows/onesdk8528?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs4NTI4P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1774" + "1773" ], "x-ms-client-request-id": [ - "2e56887a-6e7b-4d62-a999-700eb4d3586d" + "34b1d039-88de-4b28-a1c2-48cf6b8a1aae" ], "accept-language": [ "en-US" @@ -637,10 +352,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"changedTime\": \"2016-01-26T21:36:13.4008438Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477627122473975\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210\",\r\n \"name\": \"onesdk6210\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:13:57.8098145Z\",\r\n \"changedTime\": \"2016-01-29T23:13:57.8098145Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474976477350733\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk589/providers/Microsoft.Logic/workflows/onesdk8528\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/providers/Microsoft.Logic/workflows/onesdk8528\",\r\n \"name\": \"onesdk8528\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1576" + "1573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -652,16 +367,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:cba8483f-f70c-4b83-8488-1d3169103006" + "westus:9c320af0-9286-40e9-bb6a-cbca241b7cc4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "a82788e4-ea57-4211-805e-7e894b1f3d36" + "7efa611b-5266-4b25-b3e9-f3a945434ea8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213614Z:a82788e4-ea57-4211-805e-7e894b1f3d36" + "WESTUS:20160129T231358Z:7efa611b-5266-4b25-b3e9-f3a945434ea8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,19 +385,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:36:13 GMT" + "Fri, 29 Jan 2016 23:13:57 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8047/providers/Microsoft.Logic/workflows/onesdk6210/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazgwNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNjIxMC90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk589/providers/Microsoft.Logic/workflows/onesdk8528/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs4NTI4L3RyaWdnZXJzL2h0dHBUcmlnZ2VyL3J1bj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df17c312-1c06-4b15-982e-4e5e3478c5d5" + "4dea8c07-af02-4af6-8166-bd75a87a00e7" ], "accept-language": [ "en-US" @@ -703,16 +418,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:91043b0a-3d9c-4d8d-ac3f-bbe397a92186" + "westus:ec964e53-6efc-4471-afa4-4ef0a3c1e929" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "4d817e26-e486-453c-aead-473b25d028b2" + "006aae0c-e289-40ff-9fef-201333950d4d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T213627Z:4d817e26-e486-453c-aead-473b25d028b2" + "WESTUS:20160129T231400Z:006aae0c-e289-40ff-9fef-201333950d4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -721,7 +436,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:36:27 GMT" + "Fri, 29 Jan 2016 23:13:59 GMT" ] }, "StatusCode": 200 @@ -729,8 +444,8 @@ ], "Names": { "Test-StartLogicApp": [ - "onesdk8047", - "onesdk6210" + "onesdk589", + "onesdk8528" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json index 18a995549693..4cb10ad7e7d1 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndGetLogicAppUsingDefinitionWithActions.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3245?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMyNDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14765" + "14922" ], "x-ms-request-id": [ - "3739f087-6727-4582-ad63-4540a0b4b156" + "f34bdeb9-42f7-40dd-b8af-06c750afc67e" ], "x-ms-correlation-request-id": [ - "3739f087-6727-4582-ad63-4540a0b4b156" + "f34bdeb9-42f7-40dd-b8af-06c750afc67e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211314Z:3739f087-6727-4582-ad63-4540a0b4b156" + "WESTUS:20160129T231928Z:f34bdeb9-42f7-40dd-b8af-06c750afc67e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:13 GMT" + "Fri, 29 Jan 2016 23:19:27 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3245?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMyNDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331\",\r\n \"name\": \"onesdk5331\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245\",\r\n \"name\": \"onesdk3245\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-request-id": [ - "15a3aaf6-0854-47d3-bfe6-be12cae3a003" + "794ad0f2-ad57-43b6-b626-67e2633fce1c" ], "x-ms-correlation-request-id": [ - "15a3aaf6-0854-47d3-bfe6-be12cae3a003" + "794ad0f2-ad57-43b6-b626-67e2633fce1c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211315Z:15a3aaf6-0854-47d3-bfe6-be12cae3a003" + "WESTUS:20160129T231929Z:794ad0f2-ad57-43b6-b626-67e2633fce1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:14 GMT" + "Fri, 29 Jan 2016 23:19:28 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNDUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" + "14921" ], "x-ms-request-id": [ - "bba8bed9-5b64-4e03-8d44-51fd58414cf4" + "9e8144d8-3d5c-492e-b1a8-ba176e25e7f7" ], "x-ms-correlation-request-id": [ - "bba8bed9-5b64-4e03-8d44-51fd58414cf4" + "9e8144d8-3d5c-492e-b1a8-ba176e25e7f7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211315Z:bba8bed9-5b64-4e03-8d44-51fd58414cf4" + "WESTUS:20160129T231929Z:9e8144d8-3d5c-492e-b1a8-ba176e25e7f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:14 GMT" + "Fri, 29 Jan 2016 23:19:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e90d103b-327c-4cdd-abc5-44487fc5e91d" + "4570c219-a822-48e0-a011-cfc3a79d9ab1" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5331-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5331\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3245-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3245\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46e7eb17-4cb6-42c0-b713-782b2bc89e2e" + "f7c577d3-2a13-42b2-8745-91316d396599" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" + "14925" ], "x-ms-correlation-request-id": [ - "7158f7f0-50b8-453a-97b1-15dda4ff124e" + "0f01a849-1276-4776-af1e-2936aebf126a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211330Z:7158f7f0-50b8-453a-97b1-15dda4ff124e" + "WESTUS:20160129T231935Z:0f01a849-1276-4776-af1e-2936aebf126a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:30 GMT" + "Fri, 29 Jan 2016 23:19:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Logic/workflows/onesdk4143?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDE0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5245c2b-f404-46b1-84b7-64016dc2f01d" + "2ebc703d-4ce0-4da9-a3fa-0f15d664d86f" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8699' under resource group 'onesdk5331' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4143' under resource group 'onesdk3245' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "d69b1ea4-4d0b-428a-828a-38becee7a245" + "356ac91c-fd49-4251-b79c-14773925ee07" ], "x-ms-correlation-request-id": [ - "d69b1ea4-4d0b-428a-828a-38becee7a245" + "356ac91c-fd49-4251-b79c-14773925ee07" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211330Z:d69b1ea4-4d0b-428a-828a-38becee7a245" + "WESTUS:20160129T231936Z:356ac91c-fd49-4251-b79c-14773925ee07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,19 +268,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:30 GMT" + "Fri, 29 Jan 2016 23:19:35 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Logic/workflows/onesdk4143?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDE0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "501d3f62-c706-4bde-8c3d-56aa953956fb" + "8a471416-7bd2-416f-82cf-57ab2cd2c8fc" ], "accept-language": [ "en-US" @@ -289,10 +289,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"changedTime\": \"2016-01-26T21:13:33.4724456Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477640722571179\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"name\": \"onesdk8699\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:19:37.5743083Z\",\r\n \"changedTime\": \"2016-01-29T23:19:37.5749645Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474973079742219\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3245/providers/Microsoft.Logic/workflows/onesdk4143\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Logic/workflows/onesdk4143\",\r\n \"name\": \"onesdk4143\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1679" + "1680" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:16892e0f-8749-436a-a895-a4ba53278f91" + "westus:3c3cafa4-ebc8-4063-b080-55f51f2dcd78" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14880" + "14896" ], "x-ms-correlation-request-id": [ - "19b61baa-0f9a-454a-a67f-51ee1acd7c52" + "aff01182-a8b4-4edb-a3fe-3cc70f64a2c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211334Z:19b61baa-0f9a-454a-a67f-51ee1acd7c52" + "WESTUS:20160129T231938Z:aff01182-a8b4-4edb-a3fe-3cc70f64a2c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,16 +325,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:34 GMT" + "Fri, 29 Jan 2016 23:19:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Logic/workflows/onesdk4143?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDE0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"string\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"string\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"string\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"string\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -343,7 +343,7 @@ "1628" ], "x-ms-client-request-id": [ - "169cf574-62f6-48ff-9b01-74737d7a52ba" + "f13cddf1-a001-4f39-bc67-092ac47201a3" ], "accept-language": [ "en-US" @@ -352,10 +352,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"changedTime\": \"2016-01-26T21:13:33.472085Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477640722571179\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699\",\r\n \"name\": \"onesdk8699\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:19:37.5743083Z\",\r\n \"changedTime\": \"2016-01-29T23:19:37.5743083Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474973079742219\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3245/providers/Microsoft.Logic/workflows/onesdk4143\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"subscription\": {\r\n \"defaultValue\": \"1a66ce04-b633-4a0b-b2bc-a912ec8986a6\",\r\n \"type\": \"String\"\r\n },\r\n \"resourceGroup\": {\r\n \"defaultValue\": \"logicapps-e2e\",\r\n \"type\": \"String\"\r\n },\r\n \"authentication\": {\r\n \"defaultValue\": {\r\n \"type\": \"ActiveDirectoryOAuth\",\r\n \"audience\": \"https://management.azure.com/\",\r\n \"tenant\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"clientId\": \"64011f29-3932-4168-b73d-adc835a56732\",\r\n \"secret\": \"q8Wf7SwoM4iSVgaHZdghScLX8xDxMMUATWvRalclJjo=\"\r\n },\r\n \"type\": \"Object\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"listWorkflows\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"someUri\",\r\n \"authentication\": \"@parameters('authentication')\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Logic/workflows/onesdk4143\",\r\n \"name\": \"onesdk4143\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1678" + "1680" ], "Content-Type": [ "application/json; charset=utf-8" @@ -367,16 +367,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:346eecf3-0eb7-469e-a208-4ca6977c40fe" + "westus:bb4eeed6-645b-4112-98ad-4a3dfb4a46ba" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-correlation-request-id": [ - "746c8256-cbd3-480b-88cc-a4a7d1543d6b" + "e47cd00f-7431-4406-b68d-74a0249ab56c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211334Z:746c8256-cbd3-480b-88cc-a4a7d1543d6b" + "WESTUS:20160129T231937Z:e47cd00f-7431-4406-b68d-74a0249ab56c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,19 +385,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:33 GMT" + "Fri, 29 Jan 2016 23:19:37 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/InvalidWorkflow?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvSW52YWxpZFdvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Logic/workflows/InvalidWorkflow?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvSW52YWxpZFdvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92e96af6-e770-44aa-80a6-eca7985636f6" + "5dbf2832-a022-4221-9c24-8e6816838e78" ], "accept-language": [ "en-US" @@ -406,7 +406,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/InvalidWorkflow' under resource group 'onesdk5331' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/InvalidWorkflow' under resource group 'onesdk3245' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "155" @@ -424,13 +424,13 @@ "gateway" ], "x-ms-request-id": [ - "5144a19a-fd67-4be7-8462-579ff6a421f6" + "15113ea7-e404-4eaf-a50c-3a4057327906" ], "x-ms-correlation-request-id": [ - "5144a19a-fd67-4be7-8462-579ff6a421f6" + "15113ea7-e404-4eaf-a50c-3a4057327906" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211334Z:5144a19a-fd67-4be7-8462-579ff6a421f6" + "WESTUS:20160129T231938Z:15113ea7-e404-4eaf-a50c-3a4057327906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,19 +439,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:34 GMT" + "Fri, 29 Jan 2016 23:19:37 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5331/providers/Microsoft.Logic/workflows/onesdk8699?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUzMzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODY5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3245/providers/Microsoft.Logic/workflows/onesdk4143?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMyNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDE0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "478e9f7f-f6bc-4209-9945-1b7580609924" + "398fc184-1608-4464-ad16-1d122b3583ab" ], "accept-language": [ "en-US" @@ -472,16 +472,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:73688625-c741-4bc9-9308-289b8e22cae9" + "westus:8efe41f5-93a7-42b6-8de9-56b9b5d80f94" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-correlation-request-id": [ - "2a7458d2-148c-44e8-a4f7-7c0994c7fd05" + "d386d0b3-520a-411f-a746-b75868634e0a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211335Z:2a7458d2-148c-44e8-a4f7-7c0994c7fd05" + "WESTUS:20160129T231938Z:d386d0b3-520a-411f-a746-b75868634e0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -490,7 +490,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:13:35 GMT" + "Fri, 29 Jan 2016 23:19:37 GMT" ] }, "StatusCode": 200 @@ -498,8 +498,8 @@ ], "Names": { "Test-CreateAndGetLogicAppUsingDefinitionWithActions": [ - "onesdk5331", - "onesdk8699" + "onesdk3245", + "onesdk4143" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json index 6be09b3aa189..cbc7499347ba 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateAndRemoveLogicApp.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5090?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUwOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14907" ], "x-ms-request-id": [ - "2f48abca-dce1-4c40-90ef-b4e9c213a90b" + "3eee6d24-5e2e-43c6-af12-425e2e5f35e6" ], "x-ms-correlation-request-id": [ - "2f48abca-dce1-4c40-90ef-b4e9c213a90b" + "3eee6d24-5e2e-43c6-af12-425e2e5f35e6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211440Z:2f48abca-dce1-4c40-90ef-b4e9c213a90b" + "WESTUS:20160129T231508Z:3eee6d24-5e2e-43c6-af12-425e2e5f35e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:14:39 GMT" + "Fri, 29 Jan 2016 23:15:08 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5090?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUwOTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706\",\r\n \"name\": \"onesdk1706\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090\",\r\n \"name\": \"onesdk5090\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -85,13 +85,13 @@ "1197" ], "x-ms-request-id": [ - "6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + "8838de0f-fa0c-4737-b89a-2101bd0c5566" ], "x-ms-correlation-request-id": [ - "6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + "8838de0f-fa0c-4737-b89a-2101bd0c5566" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211441Z:6befbd5b-8e0c-4b1e-a29e-903e2c5fe20d" + "WESTUS:20160129T231509Z:8838de0f-fa0c-4737-b89a-2101bd0c5566" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:14:40 GMT" + "Fri, 29 Jan 2016 23:15:08 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14906" ], "x-ms-request-id": [ - "c0b7051e-baf5-4766-881e-1ef78abc88fb" + "b1a6ffff-d90f-4a3a-9b90-8c9d99b1a52a" ], "x-ms-correlation-request-id": [ - "c0b7051e-baf5-4766-881e-1ef78abc88fb" + "b1a6ffff-d90f-4a3a-9b90-8c9d99b1a52a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211441Z:c0b7051e-baf5-4766-881e-1ef78abc88fb" + "WESTUS:20160129T231509Z:b1a6ffff-d90f-4a3a-9b90-8c9d99b1a52a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:14:41 GMT" + "Fri, 29 Jan 2016 23:15:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05b6d49b-e5df-4178-ac0c-d831234ec90c" + "3f344c0a-fe48-4d94-a76a-19d0a1fe73e0" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5090-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5090\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3bd2ed9-d6bc-4d8c-accb-c3e33a75722f" + "bde56228-5c90-4ca4-9109-c8eda6f761ef" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "14966" ], "x-ms-correlation-request-id": [ - "f6cdc0ad-795c-4053-8a36-3d82e9954c45" + "232ddb30-5508-4724-9019-7e413c00d540" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211458Z:f6cdc0ad-795c-4053-8a36-3d82e9954c45" + "WESTUS:20160129T231516Z:232ddb30-5508-4724-9019-7e413c00d540" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:14:57 GMT" + "Fri, 29 Jan 2016 23:15:16 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad329cb9-4196-4412-85b0-9b31e357f6bc" + "ef2bf579-8afe-4d85-b93a-637afaaa3690" ], "accept-language": [ "en-US" @@ -238,7 +238,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5090-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5090\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -256,22 +256,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d75556ee-4afd-44c1-9216-446ec86acb68" + "a08e8d54-508f-4da8-9050-6aaa4ce85c1e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14790" + "14965" ], "x-ms-correlation-request-id": [ - "b2e8c714-8c5c-4dfc-bb46-85d4d0a589e0" + "0725fdec-27de-417b-ac84-665fd739df1d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211503Z:b2e8c714-8c5c-4dfc-bb46-85d4d0a589e0" + "WESTUS:20160129T231518Z:0725fdec-27de-417b-ac84-665fd739df1d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:02 GMT" + "Fri, 29 Jan 2016 23:15:18 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -286,13 +286,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6def7a55-51bc-4af4-9961-16c1d7055d69" + "899d1953-4e7b-4855-bd9c-33f92d0c6645" ], "accept-language": [ "en-US" @@ -304,7 +304,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1706-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1706\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5090-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5090\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -322,22 +322,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e10880c-8d23-4060-8c75-bb5d68b41590" + "95d9d46e-c438-4a0a-b529-03db2d397a49" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14964" ], "x-ms-correlation-request-id": [ - "5caf050f-14c3-4239-969a-71692a8ea6b8" + "47bd111d-2a0f-4ced-a561-5c0077b3e6cf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211507Z:5caf050f-14c3-4239-969a-71692a8ea6b8" + "WESTUS:20160129T231522Z:47bd111d-2a0f-4ced-a561-5c0077b3e6cf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:07 GMT" + "Fri, 29 Jan 2016 23:15:22 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -352,13 +352,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk5745?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTc0NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9902ef7-00f5-4e27-9739-90f27cf68ad3" + "fefa121d-bf9e-4271-8f39-09c0fe2d6db8" ], "accept-language": [ "en-US" @@ -367,7 +367,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5636' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5745' under resource group 'onesdk5090' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -385,13 +385,13 @@ "gateway" ], "x-ms-request-id": [ - "f67e6609-9155-4b46-b415-fdbaa632b709" + "b9be69fd-6527-4680-882a-741d2804633e" ], "x-ms-correlation-request-id": [ - "f67e6609-9155-4b46-b415-fdbaa632b709" + "b9be69fd-6527-4680-882a-741d2804633e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211458Z:f67e6609-9155-4b46-b415-fdbaa632b709" + "WESTUS:20160129T231518Z:b9be69fd-6527-4680-882a-741d2804633e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,16 +400,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:14:58 GMT" + "Fri, 29 Jan 2016 23:15:18 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk5745?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTc0NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -418,7 +418,7 @@ "1180" ], "x-ms-client-request-id": [ - "b7728216-4a55-436b-9c1a-5490d6556092" + "da2fa863-a70e-4179-9c86-3195b50b24ae" ], "accept-language": [ "en-US" @@ -427,7 +427,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:00.2333704Z\",\r\n \"changedTime\": \"2016-01-26T21:15:00.2333704Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639853827918\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636\",\r\n \"name\": \"onesdk5636\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:15:17.7488767Z\",\r\n \"changedTime\": \"2016-01-29T23:15:17.7488767Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474975679121192\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk5745\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk5745\",\r\n \"name\": \"onesdk5745\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1356" @@ -442,16 +442,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:1e565d4e-a5f8-40e8-a395-c57f873f443f" + "westus:5566ef22-7589-4cf7-bbc9-a63ec8747703" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "ed48668b-5f8f-4250-b8ce-393f40872d3e" + "8a47c776-eea6-4276-8b4b-08bdbee0127b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211501Z:ed48668b-5f8f-4250-b8ce-393f40872d3e" + "WESTUS:20160129T231520Z:8a47c776-eea6-4276-8b4b-08bdbee0127b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -460,19 +460,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:00 GMT" + "Fri, 29 Jan 2016 23:15:19 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk5636?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTYzNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk5745?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTc0NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18387f42-344d-4e04-9d36-835256ad5ff9" + "69b9b6c1-7a44-4a9b-bdbd-90d2b73978d6" ], "accept-language": [ "en-US" @@ -493,16 +493,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:a814e410-f1ea-45d9-81ad-ddf02b88f181" + "westus:13af191a-01d0-463e-9122-5203a4b8df5f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "a92a4429-d57e-41c8-a961-f30c802d38c4" + "90d0cdad-3f93-4305-8f4c-81375900f9b2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211503Z:a92a4429-d57e-41c8-a961-f30c802d38c4" + "WESTUS:20160129T231520Z:90d0cdad-3f93-4305-8f4c-81375900f9b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,19 +511,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:02 GMT" + "Fri, 29 Jan 2016 23:15:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk583?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTgzP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3db6cf01-8957-43f3-9b1a-a34340d6b12c" + "7c3f2011-9dd1-452c-8ed1-ddac0f00d8d4" ], "accept-language": [ "en-US" @@ -532,10 +532,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1140' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk583' under resource group 'onesdk5090' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "150" + "149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -550,13 +550,13 @@ "gateway" ], "x-ms-request-id": [ - "9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + "5f58be26-4213-4d29-81d3-bdd42b928acf" ], "x-ms-correlation-request-id": [ - "9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + "5f58be26-4213-4d29-81d3-bdd42b928acf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211503Z:9ca73d1f-2345-4cf7-98b0-3f8dcb8c3c5f" + "WESTUS:20160129T231521Z:5f58be26-4213-4d29-81d3-bdd42b928acf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,16 +565,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:02 GMT" + "Fri, 29 Jan 2016 23:15:20 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk583?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTgzP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -583,7 +583,7 @@ "1180" ], "x-ms-client-request-id": [ - "97002d2f-06a2-4882-a597-2011b7edf0c4" + "35c5a6b3-4b21-476e-a805-f8046ebdf524" ], "accept-language": [ "en-US" @@ -592,10 +592,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:05.8571989Z\",\r\n \"changedTime\": \"2016-01-26T21:15:05.8571989Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639797421848\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140\",\r\n \"name\": \"onesdk1140\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:15:20.6986564Z\",\r\n \"changedTime\": \"2016-01-29T23:15:20.6986564Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474975649442298\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk583\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk583\",\r\n \"name\": \"onesdk583\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1356" + "1353" ], "Content-Type": [ "application/json; charset=utf-8" @@ -607,16 +607,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:8a4176df-c485-45ee-b7b9-055a573ef639" + "westus:c7c31189-aa66-45f2-8f83-ce739e593486" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-correlation-request-id": [ - "b4370182-cb05-438a-99bf-aeeb92a8fcda" + "a39fdea2-1f92-41d9-b654-8f9de245f370" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211506Z:b4370182-cb05-438a-99bf-aeeb92a8fcda" + "WESTUS:20160129T231523Z:a39fdea2-1f92-41d9-b654-8f9de245f370" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -625,19 +625,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:05 GMT" + "Fri, 29 Jan 2016 23:15:22 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk1140?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTE0MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk583?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTgzP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f140919-5ef4-4d61-8250-990878ee80eb" + "9bceba86-7377-4fb2-be9c-397f9a6c3a36" ], "accept-language": [ "en-US" @@ -658,16 +658,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:9e058706-591e-4e97-8d2a-a8827f8d8606" + "westus:0d6b7609-38e8-4d68-b9c4-748d914ff910" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1192" ], "x-ms-correlation-request-id": [ - "2883b745-a142-46a7-b015-6ec1572ca107" + "720a0a5e-b8b8-48fd-8b5a-2a324bffc39f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211507Z:2883b745-a142-46a7-b015-6ec1572ca107" + "WESTUS:20160129T231524Z:720a0a5e-b8b8-48fd-8b5a-2a324bffc39f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,19 +676,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:06 GMT" + "Fri, 29 Jan 2016 23:15:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk1943?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTk0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea0d87ed-2af4-4f55-a7cd-3e4ea2bd0fcb" + "6b3c7943-d651-4cad-9139-4baa70107e9f" ], "accept-language": [ "en-US" @@ -697,7 +697,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4837' under resource group 'onesdk1706' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1943' under resource group 'onesdk5090' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -715,13 +715,13 @@ "gateway" ], "x-ms-request-id": [ - "3eabe340-7ad0-42f7-bea3-df7a59a0a311" + "485494e8-ece8-490c-a7b4-54b503df6c09" ], "x-ms-correlation-request-id": [ - "3eabe340-7ad0-42f7-bea3-df7a59a0a311" + "485494e8-ece8-490c-a7b4-54b503df6c09" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211508Z:3eabe340-7ad0-42f7-bea3-df7a59a0a311" + "WESTUS:20160129T231524Z:485494e8-ece8-490c-a7b4-54b503df6c09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -730,25 +730,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:07 GMT" + "Fri, 29 Jan 2016 23:15:24 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk1943?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTk0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1180" + "1179" ], "x-ms-client-request-id": [ - "c7b01318-c9c5-4f48-9c14-61dcd188a5c9" + "2ee21200-cfa2-4255-b1a6-d34cdb155fb0" ], "accept-language": [ "en-US" @@ -757,10 +757,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:15:08.9417158Z\",\r\n \"changedTime\": \"2016-01-26T21:15:08.9417158Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639767186944\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837\",\r\n \"name\": \"onesdk4837\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:15:24.4065176Z\",\r\n \"changedTime\": \"2016-01-29T23:15:24.4065176Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474975613072059\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk1943\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk1943\",\r\n \"name\": \"onesdk1943\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1356" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -772,16 +772,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:b7144ab8-4329-45c4-b760-128ea98479f3" + "westus:ff2e8b84-ed83-4437-a242-1e7e57d31343" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1191" ], "x-ms-correlation-request-id": [ - "b1e3fe38-66c4-4630-8f80-5064e2476d0e" + "fc369841-47ca-4347-8925-7e39a2911b03" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211509Z:b1e3fe38-66c4-4630-8f80-5064e2476d0e" + "WESTUS:20160129T231526Z:fc369841-47ca-4347-8925-7e39a2911b03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -790,19 +790,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:08 GMT" + "Fri, 29 Jan 2016 23:15:26 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1706/providers/Microsoft.Logic/workflows/onesdk4837?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgzNz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5090/providers/Microsoft.Logic/workflows/onesdk1943?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTk0Mz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3423402-81f8-4b57-9b27-1716a56d0934" + "2288f021-9984-456a-9f4d-ffe6c689b863" ], "accept-language": [ "en-US" @@ -823,16 +823,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:b76a7a6e-6da3-4fa7-b8ea-6f1194c6844c" + "westus:1c8eee95-78b3-47a9-b2fa-373eab3ea1a8" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1190" ], "x-ms-correlation-request-id": [ - "f134e876-0f67-48b4-a7be-57598944579c" + "acdad4a2-0a7c-42f8-8d8b-53de02a46bf7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211510Z:f134e876-0f67-48b4-a7be-57598944579c" + "WESTUS:20160129T231527Z:acdad4a2-0a7c-42f8-8d8b-53de02a46bf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -841,7 +841,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:09 GMT" + "Fri, 29 Jan 2016 23:15:27 GMT" ] }, "StatusCode": 200 @@ -849,10 +849,10 @@ ], "Names": { "Test-CreateAndRemoveLogicApp": [ - "onesdk1706", - "onesdk5636", - "onesdk1140", - "onesdk4837" + "onesdk5090", + "onesdk5745", + "onesdk583", + "onesdk1943" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json index 4782d4bca1ac..0fb69e48b484 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingDefinitionWithTriggers.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1196?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazExOTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14944" ], "x-ms-request-id": [ - "60334d78-8e41-41df-92c8-dcefac361e00" + "92aef08e-cc80-4f96-a425-b40a366b7931" ], "x-ms-correlation-request-id": [ - "60334d78-8e41-41df-92c8-dcefac361e00" + "92aef08e-cc80-4f96-a425-b40a366b7931" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220927Z:60334d78-8e41-41df-92c8-dcefac361e00" + "WESTUS:20160129T231553Z:92aef08e-cc80-4f96-a425-b40a366b7931" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:26 GMT" + "Fri, 29 Jan 2016 23:15:53 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1196?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazExOTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914\",\r\n \"name\": \"onesdk9914\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1196\",\r\n \"name\": \"onesdk1196\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-request-id": [ - "58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + "b66096ff-ceef-4301-abea-4aa752a3b17f" ], "x-ms-correlation-request-id": [ - "58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + "b66096ff-ceef-4301-abea-4aa752a3b17f" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220928Z:58e7d35d-d0ac-4e06-9e46-20906d30ccf3" + "WESTUS:20160129T231554Z:b66096ff-ceef-4301-abea-4aa752a3b17f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:27 GMT" + "Fri, 29 Jan 2016 23:15:54 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1196/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExOTYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14943" ], "x-ms-request-id": [ - "a79c8399-1d54-4317-9ea4-9d251bfe9854" + "cf0dd208-c276-4f0b-8abf-bda4a6a9c249" ], "x-ms-correlation-request-id": [ - "a79c8399-1d54-4317-9ea4-9d251bfe9854" + "cf0dd208-c276-4f0b-8abf-bda4a6a9c249" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220928Z:a79c8399-1d54-4317-9ea4-9d251bfe9854" + "WESTUS:20160129T231554Z:cf0dd208-c276-4f0b-8abf-bda4a6a9c249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:27 GMT" + "Fri, 29 Jan 2016 23:15:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1196/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5a180d3-1dda-46f8-a21a-313337304d65" + "7d7e79d4-3d37-4597-b291-b581eebdeb87" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk9914-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk9914\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1196/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1196-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1196\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56f1f351-b967-4c6f-bb23-8473167a2ee5" + "733aede7-1bf7-40a1-a2e7-2793af04109d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14928" ], "x-ms-correlation-request-id": [ - "a34708b7-e580-40a5-8214-01fed3002d4b" + "3bf363cb-43af-4e9f-bae0-e7492e885dfe" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220936Z:a34708b7-e580-40a5-8214-01fed3002d4b" + "WESTUS:20160129T231602Z:3bf363cb-43af-4e9f-bae0-e7492e885dfe" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:35 GMT" + "Fri, 29 Jan 2016 23:16:01 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1196/providers/Microsoft.Logic/workflows/onesdk298?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7deae12e-6848-4dff-92f0-a1eacab7234c" + "18698a03-79db-4cc0-b108-f7494b04fea7" ], "accept-language": [ "en-US" @@ -235,10 +235,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk5482' under resource group 'onesdk9914' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk298' under resource group 'onesdk1196' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "150" + "149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "9e9f5baa-f867-43a8-a06d-288108dd4e8a" + "c172c38e-f7c6-4e16-bb4b-b24747270154" ], "x-ms-correlation-request-id": [ - "9e9f5baa-f867-43a8-a06d-288108dd4e8a" + "c172c38e-f7c6-4e16-bb4b-b24747270154" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220936Z:9e9f5baa-f867-43a8-a06d-288108dd4e8a" + "WESTUS:20160129T231602Z:c172c38e-f7c6-4e16-bb4b-b24747270154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,16 +268,16 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:36 GMT" + "Fri, 29 Jan 2016 23:16:02 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1196/providers/Microsoft.Logic/workflows/onesdk298?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1196/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -286,7 +286,7 @@ "1774" ], "x-ms-client-request-id": [ - "af71d9b1-466e-4c00-98e2-7bd65c806bdc" + "b714a587-3a18-48a6-b77f-8814a4b28f9c" ], "accept-language": [ "en-US" @@ -295,10 +295,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-27T22:09:37.7063652Z\",\r\n \"changedTime\": \"2016-01-27T22:09:37.7063652Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587476743079470122\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482\",\r\n \"name\": \"onesdk5482\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:16:03.9388432Z\",\r\n \"changedTime\": \"2016-01-29T23:16:03.9388432Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474975216102739\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1196/providers/Microsoft.Logic/workflows/onesdk298\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1196/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1196/providers/Microsoft.Logic/workflows/onesdk298\",\r\n \"name\": \"onesdk298\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1576" + "1573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,16 +310,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:693a1897-3bc8-4ef9-983c-5a8e983b8968" + "westus:ac0860a5-8a4c-4d0c-94d3-b78f985bf24d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "dda2da40-e0b9-4a22-9234-2c06c0b2e3ae" + "24270b1e-8492-4bab-a2a6-ae3509f8460a" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220938Z:dda2da40-e0b9-4a22-9234-2c06c0b2e3ae" + "WESTUS:20160129T231604Z:24270b1e-8492-4bab-a2a6-ae3509f8460a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -328,19 +328,19 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:38 GMT" + "Fri, 29 Jan 2016 23:16:04 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9914/providers/Microsoft.Logic/workflows/onesdk5482?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNTQ4Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1196/providers/Microsoft.Logic/workflows/onesdk298?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazExOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjk4P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f087576-bf78-498b-9631-dd63385c830a" + "fa83b1ad-2dc4-4bf6-80eb-26dd54770b8b" ], "accept-language": [ "en-US" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:eedb201a-c379-44f2-9a79-a42bfbfc3ad5" + "westus:3615eaea-2866-4be2-95d2-3009307f9fdf" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "8cb77f05-4e40-4a27-a7fd-2cccd03f481a" + "5b4cb684-087c-49d4-8955-06427507314c" ], "x-ms-routing-request-id": [ - "WESTUS:20160127T220939Z:8cb77f05-4e40-4a27-a7fd-2cccd03f481a" + "WESTUS:20160129T231606Z:5b4cb684-087c-49d4-8955-06427507314c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Wed, 27 Jan 2016 22:09:38 GMT" + "Fri, 29 Jan 2016 23:16:06 GMT" ] }, "StatusCode": 200 @@ -387,8 +387,8 @@ ], "Names": { "Test-CreateLogicAppUsingDefinitionWithTriggers": [ - "onesdk9914", - "onesdk5482" + "onesdk1196", + "onesdk298" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json index 2a0c64abcc4c..eda17d96515e 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputParameterAsHashTable.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7198?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazcxOTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14925" ], "x-ms-request-id": [ - "578eee75-b028-4268-a1d7-4e288b6c63c2" + "2e679e9b-1578-4286-b18f-1cf8f58804c8" ], "x-ms-correlation-request-id": [ - "578eee75-b028-4268-a1d7-4e288b6c63c2" + "2e679e9b-1578-4286-b18f-1cf8f58804c8" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211111Z:578eee75-b028-4268-a1d7-4e288b6c63c2" + "WESTUS:20160130T001130Z:2e679e9b-1578-4286-b18f-1cf8f58804c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:10 GMT" + "Sat, 30 Jan 2016 00:11:30 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazY5ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7198?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazcxOTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986\",\r\n \"name\": \"onesdk6986\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7198\",\r\n \"name\": \"onesdk7198\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "b3a0f57e-201c-4d78-836e-661f4db2f748" + "4cf61e1d-2d08-49ea-8102-63d8a662f541" ], "x-ms-correlation-request-id": [ - "b3a0f57e-201c-4d78-836e-661f4db2f748" + "4cf61e1d-2d08-49ea-8102-63d8a662f541" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211112Z:b3a0f57e-201c-4d78-836e-661f4db2f748" + "WESTUS:20160130T001131Z:4cf61e1d-2d08-49ea-8102-63d8a662f541" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:11 GMT" + "Sat, 30 Jan 2016 00:11:31 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7198/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxOTgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14924" ], "x-ms-request-id": [ - "0b7718cf-6924-4a06-8034-505785262a9d" + "bfd829b0-9959-4ebc-af37-5a771c24b177" ], "x-ms-correlation-request-id": [ - "0b7718cf-6924-4a06-8034-505785262a9d" + "bfd829b0-9959-4ebc-af37-5a771c24b177" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211112Z:0b7718cf-6924-4a06-8034-505785262a9d" + "WESTUS:20160130T001131Z:bfd829b0-9959-4ebc-af37-5a771c24b177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:11 GMT" + "Sat, 30 Jan 2016 00:11:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7198/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59d80a0e-f819-493f-a006-f1a4c812bcb5" + "ab6d8105-006f-4283-b356-636f830f8a78" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk6986-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk6986\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7198/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk7198-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk7198\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7722aefa-b79b-461b-a7b4-dd358e107837" + "76d6d05d-3dd1-4bfd-889b-0db952fd2ea1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14864" ], "x-ms-correlation-request-id": [ - "e52cc1f6-cf5d-4b26-a810-a284f99591d7" + "8769d186-5073-4a08-9812-14a70184851d" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211122Z:e52cc1f6-cf5d-4b26-a810-a284f99591d7" + "WESTUS:20160130T001138Z:8769d186-5073-4a08-9812-14a70184851d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:21 GMT" + "Sat, 30 Jan 2016 00:11:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7198/providers/Microsoft.Logic/workflows/onesdk9870?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTg3MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37012d8b-2dc7-4b5c-816e-2b426cfe79de" + "c5c3a973-2c5b-46d1-9a83-afc45f285b76" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9396' under resource group 'onesdk6986' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9870' under resource group 'onesdk7198' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "868acf2c-258d-4442-b20b-1b33d42b9129" + "fa5e4b33-e9bd-4158-88fd-ca8b5c96b0c5" ], "x-ms-correlation-request-id": [ - "868acf2c-258d-4442-b20b-1b33d42b9129" + "fa5e4b33-e9bd-4158-88fd-ca8b5c96b0c5" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211122Z:868acf2c-258d-4442-b20b-1b33d42b9129" + "WESTUS:20160130T001139Z:fa5e4b33-e9bd-4158-88fd-ca8b5c96b0c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,25 +268,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:21 GMT" + "Sat, 30 Jan 2016 00:11:39 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7198/providers/Microsoft.Logic/workflows/onesdk9870?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTg3MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7198/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://www.bing.com\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1180" + "1172" ], "x-ms-client-request-id": [ - "08bd30b5-2234-4f0e-8c0f-b6102cfb79d1" + "4c91a0c6-ece4-4ac2-a847-2d07606fb47f" ], "accept-language": [ "en-US" @@ -295,10 +295,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:11:23.856472Z\",\r\n \"changedTime\": \"2016-01-26T21:11:23.856472Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477642018102635\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396\",\r\n \"name\": \"onesdk9396\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-30T00:11:39.8829883Z\",\r\n \"changedTime\": \"2016-01-30T00:11:39.8829883Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474941857509836\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7198/providers/Microsoft.Logic/workflows/onesdk9870\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7198/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://www.bing.com\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7198/providers/Microsoft.Logic/workflows/onesdk9870\",\r\n \"name\": \"onesdk9870\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1354" + "1348" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,16 +310,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:dabccf17-c572-49d0-ab71-ab2fa0521577" + "westus:1fa84a03-c044-4396-b260-f5631c2dafa0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-correlation-request-id": [ - "5940a00f-cc09-4061-92a8-3d251d92901c" + "18247bab-a422-4a53-93d3-b11d55863225" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211124Z:5940a00f-cc09-4061-92a8-3d251d92901c" + "WESTUS:20160130T001140Z:18247bab-a422-4a53-93d3-b11d55863225" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -328,19 +328,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:23 GMT" + "Sat, 30 Jan 2016 00:11:40 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6986/providers/Microsoft.Logic/workflows/onesdk9396?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazY5ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTM5Nj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7198/providers/Microsoft.Logic/workflows/onesdk9870?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazcxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTg3MD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25123977-87b3-44b9-b3d2-3f1342a09589" + "8fa83823-09ee-4693-813b-e925e8ee9b18" ], "accept-language": [ "en-US" @@ -361,16 +361,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:6d90c5b7-079b-4a37-8efd-5f0f39961ad2" + "westus:b1275047-2e46-41db-af0d-0afc56542b5e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1196" ], "x-ms-correlation-request-id": [ - "306460fb-fdb6-46e1-9cdc-f52dbfedae80" + "afc416ec-2926-4cc8-9c7e-b01dbe216b1f" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211124Z:306460fb-fdb6-46e1-9cdc-f52dbfedae80" + "WESTUS:20160130T001141Z:afc416ec-2926-4cc8-9c7e-b01dbe216b1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,7 +379,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:11:24 GMT" + "Sat, 30 Jan 2016 00:11:41 GMT" ] }, "StatusCode": 200 @@ -387,8 +387,8 @@ ], "Names": { "Test-CreateLogicAppUsingInputParameterAsHashTable": [ - "onesdk6986", - "onesdk9396" + "onesdk7198", + "onesdk9870" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json index 4a52a6f1c2af..fe157f9f1b30 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppUsingInputfromWorkflowObject.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2342?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIzNDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "14905" ], "x-ms-request-id": [ - "cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + "b28de0da-0e44-4469-97da-a48bf72210bb" ], "x-ms-correlation-request-id": [ - "cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + "b28de0da-0e44-4469-97da-a48bf72210bb" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211212Z:cbc9ef1b-c70d-40eb-a585-cf88d16e1187" + "WESTUS:20160129T231632Z:b28de0da-0e44-4469-97da-a48bf72210bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:12 GMT" + "Fri, 29 Jan 2016 23:16:32 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazUxOTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2342?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIzNDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193\",\r\n \"name\": \"onesdk5193\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342\",\r\n \"name\": \"onesdk2342\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-request-id": [ - "b8050936-589b-46c3-8e37-580b7b37a966" + "2c735a7a-e7c2-4815-9261-24636180930e" ], "x-ms-correlation-request-id": [ - "b8050936-589b-46c3-8e37-580b7b37a966" + "2c735a7a-e7c2-4815-9261-24636180930e" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211213Z:b8050936-589b-46c3-8e37-580b7b37a966" + "WESTUS:20160129T231633Z:2c735a7a-e7c2-4815-9261-24636180930e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:13 GMT" + "Fri, 29 Jan 2016 23:16:32 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzNDIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "14904" ], "x-ms-request-id": [ - "033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + "b9c520d7-085f-42d4-8a7a-216b578798e2" ], "x-ms-correlation-request-id": [ - "033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + "b9c520d7-085f-42d4-8a7a-216b578798e2" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211213Z:033aba8f-1aee-4fde-aa3a-5c4b077a4b86" + "WESTUS:20160129T231633Z:b9c520d7-085f-42d4-8a7a-216b578798e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:13 GMT" + "Fri, 29 Jan 2016 23:16:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6d208fb-156e-4f5e-8886-2280c35ad636" + "b04adf8e-8108-4692-b2b0-b6dd682cd08a" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5193-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5193\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2342-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2342\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1aabb6c6-1d60-4b66-97ff-5f099f24117b" + "df90770a-9f60-49b6-87a5-182599d49bad" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14951" ], "x-ms-correlation-request-id": [ - "0e677399-ea73-4b8a-84ad-4c2bd4e9a898" + "00486dc1-94ce-4c24-ad9d-f96fc5391701" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211221Z:0e677399-ea73-4b8a-84ad-4c2bd4e9a898" + "WESTUS:20160129T231654Z:00486dc1-94ce-4c24-ad9d-f96fc5391701" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:20 GMT" + "Fri, 29 Jan 2016 23:16:53 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "964cf085-5d3f-4484-a7fe-6a89b40c50d2" + "6427a5c0-abea-4f70-bc81-16faf9aeb7b2" ], "accept-language": [ "en-US" @@ -238,7 +238,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5193-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5193\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2342-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2342\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -256,22 +256,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c89720b0-9bb9-42de-8d48-f45c697fe7de" + "bbd9eed2-7826-4fc0-a07a-91451c54fbd7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14950" ], "x-ms-correlation-request-id": [ - "f6a9f01d-2033-4a35-abbc-6765a0983389" + "3b05cbdb-ab74-4295-8c0d-504cb9dabea4" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211226Z:f6a9f01d-2033-4a35-abbc-6765a0983389" + "WESTUS:20160129T231656Z:3b05cbdb-ab74-4295-8c0d-504cb9dabea4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:26 GMT" + "Fri, 29 Jan 2016 23:16:55 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -286,13 +286,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Logic/workflows/onesdk3831?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzgzMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9709a607-30fc-49a7-a003-2bfa92250572" + "064ec3c2-b7b5-4550-bc04-6660b0501295" ], "accept-language": [ "en-US" @@ -301,7 +301,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7978' under resource group 'onesdk5193' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk3831' under resource group 'onesdk2342' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -319,13 +319,13 @@ "gateway" ], "x-ms-request-id": [ - "83368a65-d09b-4bf9-afe5-6848713adf80" + "e37d786d-4ce5-4f5a-a0c5-f8d040aa10e9" ], "x-ms-correlation-request-id": [ - "83368a65-d09b-4bf9-afe5-6848713adf80" + "e37d786d-4ce5-4f5a-a0c5-f8d040aa10e9" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211221Z:83368a65-d09b-4bf9-afe5-6848713adf80" + "WESTUS:20160129T231654Z:e37d786d-4ce5-4f5a-a0c5-f8d040aa10e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,16 +334,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:21 GMT" + "Fri, 29 Jan 2016 23:16:54 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Logic/workflows/onesdk3831?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzgzMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -352,7 +352,7 @@ "1180" ], "x-ms-client-request-id": [ - "d61567ae-162a-44bd-b0e1-48c78189329c" + "dc54589f-2cf4-49fa-80b6-518630920b71" ], "accept-language": [ "en-US" @@ -361,7 +361,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:12:23.6049277Z\",\r\n \"changedTime\": \"2016-01-26T21:12:23.6049277Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477641421258515\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978\",\r\n \"name\": \"onesdk7978\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:16:55.5666909Z\",\r\n \"changedTime\": \"2016-01-29T23:16:55.5666909Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474974700523183\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2342/providers/Microsoft.Logic/workflows/onesdk3831\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Logic/workflows/onesdk3831\",\r\n \"name\": \"onesdk3831\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1356" @@ -376,16 +376,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:e7f52e8e-0140-4693-9592-5bfd516b5046" + "westus:2986521b-6e62-43f0-aea1-63c229650062" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "33fe3663-d605-48d4-8c5d-71e4aaa55b77" + "c630bcc1-2505-46ac-9b5f-72758e1f5094" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211226Z:33fe3663-d605-48d4-8c5d-71e4aaa55b77" + "WESTUS:20160129T231655Z:c630bcc1-2505-46ac-9b5f-72758e1f5094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,19 +394,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:25 GMT" + "Fri, 29 Jan 2016 23:16:55 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDkxP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Logic/workflows/onesdk8152?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODE1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6dd28ec0-ac64-4d77-91a2-934ab00a8e65" + "28cb8480-a61f-45d2-a492-aa00c1492b1b" ], "accept-language": [ "en-US" @@ -415,10 +415,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk491' under resource group 'onesdk5193' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8152' under resource group 'onesdk2342' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "149" + "150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -433,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + "2a4c0c57-734e-4b8e-957c-1c8833385f08" ], "x-ms-correlation-request-id": [ - "ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + "2a4c0c57-734e-4b8e-957c-1c8833385f08" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211226Z:ea5882c0-3a2d-4ac8-a8b1-1f11ed7ce509" + "WESTUS:20160129T231656Z:2a4c0c57-734e-4b8e-957c-1c8833385f08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,16 +448,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:25 GMT" + "Fri, 29 Jan 2016 23:16:55 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDkxP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Logic/workflows/onesdk8152?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODE1Mj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -466,7 +466,7 @@ "1180" ], "x-ms-client-request-id": [ - "d4ee37d8-d9ec-4ea9-83db-e9e74588cd80" + "756084de-d623-4c84-af1f-801fc3b3e254" ], "accept-language": [ "en-US" @@ -475,10 +475,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:12:28.1172752Z\",\r\n \"changedTime\": \"2016-01-26T21:12:28.1172752Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477641375491474\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk491\",\r\n \"name\": \"onesdk491\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:16:58.1852025Z\",\r\n \"changedTime\": \"2016-01-29T23:16:58.1852025Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474974673569677\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2342/providers/Microsoft.Logic/workflows/onesdk8152\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Logic/workflows/onesdk8152\",\r\n \"name\": \"onesdk8152\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1353" + "1356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -490,16 +490,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:d5bc4b12-126c-43e8-a535-ff36449e93d3" + "westus:092a7c2d-918e-4af9-9622-157152819b6e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "afab3bd6-55bf-4ad7-80bd-5a0da1974e71" + "4a9da839-2275-43a3-87ca-4222663350f4" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211228Z:afab3bd6-55bf-4ad7-80bd-5a0da1974e71" + "WESTUS:20160129T231659Z:4a9da839-2275-43a3-87ca-4222663350f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,19 +508,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:27 GMT" + "Fri, 29 Jan 2016 23:16:58 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5193/providers/Microsoft.Logic/workflows/onesdk7978?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazUxOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzk3OD9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2342/providers/Microsoft.Logic/workflows/onesdk3831?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIzNDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMzgzMT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e8d8f36-f890-4551-9377-ae68c46b9377" + "4f495b9b-9cd4-4e40-ac66-775addfd8374" ], "accept-language": [ "en-US" @@ -541,16 +541,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:6159b48c-d906-452a-991f-e826c56b76c7" + "westus:e3982ff3-dd39-4e82-980d-da080be8d05f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "a2e6985e-aedf-4109-9e5c-527bb8b05c17" + "e39c9b97-7eca-4b32-8854-ca30fd19aa66" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211229Z:a2e6985e-aedf-4109-9e5c-527bb8b05c17" + "WESTUS:20160129T231659Z:e39c9b97-7eca-4b32-8854-ca30fd19aa66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -559,7 +559,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:12:28 GMT" + "Fri, 29 Jan 2016 23:16:59 GMT" ] }, "StatusCode": 200 @@ -567,9 +567,9 @@ ], "Names": { "Test-CreateLogicAppUsingInputfromWorkflowObject": [ - "onesdk5193", - "onesdk7978", - "onesdk491" + "onesdk2342", + "onesdk3831", + "onesdk8152" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json index ff8d581e1061..b05cdd235eb5 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithDuplicateName.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6285?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyODU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "101" + "102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14935" ], "x-ms-request-id": [ - "c83c209d-880c-420e-a6ee-9e4f56763eed" + "9b53f6c9-003e-4dde-94a9-361612253079" ], "x-ms-correlation-request-id": [ - "c83c209d-880c-420e-a6ee-9e4f56763eed" + "9b53f6c9-003e-4dde-94a9-361612253079" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211555Z:c83c209d-880c-420e-a6ee-9e4f56763eed" + "WESTUS:20160130T001205Z:9b53f6c9-003e-4dde-94a9-361612253079" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:55 GMT" + "Sat, 30 Jan 2016 00:12:05 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6285?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazYyODU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,10 +67,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390\",\r\n \"name\": \"onesdk390\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285\",\r\n \"name\": \"onesdk6285\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "171" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-request-id": [ - "88264c1b-a46c-43dc-b8c2-4e27801710d0" + "d6921985-123f-4ee9-a165-a30bf624d6d8" ], "x-ms-correlation-request-id": [ - "88264c1b-a46c-43dc-b8c2-4e27801710d0" + "d6921985-123f-4ee9-a165-a30bf624d6d8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211557Z:88264c1b-a46c-43dc-b8c2-4e27801710d0" + "WESTUS:20160130T001206Z:d6921985-123f-4ee9-a165-a30bf624d6d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:57 GMT" + "Sat, 30 Jan 2016 00:12:05 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazYyODUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14934" ], "x-ms-request-id": [ - "e39af8d4-02bb-44a7-bf88-7fd33543fac0" + "d8e231f9-ec12-411b-96a4-eff416f57d51" ], "x-ms-correlation-request-id": [ - "e39af8d4-02bb-44a7-bf88-7fd33543fac0" + "d8e231f9-ec12-411b-96a4-eff416f57d51" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211557Z:e39af8d4-02bb-44a7-bf88-7fd33543fac0" + "WESTUS:20160130T001206Z:d8e231f9-ec12-411b-96a4-eff416f57d51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:15:57 GMT" + "Sat, 30 Jan 2016 00:12:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9TdGFuZGFyZFNlcnZpY2VQbGFuP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazYyODUvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6073bec7-97bd-4a88-9ea5-2613e16e0d47" + "8539c8f1-d300-4388-bf01-ba25ea8b9beb" ], "accept-language": [ "en-US" @@ -172,10 +172,10 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk390-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk390\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk6285-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk6285\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "948" + "951" ], "Content-Type": [ "application/json" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e506ad9-2c20-4918-a88e-2a0128acdeed" + "2a8abab0-aa3d-4ccc-a2af-9123e4895b5a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14917" ], "x-ms-correlation-request-id": [ - "e15423f1-1c89-4e75-b2cd-8c369ecd4c56" + "f2b27c5a-f200-450a-a19a-747b2ee81c01" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211616Z:e15423f1-1c89-4e75-b2cd-8c369ecd4c56" + "WESTUS:20160130T001217Z:f2b27c5a-f200-450a-a19a-747b2ee81c01" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:15 GMT" + "Sat, 30 Jan 2016 00:12:16 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9TdGFuZGFyZFNlcnZpY2VQbGFuP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazYyODUvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a5b6314-5da0-4591-b9a0-5a71a6c195dc" + "6e722c80-b93d-4416-9928-481095bae215" ], "accept-language": [ "en-US" @@ -238,10 +238,10 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk390-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk390\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk6285-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk6285\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "948" + "951" ], "Content-Type": [ "application/json" @@ -256,22 +256,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec062842-2423-4969-8c27-dc78c5460f7d" + "c7d6ecfc-6cf1-4bd6-b746-4c9a28a17d53" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14916" ], "x-ms-correlation-request-id": [ - "1712e32b-2221-4b02-8b57-c99df91aeb87" + "79facafc-49f4-4bd5-88ea-01a145662069" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211620Z:1712e32b-2221-4b02-8b57-c99df91aeb87" + "WESTUS:20160130T001219Z:79facafc-49f4-4bd5-88ea-01a145662069" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:20 GMT" + "Sat, 30 Jan 2016 00:12:19 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -286,13 +286,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Logic/workflows/onesdk1705?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazYyODUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTcwNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2834ab00-ce85-4530-954e-2474601b5868" + "76f7d727-5f86-422a-ab26-43bb7e375280" ], "accept-language": [ "en-US" @@ -301,10 +301,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9059' under resource group 'onesdk390' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1705' under resource group 'onesdk6285' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "149" + "150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -319,13 +319,13 @@ "gateway" ], "x-ms-request-id": [ - "48988617-71ab-4822-9bcd-20fbf8317218" + "c9f6153a-8a2e-482e-b849-361b4971e8d5" ], "x-ms-correlation-request-id": [ - "48988617-71ab-4822-9bcd-20fbf8317218" + "c9f6153a-8a2e-482e-b849-361b4971e8d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211617Z:48988617-71ab-4822-9bcd-20fbf8317218" + "WESTUS:20160130T001218Z:c9f6153a-8a2e-482e-b849-361b4971e8d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,19 +334,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:16 GMT" + "Sat, 30 Jan 2016 00:12:18 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Logic/workflows/onesdk1705?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazYyODUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTcwNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1eb5117-8675-4c49-a37a-e6f0e2571543" + "a56ccf3c-4ea7-4440-a9b0-316463cd54ad" ], "accept-language": [ "en-US" @@ -355,10 +355,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"changedTime\": \"2016-01-26T21:16:19.7351357Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639059226776\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"name\": \"onesdk9059\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-30T00:12:19.2320178Z\",\r\n \"changedTime\": \"2016-01-30T00:12:19.2325362Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474941463639012\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6285/providers/Microsoft.Logic/workflows/onesdk1705\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Logic/workflows/onesdk1705\",\r\n \"name\": \"onesdk1705\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1353" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -373,16 +373,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:711ff212-b530-46e9-bef1-c67072dd1893" + "westus:ad989ad8-a82f-4369-a83e-ec9b1b0bd9aa" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" + "14860" ], "x-ms-correlation-request-id": [ - "fb7ef0f5-6212-4c27-b20a-d9ddad1ef169" + "6fb8d7a9-e6d1-4520-a816-ed9b5a0358d4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211621Z:fb7ef0f5-6212-4c27-b20a-d9ddad1ef169" + "WESTUS:20160130T001219Z:6fb8d7a9-e6d1-4520-a816-ed9b5a0358d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -391,16 +391,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:20 GMT" + "Sat, 30 Jan 2016 00:12:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Logic/workflows/onesdk1705?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazYyODUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTcwNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -409,7 +409,7 @@ "1179" ], "x-ms-client-request-id": [ - "e8c65b41-2cad-4865-b493-7fd40904c23d" + "ae3a0244-e38b-49b8-8e8a-2d6cc564f7a1" ], "accept-language": [ "en-US" @@ -418,10 +418,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"changedTime\": \"2016-01-26T21:16:19.7345664Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477639059226776\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059\",\r\n \"name\": \"onesdk9059\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-30T00:12:19.2320178Z\",\r\n \"changedTime\": \"2016-01-30T00:12:19.2320178Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474941463639012\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk6285/providers/Microsoft.Logic/workflows/onesdk1705\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Logic/workflows/onesdk1705\",\r\n \"name\": \"onesdk1705\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1353" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -433,16 +433,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:ebd022ae-f261-485b-bf92-e8be9f932833" + "westus:d6e5c57a-a083-437b-836e-4e1ff5ef5b34" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "c0cbfa85-b42e-4aa4-999d-68b50d088bcc" + "579801dd-64b7-48c8-a6ba-393843fcf434" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211620Z:c0cbfa85-b42e-4aa4-999d-68b50d088bcc" + "WESTUS:20160130T001219Z:579801dd-64b7-48c8-a6ba-393843fcf434" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -451,19 +451,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:20 GMT" + "Sat, 30 Jan 2016 00:12:19 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk390/providers/Microsoft.Logic/workflows/onesdk9059?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL3dvcmtmbG93cy9vbmVzZGs5MDU5P2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk6285/providers/Microsoft.Logic/workflows/onesdk1705?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazYyODUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTcwNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cab4a7da-c45a-41a6-a06a-566c45a3c635" + "1821118a-8158-4a13-8a19-63bf75640bd7" ], "accept-language": [ "en-US" @@ -484,16 +484,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:1301b7a3-d44b-4b81-8371-0730854f6496" + "westus:03e5a69b-cb7d-4309-9f98-47b2f68ca710" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "69576ba0-208f-4a0b-80de-ddbc4e20cc72" + "bec4686f-febd-46e7-9e96-d5969cccd34e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211622Z:69576ba0-208f-4a0b-80de-ddbc4e20cc72" + "WESTUS:20160130T001220Z:bec4686f-febd-46e7-9e96-d5969cccd34e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,7 +502,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:16:22 GMT" + "Sat, 30 Jan 2016 00:12:20 GMT" ] }, "StatusCode": 200 @@ -510,8 +510,8 @@ ], "Names": { "Test-CreateLogicAppWithDuplicateName": [ - "onesdk390", - "onesdk9059" + "onesdk6285", + "onesdk1705" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json index 32e1d858cd88..7599411faf0d 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestCreateLogicAppWithNonExistingAppServicePlan.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7840?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9982?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +13,10 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "0" + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -21,17 +24,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" + "14913" ], "x-ms-request-id": [ - "7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + "b54e854a-5a6a-42ac-9ab0-25dc5599e255" ], "x-ms-correlation-request-id": [ - "7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + "b54e854a-5a6a-42ac-9ab0-25dc5599e255" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T210912Z:7d8604a3-0d4f-4e8b-af0b-2f35315141c7" + "WESTUS:20160129T231723Z:b54e854a-5a6a-42ac-9ab0-25dc5599e255" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -40,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:09:12 GMT" + "Fri, 29 Jan 2016 23:17:23 GMT" ] }, - "StatusCode": 204 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7840?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4NDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk9982?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazk5ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -61,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840\",\r\n \"name\": \"onesdk7840\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9982\",\r\n \"name\": \"onesdk9982\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -76,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "83be6208-ceda-43d1-ae0b-da973174d031" + "60025978-6b93-41e6-90b5-0dc1c9623a5c" ], "x-ms-correlation-request-id": [ - "83be6208-ceda-43d1-ae0b-da973174d031" + "60025978-6b93-41e6-90b5-0dc1c9623a5c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T210913Z:83be6208-ceda-43d1-ae0b-da973174d031" + "WESTUS:20160129T231724Z:60025978-6b93-41e6-90b5-0dc1c9623a5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -94,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:09:13 GMT" + "Fri, 29 Jan 2016 23:17:24 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4NDAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9982/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5ODIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -109,10 +115,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/providers/Microsoft.Logic/workflows/onesdk6678\",\r\n \"name\": \"onesdk6678\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "220" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -124,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" + "14912" ], "x-ms-request-id": [ - "79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + "e4581876-522a-437b-a5b4-30d8c2219ff4" ], "x-ms-correlation-request-id": [ - "79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + "e4581876-522a-437b-a5b4-30d8c2219ff4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T210913Z:79a89f3c-71d1-4afb-a5bd-12fe187b8b2f" + "WESTUS:20160129T231724Z:e4581876-522a-437b-a5b4-30d8c2219ff4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -142,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:09:13 GMT" + "Fri, 29 Jan 2016 23:17:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7840/providers/Microsoft.Web/serverfarms/B9F87338CAE4470F9116F3D685365748?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvQjlGODczMzhDQUU0NDcwRjkxMTZGM0Q2ODUzNjU3NDg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk9982/providers/Microsoft.Web/serverfarms/B9F87338CAE4470F9116F3D685365748?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazk5ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvQjlGODczMzhDQUU0NDcwRjkxMTZGM0Q2ODUzNjU3NDg/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4dfa667-d294-4809-b024-399852592049" + "cbbea6ec-600e-4eea-b7e1-411cf2a0b4e5" ], "accept-language": [ "en-US" @@ -166,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/serverFarms/B9F87338CAE4470F9116F3D685365748' under resource group 'onesdk7840' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/serverFarms/B9F87338CAE4470F9116F3D685365748' under resource group 'onesdk9982' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "172" @@ -184,13 +190,13 @@ "gateway" ], "x-ms-request-id": [ - "defdda90-6e0c-4d89-a182-fa385d4dc58f" + "fd8f85fb-ef9c-4953-8911-6735dce3a4f8" ], "x-ms-correlation-request-id": [ - "defdda90-6e0c-4d89-a182-fa385d4dc58f" + "fd8f85fb-ef9c-4953-8911-6735dce3a4f8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T210914Z:defdda90-6e0c-4d89-a182-fa385d4dc58f" + "WESTUS:20160129T231724Z:fd8f85fb-ef9c-4953-8911-6735dce3a4f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,7 +205,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:09:13 GMT" + "Fri, 29 Jan 2016 23:17:23 GMT" ] }, "StatusCode": 404 @@ -207,8 +213,8 @@ ], "Names": { "Test-CreateLogicAppWithNonExistingAppServicePlan": [ - "onesdk7840", - "onesdk3648" + "onesdk9982", + "onesdk4184" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json index 6453d46253fb..c7fffef3c556 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestRemoveNonExistingLogicApp.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3945?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3984?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5ODQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "14939" ], "x-ms-request-id": [ - "cc157b83-8ddc-420d-b47e-9a994cafe76c" + "c1f1f82e-9a1c-4af4-8f15-e380d32e6461" ], "x-ms-correlation-request-id": [ - "cc157b83-8ddc-420d-b47e-9a994cafe76c" + "c1f1f82e-9a1c-4af4-8f15-e380d32e6461" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T210959Z:cc157b83-8ddc-420d-b47e-9a994cafe76c" + "WESTUS:20160129T231749Z:c1f1f82e-9a1c-4af4-8f15-e380d32e6461" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:09:58 GMT" + "Fri, 29 Jan 2016 23:17:48 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3945?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5NDU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3984?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM5ODQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945\",\r\n \"name\": \"onesdk3945\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3984\",\r\n \"name\": \"onesdk3984\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-request-id": [ - "93004c09-d787-4470-a1fd-4e8b4e2bcd90" + "6a345295-7314-4fad-ac3d-aef0e7b3a7d2" ], "x-ms-correlation-request-id": [ - "93004c09-d787-4470-a1fd-4e8b4e2bcd90" + "6a345295-7314-4fad-ac3d-aef0e7b3a7d2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211001Z:93004c09-d787-4470-a1fd-4e8b4e2bcd90" + "WESTUS:20160129T231749Z:6a345295-7314-4fad-ac3d-aef0e7b3a7d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:10:00 GMT" + "Fri, 29 Jan 2016 23:17:49 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NDUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3984/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "14938" ], "x-ms-request-id": [ - "9ca74747-5dfb-4a4e-af39-022f445491d8" + "4d84ee66-200f-4ea1-9efb-857bd534f48c" ], "x-ms-correlation-request-id": [ - "9ca74747-5dfb-4a4e-af39-022f445491d8" + "4d84ee66-200f-4ea1-9efb-857bd534f48c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211001Z:9ca74747-5dfb-4a4e-af39-022f445491d8" + "WESTUS:20160129T231749Z:4d84ee66-200f-4ea1-9efb-857bd534f48c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:10:00 GMT" + "Fri, 29 Jan 2016 23:17:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3945/providers/Microsoft.Logic/workflows/09e81ac4-848a-428d-82a6-7d61953e3940?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvMDllODFhYzQtODQ4YS00MjhkLTgyYTYtN2Q2MTk1M2UzOTQwP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3984/providers/Microsoft.Logic/workflows/09e81ac4-848a-428d-82a6-7d61953e3940?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvMDllODFhYzQtODQ4YS00MjhkLTgyYTYtN2Q2MTk1M2UzOTQwP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c14d7fc-243a-4695-8182-71cb73dada38" + "24f7acb8-ce7d-45b3-9fba-2beeddd29c04" ], "accept-language": [ "en-US" @@ -178,16 +178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-request-id": [ - "64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" + "06397af4-aa14-4a37-ba9d-2a98198c11a8" ], "x-ms-correlation-request-id": [ - "64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" + "06397af4-aa14-4a37-ba9d-2a98198c11a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211001Z:64c8b0cf-c6a5-4405-8ad0-3c7aa061e110" + "WESTUS:20160129T231750Z:06397af4-aa14-4a37-ba9d-2a98198c11a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,7 +196,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:10:01 GMT" + "Fri, 29 Jan 2016 23:17:50 GMT" ] }, "StatusCode": 204 @@ -204,7 +204,7 @@ ], "Names": { "Test-RemoveNonExistingLogicApp": [ - "onesdk3945" + "onesdk3984" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json index 57b9347447c7..e0b91422a655 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTests/TestUpdateLogicApp.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14941" ], "x-ms-request-id": [ - "63cb408e-8509-45e2-89d1-f87d20986a6a" + "2c0524e7-96af-48dd-b001-91068740ae6c" ], "x-ms-correlation-request-id": [ - "63cb408e-8509-45e2-89d1-f87d20986a6a" + "2c0524e7-96af-48dd-b001-91068740ae6c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211707Z:63cb408e-8509-45e2-89d1-f87d20986a6a" + "WESTUS:20160129T231814Z:2c0524e7-96af-48dd-b001-91068740ae6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:06 GMT" + "Fri, 29 Jan 2016 23:18:13 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazE4MDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523\",\r\n \"name\": \"onesdk8523\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801\",\r\n \"name\": \"onesdk1801\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-request-id": [ - "155504be-b562-4e24-8949-1f2cb2fda8df" + "e02de697-bf9f-41cf-97ba-3901502b13f1" ], "x-ms-correlation-request-id": [ - "155504be-b562-4e24-8949-1f2cb2fda8df" + "e02de697-bf9f-41cf-97ba-3901502b13f1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211708Z:155504be-b562-4e24-8949-1f2cb2fda8df" + "WESTUS:20160129T231815Z:e02de697-bf9f-41cf-97ba-3901502b13f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:07 GMT" + "Fri, 29 Jan 2016 23:18:14 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14940" ], "x-ms-request-id": [ - "68f52c40-c063-4c86-b25e-a58191ecc93b" + "a385c328-49ce-4f66-aae9-f46638e26c3c" ], "x-ms-correlation-request-id": [ - "68f52c40-c063-4c86-b25e-a58191ecc93b" + "a385c328-49ce-4f66-aae9-f46638e26c3c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211708Z:68f52c40-c063-4c86-b25e-a58191ecc93b" + "WESTUS:20160129T231815Z:a385c328-49ce-4f66-aae9-f46638e26c3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:07 GMT" + "Fri, 29 Jan 2016 23:18:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "606fbf1e-a359-4115-a8b3-6b65ae04f008" + "694df554-3a92-438d-98ef-4ebcc47edd7f" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk8523-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk8523\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1801-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk1801\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43d513b7-4fbd-4539-9de0-4c2801fcd5f4" + "35cee21c-f25c-4650-a830-fb8a4c7ef147" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14900" ], "x-ms-correlation-request-id": [ - "1d82f763-159e-479e-8b92-e2208a6f19a6" + "7451d161-9052-46bf-b53b-04c37dbf9bfb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211716Z:1d82f763-159e-479e-8b92-e2208a6f19a6" + "WESTUS:20160129T231822Z:7451d161-9052-46bf-b53b-04c37dbf9bfb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:16 GMT" + "Fri, 29 Jan 2016 23:18:21 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTEyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9919dec1-c406-49f6-b094-fde2979616ca" + "ed0eb3bc-e7cf-45e4-b29d-8ea9b9c1480f" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7924' under resource group 'onesdk8523' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9125' under resource group 'onesdk1801' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "6a560abc-2acf-4a20-93b6-b39df09ace69" + "6f28fb7c-4b86-4152-a88b-4f0c04a401a1" ], "x-ms-correlation-request-id": [ - "6a560abc-2acf-4a20-93b6-b39df09ace69" + "6f28fb7c-4b86-4152-a88b-4f0c04a401a1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211716Z:6a560abc-2acf-4a20-93b6-b39df09ace69" + "WESTUS:20160129T231822Z:6f28fb7c-4b86-4152-a88b-4f0c04a401a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,19 +268,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:16 GMT" + "Fri, 29 Jan 2016 23:18:22 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTEyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0d80d4b-2bf8-462d-b160-f5b63aef8950" + "d5f83e01-424e-48e8-96e0-7df39fd87849" ], "accept-language": [ "en-US" @@ -289,7 +289,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:19.785631Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638459058822\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:18:23.7835521Z\",\r\n \"changedTime\": \"2016-01-29T23:18:23.7840706Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474973818156248\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"name\": \"onesdk9125\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -307,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:42a9d0ba-88ae-4bc7-9a24-69cb2fa0f9a1" + "westus:f6ee937a-71bf-4c46-b15e-253eb335b6c0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14902" ], "x-ms-correlation-request-id": [ - "c1fe7538-a766-458f-886a-cd8d22380c27" + "131eac99-6ad2-46e5-9125-5731622820a4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211720Z:c1fe7538-a766-458f-886a-cd8d22380c27" + "WESTUS:20160129T231824Z:131eac99-6ad2-46e5-9125-5731622820a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,19 +325,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:20 GMT" + "Fri, 29 Jan 2016 23:18:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTEyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7509cbd-f463-476e-ac22-4980e5c38aef" + "18a0fbce-fe72-4dc1-8af1-029a2cfab604" ], "accept-language": [ "en-US" @@ -346,10 +346,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:20.9319665Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587477638445865613\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:18:23.7835521Z\",\r\n \"changedTime\": \"2016-01-29T23:18:24.7894582Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587474973807399163\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"name\": \"onesdk9125\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1577" + "1576" ], "Content-Type": [ "application/json; charset=utf-8" @@ -364,16 +364,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:31cfdcc1-b6ea-41ee-81d6-c555b2ab3dc9" + "westus:6a7991e2-b82c-42f4-b813-0be66861c7cc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14901" ], "x-ms-correlation-request-id": [ - "fb5d9c8c-3fce-4a1e-9e17-5d119ea939ca" + "bd4c0381-3cac-4a10-81b3-c35559aef70b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211721Z:fb5d9c8c-3fce-4a1e-9e17-5d119ea939ca" + "WESTUS:20160129T231824Z:bd4c0381-3cac-4a10-81b3-c35559aef70b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,19 +382,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:20 GMT" + "Fri, 29 Jan 2016 23:18:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTEyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb0983af-7088-44f1-b74b-8e357373237b" + "f5a1e5ea-4df5-43eb-9707-e826665e0149" ], "accept-language": [ "en-US" @@ -403,7 +403,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:22.959016Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638425705705\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:18:23.7835521Z\",\r\n \"changedTime\": \"2016-01-29T23:18:25.2204798Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474973803074745\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"name\": \"onesdk9125\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -421,16 +421,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:dcca9529-ce41-4ce4-acfa-593ce170b1e5" + "westus:da39f083-9440-454e-85af-fe50a743ce34" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14900" ], "x-ms-correlation-request-id": [ - "f70fcaed-2a6d-4f32-b285-60d3eeb72f68" + "bc7fba21-24b9-469b-baaa-b25e8d851ec8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211723Z:f70fcaed-2a6d-4f32-b285-60d3eeb72f68" + "WESTUS:20160129T231825Z:bc7fba21-24b9-469b-baaa-b25e8d851ec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,19 +439,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:22 GMT" + "Fri, 29 Jan 2016 23:18:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTEyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3046264f-3231-4693-a2e1-7d99054256d1" + "260624eb-507c-4382-a7a8-76a9b683273e" ], "accept-language": [ "en-US" @@ -460,10 +460,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:23.5983276Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638419204380\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:18:23.7835521Z\",\r\n \"changedTime\": \"2016-01-29T23:18:26.2102882Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474973793081561\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"name\": \"onesdk9125\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1356" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -478,16 +478,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4346b67b-0d8f-4860-87a0-77e2dc6c3bfe" + "westus:78b3ae3e-867d-4758-9344-216b4c20cc13" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14899" ], "x-ms-correlation-request-id": [ - "68d17e24-1810-4500-8001-4d51a9f9e586" + "4f5f743b-3a4d-415a-b72c-6c83b4c69df3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211724Z:68d17e24-1810-4500-8001-4d51a9f9e586" + "WESTUS:20160129T231826Z:4f5f743b-3a4d-415a-b72c-6c83b4c69df3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,25 +496,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:23 GMT" + "Fri, 29 Jan 2016 23:18:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTEyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1180" + "1179" ], "x-ms-client-request-id": [ - "c446bf2a-7dcc-4d2f-8527-fa922d15d1f4" + "5c080e44-725b-4374-ac81-acd51570edfc" ], "accept-language": [ "en-US" @@ -523,10 +523,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"changedTime\": \"2016-01-26T21:17:19.7850115Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638459058822\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:18:23.7835521Z\",\r\n \"changedTime\": \"2016-01-29T23:18:23.7835521Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474973818156248\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"name\": \"onesdk9125\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1356" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -538,16 +538,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:2bde5b52-fa3a-4a0e-8659-a656450cef18" + "westus:b82f7e4a-99a7-4eed-8ac8-618a3278fb19" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "62f82466-ddb8-4f3d-a4b4-9649fecdcb48" + "0299b252-2c6c-4cdd-93af-cbdb6643ad3d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211720Z:62f82466-ddb8-4f3d-a4b4-9649fecdcb48" + "WESTUS:20160129T231824Z:0299b252-2c6c-4cdd-93af-cbdb6643ad3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,25 +556,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:19 GMT" + "Fri, 29 Jan 2016 23:18:23 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTEyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1775" + "1774" ], "x-ms-client-request-id": [ - "e7a75eaa-1661-4213-a876-36fdf7cdf9ba" + "bb717011-0769-487f-9887-675583b6e187" ], "accept-language": [ "en-US" @@ -583,10 +583,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:20.9316415Z\",\r\n \"changedTime\": \"2016-01-26T21:17:20.9319665Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587477638445865613\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:18:24.7890764Z\",\r\n \"changedTime\": \"2016-01-29T23:18:24.7894582Z\",\r\n \"state\": \"Disabled\",\r\n \"version\": \"08587474973807399163\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"name\": \"onesdk9125\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1577" + "1576" ], "Content-Type": [ "application/json; charset=utf-8" @@ -601,16 +601,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:27f3c1c6-167b-446f-bd61-a838173d4731" + "westus:96335f3e-5226-4824-8f38-4e869616a6e0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-correlation-request-id": [ - "ec1c83bb-287b-4cb1-9955-65199646016e" + "b3640724-be3d-49dd-8b7b-8f594fb1b339" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211721Z:ec1c83bb-287b-4cb1-9955-65199646016e" + "WESTUS:20160129T231824Z:b3640724-be3d-49dd-8b7b-8f594fb1b339" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -619,25 +619,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:20 GMT" + "Fri, 29 Jan 2016 23:18:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTEyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"type\": \"bool\",\r\n \"defaultValue\": true\r\n },\r\n \"destinationUri\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"http://tempuri.org\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1180" + "1179" ], "x-ms-client-request-id": [ - "74046e6f-30e7-4f2d-b5b0-27d43a7de13c" + "9136c04f-cb76-4d98-afde-0e34b4317654" ], "accept-language": [ "en-US" @@ -646,7 +646,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:22.9585441Z\",\r\n \"changedTime\": \"2016-01-26T21:17:22.959016Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638425705705\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:18:25.2200429Z\",\r\n \"changedTime\": \"2016-01-29T23:18:25.2204798Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474973803074745\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"name\": \"onesdk9125\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1355" @@ -664,16 +664,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:cbc90fb0-3fde-4014-88f9-6635c28c8bda" + "westus:586eba3f-5a98-4df1-83e0-1aa405408243" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-correlation-request-id": [ - "107188a5-9f93-48c6-b887-5ca21061fa7d" + "ed1283bb-56bc-484f-955d-2cc30e4e2467" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211723Z:107188a5-9f93-48c6-b887-5ca21061fa7d" + "WESTUS:20160129T231825Z:ed1283bb-56bc-484f-955d-2cc30e4e2467" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -682,25 +682,25 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:22 GMT" + "Fri, 29 Jan 2016 23:18:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzkyND9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTEyNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1180" + "1179" ], "x-ms-client-request-id": [ - "bce1cb54-8032-446f-a24b-d9f7bca91500" + "ca856370-dfe6-4da4-b499-ef9aa13d37e8" ], "accept-language": [ "en-US" @@ -709,10 +709,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:17:23.5980425Z\",\r\n \"changedTime\": \"2016-01-26T21:17:23.5983276Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477638419204380\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/onesdk7924\",\r\n \"name\": \"onesdk7924\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:18:26.2097313Z\",\r\n \"changedTime\": \"2016-01-29T23:18:26.2102882Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474973793081561\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": true,\r\n \"type\": \"Bool\"\r\n },\r\n \"destinationUri\": {\r\n \"defaultValue\": \"http://tempuri.org\",\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"triggers\": {},\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"POST\",\r\n \"uri\": \"@parameters('destinationUri')\",\r\n \"body\": \"Test\"\r\n },\r\n \"conditions\": []\r\n }\r\n },\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"destinationUri\": {\r\n \"value\": \"http://requestb.in/1kj7g8e1\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/onesdk9125\",\r\n \"name\": \"onesdk9125\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1356" + "1355" ], "Content-Type": [ "application/json; charset=utf-8" @@ -727,16 +727,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:16da85b2-3b0b-4ad4-b415-f1bf82495b61" + "westus:1e5bf9eb-cc9a-49ca-a1d1-71c1cc4b005c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1192" ], "x-ms-correlation-request-id": [ - "49bc3a75-06cf-4cb5-ae8a-a80ad81b6727" + "a5b1adb5-708b-44fe-a34c-6d5c34dbeef4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211724Z:49bc3a75-06cf-4cb5-ae8a-a80ad81b6727" + "WESTUS:20160129T231826Z:a5b1adb5-708b-44fe-a34c-6d5c34dbeef4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -745,19 +745,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:23 GMT" + "Fri, 29 Jan 2016 23:18:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8523/providers/Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvODJEMkQ4NDItQzMxMi00NDVDLThBNEQtRTNFRTk1NDI0MzZEP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk1801/providers/Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazE4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3MvODJEMkQ4NDItQzMxMi00NDVDLThBNEQtRTNFRTk1NDI0MzZEP2FwaS12ZXJzaW9uPTIwMTUtMDItMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80fe3a19-d7c5-48b6-b619-dab1e3e5700b" + "9168f1e5-17db-4a20-ab08-3ecd9d76d846" ], "accept-language": [ "en-US" @@ -766,7 +766,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D' under resource group 'onesdk8523' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/82D2D842-C312-445C-8A4D-E3EE9542436D' under resource group 'onesdk1801' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "176" @@ -784,13 +784,13 @@ "gateway" ], "x-ms-request-id": [ - "1cf89781-ee44-45e3-ad45-47d29a88f393" + "9aeef4e6-3712-4bb2-81ee-dbd2898f1718" ], "x-ms-correlation-request-id": [ - "1cf89781-ee44-45e3-ad45-47d29a88f393" + "9aeef4e6-3712-4bb2-81ee-dbd2898f1718" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T211724Z:1cf89781-ee44-45e3-ad45-47d29a88f393" + "WESTUS:20160129T231826Z:9aeef4e6-3712-4bb2-81ee-dbd2898f1718" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -799,7 +799,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:17:23 GMT" + "Fri, 29 Jan 2016 23:18:26 GMT" ] }, "StatusCode": 404 @@ -807,8 +807,8 @@ ], "Names": { "Test-UpdateLogicApp": [ - "onesdk8523", - "onesdk7924" + "onesdk1801", + "onesdk9125" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json index 69d35ed048ca..161b6aa31d02 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTrigger.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzNzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7894?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4OTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14893" ], "x-ms-request-id": [ - "0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + "2a911a83-9319-4aca-957c-b9f1a99bd2e9" ], "x-ms-correlation-request-id": [ - "0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + "2a911a83-9319-4aca-957c-b9f1a99bd2e9" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211833Z:0683f5ae-5cb4-46d8-bf7e-406df8aa728c" + "WESTUS:20160129T232126Z:2a911a83-9319-4aca-957c-b9f1a99bd2e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:33 GMT" + "Fri, 29 Jan 2016 23:21:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazMzNzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7894?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazc4OTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370\",\r\n \"name\": \"onesdk3370\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894\",\r\n \"name\": \"onesdk7894\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1195" ], "x-ms-request-id": [ - "847501f9-774f-4955-af78-d3009069a080" + "3a5b921c-4c9f-4a14-a595-1b6a1a84f683" ], "x-ms-correlation-request-id": [ - "847501f9-774f-4955-af78-d3009069a080" + "3a5b921c-4c9f-4a14-a595-1b6a1a84f683" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211833Z:847501f9-774f-4955-af78-d3009069a080" + "WESTUS:20160129T232127Z:3a5b921c-4c9f-4a14-a595-1b6a1a84f683" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:33 GMT" + "Fri, 29 Jan 2016 23:21:26 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4OTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14892" ], "x-ms-request-id": [ - "643441de-56ba-4daa-9585-7a00bfa1966c" + "55bdfffe-c868-4b29-8bf5-a2cf3bff421c" ], "x-ms-correlation-request-id": [ - "643441de-56ba-4daa-9585-7a00bfa1966c" + "55bdfffe-c868-4b29-8bf5-a2cf3bff421c" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211833Z:643441de-56ba-4daa-9585-7a00bfa1966c" + "WESTUS:20160129T232127Z:55bdfffe-c868-4b29-8bf5-a2cf3bff421c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:33 GMT" + "Fri, 29 Jan 2016 23:21:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9d8505f-f309-4e21-be39-0a8eada098a0" + "46ff9f88-08b2-4679-95ce-f6665ecdf3b9" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3370-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3370\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk7894-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk7894\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33e976c8-1ec5-4834-8348-cef824833241" + "1a6a8d4d-baa5-4d00-ad82-35903e3a636c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14907" ], "x-ms-correlation-request-id": [ - "1dd0e2cd-781e-4b30-8790-925ade20ad81" + "7adde77b-312e-4bff-b8fa-073e8387269a" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211841Z:1dd0e2cd-781e-4b30-8790-925ade20ad81" + "CENTRALUS:20160129T232138Z:7adde77b-312e-4bff-b8fa-073e8387269a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:40 GMT" + "Fri, 29 Jan 2016 23:21:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Logic/workflows/onesdk9905?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTkwNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96ca2a81-b26a-4e8a-be85-f84fbd6347c6" + "d315ea8f-215a-4022-ad25-bc0548b2b569" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk1799' under resource group 'onesdk3370' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk9905' under resource group 'onesdk7894' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "b731fd32-2064-4792-8041-dc35fbaf6a45" + "40e0670b-e0ce-4aff-ba1a-65a93abb47b0" ], "x-ms-correlation-request-id": [ - "b731fd32-2064-4792-8041-dc35fbaf6a45" + "40e0670b-e0ce-4aff-ba1a-65a93abb47b0" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211841Z:b731fd32-2064-4792-8041-dc35fbaf6a45" + "CENTRALUS:20160129T232139Z:40e0670b-e0ce-4aff-ba1a-65a93abb47b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,16 +268,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:41 GMT" + "Fri, 29 Jan 2016 23:21:38 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Logic/workflows/onesdk9905?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTkwNT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -286,7 +286,7 @@ "1774" ], "x-ms-client-request-id": [ - "2a90e9f2-32af-414a-9bc3-271acdde47ba" + "468fc2bd-f009-4b69-8fb9-3f0423a7b94e" ], "accept-language": [ "en-US" @@ -295,7 +295,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637619829098\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799\",\r\n \"name\": \"onesdk1799\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:21:40.2063162Z\",\r\n \"changedTime\": \"2016-01-29T23:21:40.2063162Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474971853367866\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk7894/providers/Microsoft.Logic/workflows/onesdk9905\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Logic/workflows/onesdk9905\",\r\n \"name\": \"onesdk9905\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -310,16 +310,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:6ce1f0f7-1751-42b0-a996-8f5c456ca23d" + "westus:990bc21f-2309-465c-88e4-dcc41cb25a47" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "146625f1-56ac-4788-8300-75567288fd52" + "ff45b757-f439-4e7e-b255-d650287e138f" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211844Z:146625f1-56ac-4788-8300-75567288fd52" + "CENTRALUS:20160129T232141Z:ff45b757-f439-4e7e-b255-d650287e138f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -328,19 +328,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:43 GMT" + "Fri, 29 Jan 2016 23:21:41 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OS90cmlnZ2Vycy8/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Logic/workflows/onesdk9905/triggers/?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTkwNS90cmlnZ2Vycy8/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30f8354c-722b-43ce-a651-2af8a7273ee5" + "d92de0c1-150b-4ed5-95b2-1418c661a5d8" ], "accept-language": [ "en-US" @@ -349,10 +349,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6105006Z\",\r\n \"state\": \"Enabled\",\r\n \"workflow\": {\r\n \"name\": \"onesdk1799/08587477637619829098\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/versions/08587477637619829098\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:21:41.0102431Z\",\r\n \"changedTime\": \"2016-01-29T23:21:41.323994Z\",\r\n \"state\": \"Enabled\",\r\n \"status\": \"Waiting\",\r\n \"lastExecutionTime\": \"2016-01-29T23:21:41.0520069Z\",\r\n \"nextExecutionTime\": \"2016-01-30T00:21:41.0520069Z\",\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"workflow\": {\r\n \"name\": \"onesdk9905/08587474971853367866\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Logic/workflows/onesdk9905/versions/08587474971853367866\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Logic/workflows/onesdk9905/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "645" + "813" ], "Content-Type": [ "application/json; charset=utf-8" @@ -367,16 +367,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:1cb51f7e-537b-4ec6-93b1-b543db4826a6" + "westus:137ca956-e57f-46d3-91ec-8b9a046f2bf0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" + "14905" ], "x-ms-correlation-request-id": [ - "a249e649-5f00-4a20-a24d-7222e6edef36" + "ab3b92c0-3bac-4b1b-a9fa-a34bf1fefe88" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211844Z:a249e649-5f00-4a20-a24d-7222e6edef36" + "CENTRALUS:20160129T232142Z:ab3b92c0-3bac-4b1b-a9fa-a34bf1fefe88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,19 +385,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:44 GMT" + "Fri, 29 Jan 2016 23:21:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazMzNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMTc5OS90cmlnZ2Vycy9odHRwVHJpZ2dlcj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Logic/workflows/onesdk9905/triggers/httpTrigger?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazc4OTQvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrOTkwNS90cmlnZ2Vycy9odHRwVHJpZ2dlcj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a027c85b-517e-4c38-b99e-c79f192deac4" + "5eafb127-d9f4-42bf-8c82-d3d0c0df4753" ], "accept-language": [ "en-US" @@ -406,10 +406,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"createdTime\": \"2016-01-26T21:18:43.6099684Z\",\r\n \"changedTime\": \"2016-01-26T21:18:43.6105006Z\",\r\n \"state\": \"Enabled\",\r\n \"workflow\": {\r\n \"name\": \"onesdk1799/08587477637619829098\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/versions/08587477637619829098\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3370/providers/Microsoft.Logic/workflows/onesdk1799/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:21:41.0102431Z\",\r\n \"changedTime\": \"2016-01-29T23:21:41.323994Z\",\r\n \"state\": \"Enabled\",\r\n \"status\": \"Waiting\",\r\n \"lastExecutionTime\": \"2016-01-29T23:21:41.0520069Z\",\r\n \"nextExecutionTime\": \"2016-01-30T00:21:41.0520069Z\",\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"workflow\": {\r\n \"name\": \"onesdk9905/08587474971853367866\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Logic/workflows/onesdk9905/versions/08587474971853367866\",\r\n \"type\": \"Microsoft.Logic/workflows/versions\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk7894/providers/Microsoft.Logic/workflows/onesdk9905/triggers/httpTrigger\",\r\n \"name\": \"httpTrigger\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "633" + "801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,16 +424,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:5a94e423-110c-4882-9df3-fecb3327ae72" + "westus:49eb1414-9b92-421f-b8d2-f8a9075f7a9c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "14904" ], "x-ms-correlation-request-id": [ - "a54ac5e3-5b6a-4922-8fa7-bf51cafdc089" + "91649faf-f8da-44ee-a3ca-6bc471212cde" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211844Z:a54ac5e3-5b6a-4922-8fa7-bf51cafdc089" + "CENTRALUS:20160129T232142Z:91649faf-f8da-44ee-a3ca-6bc471212cde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,7 +442,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:18:44 GMT" + "Fri, 29 Jan 2016 23:21:42 GMT" ] }, "StatusCode": 200 @@ -450,8 +450,8 @@ ], "Names": { "Test-GetAzureLogicAppTrigger": [ - "onesdk3370", - "onesdk1799" + "onesdk7894", + "onesdk9905" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json index 107fa895b0ed..0a20d0aa5630 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestGetAzureLogicAppTriggerHistory.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8756?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg3NTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14953" ], "x-ms-request-id": [ - "11b68509-10ea-4482-830a-5b8760f96213" + "84d19dff-3911-4192-96ba-72fd9c0b7ebe" ], "x-ms-correlation-request-id": [ - "11b68509-10ea-4482-830a-5b8760f96213" + "84d19dff-3911-4192-96ba-72fd9c0b7ebe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T212105Z:11b68509-10ea-4482-830a-5b8760f96213" + "WESTUS:20160129T232036Z:84d19dff-3911-4192-96ba-72fd9c0b7ebe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:05 GMT" + "Fri, 29 Jan 2016 23:20:36 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8756?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazg3NTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247\",\r\n \"name\": \"onesdk2247\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756\",\r\n \"name\": \"onesdk8756\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-request-id": [ - "ba6131f4-f415-40d8-979b-bbaacfbb7e23" + "319c407e-86d6-4c00-a7d6-3dd30270ee95" ], "x-ms-correlation-request-id": [ - "ba6131f4-f415-40d8-979b-bbaacfbb7e23" + "319c407e-86d6-4c00-a7d6-3dd30270ee95" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T212107Z:ba6131f4-f415-40d8-979b-bbaacfbb7e23" + "WESTUS:20160129T232036Z:319c407e-86d6-4c00-a7d6-3dd30270ee95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:07 GMT" + "Fri, 29 Jan 2016 23:20:36 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14952" ], "x-ms-request-id": [ - "72dcf158-033a-43b8-9ff4-44a5368268c8" + "513c712f-cb6a-4024-b612-fae8ab762fbb" ], "x-ms-correlation-request-id": [ - "72dcf158-033a-43b8-9ff4-44a5368268c8" + "513c712f-cb6a-4024-b612-fae8ab762fbb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160126T212107Z:72dcf158-033a-43b8-9ff4-44a5368268c8" + "WESTUS:20160129T232036Z:513c712f-cb6a-4024-b612-fae8ab762fbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:07 GMT" + "Fri, 29 Jan 2016 23:20:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bb7bd9d-2f2a-4188-a7e8-3eac8dc3fcea" + "0656273e-6bd9-4de6-b703-c44f1222c049" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk2247-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk2247\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk8756-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk8756\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "921756d0-6324-4439-a168-64d42f32512b" + "49aa5b77-c691-426c-978a-cef7d71fc29d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14912" ], "x-ms-correlation-request-id": [ - "8f11a804-1222-4322-8568-e14986203537" + "90fc1ab1-783f-4ed1-b916-7381c8f46837" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212140Z:8f11a804-1222-4322-8568-e14986203537" + "WESTUS:20160129T232045Z:90fc1ab1-783f-4ed1-b916-7381c8f46837" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:39 GMT" + "Fri, 29 Jan 2016 23:20:45 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgxNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad6de3c7-69f1-4a25-b41f-b957f67b4a06" + "8392b565-f030-4af5-b68e-dc45eeb4d66d" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk2597' under resource group 'onesdk2247' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk4816' under resource group 'onesdk8756' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "1e3a2b8d-f396-49b1-8e11-007047a828b5" + "7999bc6f-1595-4db7-ab86-4ed123b26d20" ], "x-ms-correlation-request-id": [ - "1e3a2b8d-f396-49b1-8e11-007047a828b5" + "7999bc6f-1595-4db7-ab86-4ed123b26d20" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212140Z:1e3a2b8d-f396-49b1-8e11-007047a828b5" + "WESTUS:20160129T232046Z:7999bc6f-1595-4db7-ab86-4ed123b26d20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,19 +268,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:39 GMT" + "Fri, 29 Jan 2016 23:20:45 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgxNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf7fd87f-4bcd-4a7c-8a0d-acc4792375c1" + "44a51f20-cbe1-4b9b-a042-a27068371197" ], "accept-language": [ "en-US" @@ -289,7 +289,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:20:47.1058959Z\",\r\n \"changedTime\": \"2016-01-29T23:20:47.1067403Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474972385722171\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"name\": \"onesdk4816\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -307,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:841e0715-6013-404f-be37-93e894d65b2b" + "westus:2adb177e-49b1-41db-9df7-c4300d2251f0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" + "14948" ], "x-ms-correlation-request-id": [ - "76694372-6dcd-4327-84d6-e8d03533aa80" + "bb50090d-45e7-43ad-b195-34508a162f1a" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212145Z:76694372-6dcd-4327-84d6-e8d03533aa80" + "WESTUS:20160129T232049Z:bb50090d-45e7-43ad-b195-34508a162f1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,19 +325,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:44 GMT" + "Fri, 29 Jan 2016 23:20:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgxNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ea432c9-0d14-4374-9320-cca47ee04113" + "90376dd2-2b9b-4498-8d30-d1e616b6292e" ], "accept-language": [ "en-US" @@ -346,7 +346,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:20:47.1058959Z\",\r\n \"changedTime\": \"2016-01-29T23:20:47.1067403Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474972385722171\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"name\": \"onesdk4816\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -364,16 +364,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4bcc9099-3935-4f37-b406-649fd56f5fae" + "westus:d1b6793f-5f99-4652-92e5-d5fa1b2fcb2c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" + "14947" ], "x-ms-correlation-request-id": [ - "fdfafa93-b41f-411f-9fd6-45343d1b7135" + "11208dbd-6566-420f-a3a6-5b13ff30f613" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212147Z:fdfafa93-b41f-411f-9fd6-45343d1b7135" + "WESTUS:20160129T232051Z:11208dbd-6566-420f-a3a6-5b13ff30f613" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,19 +382,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:47 GMT" + "Fri, 29 Jan 2016 23:20:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgxNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26991134-ae62-4838-bd44-48715b6cf3e8" + "c315b147-6169-4102-a79a-40a8369f2789" ], "accept-language": [ "en-US" @@ -403,7 +403,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:20:47.1058959Z\",\r\n \"changedTime\": \"2016-01-29T23:20:47.1067403Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474972385722171\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"name\": \"onesdk4816\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -421,16 +421,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:9373f978-54e1-47cb-8220-457788e8183c" + "westus:e9d298bd-7bfe-48c3-b676-527b2e4e6ca6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14888" + "14946" ], "x-ms-correlation-request-id": [ - "f1c598bc-d77c-414c-b954-1295b29f2b3e" + "980cba76-69f7-4bde-a39c-b046325b702c" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212149Z:f1c598bc-d77c-414c-b954-1295b29f2b3e" + "WESTUS:20160129T232053Z:980cba76-69f7-4bde-a39c-b046325b702c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,19 +439,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:49 GMT" + "Fri, 29 Jan 2016 23:20:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgxNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c5aaca5-cd55-48d4-8d99-d23043a51c98" + "59a0ebcf-5e32-499a-a20e-0753d50591a7" ], "accept-language": [ "en-US" @@ -460,7 +460,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:20:47.1058959Z\",\r\n \"changedTime\": \"2016-01-29T23:20:47.1067403Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474972385722171\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"name\": \"onesdk4816\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -478,16 +478,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4464b4e7-5e89-4482-87d3-640f5b26a80e" + "westus:f12c0e64-adf9-48c2-803d-388a7702d612" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" + "14945" ], "x-ms-correlation-request-id": [ - "96710e36-2600-4d2b-9fcc-7d528e9413ff" + "403234ec-f339-411a-afa6-8177385795d8" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212151Z:96710e36-2600-4d2b-9fcc-7d528e9413ff" + "WESTUS:20160129T232055Z:403234ec-f339-411a-afa6-8177385795d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,19 +496,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:51 GMT" + "Fri, 29 Jan 2016 23:20:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgxNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "728c4729-ae01-4c5d-bbbf-b72e9cffbf0c" + "8099ecf4-d352-407d-a69c-9a3d42631a9b" ], "accept-language": [ "en-US" @@ -517,7 +517,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:20:47.1058959Z\",\r\n \"changedTime\": \"2016-01-29T23:20:47.1067403Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474972385722171\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"name\": \"onesdk4816\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -535,16 +535,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:8c896338-aa82-44cb-9b05-260f63bd7512" + "westus:f3acdab0-ecf8-47bd-95a3-41eed8829c80" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14944" ], "x-ms-correlation-request-id": [ - "42fddc4b-d41e-4741-b8d3-7afdf89a1c97" + "8bb80216-7d31-4f71-b6b8-21d518399c05" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212153Z:42fddc4b-d41e-4741-b8d3-7afdf89a1c97" + "WESTUS:20160129T232057Z:8bb80216-7d31-4f71-b6b8-21d518399c05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,19 +553,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:53 GMT" + "Fri, 29 Jan 2016 23:20:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgxNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa7f7f45-e11b-44ef-ae08-6d0342056df1" + "7468267e-f9f3-48e9-807e-93aa6e39be74" ], "accept-language": [ "en-US" @@ -574,7 +574,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7155693Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:20:47.1058959Z\",\r\n \"changedTime\": \"2016-01-29T23:20:47.1067403Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474972385722171\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"name\": \"onesdk4816\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -592,16 +592,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4210dff4-0cda-48b5-9c94-2788f937ef4d" + "westus:240486cd-317b-48f8-a2a1-f0b5f9d02822" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14943" ], "x-ms-correlation-request-id": [ - "70b28220-d82d-4721-892b-def6034daa0b" + "1b0fec76-e219-4167-9c6c-2728111eb8d2" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212155Z:70b28220-d82d-4721-892b-def6034daa0b" + "WESTUS:20160129T232059Z:1b0fec76-e219-4167-9c6c-2728111eb8d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -610,16 +610,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:55 GMT" + "Fri, 29 Jan 2016 23:20:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgxNj9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -628,7 +628,7 @@ "1774" ], "x-ms-client-request-id": [ - "fe4c0e13-6823-49f7-9490-4ccaf73aff64" + "1992ed83-af0a-4b9c-83d7-09613630e547" ], "accept-language": [ "en-US" @@ -637,7 +637,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"changedTime\": \"2016-01-26T21:21:42.7149022Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477635828959266\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597\",\r\n \"name\": \"onesdk2597\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:20:47.1058959Z\",\r\n \"changedTime\": \"2016-01-29T23:20:47.1058959Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474972385722171\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816\",\r\n \"name\": \"onesdk4816\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1576" @@ -652,16 +652,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:975b423f-d49b-43b3-af39-64174181f67a" + "westus:eec77ab2-69d3-426b-b082-edf9f0bcb82e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "99fb6a60-2329-4386-aa24-8356460a6962" + "9c98ccea-d492-4a62-b745-4a5188da9d51" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212143Z:99fb6a60-2329-4386-aa24-8356460a6962" + "WESTUS:20160129T232047Z:9c98ccea-d492-4a62-b745-4a5188da9d51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,19 +670,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:42 GMT" + "Fri, 29 Jan 2016 23:20:46 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgxNi90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aca42615-a20c-460e-8925-227ff855303b" + "a16c4567-9c64-4256-9465-29fc0150155e" ], "accept-language": [ "en-US" @@ -703,16 +703,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:4dba551c-3e0c-44e1-93d0-0309ccf09cd5" + "westus:db87c14a-841e-4263-b92b-10f1e2f90fa4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "0db2dd9b-049f-42fe-bb4e-9095a9f34bec" + "a9c41374-98b5-4735-a38d-58042f48f313" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212155Z:0db2dd9b-049f-42fe-bb4e-9095a9f34bec" + "WESTUS:20160129T232059Z:a9c41374-98b5-4735-a38d-58042f48f313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -721,19 +721,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:55 GMT" + "Fri, 29 Jan 2016 23:20:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgxNi90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "634c8044-fa08-4638-ae84-85a59d2e115c" + "3afbaedb-5168-4da4-bb8a-11cca2842a5d" ], "accept-language": [ "en-US" @@ -742,10 +742,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:21:43.8623245Z\",\r\n \"endTime\": \"2016-01-26T21:21:44.7821975Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"29a915aa-1fe2-4cb9-b862-d690fb694730\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/3C16F_820c9e847d324a5c88ffcc09f4715634_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=YOI8IztH78hlz71DhwKluYSIAwVsCQs790zS35484iA%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0980630\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/483BC_33ede65090cb4bfe800536ab08564561_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=pzI%2BcZ8sjUBOWsgOV7GaohOBVuWA8TcjPRHhTdHYpww%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0982D42\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"PpRbpxaSjpygkbUqLreOMw==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477635816147911\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/runs/08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911\",\r\n \"name\": \"08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:20:48.1707108Z\",\r\n \"endTime\": \"2016-01-29T23:20:48.7750861Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"853a6562-3d1f-4b46-ba6b-112764b93984\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flow26a3e116320b47b9aab6c71f6a6c7acb20160129t000000zcontent/DE0A2_cff0c9599bb74e75a5c0fd5ed55bdd04_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=OvKq3a%2FM7H6%2BQDoPe22ddfCCbtMqM7D4OSziCNxH21s%3D&se=2016-01-30T03%3A21%3A00Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32902D26A8A83\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flow26a3e116320b47b9aab6c71f6a6c7acb20160129t000000zcontent/1E1D4_099ac508cbc44cc7ad40f0333727d540_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=X4qORfaLmpwL2ThtSWJB5vqi4tPeM2jE3DtJz9selrc%3D&se=2016-01-30T03%3A21%3A00Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32902D275145E\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"waU/fMVspBjDFbNth18zyg==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587474972373067982\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816/runs/08587474972373067982\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816/triggers/httpTrigger/histories/08587474972373067982\",\r\n \"name\": \"08587474972373067982\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1575" + "1577" ], "Content-Type": [ "application/json; charset=utf-8" @@ -760,16 +760,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:ccfe891b-e9df-4214-a9ae-7cf4b243ba4c" + "westus:89a4be73-eec9-4384-9e86-c8a8b52205e4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14942" ], "x-ms-correlation-request-id": [ - "5913a89e-3259-4c1e-93ab-fe24e4953f77" + "2fab07f6-14ce-4625-a682-32d23ffc187d" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212155Z:5913a89e-3259-4c1e-93ab-fe24e4953f77" + "WESTUS:20160129T232100Z:2fab07f6-14ce-4625-a682-32d23ffc187d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,19 +778,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:55 GMT" + "Fri, 29 Jan 2016 23:20:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrMjU5Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXMvMDg1ODc0Nzc2MzU4MTYxNDc5MTE/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816/triggers/httpTrigger/histories/08587474972373067982?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazg3NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNDgxNi90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXMvMDg1ODc0NzQ5NzIzNzMwNjc5ODI/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4141ea85-4d8d-4d56-bd02-c0c4f6ec1c2c" + "ae034558-51da-42a2-9d78-946cb74ed573" ], "accept-language": [ "en-US" @@ -799,10 +799,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:21:43.8623245Z\",\r\n \"endTime\": \"2016-01-26T21:21:44.7821975Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"29a915aa-1fe2-4cb9-b862-d690fb694730\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/3C16F_820c9e847d324a5c88ffcc09f4715634_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=YOI8IztH78hlz71DhwKluYSIAwVsCQs790zS35484iA%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0980630\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flowb08c1af373fb47e59bc01e4cc55b714820160126t000000zcontent/483BC_33ede65090cb4bfe800536ab08564561_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=pzI%2BcZ8sjUBOWsgOV7GaohOBVuWA8TcjPRHhTdHYpww%3D&se=2016-01-27T01%3A21%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32696B0982D42\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"PpRbpxaSjpygkbUqLreOMw==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477635816147911\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/runs/08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk2247/providers/Microsoft.Logic/workflows/onesdk2597/triggers/httpTrigger/histories/08587477635816147911\",\r\n \"name\": \"08587477635816147911\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:20:48.1707108Z\",\r\n \"endTime\": \"2016-01-29T23:20:48.7750861Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"853a6562-3d1f-4b46-ba6b-112764b93984\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flow26a3e116320b47b9aab6c71f6a6c7acb20160129t000000zcontent/DE0A2_cff0c9599bb74e75a5c0fd5ed55bdd04_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=OvKq3a%2FM7H6%2BQDoPe22ddfCCbtMqM7D4OSziCNxH21s%3D&se=2016-01-30T03%3A21%3A00Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32902D26A8A83\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu03by01.blob.core.windows.net/flow26a3e116320b47b9aab6c71f6a6c7acb20160129t000000zcontent/1E1D4_099ac508cbc44cc7ad40f0333727d540_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=X4qORfaLmpwL2ThtSWJB5vqi4tPeM2jE3DtJz9selrc%3D&se=2016-01-30T03%3A21%3A00Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32902D275145E\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"waU/fMVspBjDFbNth18zyg==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587474972373067982\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816/runs/08587474972373067982\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk8756/providers/Microsoft.Logic/workflows/onesdk4816/triggers/httpTrigger/histories/08587474972373067982\",\r\n \"name\": \"08587474972373067982\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1563" + "1565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -817,16 +817,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:ed31f9d2-3be5-41aa-ae94-e94ccb56330d" + "westus:0bfd1f9f-d0b9-48f2-a3c9-db18a4e42ce9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" + "14941" ], "x-ms-correlation-request-id": [ - "eb872390-1b1d-42a3-8ca5-f2a1c2765366" + "b28493ff-2225-472e-963d-6b229c29e9cb" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T212155Z:eb872390-1b1d-42a3-8ca5-f2a1c2765366" + "WESTUS:20160129T232100Z:b28493ff-2225-472e-963d-6b229c29e9cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -835,7 +835,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:21:55 GMT" + "Fri, 29 Jan 2016 23:20:59 GMT" ] }, "StatusCode": 200 @@ -843,8 +843,8 @@ ], "Names": { "Test-GetAzureLogicAppTriggerHistory": [ - "onesdk2247", - "onesdk2597" + "onesdk8756", + "onesdk4816" ] }, "Variables": { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json index 875dbab8314b..7d35ba7cfd56 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/SessionRecords/Microsoft.Azure.Commands.LogicApp.Test.ScenarioTests.WorkflowTriggerTests/TestStartAzureLogicAppTrigger.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5433?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU0MzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" + "14937" ], "x-ms-request-id": [ - "eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + "59d88892-fd78-4962-bba2-1a2c96ef82de" ], "x-ms-correlation-request-id": [ - "eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + "59d88892-fd78-4962-bba2-1a2c96ef82de" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211932Z:eb7d3c9f-a014-49bf-aa94-0f0ff6d0623c" + "CENTRALUS:20160129T232204Z:59d88892-fd78-4962-bba2-1a2c96ef82de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:32 GMT" + "Fri, 29 Jan 2016 23:22:03 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazM0OTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5433?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlZ3JvdXBzL29uZXNkazU0MzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -67,7 +67,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491\",\r\n \"name\": \"onesdk3491\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433\",\r\n \"name\": \"onesdk5433\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "91e27401-8c1d-4e32-86e2-89a931854d5d" + "c8536baf-f06c-4256-9760-3ca5ae129a75" ], "x-ms-correlation-request-id": [ - "91e27401-8c1d-4e32-86e2-89a931854d5d" + "c8536baf-f06c-4256-9760-3ca5ae129a75" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211934Z:91e27401-8c1d-4e32-86e2-89a931854d5d" + "CENTRALUS:20160129T232205Z:c8536baf-f06c-4256-9760-3ca5ae129a75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,14 +100,14 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:34 GMT" + "Fri, 29 Jan 2016 23:22:05 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14745" + "14936" ], "x-ms-request-id": [ - "7cc74cb5-3937-4112-8117-3b075533dd48" + "98efdec6-34a8-4430-a1c8-f2b5c3059a4e" ], "x-ms-correlation-request-id": [ - "7cc74cb5-3937-4112-8117-3b075533dd48" + "98efdec6-34a8-4430-a1c8-f2b5c3059a4e" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211934Z:7cc74cb5-3937-4112-8117-3b075533dd48" + "CENTRALUS:20160129T232205Z:98efdec6-34a8-4430-a1c8-f2b5c3059a4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,19 +148,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:34 GMT" + "Fri, 29 Jan 2016 23:22:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Web/serverfarms/StandardServicePlan?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyZmFybXMvU3RhbmRhcmRTZXJ2aWNlUGxhbj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0aa8d261-8175-4ed7-b259-57670d2ede82" + "e93a5783-7153-4de8-a1b6-1de7aaf98a25" ], "accept-language": [ "en-US" @@ -172,7 +172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk3491-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk3491\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"name\": \"StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"serverFarmId\": 0,\r\n \"name\": \"StandardServicePlan\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk5433-WestUSwebspace\",\r\n \"subscription\": \"57b7034d-72d4-433d-ace2-a7460aed6a99\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": 0,\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"kind\": null,\r\n \"resourceGroup\": \"onesdk5433\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "951" @@ -190,22 +190,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b9bccadd-cb34-4131-9bd7-d7acb7022667" + "a90fddb8-eff0-408d-8490-75ddaa6893b7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14940" ], "x-ms-correlation-request-id": [ - "1872129b-1aa1-4fcf-9a6a-2a7488272fb0" + "f08d4004-6dd1-4ee0-9ef2-f5d287fd0add" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211940Z:1872129b-1aa1-4fcf-9a6a-2a7488272fb0" + "CENTRALUS:20160129T232214Z:f08d4004-6dd1-4ee0-9ef2-f5d287fd0add" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:39 GMT" + "Fri, 29 Jan 2016 23:22:14 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -220,13 +220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c498fc99-6008-4911-9245-238c3ec96d10" + "849e7221-39ae-4224-9eb6-51d7f6e9a33e" ], "accept-language": [ "en-US" @@ -235,7 +235,7 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk7855' under resource group 'onesdk3491' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/workflows/onesdk8757' under resource group 'onesdk5433' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -253,13 +253,13 @@ "gateway" ], "x-ms-request-id": [ - "7956ec48-da62-49a4-83e7-7fb3dd2e132f" + "32c3e1ed-bca1-4eb1-9a2c-6c7b4c446d6e" ], "x-ms-correlation-request-id": [ - "7956ec48-da62-49a4-83e7-7fb3dd2e132f" + "32c3e1ed-bca1-4eb1-9a2c-6c7b4c446d6e" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211941Z:7956ec48-da62-49a4-83e7-7fb3dd2e132f" + "CENTRALUS:20160129T232214Z:32c3e1ed-bca1-4eb1-9a2c-6c7b4c446d6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,19 +268,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:41 GMT" + "Fri, 29 Jan 2016 23:22:14 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53ffefdc-a2d2-4a9b-860c-a65d2c5f051d" + "aa902676-a7b5-42e2-9468-2a4b7b938b71" ], "accept-language": [ "en-US" @@ -289,10 +289,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:22:16.017862Z\",\r\n \"changedTime\": \"2016-01-29T23:22:16.0181629Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474971496378619\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"name\": \"onesdk8757\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1576" + "1575" ], "Content-Type": [ "application/json; charset=utf-8" @@ -307,16 +307,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:06698313-5301-4804-96cd-2b2ac9e1db6c" + "westus:8753e35a-8b40-4d75-9690-96ae414da42a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14919" ], "x-ms-correlation-request-id": [ - "a76749c6-1513-4b16-ad5b-f147ca14a7ba" + "4b7a2b32-6f46-492e-aeb1-b7c963e75de3" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211945Z:a76749c6-1513-4b16-ad5b-f147ca14a7ba" + "CENTRALUS:20160129T232218Z:4b7a2b32-6f46-492e-aeb1-b7c963e75de3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -325,19 +325,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:45 GMT" + "Fri, 29 Jan 2016 23:22:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f818893-51ad-45d8-b8f7-87a3ac6fabd0" + "33620941-6412-4fae-b45d-7bb820b1144e" ], "accept-language": [ "en-US" @@ -346,10 +346,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:22:16.017862Z\",\r\n \"changedTime\": \"2016-01-29T23:22:16.0181629Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474971496378619\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"name\": \"onesdk8757\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1576" + "1575" ], "Content-Type": [ "application/json; charset=utf-8" @@ -364,16 +364,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:97097c04-bde7-446e-a060-ab83c07e40a0" + "westus:d636a770-df16-472c-9a9d-d91aa12e23e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14918" ], "x-ms-correlation-request-id": [ - "c17da8c6-3997-402a-a4e4-c638e3ddcffc" + "08295ead-8841-47ff-bbac-4a5dcd49aace" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211947Z:c17da8c6-3997-402a-a4e4-c638e3ddcffc" + "CENTRALUS:20160129T232221Z:08295ead-8841-47ff-bbac-4a5dcd49aace" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,19 +382,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:47 GMT" + "Fri, 29 Jan 2016 23:22:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a1c818b-d91f-48f1-9ddb-7f43aa3a20bb" + "4fa7a6a8-8616-4a27-885d-02d9cf433f48" ], "accept-language": [ "en-US" @@ -403,10 +403,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:22:16.017862Z\",\r\n \"changedTime\": \"2016-01-29T23:22:16.0181629Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474971496378619\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"name\": \"onesdk8757\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1576" + "1575" ], "Content-Type": [ "application/json; charset=utf-8" @@ -421,16 +421,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:f124d8eb-2928-449b-b41d-f83f5909efba" + "westus:08ed1f06-659a-4b27-bec5-a2384cab2482" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14917" ], "x-ms-correlation-request-id": [ - "e28781d7-052f-4ee4-8f49-4a973ddc71d8" + "5f43ddba-5caf-4aec-ae6d-345ded656816" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211949Z:e28781d7-052f-4ee4-8f49-4a973ddc71d8" + "CENTRALUS:20160129T232223Z:5f43ddba-5caf-4aec-ae6d-345ded656816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,19 +439,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:49 GMT" + "Fri, 29 Jan 2016 23:22:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96a56e8a-cae8-40fb-9231-815d04302144" + "d50729ea-4be2-40ee-916d-7d085b780e0c" ], "accept-language": [ "en-US" @@ -460,10 +460,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:22:16.017862Z\",\r\n \"changedTime\": \"2016-01-29T23:22:16.0181629Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474971496378619\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"name\": \"onesdk8757\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1576" + "1575" ], "Content-Type": [ "application/json; charset=utf-8" @@ -478,16 +478,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:a8452737-6482-4b78-9234-61b9a95f731c" + "westus:2cee3e77-e0e1-491d-bd8c-70a8269f68db" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14916" ], "x-ms-correlation-request-id": [ - "c0a00c76-0da7-4b92-a2c6-9dba39b9ab8d" + "0a6d2152-a122-4d6b-b7ae-b7770dced94f" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211951Z:c0a00c76-0da7-4b92-a2c6-9dba39b9ab8d" + "CENTRALUS:20160129T232225Z:0a6d2152-a122-4d6b-b7ae-b7770dced94f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,19 +496,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:51 GMT" + "Fri, 29 Jan 2016 23:22:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5dc40ca-f8b5-4dab-9264-e7c02d04a0cd" + "73d9fbad-cdfd-4adc-b899-b8f5db2756fd" ], "accept-language": [ "en-US" @@ -517,10 +517,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:22:16.017862Z\",\r\n \"changedTime\": \"2016-01-29T23:22:16.0181629Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474971496378619\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"name\": \"onesdk8757\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1576" + "1575" ], "Content-Type": [ "application/json; charset=utf-8" @@ -535,16 +535,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:691102e7-52c6-48cf-b78d-ff5f21e95c0b" + "westus:759ccf27-7040-4d62-924c-89d1af9580f9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14915" ], "x-ms-correlation-request-id": [ - "ea048aaf-a0a7-46b5-99ab-3f4d7802ce7f" + "219f380f-ce42-4b6f-a0e8-e5fa73cb790f" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211953Z:ea048aaf-a0a7-46b5-99ab-3f4d7802ce7f" + "CENTRALUS:20160129T232227Z:219f380f-ce42-4b6f-a0e8-e5fa73cb790f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,19 +553,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:53 GMT" + "Fri, 29 Jan 2016 23:22:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f60409c-dacd-41d7-bcd7-dcab393096ed" + "9561d6cb-f15f-40db-82e6-95fe66916882" ], "accept-language": [ "en-US" @@ -574,10 +574,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7984574Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:22:16.017862Z\",\r\n \"changedTime\": \"2016-01-29T23:22:16.0181629Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474971496378619\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"name\": \"onesdk8757\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1576" + "1575" ], "Content-Type": [ "application/json; charset=utf-8" @@ -592,16 +592,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:e5825c90-f8e0-47a5-a4bf-fb3605480c7e" + "westus:c5396f5c-8533-4555-b134-87f97aef46a4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14914" ], "x-ms-correlation-request-id": [ - "7a0624bd-aeae-46d2-b05e-ee4278d3706b" + "6bd3a124-a97c-4e0d-a452-5bd131694be5" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211955Z:7a0624bd-aeae-46d2-b05e-ee4278d3706b" + "CENTRALUS:20160129T232229Z:6bd3a124-a97c-4e0d-a452-5bd131694be5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -610,16 +610,16 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:55 GMT" + "Fri, 29 Jan 2016 23:22:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NT9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Nz9hcGktdmVyc2lvbj0yMDE1LTAyLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Web/serverfarms/StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"string\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -628,7 +628,7 @@ "1774" ], "x-ms-client-request-id": [ - "648c3174-61ac-4190-bb5c-6cd5aeb6f288" + "5ea1ef28-5594-4cd2-be40-b91189f9ff5d" ], "accept-language": [ "en-US" @@ -637,10 +637,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"changedTime\": \"2016-01-26T21:19:42.7981817Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587477637028453789\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855\",\r\n \"name\": \"onesdk7855\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdTime\": \"2016-01-29T23:22:16.017862Z\",\r\n \"changedTime\": \"2016-01-29T23:22:16.017862Z\",\r\n \"state\": \"Enabled\",\r\n \"version\": \"08587474971496378619\",\r\n \"accessEndpoint\": \"https://westus.logic.azure.com:443/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourcegroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"plan\": {\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Web/serverfarms/StandardServicePlan\",\r\n \"type\": \"Microsoft.Web/ServerFarms\",\r\n \"name\": \"StandardServicePlan\"\r\n }\r\n },\r\n \"definition\": {\r\n \"$schema\": \"http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2014-12-01-preview/workflowdefinition.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"runworkflowmanually\": {\r\n \"defaultValue\": false,\r\n \"type\": \"Bool\"\r\n }\r\n },\r\n \"triggers\": {\r\n \"httpTrigger\": {\r\n \"recurrence\": {\r\n \"frequency\": \"Hour\",\r\n \"interval\": 1\r\n },\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"actions\": {\r\n \"http\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n },\r\n \"http1\": {\r\n \"type\": \"Http\",\r\n \"inputs\": {\r\n \"method\": \"GET\",\r\n \"uri\": \"http://www.bing.com\"\r\n },\r\n \"conditions\": [\r\n {\r\n \"expression\": \"@bool('true')\"\r\n }\r\n ]\r\n }\r\n },\r\n \"outputs\": {\r\n \"output1\": {\r\n \"type\": \"String\",\r\n \"value\": \"true\"\r\n }\r\n }\r\n },\r\n \"parameters\": {}\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757\",\r\n \"name\": \"onesdk8757\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1576" + "1574" ], "Content-Type": [ "application/json; charset=utf-8" @@ -652,16 +652,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:4c1d5eb3-8b93-453c-97fb-50c00959186a" + "westus:9b7236bd-0b22-4741-937e-856c3da5bba3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "522ee57f-4653-4222-a6ce-1060394e73ba" + "3791f1ed-1cb7-4df5-ba37-e040faf239dd" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211943Z:522ee57f-4653-4222-a6ce-1060394e73ba" + "CENTRALUS:20160129T232216Z:3791f1ed-1cb7-4df5-ba37-e040faf239dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,19 +670,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:43 GMT" + "Fri, 29 Jan 2016 23:22:16 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73b77f02-67aa-46b1-aa98-106e223f9045" + "60a4b78e-bfe1-48a0-9914-112bec038c97" ], "accept-language": [ "en-US" @@ -691,10 +691,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:44.5530621Z\",\r\n \"endTime\": \"2016-01-26T21:19:45.1405584Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"8965a27d-4bf6-44be-aea7-bdb17fb4b7c8\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/47A45_20e81a0be3ad4d65bc78552df12a462a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=e%2BTIDr4igws3NsKTDBkCbfNsk2I8e11b6AJbMnRQEjs%3D&se=2016-01-27T01%3A19%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D241A7\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/EDE60_cff97d3aa4604efe95d7eec20500a3af_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=uVD%2FyzThVoAYm%2FUBRplIrmrnYFAYrC%2BSYf3KX2Wq2VM%3D&se=2016-01-27T01%3A19%3A55Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D1570E\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6IEFhpGr4WjlWzpiHw8h7g==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477637009230758\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477637009230758\",\r\n \"name\": \"08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:22:17.1921941Z\",\r\n \"endTime\": \"2016-01-29T23:22:17.6074366Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"52f2ccde-cb53-4d29-a826-2ee1f538c057\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu04by01.blob.core.windows.net/flowced8170169bc41daa583da9d03b3fdd120160129t000000zcontent/53C67_446e83f0b79f4a12a9fada52d6482d19_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=fh2mHiUh74sfECjFo0q6YBU8KSk0CBQtIrr6P%2FCvOn4%3D&se=2016-01-30T03%3A22%3A30Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32903075977B0\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu04by01.blob.core.windows.net/flowced8170169bc41daa583da9d03b3fdd120160129t000000zcontent/03F7E_959c252a73f04ef6a18f82bbc323b668_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=eQCk9QRTlIbjohz2rtefeLxhfkhWnad4Sf0%2BUD2o%2FF4%3D&se=2016-01-30T03%3A22%3A30Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3290307599EC7\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"jtNGkgdjh90ZDmAOEAbC+A==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587474971482821176\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/runs/08587474971482821176\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/triggers/httpTrigger/histories/08587474971482821176\",\r\n \"name\": \"08587474971482821176\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1581" + "1579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -709,16 +709,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:9975fbae-df6a-45c1-8d7e-e80778ab12c6" + "westus:bdb0498f-1f4a-4c12-b290-37ed9e9c87af" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14913" ], "x-ms-correlation-request-id": [ - "bd47d954-556b-4538-af8b-7c2bc7e57085" + "165a493e-34cd-41cd-85fc-5719317ece06" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211955Z:bd47d954-556b-4538-af8b-7c2bc7e57085" + "CENTRALUS:20160129T232230Z:165a493e-34cd-41cd-85fc-5719317ece06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -727,19 +727,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:55 GMT" + "Fri, 29 Jan 2016 23:22:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/triggers/httpTrigger/histories?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9oaXN0b3JpZXM/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74a8fcdb-0878-4346-8933-79cd75988115" + "d8d9b1c9-1ead-4672-a39e-81a14f6978de" ], "accept-language": [ "en-US" @@ -748,10 +748,10 @@ "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:57.2703975Z\",\r\n \"endTime\": \"2016-01-26T21:19:57.7055401Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"be509c6b-b1fd-4071-8407-a4a82ee3ee3d\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/29269_195a149bf6a245a2967f14b806c1dd78_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=rDFB5%2FxcaRe3WNO1pqFqftmxA6a6ay86TXRFKd5aniM%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269671471ABE\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/6465C_76d71c065607479d939a09814ef8f05c_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=7qrNYVn9yd%2Fp6q%2BuuWUe8xeOkwNDB2WslTrxNrY3llA%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269671480557\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6LKYP/2w0ze+Sv8dUfroEA==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477636881938193\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477636881938193\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477636881938193\",\r\n \"name\": \"08587477636881938193\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:56.2909019Z\",\r\n \"endTime\": \"2016-01-26T21:19:56.7015437Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"0469faf7-c52c-4549-a305-2ffe00e7562c\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/1C830_d00bc7dd0e634e08a6bf39e66a885c5a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=eNwMPWhyamHFmCnCcsZbl0sV4J5QwwVjCcEOY2kJn7Y%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269670B0A9C3\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/29366_7c3b065db2e74d0db461afccda1b5fa2_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=FvjFGsCFnvqzi8e7awdVu3X9nW%2FQwdHzlf6ICD4g024%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269670B3B7C0\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"nXP7GNOQ+JlCgF01V4lLqg==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477636891796908\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477636891796908\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477636891796908\",\r\n \"name\": \"08587477636891796908\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-26T21:19:44.5530621Z\",\r\n \"endTime\": \"2016-01-26T21:19:45.1405584Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"8965a27d-4bf6-44be-aea7-bdb17fb4b7c8\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/47A45_20e81a0be3ad4d65bc78552df12a462a_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=dNaEvDxj1tuGfIDobC7hz2hZvCNaqd71e8fXWZp9%2Blk%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D241A7\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/flowf32cc55a3c274ea4ba02ead29b8d751820160126t000000zcontent/EDE60_cff97d3aa4604efe95d7eec20500a3af_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=L5m%2BBrHVgAPSyy4x72azOGtj6qTv%2Fb%2BSR7zsz87T4QQ%3D&se=2016-01-27T01%3A19%3A58Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3269669D1570E\\\"\",\r\n \"contentSize\": 79581,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"6IEFhpGr4WjlWzpiHw8h7g==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587477637009230758\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/runs/08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/histories/08587477637009230758\",\r\n \"name\": \"08587477637009230758\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:22:32.1993495Z\",\r\n \"endTime\": \"2016-01-29T23:22:32.6287651Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"29c99593-b874-4746-95fe-eaac5c8046bc\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu04by01.blob.core.windows.net/flowced8170169bc41daa583da9d03b3fdd120160129t000000zcontent/9E36A_1645ae0e0d3644abb1cdc04e7373e3f1_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=eI8ibJFUPMqB%2FZm5s1g9aUX6NKc0%2F0MZsLNlRi3%2BwLI%3D&se=2016-01-30T03%3A22%3A34Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D329031044F8DB\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu04by01.blob.core.windows.net/flowced8170169bc41daa583da9d03b3fdd120160129t000000zcontent/D9AF9_2069dafc6ec6475b93f1a404374603eb_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=Xyi6LfHtp%2FwJTkFRywQD%2FpsObqD2FhF0g7Sx0IwOj2s%3D&se=2016-01-30T03%3A22%3A34Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D329031045953D\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"PQNPhwUNy02A1iVet3z4+w==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587474971332637102\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/runs/08587474971332637102\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/triggers/httpTrigger/histories/08587474971332637102\",\r\n \"name\": \"08587474971332637102\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:22:30.9467922Z\",\r\n \"endTime\": \"2016-01-29T23:22:31.1995885Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"373f7a14-9220-4cce-a3eb-f38b83283e01\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu04by01.blob.core.windows.net/flowced8170169bc41daa583da9d03b3fdd120160129t000000zcontent/7AE28_632aec2df3994a96b2d234f66c8187cb_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=096qxpdaOaReNm2F6MzE7RV3fel9LFF70MLvUSnCkS8%3D&se=2016-01-30T03%3A22%3A34Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D329030F82B236\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu04by01.blob.core.windows.net/flowced8170169bc41daa583da9d03b3fdd120160129t000000zcontent/4F6FB_aa5e4c7a976b490db4503146c0a53a68_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=2lKMT0sgYY5iQocSFtrXUIPYefXq2TACBYM6enZHqbI%3D&se=2016-01-30T03%3A22%3A34Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D329030F839CD3\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"nYQBv8Ixg00Ah85mxY5TiA==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587474971345168818\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/runs/08587474971345168818\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/triggers/httpTrigger/histories/08587474971345168818\",\r\n \"name\": \"08587474971345168818\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n },\r\n {\r\n \"properties\": {\r\n \"startTime\": \"2016-01-29T23:22:17.1921941Z\",\r\n \"endTime\": \"2016-01-29T23:22:17.6074366Z\",\r\n \"status\": \"Succeeded\",\r\n \"code\": \"OK\",\r\n \"trackingId\": \"52f2ccde-cb53-4d29-a826-2ee1f538c057\",\r\n \"inputsLink\": {\r\n \"uri\": \"https://flowprodcu04by01.blob.core.windows.net/flowced8170169bc41daa583da9d03b3fdd120160129t000000zcontent/53C67_446e83f0b79f4a12a9fada52d6482d19_httpTrigger:5Finputs:2Ejson?sv=2014-02-14&sr=b&sig=CTHGaKVS0IQe6k6YfdcxMXBAPCCn3Sil0WwR4mrgP9Y%3D&se=2016-01-30T03%3A22%3A34Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D32903075977B0\\\"\",\r\n \"contentSize\": 45,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"Q+Xqe9OStPsuFRv/FtPA3Q==\"\r\n }\r\n },\r\n \"outputsLink\": {\r\n \"uri\": \"https://flowprodcu04by01.blob.core.windows.net/flowced8170169bc41daa583da9d03b3fdd120160129t000000zcontent/03F7E_959c252a73f04ef6a18f82bbc323b668_httpTrigger:5Foutputs:2Ejson?sv=2014-02-14&sr=b&sig=%2Bq4NXIQZDnYUENRDnCgV60KXvupzSG3Q2fZp3T%2BNKCE%3D&se=2016-01-30T03%3A22%3A34Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3290307599EC7\\\"\",\r\n \"contentSize\": 86273,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"jtNGkgdjh90ZDmAOEAbC+A==\"\r\n }\r\n },\r\n \"fired\": true,\r\n \"run\": {\r\n \"name\": \"08587474971482821176\",\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/runs/08587474971482821176\",\r\n \"type\": \"Microsoft.Logic/workflows/runs\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/triggers/httpTrigger/histories/08587474971482821176\",\r\n \"name\": \"08587474971482821176\",\r\n \"type\": \"Microsoft.Logic/workflows/triggers/histories\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4713" + "4711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -766,16 +766,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:e6b5032d-3ade-4e5c-8d7b-b4714013e63d" + "westus:b7cc9ace-396a-4308-ad68-d695967d263c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14912" ], "x-ms-correlation-request-id": [ - "28cef454-ffdc-4e54-8639-03f85e463069" + "aa631092-1d08-40df-8550-7020c4bc4ce6" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211958Z:28cef454-ffdc-4e54-8639-03f85e463069" + "CENTRALUS:20160129T232234Z:aa631092-1d08-40df-8550-7020c4bc4ce6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -784,19 +784,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:57 GMT" + "Fri, 29 Jan 2016 23:22:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ce5932f-b0ef-4c3e-9c5b-7a371d0ca74e" + "9de925fb-9c3f-49ea-8e99-0aa155b3d4f7" ], "accept-language": [ "en-US" @@ -817,16 +817,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:d321082d-b9e8-433c-a235-416e867f1075" + "westus:d40df020-a1d4-476d-9b84-63e04a922190" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "a55f1122-d242-4786-bd40-639f087f4c62" + "5cdefb36-d110-4c50-bb1a-fe7ebd8dfcbd" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211955Z:a55f1122-d242-4786-bd40-639f087f4c62" + "CENTRALUS:20160129T232230Z:5cdefb36-d110-4c50-bb1a-fe7ebd8dfcbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -835,19 +835,19 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:55 GMT" + "Fri, 29 Jan 2016 23:22:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk3491/providers/Microsoft.Logic/workflows/onesdk7855/triggers/httpTrigger/run?api-version=2015-02-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazM0OTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrNzg1NS90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/57b7034d-72d4-433d-ace2-a7460aed6a99/resourceGroups/onesdk5433/providers/Microsoft.Logic/workflows/onesdk8757/triggers/httpTrigger/run?api-version=2015-02-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTdiNzAzNGQtNzJkNC00MzNkLWFjZTItYTc0NjBhZWQ2YTk5L3Jlc291cmNlR3JvdXBzL29uZXNkazU0MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Mb2dpYy93b3JrZmxvd3Mvb25lc2RrODc1Ny90cmlnZ2Vycy9odHRwVHJpZ2dlci9ydW4/YXBpLXZlcnNpb249MjAxNS0wMi0wMS1wcmV2aWV3", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94e33fa3-3671-431f-bfe2-dc3392f2680f" + "07201859-9bc0-4a94-b3bb-e46b5382f302" ], "accept-language": [ "en-US" @@ -868,16 +868,16 @@ "no-cache" ], "x-ms-request-id": [ - "westus:3431f136-0590-458b-9a32-fe5f70e3442d" + "westus:7380bc52-d736-4d12-904a-bb99a8ea707f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "1d42dae2-4b38-4be5-bcc3-54681ee80271" + "a8c7a3c0-6e86-456a-9c34-5e5c31249639" ], "x-ms-routing-request-id": [ - "WESTUS:20160126T211957Z:1d42dae2-4b38-4be5-bcc3-54681ee80271" + "CENTRALUS:20160129T232232Z:a8c7a3c0-6e86-456a-9c34-5e5c31249639" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -886,7 +886,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Jan 2016 21:19:56 GMT" + "Fri, 29 Jan 2016 23:22:31 GMT" ] }, "StatusCode": 200 @@ -894,8 +894,8 @@ ], "Names": { "Test-StartAzureLogicAppTrigger": [ - "onesdk3491", - "onesdk7855" + "onesdk5433", + "onesdk8757" ] }, "Variables": { From 8487c01eaaf9933717f969b6939320a869a4e468 Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Sat, 30 Jan 2016 12:16:05 -0800 Subject: [PATCH 08/19] Wxi file fixed. --- setup/azurecmdfiles.wxi | 202 ---------------------------------------- 1 file changed, 202 deletions(-) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index d00e0f49cd20..9261d8c03b59 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -415,12 +415,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -805,12 +802,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -891,12 +885,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -1001,12 +992,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -1093,12 +1081,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -1191,12 +1176,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -1243,74 +1225,6 @@ -<<<<<<< HEAD -======= - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ->>>>>>> refs/remotes/origin/dev @@ -1330,12 +1244,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -1399,7 +1310,6 @@ -<<<<<<< HEAD @@ -1409,8 +1319,6 @@ -======= ->>>>>>> refs/remotes/origin/dev @@ -1450,12 +1358,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -1945,22 +1850,18 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev -<<<<<<< HEAD @@ -1970,8 +1871,6 @@ -======= ->>>>>>> refs/remotes/origin/dev @@ -1996,7 +1895,6 @@ -<<<<<<< HEAD @@ -2006,11 +1904,6 @@ -======= - - - ->>>>>>> refs/remotes/origin/dev @@ -2020,12 +1913,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -2691,12 +2581,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -3008,17 +2895,10 @@ -<<<<<<< HEAD -======= - - - - ->>>>>>> refs/remotes/origin/dev @@ -3501,12 +3381,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -4243,12 +4120,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -5214,10 +5088,7 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -5344,10 +5215,7 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -5374,10 +5242,7 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -5412,10 +5277,7 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -5444,10 +5306,7 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -5478,10 +5337,7 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -5497,40 +5353,13 @@ -<<<<<<< HEAD -======= - - - - - - - - - - - - - - - - - - - - - ->>>>>>> refs/remotes/origin/dev -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -5552,12 +5381,9 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -5571,10 +5397,7 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -5734,7 +5557,6 @@ -<<<<<<< HEAD @@ -5742,10 +5564,6 @@ -======= - - ->>>>>>> refs/remotes/origin/dev @@ -5754,7 +5572,6 @@ -<<<<<<< HEAD @@ -5762,12 +5579,6 @@ -======= - - - - ->>>>>>> refs/remotes/origin/dev @@ -5985,10 +5796,7 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -6214,10 +6022,7 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -6450,10 +6255,7 @@ -<<<<<<< HEAD -======= ->>>>>>> refs/remotes/origin/dev @@ -6730,11 +6532,7 @@ -<<<<<<< HEAD -======= - ->>>>>>> refs/remotes/origin/dev From 1f6c3fb38bde22c9b7de1f8870ed55e7b9f56301 Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Sat, 30 Jan 2016 20:32:12 -0800 Subject: [PATCH 09/19] AzurePowerShell.Test.targets updated for test integration. Updated Readme.md and ChangeLog.md with cmdlets description. --- AzurePowershell.Test.targets | 8 ++++++++ ChangeLog.md | 13 +++++++++++++ README.md | 5 +++++ src/ResourceManager.ForRefactoringOnly.sln | 15 ++++++++++++++- 4 files changed, 40 insertions(+), 1 deletion(-) diff --git a/AzurePowershell.Test.targets b/AzurePowershell.Test.targets index 96d75364a44b..c7f24c47bbe7 100644 --- a/AzurePowershell.Test.targets +++ b/AzurePowershell.Test.targets @@ -24,6 +24,7 @@ .\src\ResourceManager\OperationalInsights\Commands.OperationalInsights.Test\bin\Debug\Microsoft.Azure.Commands.OperationalInsights.Test.dll .\src\ResourceManager\AzureBatch\Commands.Batch.Test\bin\Debug\Microsoft.Azure.Commands.Batch.Test.dll .\src\ResourceManager\Websites\Commands.Websites.Test\bin\Debug\Microsoft.Azure.Commands.Websites.Test.dll + .\src\ResourceManager\LogicApp\Commands.LogicApp.Test\bin\Debug\Microsoft.Azure.Commands.LogicApp.Test.dll .\src\ServiceManagement\RemoteApp\Commands.RemoteApp.Test\bin\Debug\Microsoft.Azure.Commands.RemoteApp.Tests.dll .\src\ServiceManagement\Compute\Commands.ServiceManagement.Test\bin\Debug\Microsoft.WindowsAzure.Commands.ServiceManagement.Test.dll .\src\ServiceManagement\Sql\Commands.SqlDatabase.Test\bin\Debug\Microsoft.WindowsAzure.Commands.SqlDatabase.Test.dll @@ -76,6 +77,7 @@ + @@ -163,6 +165,12 @@ IncludeTraits="$(XUnitIncludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false" /> + + + + + diff --git a/ChangeLog.md b/ChangeLog.md index 1b85a50847f4..7dabf0c33fde 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,18 @@ ## 2016.02.02 version 1.1.1 * Azure RemoteApp: Organizational Unit in Azure RemoteApp RDFE cmdlets now accepts Unicode characters. +* Azure LogicApp: New cmdlets for managing LogicApps + * Get-AzureLogicAppAccessKey + * Get-AzureLogicApp + * Get-AzureLogicAppRunAction + * Get-AzureLogicAppRunHistory + * Get-AzureLogicAppTrigger + * Get-AzureLogicAppTriggerHistory + * New-AzureLogicApp + * Remove-AzureLogicApp + * Start-AzureLogicApp + * Set-AzureLogicAppAccessKey + * Set-AzureLogicApp + * Stop-AzureLogicAppRun ## 2016.01.12 version 1.1.0 * Azure SQL Database: Threat Detection policies: * Using new Threat Detection Types diff --git a/README.md b/README.md index 1a5369247b63..152785941ee7 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,11 @@ This repository contains a set of PowerShell cmdlets for developers and administ * Azure Automation * Manage automation accounts * Manage automation jobs, runbooks and schedules +* Logic Apps + * Manage LogicApp, such as CRUD, start and stop. + * Get LogicApp trigger and trigger history. + * Get Access keys + * Get LogicApp run and run history. For detail descriptions and examples of the cmdlets, type * ```help azure``` to get all the cmdlets. diff --git a/src/ResourceManager.ForRefactoringOnly.sln b/src/ResourceManager.ForRefactoringOnly.sln index c3c56344c748..d1914567a0a7 100644 --- a/src/ResourceManager.ForRefactoringOnly.sln +++ b/src/ResourceManager.ForRefactoringOnly.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.31101.0 +VisualStudioVersion = 12.0.40629.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8531411A-0137-4E27-9C5E-49E07C245048}" ProjectSection(SolutionItems) = preProject @@ -139,6 +139,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Intune", "Resource EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Intune.Test", "ResourceManager\Intune\Commands.Intune.Test\Commands.Intune.Test.csproj", "{CA5F571B-550B-4BE3-9BA3-06442DF52768}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.LogicApp", "ResourceManager\LogicApp\Commands.LogicApp\Commands.LogicApp.csproj", "{FFE4E475-B32C-4F89-9D52-F7CEBF709C74}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.LogicApp.Test", "ResourceManager\LogicApp\Commands.LogicApp.Test\Commands.LogicApp.Test.csproj", "{F1F11BB1-592B-45A3-844C-7F8A585AD107}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -401,6 +405,14 @@ Global {CA5F571B-550B-4BE3-9BA3-06442DF52768}.Debug|Any CPU.Build.0 = Debug|Any CPU {CA5F571B-550B-4BE3-9BA3-06442DF52768}.Release|Any CPU.ActiveCfg = Release|Any CPU {CA5F571B-550B-4BE3-9BA3-06442DF52768}.Release|Any CPU.Build.0 = Release|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FFE4E475-B32C-4F89-9D52-F7CEBF709C74}.Release|Any CPU.Build.0 = Release|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F1F11BB1-592B-45A3-844C-7F8A585AD107}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -434,5 +446,6 @@ Global {B0D03ECF-9F25-499A-BE25-D668E0D208AA} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {E6122DB1-1466-47EE-8BA0-73F9CA90F826} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {CA5F571B-550B-4BE3-9BA3-06442DF52768} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {F1F11BB1-592B-45A3-844C-7F8A585AD107} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} EndGlobalSection EndGlobal From fbeaf6f3bcb5b6ff3ec6e5be0cf689a8f079e4f8 Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Mon, 1 Feb 2016 15:01:45 -0800 Subject: [PATCH 10/19] Code review comments fixed. AzureRM.Profile version corrected to 1.0.3 Removed content from Readme.md Removed unused reference from Test Project AssemblyInfo added --- README.md | 5 ----- src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 | 2 +- .../Commands.LogicApp.Test/Commands.LogicApp.Test.csproj | 7 ------- .../Commands.LogicApp.Test/Properties/AssemblyInfo.cs | 4 ++-- .../LogicApp/Commands.LogicApp.Test/packages.config | 4 +--- 5 files changed, 4 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 152785941ee7..1a5369247b63 100644 --- a/README.md +++ b/README.md @@ -119,11 +119,6 @@ This repository contains a set of PowerShell cmdlets for developers and administ * Azure Automation * Manage automation accounts * Manage automation jobs, runbooks and schedules -* Logic Apps - * Manage LogicApp, such as CRUD, start and stop. - * Get LogicApp trigger and trigger history. - * Get Access keys - * Get LogicApp run and run history. For detail descriptions and examples of the cmdlets, type * ```help azure``` to get all the cmdlets. diff --git a/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 b/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 index a5bedc487cb5..545f392e6cc3 100644 --- a/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 +++ b/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 @@ -45,7 +45,7 @@ CLRVersion='4.0' ProcessorArchitecture = 'None' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @( @{ ModuleName = 'AzureRM.Profile'; ModuleVersion = '1.0.1'} ) +RequiredModules = @( @{ ModuleName = 'AzureRM.Profile'; ModuleVersion = '1.0.3'} ) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = @() diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj index 52ca6846a504..d449ee9b9847 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj @@ -109,13 +109,6 @@ False ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.TestFramework.1.2.0-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll - - ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - True - - - ..\..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll - False ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Properties/AssemblyInfo.cs index 91e8fdfe9847..48e024c0cf99 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Properties/AssemblyInfo.cs @@ -20,9 +20,9 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Microsoft.Azure.Commands.LogicApp.Test")] -[assembly: AssemblyDescription("")] +[assembly: AssemblyDescription("Azure LogicApp PowerShell cmdlet test assembly")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] +[assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft.Azure.Commands.LogicApp.Test")] [assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] [assembly: AssemblyTrademark("")] diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config index ba1bd45405ef..3e8f833721fe 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/packages.config @@ -19,9 +19,7 @@ - - - + From e96d6550fd1db7836f907cef1054babde55a21d7 Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Mon, 1 Feb 2016 18:35:53 -0800 Subject: [PATCH 11/19] Code review comments fixed [Hovsep] -Cmdlet name fixed as per naming convention -Assembly version fixed -snk file removed from test -ChangeLog.md file updated --- ChangeLog.md | 5 +- .../LogicApp/AzureRM.LogicApp.psd1 | 2 +- .../Commands.LogicApp.Test.csproj | 1 - .../Commands.LogicApp.Test/MSSharedLibKey.snk | Bin 160 -> 0 bytes .../Properties/AssemblyInfo.cs | 4 +- .../ScenarioTests/Common.ps1 | 2 +- .../ScenarioTests/WorkflowAccessKeyTests.ps1 | 10 +- .../ScenarioTests/WorkflowRunTests.ps1 | 32 +-- .../ScenarioTests/WorkflowTests.ps1 | 90 ++++---- .../ScenarioTests/WorkflowTriggerTests.ps1 | 32 +-- .../Cmdlets/CancelAzureLogicAppRunCommand.cs | 2 +- .../GetAzureLogicAppAccessKeyCommand.cs | 2 +- .../Cmdlets/GetAzureLogicAppCommand.cs | 2 +- .../GetAzureLogicAppRunActionCommand.cs | 2 +- .../GetAzureLogicAppRunHistoryCommand.cs | 2 +- .../Cmdlets/GetAzureLogicAppTriggerCommand.cs | 2 +- .../GetAzureLogicAppTriggerHistoryCommand.cs | 2 +- .../Cmdlets/NewAzureLogicAppCommand.cs | 2 +- .../Cmdlets/RemoveAzureLogicAppCommand.cs | 2 +- .../Cmdlets/RunAzureLogicAppCommand.cs | 2 +- .../UpdateAzureLogicAppAccessKeyCommand.cs | 2 +- .../Cmdlets/UpdateAzureLogicAppCommand.cs | 2 +- ...osoft.Azure.Commands.LogicApp.dll-Help.xml | 196 +++++++++--------- .../Properties/AssemblyInfo.cs | 10 +- 24 files changed, 204 insertions(+), 204 deletions(-) delete mode 100644 src/ResourceManager/LogicApp/Commands.LogicApp.Test/MSSharedLibKey.snk diff --git a/ChangeLog.md b/ChangeLog.md index 7dabf0c33fde..88d69118c951 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,4 @@ -## 2016.02.02 version 1.1.1 -* Azure RemoteApp: Organizational Unit in Azure RemoteApp RDFE cmdlets now accepts Unicode characters. +##2016.03.08 version 1.3.0 * Azure LogicApp: New cmdlets for managing LogicApps * Get-AzureLogicAppAccessKey * Get-AzureLogicApp @@ -13,6 +12,8 @@ * Set-AzureLogicAppAccessKey * Set-AzureLogicApp * Stop-AzureLogicAppRun +## 2016.02.02 version 1.1.1 +* Azure RemoteApp: Organizational Unit in Azure RemoteApp RDFE cmdlets now accepts Unicode characters. ## 2016.01.12 version 1.1.0 * Azure SQL Database: Threat Detection policies: * Using new Threat Detection Types diff --git a/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 b/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 index 545f392e6cc3..24b9adb18543 100644 --- a/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 +++ b/src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.10.0' +ModuleVersion = '1.0.3' # ID used to uniquely identify this module GUID = '8A7D44BB-E747-4265-8F22-B3937961D709' diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj index d449ee9b9847..c2f75fc5480d 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/Commands.LogicApp.Test.csproj @@ -145,7 +145,6 @@ - Designer diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/MSSharedLibKey.snk b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/MSSharedLibKey.snk deleted file mode 100644 index 695f1b38774e839e5b90059bfb7f32df1dff4223..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmV;R0AK$ABme*efB*oL000060ssI2Bme+XQ$aBR1ONa50098C{E+7Ye`kjtcRG*W zi8#m|)B?I?xgZ^2Sw5D;l4TxtPwG;3)3^j?qDHjEteSTF{rM+4WI`v zCD?tsZ^;k+S&r1&HRMb=j738S=;J$tCKNrc$@P|lZ function Test-GetAzureLogicAppRunHistory { @@ -51,26 +51,26 @@ function Test-GetAzureLogicAppRunHistory $workflowName = getAssetname $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName [int]$counter = 0 do { Sleep -seconds 2 - $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + $workflow = Get-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName } while ($workflow.State -ne "Enabled" -and $counter++ -lt 5) - Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + Start-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" - $runHistory = Get-AzureLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName + $runHistory = Get-AzureRmLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName Assert-NotNull $runHistory - $run = Get-AzureLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name + $run = Get-AzureRmLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name Assert-NotNull $run Assert-AreEqual $runHistory[0].Name $run.Name } <# .SYNOPSIS -Test Get-AzureLogicAppRunAction command to get the logic app run action +Test Get-AzureRmLogicAppRunAction command to get the logic app run action #> function Test-GetAzureLogicAppRunAction { @@ -82,24 +82,24 @@ function Test-GetAzureLogicAppRunAction $workflowName = getAssetname $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName [int]$counter = 0 do { Sleep -seconds 2 - $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + $workflow = Get-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName } while ($workflow.State -ne "Enabled" -and $counter++ -lt 5) - Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + Start-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" - $runHistory = Get-AzureLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName + $runHistory = Get-AzureRmLogicAppRunHistory -ResourceGroupName $resourceGroupName -Name $workflowName Assert-NotNull $runHistory - $actions = Get-AzureLogicAppRunAction -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name + $actions = Get-AzureRmLogicAppRunAction -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name Assert-NotNull $actions Assert-AreEqual 2 $actions.Count - $action = Get-AzureLogicAppRunAction -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name -ActionName "http" + $action = Get-AzureRmLogicAppRunAction -ResourceGroupName $resourceGroupName -Name $workflowName -RunName $runHistory[0].Name -ActionName "http" Assert-NotNull $action } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 index e9d51686d40a..6de5830202b2 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTests.ps1 @@ -14,9 +14,9 @@ <# .SYNOPSIS -Test New-AzureLogicApp with physical file paths -Test New-AzureLogicApp using definition object and parameter file -Test New-AzureLogicApp using piped input +Test New-AzureRmLogicApp with physical file paths +Test New-AzureRmLogicApp using definition object and parameter file +Test New-AzureRmLogicApp using piped input #> function Test-CreateAndRemoveLogicApp { @@ -30,39 +30,39 @@ function Test-CreateAndRemoveLogicApp $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName #Case1 : Using physical file - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath Assert-NotNull $workflow Assert-NotNull $workflow.Definition Assert-NotNull $workflow.Parameters Assert-AreEqual $workflowName $workflow.Name - Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force + Remove-AzureRmLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force #Case2 : Using definition object and parameter file $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" $definition = [IO.File]::ReadAllText("Resources\TestSimpleWorkflowDefinition.json") $workflowName = getAssetname - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Definition $definition -ParameterFilePath $parameterFilePath -AppServicePlan $planName + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Definition $definition -ParameterFilePath $parameterFilePath -AppServicePlan $planName Assert-NotNull $workflow Assert-NotNull $workflow.Definition Assert-NotNull $workflow.Parameters Assert-AreEqual $workflowName $workflow.Name - Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force + Remove-AzureRmLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force #Case3 : Create using Piped input $workflowName = getAssetname - $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + $workflow = $resourceGroup | New-AzureRmLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath Assert-NotNull $workflow - Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force + Remove-AzureRmLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force } <# .SYNOPSIS -Test New-AzureLogicApp to create a workflow with a duplicate name. +Test New-AzureRmLogicApp to create a workflow with a duplicate name. #> function Test-CreateLogicAppWithDuplicateName { @@ -77,24 +77,24 @@ function Test-CreateLogicAppWithDuplicateName $planName = "StandardServicePlan" $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName - $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + $workflow = $resourceGroup | New-AzureRmLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath Assert-NotNull $workflow try { - $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + $workflow = $resourceGroup | New-AzureRmLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath } catch { Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/$WorkflowName' under resource group '$resourceGroupName' already exists." } - Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force + Remove-AzureRmLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force } <# .SYNOPSIS -Test New-AzureLogicApp with workflow object +Test New-AzureRmLogicApp with workflow object #> function Test-CreateLogicAppUsingInputfromWorkflowObject { @@ -109,8 +109,8 @@ function Test-CreateLogicAppUsingInputfromWorkflowObject $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" $parameterFilePath = "Resources\TestSimpleWorkflowParameter.json" - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $newWorkflowName -AppServicePlan $planName -Definition $workflow.Definition -Parameters $workflow.Parameters + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $newWorkflowName -AppServicePlan $planName -Definition $workflow.Definition -Parameters $workflow.Parameters Assert-NotNull $workflow Assert-NotNull $workflow.Definition @@ -118,12 +118,12 @@ function Test-CreateLogicAppUsingInputfromWorkflowObject Assert-AreEqual $newWorkflowName $workflow.Name Assert-AreEqual "Enabled" $workflow.State - Remove-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Force + Remove-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Force } <# .SYNOPSIS -Test New-AzureLogicApp with Parameter as hash table +Test New-AzureRmLogicApp with Parameter as hash table #> function Test-CreateLogicAppUsingInputParameterAsHashTable { @@ -137,17 +137,17 @@ function Test-CreateLogicAppUsingInputParameterAsHashTable $definitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" $parameters = @{destinationUri="http://www.bing.com"} - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -Parameters $parameters -AppServicePlan $planName + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -Parameters $parameters -AppServicePlan $planName Assert-NotNull $workflow Assert-NotNull $workflow.Parameters - Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force + Remove-AzureRmLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $WorkflowName -Force } <# .SYNOPSIS -Test New-AzureLogicApp with only definition +Test New-AzureRmLogicApp with only definition #> function Test-CreateLogicAppUsingDefinitionWithTriggers { @@ -159,18 +159,18 @@ function Test-CreateLogicAppUsingDefinitionWithTriggers $planName = "StandardServicePlan" $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName Assert-NotNull $workflow - Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Force + Remove-AzureRmLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Force } <# .SYNOPSIS -Test New-AzureLogicApp with only definition -Test Get-AzureLogicApp -Test Get-AzureLogicApp for a non-existing logic app +Test New-AzureRmLogicApp with only definition +Test Get-AzureRmLogicApp +Test Get-AzureRmLogicApp for a non-existing logic app #> function Test-CreateAndGetLogicAppUsingDefinitionWithActions { @@ -182,29 +182,29 @@ function Test-CreateAndGetLogicAppUsingDefinitionWithActions $Plan = TestSetup-CreateAppServicePlan $resourceGroup.ResourceGroupName $planName #Case1: Create logic app without parameters - $workflow1 = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + $workflow1 = New-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName Assert-NotNull $workflow1 #Case1: Get logic app using get cmdlet - $workflow2 = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + $workflow2 = Get-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName Assert-NotNull $workflow2 #Case1: Get non-existing logic app using get cmdlet try { - Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name "InvalidWorkflow" + Get-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name "InvalidWorkflow" } catch { Assert-AreEqual $_.Exception.Message "The Resource 'Microsoft.Logic/workflows/InvalidWorkflow' under resource group '$resourceGroupName' was not found." } - Remove-AzureLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Force + Remove-AzureRmLogicApp -ResourceGroupName $resourceGroup.ResourceGroupName -Name $workflowName -Force } <# .SYNOPSIS -Test Remove-AzureLogicApp command to remove nonexisting workflow by name. +Test Remove-AzureRmLogicApp command to remove nonexisting workflow by name. #> function Test-RemoveNonExistingLogicApp { @@ -212,16 +212,16 @@ function Test-RemoveNonExistingLogicApp $resourceGroup = TestSetup-CreateResourceGroup $resourceGroupName = $resourceGroup.ResourceGroupName - Remove-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $WorkflowName -Force + Remove-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $WorkflowName -Force } <# .SYNOPSIS -Test Set-AzureLogicApp command to update workflow defintion without parametrs. -Test Set-AzureLogicApp command to update workflow defintion and state to Disabled. -Test Set-AzureLogicApp command to update workflow state to Enabled. -Test Set-AzureLogicApp command to set logic app with null definition. -Test Set-AzureLogicApp command to set non-existing logic app. +Test Set-AzureRmLogicApp command to update workflow defintion without parametrs. +Test Set-AzureRmLogicApp command to update workflow defintion and state to Disabled. +Test Set-AzureRmLogicApp command to update workflow state to Enabled. +Test Set-AzureRmLogicApp command to set logic app with null definition. +Test Set-AzureRmLogicApp command to set non-existing logic app. #> function Test-UpdateLogicApp { @@ -234,25 +234,25 @@ function Test-UpdateLogicApp $simpleDefinitionFilePath = "Resources\TestSimpleWorkflowDefinition.json" $simpleParameterFilePath = "Resources\TestSimpleWorkflowParameter.json" - $workflow = $resourceGroup | New-AzureLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $simpleDefinitionFilePath -ParameterFilePath $simpleParameterFilePath + $workflow = $resourceGroup | New-AzureRmLogicApp -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $simpleDefinitionFilePath -ParameterFilePath $simpleParameterFilePath Assert-NotNull $workflow #Case1: Update definition with no parameters and disable $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" - $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -State "Disabled" -DefinitionFilePath $definitionFilePath -Parameters $null + $UpdatedWorkflow = Set-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -State "Disabled" -DefinitionFilePath $definitionFilePath -Parameters $null Assert-NotNull $UpdatedWorkflow Assert-AreEqual $UpdatedWorkflow.State "Disabled" #Case2: Update definition with parameters of logic app - $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $simpleDefinitionFilePath -ParameterFilePath $simpleParameterFilePath + $UpdatedWorkflow = Set-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $simpleDefinitionFilePath -ParameterFilePath $simpleParameterFilePath Assert-NotNull $UpdatedWorkflow #Case3: Enable the logic app - $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -State "Enabled" + $UpdatedWorkflow = Set-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -State "Enabled" Assert-NotNull $UpdatedWorkflow Assert-AreEqual $UpdatedWorkflow.State "Enabled" @@ -260,7 +260,7 @@ function Test-UpdateLogicApp #Case4: Test update command to set logic app with null definition try { - $UpdatedWorkflow = Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Definition $null + $UpdatedWorkflow = Set-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -Definition $null } catch { @@ -273,7 +273,7 @@ function Test-UpdateLogicApp { $workflowName = "82D2D842-C312-445C-8A4D-E3EE9542436D" $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" - Set-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath + Set-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $planName -DefinitionFilePath $definitionFilePath } catch { @@ -283,7 +283,7 @@ function Test-UpdateLogicApp <# .SYNOPSIS -Test New-AzureLogicApp to create logic app for non-existing service plan. Constraint validation. +Test New-AzureRmLogicApp to create logic app for non-existing service plan. Constraint validation. #> function Test-CreateLogicAppWithNonExistingAppServicePlan { @@ -295,7 +295,7 @@ function Test-CreateLogicAppWithNonExistingAppServicePlan $Plan = "B9F87338CAE4470F9116F3D685365748" try { - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $Plan -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -AppServicePlan $Plan -DefinitionFilePath $definitionFilePath -ParameterFilePath $parameterFilePath } catch { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 index a350118e6107..1f3f58ed9c36 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 +++ b/src/ResourceManager/LogicApp/Commands.LogicApp.Test/ScenarioTests/WorkflowTriggerTests.ps1 @@ -14,7 +14,7 @@ <# .SYNOPSIS -Test Get-AzureLogicAppTrigger for workflow triggers and test to get trigger by name +Test Get-AzureRmLogicAppTrigger for workflow triggers and test to get trigger by name #> function Test-GetAzureLogicAppTrigger { @@ -26,18 +26,18 @@ function Test-GetAzureLogicAppTrigger $workflowName = getAssetname $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName - $workflowTrigger = Get-AzureLogicAppTrigger -ResourceGroupName $resourceGroupName -Name $workflowName + $workflowTrigger = Get-AzureRmLogicAppTrigger -ResourceGroupName $resourceGroupName -Name $workflowName Assert-NotNull $workflowTrigger - $workflowTrigger = Get-AzureLogicAppTrigger -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + $workflowTrigger = Get-AzureRmLogicAppTrigger -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" Assert-NotNull $workflowTrigger } <# .SYNOPSIS -Test Get-AzureLogicAppTriggerHistory command to get workflow trigger histories and history by history name +Test Get-AzureRmLogicAppTriggerHistory command to get workflow trigger histories and history by history name #> function Test-GetAzureLogicAppTriggerHistory { @@ -49,27 +49,27 @@ function Test-GetAzureLogicAppTriggerHistory $workflowName = getAssetname $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName [int]$counter = 0 do { Sleep -seconds 2 - $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + $workflow = Get-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName } while ($workflow.State -ne "Enabled" -or $counter++ -lt 5) - Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + Start-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" - $workflowTriggerHistories = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + $workflowTriggerHistories = Get-AzureRmLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" Assert-NotNull $workflowTriggerHistories $firstHistory = $workflowTriggerHistories[0] - $workflowTriggerHistory = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" -HistoryName $firstHistory.Name + $workflowTriggerHistory = Get-AzureRmLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" -HistoryName $firstHistory.Name Assert-NotNull $workflowTriggerHistory } <# .SYNOPSIS -Test Start-AzureLogicAppTrigger command to run workflow trigger +Test Start-AzureRmLogicAppTrigger command to run workflow trigger #> function Test-StartAzureLogicAppTrigger { @@ -81,24 +81,24 @@ function Test-StartAzureLogicAppTrigger $workflowName = getAssetname $definitionFilePath = "Resources\TestSimpleWorkflowTriggerDefinition.json" - $workflow = New-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName + $workflow = New-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -DefinitionFilePath $definitionFilePath -AppServicePlan $planName [int]$counter = 0 do { Sleep -seconds 2 - $workflow = Get-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName + $workflow = Get-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName } while ($workflow.State -ne "Enabled" -or $counter++ -lt 5) - $workflowTriggerHistories1 = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + $workflowTriggerHistories1 = Get-AzureRmLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" $counter = 2 while($val -lt $counter) { - Start-AzureLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + Start-AzureRmLogicApp -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" Sleep -seconds 1 $val++ } - $workflowTriggerHistories2 = Get-AzureLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" + $workflowTriggerHistories2 = Get-AzureRmLogicAppTriggerHistory -ResourceGroupName $resourceGroupName -Name $workflowName -TriggerName "httpTrigger" $count = $workflowTriggerHistories2.Count - $workflowTriggerHistories1.Count Assert-AreEqual $counter $count } \ No newline at end of file diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs index eaf108cf9eca..ec4f99a3eb3e 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/CancelAzureLogicAppRunCommand.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Stop the workflow run /// - [Cmdlet(VerbsLifecycle.Stop, "AzureLogicAppRun"), OutputType(typeof(object))] + [Cmdlet(VerbsLifecycle.Stop, "AzureRmLogicAppRun"), OutputType(typeof(object))] public class CancelAzureLogicAppRunCommand : LogicAppBaseCmdlet { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs index 2aa1634cb352..299ad153252a 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppAccessKeyCommand.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Gets the access key of a workflow. /// - [Cmdlet(VerbsCommon.Get, "AzureLogicAppAccessKey"), OutputType(typeof (object))] + [Cmdlet(VerbsCommon.Get, "AzureRmLogicAppAccessKey"), OutputType(typeof(object))] public class GetAzureLogicAppAccessKeyCommand : LogicAppBaseCmdlet { #region private attribues diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppCommand.cs index a864f709a784..b0fd75b84f21 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppCommand.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Creates a new LogicApp workflow /// - [Cmdlet(VerbsCommon.Get, "AzureLogicApp"), OutputType(typeof (object))] + [Cmdlet(VerbsCommon.Get, "AzureRmLogicApp"), OutputType(typeof(object))] public class GetAzureLogicAppCommand : LogicAppBaseCmdlet { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs index ac978f623c48..274632e9afa9 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunActionCommand.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Gets the action in the workflow run /// - [Cmdlet(VerbsCommon.Get, "AzureLogicAppRunAction"), OutputType(typeof(object))] + [Cmdlet(VerbsCommon.Get, "AzureRmLogicAppRunAction"), OutputType(typeof(object))] public class GetAzureLogicAppRunActionCommand : LogicAppBaseCmdlet { #region Input Parameters diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs index 49385cc04560..633fd56b9f08 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppRunHistoryCommand.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Creates a new LogicApp workflow /// - [Cmdlet(VerbsCommon.Get, "AzureLogicAppRunHistory"), OutputType(typeof(object))] + [Cmdlet(VerbsCommon.Get, "AzureRmLogicAppRunHistory"), OutputType(typeof(object))] public class AzureLogicAppRunHistoryCommand : LogicAppBaseCmdlet { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs index 779cefc8b4e4..94880f758d3f 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerCommand.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Gets the trigger in the workflow /// - [Cmdlet(VerbsCommon.Get, "AzureLogicAppTrigger"), OutputType(typeof (object))] + [Cmdlet(VerbsCommon.Get, "AzureRmLogicAppTrigger"), OutputType(typeof(object))] public class GetAzureLogicAppTriggerCommand : LogicAppBaseCmdlet { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs index d60b9bec8d6a..c4296ab228e9 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/GetAzureLogicAppTriggerHistoryCommand.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Gets the trigger history of the workflow /// - [Cmdlet(VerbsCommon.Get, "AzureLogicAppTriggerHistory"), OutputType(typeof (object))] + [Cmdlet(VerbsCommon.Get, "AzureRmLogicAppTriggerHistory"), OutputType(typeof(object))] public class GetAzureLogicAppTriggerHistoryCommand : LogicAppBaseCmdlet { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs index 591e07480ee8..51139c64ac3c 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/NewAzureLogicAppCommand.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Creates a new LogicApp workflow /// - [Cmdlet(VerbsCommon.New, "AzureLogicApp"), OutputType(typeof (object))] + [Cmdlet(VerbsCommon.New, "AzureRmLogicApp"), OutputType(typeof(object))] public class NewAzureLogicAppCommand : LogicAppBaseCmdlet { #region private Variables diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicAppCommand.cs index 6a3d16dc992a..8da8f1b9e212 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicAppCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RemoveAzureLogicAppCommand.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Creates a new LogicApp workflow /// - [Cmdlet(VerbsCommon.Remove, "AzureLogicApp"), OutputType(typeof (object))] + [Cmdlet(VerbsCommon.Remove, "AzureRmLogicApp"), OutputType(typeof(object))] public class RemoveAzureLogicAppCommand : LogicAppBaseCmdlet { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs index f7f30faa8fc3..99459071d31f 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/RunAzureLogicAppCommand.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Creates a new LogicApp workflow /// - [Cmdlet(VerbsLifecycle.Start, "AzureLogicApp"), OutputType(typeof (object))] + [Cmdlet(VerbsLifecycle.Start, "AzureRmLogicApp"), OutputType(typeof(object))] public class RunAzureLogicAppCommand : LogicAppBaseCmdlet { diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs index 8ad448cc0bb7..8d2b1bbba14f 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppAccessKeyCommand.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Sets the secret of the access keys of a workflow /// - [Cmdlet(VerbsCommon.Set, "AzureLogicAppAccessKey"), OutputType(typeof (object))] + [Cmdlet(VerbsCommon.Set, "AzureRmLogicAppAccessKey"), OutputType(typeof(object))] public class UpdateAzureLogicAppAccessKeyCommand : LogicAppBaseCmdlet { #region Input Parameters diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs index 180f63c20981..05c62ef9df15 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Cmdlets/UpdateAzureLogicAppCommand.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.LogicApp.Cmdlets /// /// Updates a LogicApp workflow /// - [Cmdlet(VerbsCommon.Set, "AzureLogicApp"), OutputType(typeof (object))] + [Cmdlet(VerbsCommon.Set, "AzureRmLogicApp"), OutputType(typeof(object))] public class UpdateAzureLogicAppCommand : LogicAppBaseCmdlet { #region private Variables diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-Help.xml b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-Help.xml index 2cf92608cc72..e8e85f0a8502 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-Help.xml +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Microsoft.Azure.Commands.LogicApp.dll-Help.xml @@ -2,7 +2,7 @@ - Get-AzureLogicApp + Get-AzureRmLogicApp Gets the specified Logic App from the Azure resource group. @@ -10,16 +10,16 @@ Get - AzureLogicApp + AzureRmLogicApp This is the Description section - The Get-AzureLogicApp cmdlet retrieves Azure Logic App from the Azure resource group and returns an object that represents the Workflow. Use this cmdlet to get a Logic App from specified resource group. You can get a Logic App by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + The Get-AzureRmLogicApp cmdlet retrieves Azure Logic App from the Azure resource group and returns an object that represents the Workflow. Use this cmdlet to get a Logic App from specified resource group. You can get a Logic App by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - Get-AzureLogicApp + Get-AzureRmLogicApp ResourceGroupName @@ -140,7 +140,7 @@ PS C:\> - PS C:\>Get-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" + PS C:\>Get-AzureRmLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" This command gets a Logic App from the specified Azure resource group. @@ -176,15 +176,15 @@ Version : 08587489107859952120 - New-AzureLogicApp + New-AzureRmLogicApp - Set-AzureLogicApp + Set-AzureRmLogicApp - Remove-AzureLogicApp + Remove-AzureRmLogicApp @@ -192,7 +192,7 @@ Version : 08587489107859952120 - Get-AzureLogicAppAccessKey + Get-AzureRmLogicAppAccessKey Gets the access keys of a specified Logic App. @@ -200,16 +200,16 @@ Version : 08587489107859952120 Get - AzureLogicAppAccessKey + AzureRmLogicAppAccessKey This is the Description section - The Get-AzureLogicAppAccessKey cmdlet retrieves access key of an Azure Logic App and returns an object that represents the WorkflowSecretKeys. Use this cmdlet to get a Logic App access key from a specified resource group. You can get a Logic App access key by specifying the Logic App name, resource group name and access key name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + The Get-AzureRmLogicAppAccessKey cmdlet retrieves access key of an Azure Logic App and returns an object that represents the WorkflowSecretKeys. Use this cmdlet to get a Logic App access key from a specified resource group. You can get a Logic App access key by specifying the Logic App name, resource group name and access key name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - Get-AzureLogicAppAccessKey + Get-AzureRmLogicAppAccessKey ResourceGroupName @@ -349,7 +349,7 @@ Version : 08587489107859952120 PS C:\> - PS C:\>Get-AzureLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -AccessKeyName "default" + PS C:\>Get-AzureRmLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -AccessKeyName "default" This command gets an access key of a Logic App from the specified Azure resource group. @@ -370,7 +370,7 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 PS C:\> - PS C:\>Get-AzureLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" + PS C:\>Get-AzureRmLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" This command gets all the access keys of a Logic App from the specified Azure resource group. @@ -388,12 +388,16 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 + + Get-AzureRmLogicAppAccessKey + + - Get-AzureLogicAppRunAction + Get-AzureRmLogicAppRunAction Gets the specified action from the Logic App run. @@ -401,16 +405,16 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 Get - AzureLogicAppRunAction + AzureRmLogicAppRunAction This is the Description section - The Get-AzureLogicAppActionRun cmdlet retrieves action from a specified Logic App run and returns an object that represents the WorkflowRunAction. Use this cmdlet to get action(s) from the Logic App run in the specified resource group. You can get a Logic App's run action by specifying the Logic App name, resource group name, run name and action name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + The Get-AzureRmLogicAppActionRun cmdlet retrieves action from a specified Logic App run and returns an object that represents the WorkflowRunAction. Use this cmdlet to get action(s) from the Logic App run in the specified resource group. You can get a Logic App's run action by specifying the Logic App name, resource group name, run name and action name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - Get-AzureLogicAppRunAction + Get-AzureRmLogicAppRunAction ResourceGroupName @@ -569,7 +573,7 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 PS C:\> - PS C:\>Get-AzureLogicAppActionRun -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "LogicAppRun1" -ActionName "LogicAppAction1" + PS C:\>Get-AzureRmLogicAppActionRun -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "LogicAppRun1" -ActionName "LogicAppAction1" This command gets a Logic App action from the specified Logic App run in an Azure resource group. @@ -598,7 +602,7 @@ Type : PS C:\> - PS C:\>Get-AzureLogicAppActionRun -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "LogicAppRun1" + PS C:\>Get-AzureRmLogicAppActionRun -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "LogicAppRun1" This command gets all the actions from a Logic App run in a specified Azure resource group. @@ -625,15 +629,15 @@ Type : - Get-AzureLogicAppRunHistory + Get-AzureRmLogicAppRunHistory - Start-AzureLogicAppRun + Start-AzureRmLogicAppRun - Stop-AzureLogicAppRun + Stop-AzureRmLogicAppRun @@ -641,7 +645,7 @@ Type : - Get-AzureLogicAppRunHistory + Get-AzureRmLogicAppRunHistory Gets the Logic App run history. @@ -649,16 +653,16 @@ Type : Get - AzureLogicAppRunHistory + AzureRmLogicAppRunHistory This is the Description section - The Get-AzureLogicAppRunHistory cmdlet retrieves the Logic App run history and returns a collection of WorkflowRun object for a specified Logic App. Use this cmdlet to get the run history of the Logic App from a specified resource group. You can get a Logic App's run history by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + The Get-AzureRmLogicAppRunHistory cmdlet retrieves the Logic App run history and returns a collection of WorkflowRun object for a specified Logic App. Use this cmdlet to get the run history of the Logic App from a specified resource group. You can get a Logic App's run history by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - Get-AzureLogicAppRunHistory + Get-AzureRmLogicAppRunHistory ResourceGroupName @@ -798,7 +802,7 @@ Type : PS C:\> - PS C:\>Get-AzureLogicAppActionRunHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" + PS C:\>Get-AzureRmLogicAppActionRunHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" This command gets a Logic App run history for a specified Logic App and Azure resource group. @@ -838,7 +842,7 @@ LogicAppVersion : 08587489107859952120 PS C:\> - PS C:\>Get-AzureLogicAppActionRunHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "08587489104702792076" + PS C:\>Get-AzureRmLogicAppActionRunHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -RunName "08587489104702792076" This command gets a Logic App run for a specified Logic App and Azure resource group. @@ -865,15 +869,15 @@ LogicAppVersion : 08587489107859952120 - Get-AzureLogicAppRunAction + Get-AzureRmLogicAppRunAction - Start-AzureLogicApp + Start-AzureRmLogicApp - Stop-AzureLogicAppRun + Stop-AzureRmLogicAppRun @@ -881,7 +885,7 @@ LogicAppVersion : 08587489107859952120 - Get-AzureLogicAppTrigger + Get-AzureRmLogicAppTrigger Gets the specified trigger of the logic app. @@ -889,16 +893,16 @@ LogicAppVersion : 08587489107859952120 Get - AzureLogicAppTrigger + AzureRmLogicAppTrigger This is the Description section - The Get-AzureLogicAppTrigger cmdlet retrieves the specified trigger from the logic app and returns an object/collection which represents the workflow trigger. Use this cmdlet to get the trigger(s) of the logic app from a specified resource group. You can get the logic app's trigger by specifying the workflow name, resource group name and trigger name. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + The Get-AzureRmLogicAppTrigger cmdlet retrieves the specified trigger from the logic app and returns an object/collection which represents the workflow trigger. Use this cmdlet to get the trigger(s) of the logic app from a specified resource group. You can get the logic app's trigger by specifying the workflow name, resource group name and trigger name. To use the dynamic parameters, just type them in the command, or type a minus sign to indicate a parameter name (-) and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - Get-AzureLogicAppTrigger + Get-AzureRmLogicAppTrigger ResourceGroupName @@ -1038,7 +1042,7 @@ LogicAppVersion : 08587489107859952120 PS C:\> - PS C:\>Get-AzureLogicAppTrigger -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" + PS C:\>Get-AzureRmLogicAppTrigger -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" This command gets the trigger of the specified Logic App and Azure resource group. @@ -1068,7 +1072,7 @@ LogicAppVersion : 08587489107406290826 PS C:\> - PS C:\>Get-AzureLogicAppTrigger -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" + PS C:\>Get-AzureRmLogicAppTrigger -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" This command gets trigger(s) of the specified Logic App in the Azure resource group. @@ -1096,11 +1100,11 @@ LogicAppVersion : 08587489107406290826 - Get-AzureLogicAppTriggerHistory + Get-AzureRmLogicAppTriggerHistory - Start-AzureLogicApp + Start-AzureRmLogicApp @@ -1108,7 +1112,7 @@ LogicAppVersion : 08587489107406290826 - Get-AzureLogicAppTriggerHistory + Get-AzureRmLogicAppTriggerHistory Gets the trigger history of the specified trigger in the Logic App. @@ -1116,16 +1120,16 @@ LogicAppVersion : 08587489107406290826 Get - AzureLogicAppTriggerHistory + AzureRmLogicAppTriggerHistory This is the Description section - The Get-AzureLogicAppTriggerHistory cmdlet retrieves the history of the specified trigger in the Logic App and returns an object/collection which represents the Logic App trigger history. Use this cmdlet to get the trigger history of the Logic App from a specified resource group. You can get the Logic App's trigger history by specifying the Logic App name, resource group name, trigger name and history name (optional). To use the dynamic parameters, just type them in the command, or type a minus sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + The Get-AzureRmLogicAppTriggerHistory cmdlet retrieves the history of the specified trigger in the Logic App and returns an object/collection which represents the Logic App trigger history. Use this cmdlet to get the trigger history of the Logic App from a specified resource group. You can get the Logic App's trigger history by specifying the Logic App name, resource group name, trigger name and history name (optional). To use the dynamic parameters, just type them in the command, or type a minus sign (-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - Get-AzureLogicAppTriggerHistory + Get-AzureRmLogicAppTriggerHistory ResourceGroupName @@ -1284,7 +1288,7 @@ LogicAppVersion : 08587489107406290826 PS C:\> - PS C:\>Get-AzureLogicAppTriggerHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" -HistoryName "08587489107387695768" + PS C:\>Get-AzureRmLogicAppTriggerHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" -HistoryName "08587489107387695768" This command gets the Logic App trigger history for a specified trigger in the Logic App. @@ -1316,7 +1320,7 @@ Type : Microsoft.Logic/workflows/triggers/histories PS C:\> - PS C:\>Get-AzureLogicAppTriggerHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" + PS C:\>Get-AzureRmLogicAppTriggerHistory -ResourceGroupName "Resourcegroup1" -Name "LogicApp1" -TriggerName "Trigger1" This command gets the workflow trigger histories for a specified trigger in the Logic App. @@ -1360,11 +1364,11 @@ Type : Microsoft.Logic/workflows/triggers/histories - Get-AzureLogicAppTrigger + Get-AzureRmLogicAppTrigger - Start-AzureLogicApp + Start-AzureRmLogicApp @@ -1372,7 +1376,7 @@ Type : Microsoft.Logic/workflows/triggers/histories - New-AzureLogicApp + New-AzureRmLogicApp Creates a new Logic App in the azure resource group. @@ -1380,16 +1384,16 @@ Type : Microsoft.Logic/workflows/triggers/histories New - AzureLogicApp + AzureRmLogicApp This is the Description section - The New-AzureLogicApp cmdlet creates an Azure Logic App and returns an object that represents the Workflow. Use this cmdlet to create a new Logic App. A Logic App is a collection of actions or triggers defined in Logic App definition. You can create a Logic App with a name, location, Logic App definition, resource group name and App Service Plan name . However, typically, you use a Logic App template for definition and parameters which is a JSON-based model. To create a Logic App, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the Logic App template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. + The New-AzureRmLogicApp cmdlet creates an Azure Logic App and returns an object that represents the Workflow. Use this cmdlet to create a new Logic App. A Logic App is a collection of actions or triggers defined in Logic App definition. You can create a Logic App with a name, location, Logic App definition, resource group name and App Service Plan name . However, typically, you use a Logic App template for definition and parameters which is a JSON-based model. To create a Logic App, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the Logic App template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. - New-AzureLogicApp + New-AzureRmLogicApp ResourceGroupName @@ -1483,7 +1487,7 @@ Type : Microsoft.Logic/workflows/triggers/histories - New-AzureLogicApp + New-AzureRmLogicApp ResourceGroupName @@ -1570,7 +1574,7 @@ Type : Microsoft.Logic/workflows/triggers/histories - New-AzureLogicApp + New-AzureRmLogicApp ResourceGroupName @@ -1879,7 +1883,7 @@ Type : Microsoft.Logic/workflows/triggers/histories PS C:\> - PS C:\>New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" + PS C:\>New-AzureRmLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" This command creates a new Logic App in the specified resource group. @@ -1917,7 +1921,7 @@ Version : 08587489107859952120 PS C:\> - PS C:\>New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -AppServicePlan "ServicePlan1" -Definition [IO.File]::ReadAllText("d:\Workflows\Definition.json") -Parameters @{name1="value1", name2="value2"} + PS C:\>New-AzureRmLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Location "westus" -State "Enabled" -AppServicePlan "ServicePlan1" -Definition [IO.File]::ReadAllText("d:\Workflows\Definition.json") -Parameters @{name1="value1", name2="value2"} This command creates a new Logic App in the targeted resource group. @@ -1955,7 +1959,7 @@ Version : 08587489107859952120 PS C:\> - PS C:\>Get-AzureRmResourceGroup -ResourceGroupName "ResourceGroup1" | New-AzureLogicApp -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\Workflow\Definition.json" -ParameterFilePath "d:\Workflow\Parameters.json" + PS C:\>Get-AzureRmResourceGroup -ResourceGroupName "ResourceGroup1" | New-AzureRmLogicApp -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\Workflow\Definition.json" -ParameterFilePath "d:\Workflow\Parameters.json" This command creates a new Logic App in the specified resource group using the pipe input from the resource group object. @@ -1993,7 +1997,7 @@ Version : 08587489107859952120 PS C:\> - PS C:\>New-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -Definition $workflow.Definition -Parameters $workflow.Parameters + PS C:\>New-AzureRmLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -Definition $workflow.Definition -Parameters $workflow.Parameters This command creates a new Logic App in the targeted resource group. In this example, definition and parameters of existing Logic App is used to create new Logic App. @@ -2029,15 +2033,15 @@ Version : 08587489107859952120 - Get-AzureLogicApp + Get-AzureRmLogicApp - Set-AzureLogicApp + Set-AzureRmLogicApp - Remove-AzureLogicApp + Remove-AzureRmLogicApp @@ -2045,7 +2049,7 @@ Version : 08587489107859952120 - Remove-AzureLogicApp + Remove-AzureRmLogicApp Removes the specified Logic App from the specified Azure resource group. @@ -2053,16 +2057,16 @@ Version : 08587489107859952120 Remove - AzureLogicApp + AzureRmLogicApp This is the Description section - The Remove-AzureLogicApp cmdlet removes a Logic App from an Azure resource group. Use this cmdlet to remove Logic App from specified resource group. You can remove a Logic App by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + The Remove-AzureRmLogicApp cmdlet removes a Logic App from an Azure resource group. Use this cmdlet to remove Logic App from specified resource group. You can remove a Logic App by specifying the Logic App name and resource group name. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - Remove-AzureLogicApp + Remove-AzureRmLogicApp ResourceGroupName @@ -2202,7 +2206,7 @@ Version : 08587489107859952120 PS C:\> - PS C:\>Remove-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Force + PS C:\>Remove-AzureRmLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -Force This command removes a Logic App from the specified Azure resource group. @@ -2220,15 +2224,15 @@ Version : 08587489107859952120 - Set-AzureLogicApp + Set-AzureRmLogicApp - Get-AzureLogicApp + Get-AzureRmLogicApp - New-AzureLogicApp + New-AzureRmLogicApp @@ -2236,7 +2240,7 @@ Version : 08587489107859952120 - Set-AzureLogicApp + Set-AzureRmLogicApp Updates a new Logic App in an azure resource group. @@ -2244,16 +2248,16 @@ Version : 08587489107859952120 Set - AzureLogicApp + AzureRmLogicApp This is the Description section - The Set-AzureLogicApp cmdlet updates an Azure Logic App and returns an object that represents the Workflow. Use this cmdlet to update a Logic App. You can update a Logic App with a name, Logic App definition, resource group name, App Service Plan name. However, typically, you use a Logic App template for definition and parameters which is JSON-based model. To update a Logic App, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the Logic App template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. + The Set-AzureRmLogicApp cmdlet updates an Azure Logic App and returns an object that represents the Workflow. Use this cmdlet to update a Logic App. You can update a Logic App with a name, Logic App definition, resource group name, App Service Plan name. However, typically, you use a Logic App template for definition and parameters which is JSON-based model. To update a Logic App, you can specify definition as DefinitionFilePath or DefinitionLinkUri parameters or as a Definition object(string). To specify values for the Logic App template parameters, use a JSON-formatted parameter file (-ParameterFilePath) or a HashTable of parameter names and values (-Parameters) or ParametersLinkUri parameters. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. Template parameter file values that you specify at the command line take precedence over template parameter values in a template parameter object. - Set-AzureLogicApp + Set-AzureRmLogicApp ResourceGroupName @@ -2564,7 +2568,7 @@ Version : 08587489107859952120 PS C:\> - PS C:\>Set-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" + PS C:\>Set-AzureRmLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -State "Enabled" -AppServicePlan "ServicePlan1" -DefinitionFilePath "d:\workflows\Definition.json" -ParameterFilePath "d:\workflows\Parameters.json" This command updates a Logic App @@ -2600,15 +2604,15 @@ Version : 08587489107859952120 - New-AzureLogicApp + New-AzureRmLogicApp - Get-AzureLogicApp + Get-AzureRmLogicApp - Remove-AzureLogicApp + Remove-AzureRmLogicApp @@ -2616,7 +2620,7 @@ Version : 08587489107859952120 - Set-AzureLogicAppAccessKey + Set-AzureRmLogicAppAccessKey Updates the access keys of a specified Logic App. @@ -2624,16 +2628,16 @@ Version : 08587489107859952120 Set - AzureLogicAppAccessKey + AzureRmLogicAppAccessKey This is the Description section - The Set-AzureLogicAppAccessKey cmdlet updates the access key of an Azure Logic App and returns an object that represents the WorkflowSecretKeys. Use this cmdlet to update a Logic App access key in a specified resource group. You can set Logic App access keys by specifying the Logic App name, resource group name, Access key name and KeyType. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + The Set-AzureRmLogicAppAccessKey cmdlet updates the access key of an Azure Logic App and returns an object that represents the WorkflowSecretKeys. Use this cmdlet to update a Logic App access key in a specified resource group. You can set Logic App access keys by specifying the Logic App name, resource group name, Access key name and KeyType. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - Set-AzureLogicAppAccessKey + Set-AzureRmLogicAppAccessKey ResourceGroupName @@ -2792,7 +2796,7 @@ Version : 08587489107859952120 PS C:\> - PS C:\>Set-AzureLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -AccessKeyName "AccessKey1" -KeyType "Primary" + PS C:\>Set-AzureRmLogicAppAccessKey -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -AccessKeyName "AccessKey1" -KeyType "Primary" This command sets the access key of a Logic App in a specified Azure resource group. @@ -2811,7 +2815,7 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 - Get-AzureLogicAppAccessKey + Get-AzureRmLogicAppAccessKey @@ -2819,7 +2823,7 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 - Start-AzureLogicApp + Start-AzureRmLogicApp Runs the specified Logic App in the Azure resource group. @@ -2827,16 +2831,16 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 Start - AzureLogicApp + AzureRmLogicApp This is the Description section - The Start-AzureLogicApp cmdlet runs the Azure Logic App. Use this cmdlet to run a Logic App from a specified resource group. You can run a Logic App by specifying the Logic App name, resource group name, parameters(optional) and trigger name. To use the dynamic parameters, just type them in the command, or type a hyphen(-) sign to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + The Start-AzureRmLogicApp cmdlet runs the Azure Logic App. Use this cmdlet to run a Logic App from a specified resource group. You can run a Logic App by specifying the Logic App name, resource group name, parameters(optional) and trigger name. To use the dynamic parameters, just type them in the command, or type a hyphen(-) sign to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - Start-AzureLogicApp + Start-AzureRmLogicApp ResourceGroupName @@ -2995,7 +2999,7 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 PS C:\> - PS C:\>Start-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -TriggerName "Trigger1" + PS C:\>Start-AzureRmLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -TriggerName "Trigger1" This command runs the Logic App present in the specified Azure resource group. @@ -3013,7 +3017,7 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 - Stop-AzureLogicAppRun + Stop-AzureRmLogicAppRun @@ -3021,24 +3025,24 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 - Stop-AzureLogicAppRun + Stop-AzureRmLogicAppRun - Cancel the specified run of a Logic App present in the Azure resource group. + Cancels the specified run of a Logic App present in the Azure resource group. Stop - AzureLogicAppRun + AzureRmLogicAppRun This is the Description section - The Stop-AzureLogicAppRun cmdlet cancels the run of the Azure Logic App. Use this cmdlet to cancel the specified run of a Logic App. You can cancel the run of a Logic App by specifying the Logic App name, resource group name and run name. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. + The Stop-AzureRmLogicAppRun cmdlet cancels the run of the Azure Logic App. Use this cmdlet to cancel the specified run of a Logic App. You can cancel the run of a Logic App by specifying the Logic App name, resource group name and run name. To use the dynamic parameters, just type them in the command, or type a hyphen sign(-) to indicate a parameter name and then press the TAB key repeatedly to cycle through the available parameters. If you miss a required template parameter, the cmdlet prompts you for the value. - Stop-AzureLogicAppRun + Stop-AzureRmLogicAppRun ResourceGroupName @@ -3178,7 +3182,7 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 PS C:\> - PS C:\>Get-AzureLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -RunName "Run1" + PS C:\>Get-AzureRmLogicApp -ResourceGroupName "ResourceGroup1" -Name "LogicApp1" -RunName "Run1" This command cancels the specified run of the Logic App present in an Azure resource group. @@ -3196,7 +3200,7 @@ SecondarySecretKey : IS0G7m3lUfZtrrlSsu7d6IKqwLAwQ_TmKVjrW7yuzx4 - Start-AzureLogicApp + Start-AzureRmLogicApp diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs index e5552af75c32..dfd74b1d96ef 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs @@ -29,11 +29,7 @@ [assembly: CLSCompliant(false)] [assembly: Guid("e50b915e-1c94-4cd1-bbea-72ff2246d237")] -[assembly: AssemblyVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyVersion)] -[assembly: AssemblyFileVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyFileVersion)] +[assembly: AssemblyVersion("1.0.3")] +[assembly: AssemblyFileVersion("1.0.3")] -#if SIGN -//[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.LogicApp.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] -#else -//[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.LogicApp.Test")] -#endif \ No newline at end of file +[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.LogicApp.Test")] From a8fec0b1235466fd5528d31d4451afcd9376f63e Mon Sep 17 00:00:00 2001 From: Siddharth Chatrola Date: Fri, 5 Feb 2016 10:58:38 -0800 Subject: [PATCH 12/19] Fixing help comment --- .../Microsoft.Azure.Commands.RedisCache.dll-Help.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml b/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml index 527954fd2bda..802a758cbbc6 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Microsoft.Azure.Commands.RedisCache.dll-Help.xml @@ -350,7 +350,7 @@ VirtualNetwork - The exact ARM resource ID of the virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.ClassicNetwork/VirtualNetworks/vnet1 + The exact ARM resource ID of the virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/providers/Microsoft.ClassicNetwork/VirtualNetworks/{vnetName} String @@ -500,7 +500,7 @@ VirtualNetwork - The exact ARM resource ID of the virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.ClassicNetwork/VirtualNetworks/vnet1 + The exact ARM resource ID of the virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/providers/Microsoft.ClassicNetwork/VirtualNetworks/{vnetName} String From 85f4830809768d0d1380ef8680992e0e53584bc1 Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Fri, 5 Feb 2016 11:42:08 -0800 Subject: [PATCH 13/19] Merge remote-tracking branch 'upstream/dev' into dev Conflicts: setup/azurecmdfiles.wxi --- setup/azurecmdfiles.wxi | 464 +++++++++++------- .../Commands.ApiManagement.Test.csproj | 4 +- .../packages.config | 2 +- ...piManagement.ServiceManagement.Test.csproj | 4 +- .../Commands.SMAPI.Test/packages.config | 2 +- .../Common/ComputeTestController.cs | 6 +- .../Common/DiagnosticsHelper.cs | 8 +- .../Properties/Resources.Designer.cs | 6 +- .../Properties/Resources.resx | 4 +- .../Dns/Commands.Dns/Commands.Dns.csproj | 12 + .../Dns/Commands.Dns/packages.config | 4 + .../Commands.Network/Commands.Network.csproj | 26 +- .../Network/Commands.Network/packages.config | 6 + .../Commands.Profile.Test.csproj | 2 +- .../Commands.Profile.Test/packages.config | 2 +- .../Commands.RedisCache.csproj | 16 + .../Commands.RedisCache/packages.config | 7 +- .../Sql/Commands.Sql/Commands.Sql.csproj | 24 + .../Sql/Commands.Sql/packages.config | 6 + .../Commands.StreamAnalytics.csproj | 24 + .../Commands.StreamAnalytics/packages.config | 6 + .../Commands.Common.Test.csproj | 2 +- .../Commands.Common.Test/packages.config | 2 +- .../Commands.ScenarioTest.csproj | 2 +- .../Commands.ScenarioTest/packages.config | 2 +- ...eManagement.PlatformImageRepository.csproj | 2 +- .../packages.config | 2 +- .../Commands.ServiceManagement.Preview.csproj | 2 +- .../packages.config | 2 +- .../Commands.ServiceManagement.Test.csproj | 2 +- .../AzureServiceExtensionTests.cs | 25 +- .../FunctionalTests/PIRTest.cs | 4 +- ...ewAzureServiceExtensionConfigCmdletInfo.cs | 11 + .../ServiceManagementCmdletTestHelper.cs | 8 + .../FunctionalTests/ServiceManagementTest.cs | 2 +- .../packages.config | 2 +- .../Commands.ServiceManagement.csproj | 2 +- .../Common/DiagnosticsHelper.cs | 8 +- .../Common/BaseAzureServiceExtensionCmdlet.cs | 2 + .../Common/ExtensionConfigurationInput.cs | 1 + .../Extensions/Common/ExtensionManager.cs | 34 ++ .../ExtensionParameterPropertyHelper.cs | 1 + .../Extensions/Common/ExtensionRole.cs | 2 + .../Common/NewAzureServiceExtensionConfig.cs | 12 + .../BaseAzureServiceDiagnosticsExtension.cs | 36 +- .../HostedServices/SetAzureDeployment.cs | 5 +- .../Model/DeploymentInfoContext.cs | 35 ++ .../Properties/Resources.Designer.cs | 15 +- .../Properties/Resources.resx | 7 +- .../packages.config | 2 +- ...ands.ServiceManagement.Network.Test.csproj | 2 +- .../Commands.Network.Test/packages.config | 2 +- .../Commands.ServiceManagement.Network.csproj | 2 +- .../Network/Commands.Network/packages.config | 2 +- .../Commands.RemoteApp.csproj | 2 +- .../Commands.RemoteApp/packages.config | 2 +- .../Commands.Test.Utilities.csproj | 2 +- .../Commands.Test.Utilities/packages.config | 2 +- .../Commands.Test/Commands.Test.csproj | 2 +- .../Services/Commands.Test/packages.config | 2 +- .../Commands.Utilities.csproj | 2 +- .../Commands.Utilities/packages.config | 2 +- .../Services/Commands/Commands.csproj | 2 +- .../Services/Commands/packages.config | 2 +- .../Commands.TrafficManager.csproj | 12 + .../Commands.TrafficManager/packages.config | 4 + 66 files changed, 667 insertions(+), 244 deletions(-) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index c49e6b9b6e3f..1e00ec744bee 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -292,72 +292,69 @@ - - - + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - - - + + @@ -1125,6 +1122,15 @@ + + + + + + + + + @@ -1155,6 +1161,9 @@ + + + @@ -1450,6 +1459,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1544,6 +1657,9 @@ + + + @@ -1553,6 +1669,15 @@ + + + + + + + + + @@ -1583,6 +1708,9 @@ + + + @@ -1595,6 +1723,9 @@ + + + @@ -1929,6 +2060,15 @@ + + + + + + + + + @@ -1968,6 +2108,9 @@ + + + @@ -2217,6 +2360,9 @@ + + + @@ -2229,6 +2375,15 @@ + + + + + + + + + @@ -2253,6 +2408,9 @@ + + + @@ -2268,6 +2426,9 @@ + + + @@ -2446,12 +2607,24 @@ + + + + + + + + + + + + @@ -2473,6 +2646,9 @@ + + + @@ -2482,6 +2658,9 @@ + + + @@ -2806,110 +2985,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -4840,6 +4915,15 @@ + + + + + + + + + @@ -4891,6 +4975,9 @@ + + + @@ -4992,28 +5079,27 @@ - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + @@ -5264,6 +5350,9 @@ + + + @@ -5274,6 +5363,7 @@ + @@ -5401,9 +5491,13 @@ + + + + @@ -5414,10 +5508,12 @@ + + @@ -5525,7 +5621,10 @@ - + + + + @@ -5538,7 +5637,8 @@ - + + @@ -5620,10 +5720,14 @@ + + + + @@ -5632,11 +5736,13 @@ + + @@ -5695,8 +5801,12 @@ + + + + @@ -5704,9 +5814,11 @@ + + @@ -6425,6 +6537,9 @@ + + + @@ -6442,6 +6557,7 @@ + diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj index 5e6563adb64b..72f0cff7a47c 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Commands.ApiManagement.Test.csproj @@ -109,9 +109,9 @@ False ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll False diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config index c32aaebf6581..05a392db53b4 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config @@ -18,7 +18,7 @@ - + diff --git a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj index 7f9d5f9391b6..725df5173b4c 100644 --- a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj +++ b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj @@ -109,9 +109,9 @@ False ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll False diff --git a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/packages.config b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/packages.config index 1d7932d647b7..182b8a529d75 100644 --- a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/packages.config +++ b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/packages.config @@ -19,7 +19,7 @@ - + diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Common/ComputeTestController.cs b/src/ResourceManager/Compute/Commands.Compute.Test/Common/ComputeTestController.cs index a8854c5ed268..e3cabc672588 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Common/ComputeTestController.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Common/ComputeTestController.cs @@ -161,7 +161,7 @@ private void SetupManagementClients(RestTestFramework.MockContext context) NetworkManagementClient = this.GetNetworkManagementClientClient(context); ComputeManagementClient = GetComputeManagementClient(context); AuthorizationManagementClient = GetAuthorizationManagementClient(); - GraphClient = GetGraphClient(); + // GraphClient = GetGraphClient(); helper.SetupManagementClients( ResourceManagementClient, @@ -171,8 +171,8 @@ private void SetupManagementClients(RestTestFramework.MockContext context) //eventsClient, NetworkManagementClient, ComputeManagementClient, - AuthorizationManagementClient, - GraphClient); + AuthorizationManagementClient); + // GraphClient); } private GraphRbacManagementClient GetGraphClient() diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/DiagnosticsHelper.cs b/src/ResourceManager/Compute/Commands.Compute/Common/DiagnosticsHelper.cs index b6343f0268ce..91530f18e349 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/DiagnosticsHelper.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/DiagnosticsHelper.cs @@ -36,6 +36,7 @@ public static class DiagnosticsHelper private static string XmlNamespace = "http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration"; private static string EncodedXmlCfg = "xmlCfg"; private static string WadCfg = "WadCfg"; + private static string WadCfgBlob = "WadCfgBlob"; private static string StorageAccount = "storageAccount"; private static string Path = "path"; private static string ExpandResourceDirectory = "expandResourceDirectory"; @@ -163,6 +164,7 @@ private static Hashtable GetPublicConfigFromJsonFile(string configurationPath, s var publicConfig = GetPublicConfigJObjectFromJsonFile(configurationPath); var properties = publicConfig.Properties().Select(p => p.Name); var wadCfgProperty = properties.FirstOrDefault(p => p.Equals(WadCfg, StringComparison.OrdinalIgnoreCase)); + var wadCfgBlobProperty = properties.FirstOrDefault(p => p.Equals(WadCfgBlob, StringComparison.OrdinalIgnoreCase)); var xmlCfgProperty = properties.FirstOrDefault(p => p.Equals(EncodedXmlCfg, StringComparison.OrdinalIgnoreCase)); var hashTable = new Hashtable(); @@ -172,13 +174,17 @@ private static Hashtable GetPublicConfigFromJsonFile(string configurationPath, s { hashTable.Add(wadCfgProperty, publicConfig[wadCfgProperty]); } + else if (wadCfgBlobProperty != null) + { + hashTable.Add(wadCfgBlobProperty, publicConfig[wadCfgBlobProperty]); + } else if (xmlCfgProperty != null) { hashTable.Add(xmlCfgProperty, publicConfig[xmlCfgProperty]); } else { - throw new ArgumentException(Properties.Resources.DiagnosticsExtensionConfigNoWadCfgOrXmlCfg); + throw new ArgumentException(Properties.Resources.DiagnosticsExtensionIaaSConfigElementNotDefined); } return hashTable; diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs index cfa13e50905c..0c9c67948311 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs @@ -279,11 +279,11 @@ public static string DataDiskNotAssignedForVM { } /// - /// Looks up a localized string similar to WadCfg or xmlCfg is not defined in configuration file.. + /// Looks up a localized string similar to No WadCfg, WadCfgBlob or xmlCfg element defined in the configuration file.. /// - public static string DiagnosticsExtensionConfigNoWadCfgOrXmlCfg { + public static string DiagnosticsExtensionIaaSConfigElementNotDefined { get { - return ResourceManager.GetString("DiagnosticsExtensionConfigNoWadCfgOrXmlCfg", resourceCulture); + return ResourceManager.GetString("DiagnosticsExtensionIaaSConfigElementNotDefined", resourceCulture); } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx index 75b5a9b2ba5c..2b2bde3d38b9 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx @@ -482,8 +482,8 @@ The file needs to be a PowerShell script (.ps1 or .psm1) or a ZIP archive (.zip) Storage account endpoint is not defined or can not be retrieved automatically.. - - WadCfg or xmlCfg is not defined in configuration file. + + No WadCfg, WadCfgBlob or xmlCfg element defined in the configuration file. Invalid diagnostics configuration file. It should be in Invalid diagnostics configuration file. It should be in either xml or json format.either xml or json format. diff --git a/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj b/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj index 7babc2857b83..2a6225b5e2bf 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj +++ b/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj @@ -113,6 +113,15 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + + ..\..\..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll + + + ..\..\..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll + + + ..\..\..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll True @@ -155,6 +164,9 @@ ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll + + ..\..\..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll + diff --git a/src/ResourceManager/Dns/Commands.Dns/packages.config b/src/ResourceManager/Dns/Commands.Dns/packages.config index a6b8bf3b894b..50800a64b0e9 100644 --- a/src/ResourceManager/Dns/Commands.Dns/packages.config +++ b/src/ResourceManager/Dns/Commands.Dns/packages.config @@ -10,9 +10,13 @@ + + + + \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj index 37bcac8738dd..c4fe3e8d7089 100644 --- a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj +++ b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj @@ -68,6 +68,10 @@ False ..\..\..\packages\Microsoft.Azure.Graph.RBAC.1.9.0-preview\lib\net40\Microsoft.Azure.Graph.RBAC.dll + + ..\..\..\packages\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll + True + False ..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll @@ -76,7 +80,19 @@ ..\..\..\packages\Microsoft.Azure.Management.Network.3.1.0-preview\lib\net45\Microsoft.Azure.Management.Network.dll True - + + False + ..\..\..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll + + + False + ..\..\..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll + + + False + ..\..\..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll True @@ -108,6 +124,10 @@ False ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll + + False + ..\..\..\packages\WindowsAzure.Storage.6.1.0\lib\net40\Microsoft.WindowsAzure.Storage.dll + False ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll @@ -126,6 +146,10 @@ + + False + ..\..\..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll + diff --git a/src/ResourceManager/Network/Commands.Network/packages.config b/src/ResourceManager/Network/Commands.Network/packages.config index afa8b7ef7305..ebfd14bf2d62 100644 --- a/src/ResourceManager/Network/Commands.Network/packages.config +++ b/src/ResourceManager/Network/Commands.Network/packages.config @@ -7,16 +7,22 @@ + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj b/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj index fad970c4c118..048602ac9837 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj +++ b/src/ResourceManager/Profile/Commands.Profile.Test/Commands.Profile.Test.csproj @@ -126,7 +126,7 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll diff --git a/src/ResourceManager/Profile/Commands.Profile.Test/packages.config b/src/ResourceManager/Profile/Commands.Profile.Test/packages.config index 3aab10c17b8f..673778ff6b1f 100644 --- a/src/ResourceManager/Profile/Commands.Profile.Test/packages.config +++ b/src/ResourceManager/Profile/Commands.Profile.Test/packages.config @@ -20,7 +20,7 @@ - + diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj index 6e9dbce421b2..03d35a51a510 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj @@ -71,6 +71,18 @@ False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.11-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + ..\..\..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll + True + + + ..\..\..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll + True + + + ..\..\..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll + True + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll True @@ -128,6 +140,10 @@ + + ..\..\..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll + True + diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config b/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config index b96ca34e96e9..0d6be3f88d9e 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/packages.config @@ -11,10 +11,15 @@ + + + - \ No newline at end of file + + + \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj index 9faa5c8cc15e..57beb11eb95a 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj +++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj @@ -278,6 +278,10 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + + ..\..\..\packages\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll + True + False ..\..\..\packages\Microsoft.Azure.Management.Sql.0.43.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll @@ -290,6 +294,18 @@ False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.11-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + False + ..\..\..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll + + + False + ..\..\..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll + + + False + ..\..\..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll True @@ -317,6 +333,10 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll + + False + ..\..\..\packages\WindowsAzure.Storage.5.0.0\lib\net40\Microsoft.WindowsAzure.Storage.dll + False ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll @@ -339,6 +359,10 @@ ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll + + False + ..\..\..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll + diff --git a/src/ResourceManager/Sql/Commands.Sql/packages.config b/src/ResourceManager/Sql/Commands.Sql/packages.config index cfdb792972a0..e8cb4e3a1926 100644 --- a/src/ResourceManager/Sql/Commands.Sql/packages.config +++ b/src/ResourceManager/Sql/Commands.Sql/packages.config @@ -4,12 +4,16 @@ + + + + @@ -17,4 +21,6 @@ + + diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj index 24c2036515c6..10bdca9a79ee 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj @@ -61,6 +61,10 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + + ..\..\..\packages\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll + True + False ..\..\..\packages\Microsoft.Azure.Management.StreamAnalytics.1.7.3\lib\net40\Microsoft.Azure.Management.StreamAnalytics.dll @@ -69,6 +73,18 @@ False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.11-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + False + ..\..\..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll + + + False + ..\..\..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll + + + False + ..\..\..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll True @@ -88,6 +104,10 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll + + False + ..\..\..\packages\WindowsAzure.Storage.5.0.0\lib\net40\Microsoft.WindowsAzure.Storage.dll + False ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll @@ -105,6 +125,10 @@ ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll + + False + ..\..\..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll + diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config index d1a78d360d8b..9df41525bf19 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/packages.config @@ -4,15 +4,21 @@ + + + + + + \ No newline at end of file diff --git a/src/ServiceManagement/Common/Commands.Common.Test/Commands.Common.Test.csproj b/src/ServiceManagement/Common/Commands.Common.Test/Commands.Common.Test.csproj index 21143941163e..1320be72792c 100644 --- a/src/ServiceManagement/Common/Commands.Common.Test/Commands.Common.Test.csproj +++ b/src/ServiceManagement/Common/Commands.Common.Test/Commands.Common.Test.csproj @@ -127,7 +127,7 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll diff --git a/src/ServiceManagement/Common/Commands.Common.Test/packages.config b/src/ServiceManagement/Common/Commands.Common.Test/packages.config index 5f8147025739..6bf38e990c1c 100644 --- a/src/ServiceManagement/Common/Commands.Common.Test/packages.config +++ b/src/ServiceManagement/Common/Commands.Common.Test/packages.config @@ -20,7 +20,7 @@ - + diff --git a/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj index 87c3c491a5cd..ad81f675f239 100644 --- a/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj +++ b/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj @@ -120,7 +120,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.4\lib\net40\Microsoft.WindowsAzure.Management.Network.dll diff --git a/src/ServiceManagement/Common/Commands.ScenarioTest/packages.config b/src/ServiceManagement/Common/Commands.ScenarioTest/packages.config index ae30f509d6c5..15923f5ea852 100644 --- a/src/ServiceManagement/Common/Commands.ScenarioTest/packages.config +++ b/src/ServiceManagement/Common/Commands.ScenarioTest/packages.config @@ -20,7 +20,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj index 2f703b2045dd..9a3625aa5a14 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj @@ -128,7 +128,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config index 7a5b66132786..3c27aff765cb 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config @@ -19,7 +19,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj index fe327640d56b..d0b008af425a 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj @@ -129,7 +129,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll False diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config index ea48be48e846..6060297113bd 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config @@ -19,7 +19,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj index 141b1e618355..79de3cc82f3d 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj @@ -129,7 +129,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.4\lib\net40\Microsoft.WindowsAzure.Management.Network.dll diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/AzureServiceExtensionTests.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/AzureServiceExtensionTests.cs index 30a33f60ad98..fc26ce1d2667 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/AzureServiceExtensionTests.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/AzureServiceExtensionTests.cs @@ -18,6 +18,7 @@ using System.IO; using System.Reflection; using Microsoft.VisualStudio.TestTools.UnitTesting; +using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions; using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; @@ -146,6 +147,7 @@ public void AzureServiceExtensionConfigScenarioTest() DeploymentInfoContext result = vmPowershellCmdlets.GetAzureDeployment(_serviceName, DeploymentSlotType.Production); pass = Utilities.PrintAndCompareDeployment(result, _serviceName, DeploymentName, DeploymentLabel, DeploymentSlotType.Production, null, 2); Console.WriteLine("successfully deployed the package"); + var extId = result.ExtensionConfiguration.AllRoles[0].Id; ExtensionContext resultExtensionContext = vmPowershellCmdlets.GetAzureServiceExtension(_serviceName)[0]; @@ -159,6 +161,27 @@ public void AzureServiceExtensionConfigScenarioTest() VerifyRDP(_serviceName, rdpPath); + ExtensionConfigurationInput extConfig = vmPowershellCmdlets.NewAzureServiceExtensionConfig(extId, "Uninstall"); + + try + { + vmPowershellCmdlets.SetAzureDeploymentConfig(_serviceName, DeploymentSlotType.Production, + _configPath.FullName, extConfig); + Assert.Fail("Succeeded, but extected to fail!"); + } + catch (Exception e) + { + if (e.ToString().Contains("BadRequest") + || ((e.InnerException != null) && (e.InnerException.ToString().Contains("BadRequest")))) + { + Console.WriteLine(e.ToString()); + } + else + { + throw; + } + } + vmPowershellCmdlets.RemoveAzureServiceExtension( serviceName: _serviceName, extensionName: _extensionName, @@ -178,8 +201,6 @@ public void AzureServiceExtensionConfigScenarioTest() Console.WriteLine("Failed to get RDP file as expected"); } - - vmPowershellCmdlets.RemoveAzureDeployment(_serviceName, DeploymentSlotType.Production, true); pass &= Utilities.CheckRemove(vmPowershellCmdlets.GetAzureDeployment, _serviceName, DeploymentSlotType.Production); diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRTest.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRTest.cs index d5bbd3eb0add..d269272c29a5 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRTest.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PIRTest.cs @@ -342,12 +342,12 @@ public void AzurePlatformVMImageScenarioTest() private void SwitchToPublisher() { - vmPowershellCmdlets.SetDefaultAzureSubscription(publisher); + vmPowershellCmdlets.SetDefaultAzureSubscription(publisherSubId); } private void SwitchToNormalUser() { - vmPowershellCmdlets.SetDefaultAzureSubscription(normaluser); + vmPowershellCmdlets.SetDefaultAzureSubscription(normaluserSubId); } private void WaitForReplicationComplete(string imageName) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/NewAzureServiceExtensionConfigCmdletInfo.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/NewAzureServiceExtensionConfigCmdletInfo.cs index a677b63574a3..a3e61140ce1a 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/NewAzureServiceExtensionConfigCmdletInfo.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/PaasCmdletInfo/NewAzureServiceExtensionConfigCmdletInfo.cs @@ -55,5 +55,16 @@ public NewAzureServiceExtensionConfigCmdletInfo(string thumbprint, string algori this.cmdletParams.Add(new CmdletParam("ThumbprintAlgorithm", algorithm)); } } + + public NewAzureServiceExtensionConfigCmdletInfo(string extensionId, string extensionStatus, string[] roles) + { + this.cmdletName = Utilities.NewAzureServiceExtensionConfigCmdletName; + this.cmdletParams.Add(new CmdletParam("ExtensionId", extensionId)); + this.cmdletParams.Add(new CmdletParam("ExtensionState", extensionStatus)); + if (roles != null) + { + this.cmdletParams.Add(new CmdletParam("Role", roles)); + } + } } } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs index bd4dac37d312..104126063e00 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementCmdletTestHelper.cs @@ -1319,6 +1319,14 @@ public ExtensionConfigurationInput NewAzureServiceExtensionConfig(string extensi providerNamespace, publicConfig, privateConfig, version)); } + public ExtensionConfigurationInput NewAzureServiceExtensionConfig(string extensionId, string extensionStatus, + string [] roles = null) + { + return + RunPSCmdletAndReturnFirst( + new NewAzureServiceExtensionConfigCmdletInfo(extensionId, extensionStatus, roles)); + } + // Set-AzureServiceExtension public ManagementOperationContext SetAzureServiceExtension(string serviceName, string extensionName, string providerNamespace, string publicConfig, string privateConfig, string[] roles = null, string slot = null, string version = null) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs index 8772ea902753..d2c5285e76f9 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/FunctionalTests/ServiceManagementTest.cs @@ -341,7 +341,7 @@ protected static void ReImportSubscription() { // Re-import the subscription. vmPowershellCmdlets.ImportAzurePublishSettingsFile(); - vmPowershellCmdlets.SetDefaultAzureSubscription(CredentialHelper.DefaultSubscriptionName); + vmPowershellCmdlets.SetDefaultAzureSubscription(defaultAzureSubscription.SubscriptionId); vmPowershellCmdlets.SetAzureSubscription(defaultAzureSubscription.SubscriptionId, defaultAzureSubscription.CurrentStorageAccountName); } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config index fb69a3d8d910..d352f0160a3c 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/packages.config @@ -20,7 +20,7 @@ - + diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj b/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj index 72b071d3279a..d7ed5cea149b 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Commands.ServiceManagement.csproj @@ -127,7 +127,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll False diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Common/DiagnosticsHelper.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Common/DiagnosticsHelper.cs index 1904a26a6db7..a12343621b4f 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Common/DiagnosticsHelper.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Common/DiagnosticsHelper.cs @@ -35,6 +35,7 @@ public static class DiagnosticsHelper private static string XmlNamespace = "http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration"; private static string EncodedXmlCfg = "xmlCfg"; private static string WadCfg = "WadCfg"; + private static string WadCfgBlob = "WadCfgBlob"; private static string StorageAccount = "storageAccount"; private static string Path = "path"; private static string ExpandResourceDirectory = "expandResourceDirectory"; @@ -162,6 +163,7 @@ private static Hashtable GetPublicConfigFromJsonFile(string configurationPath, s var publicConfig = GetPublicConfigJObjectFromJsonFile(configurationPath); var properties = publicConfig.Properties().Select(p => p.Name); var wadCfgProperty = properties.FirstOrDefault(p => p.Equals(WadCfg, StringComparison.OrdinalIgnoreCase)); + var wadCfgBlobProperty = properties.FirstOrDefault(p => p.Equals(WadCfgBlob, StringComparison.OrdinalIgnoreCase)); var xmlCfgProperty = properties.FirstOrDefault(p => p.Equals(EncodedXmlCfg, StringComparison.OrdinalIgnoreCase)); var hashTable = new Hashtable(); @@ -171,13 +173,17 @@ private static Hashtable GetPublicConfigFromJsonFile(string configurationPath, s { hashTable.Add(wadCfgProperty, publicConfig[wadCfgProperty]); } + else if (wadCfgBlobProperty != null) + { + hashTable.Add(wadCfgBlobProperty, publicConfig[wadCfgBlobProperty]); + } else if (xmlCfgProperty != null) { hashTable.Add(xmlCfgProperty, publicConfig[xmlCfgProperty]); } else { - throw new ArgumentException(Properties.Resources.DiagnosticsExtensionConfigNoWadCfgOrXmlCfg); + throw new ArgumentException(Properties.Resources.DiagnosticsExtensionIaaSConfigElementNotDefined); } return hashTable; diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/BaseAzureServiceExtensionCmdlet.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/BaseAzureServiceExtensionCmdlet.cs index f650aefa8c5c..7eaf07ad2739 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/BaseAzureServiceExtensionCmdlet.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/BaseAzureServiceExtensionCmdlet.cs @@ -39,6 +39,7 @@ public abstract class BaseAzureServiceExtensionCmdlet : ServiceManagementBaseCmd protected const string NewExtensionParameterSetName = "NewExtension"; protected const string NewExtensionUsingThumbprintParameterSetName = "NewExtensionUsingThumbprint"; + protected const string UpdateExtensionStatusParameterSetName = "UpdateExtensionStatusParameterSetName"; protected const string SetExtensionParameterSetName = "SetExtension"; protected const string SetExtensionUsingThumbprintParameterSetName = "SetExtensionUsingThumbprint"; protected const string SetExtensionUsingDiagnosticsConfigurationParameterSetName = "SetExtensionUsingDiagnosticsConfiguration"; @@ -66,6 +67,7 @@ public abstract class BaseAzureServiceExtensionCmdlet : ServiceManagementBaseCmd public virtual string ExtensionName { get; set; } public virtual string Version { get; set; } public virtual string ExtensionId { get; set; } + public virtual string ExtensionState { get; set; } public BaseAzureServiceExtensionCmdlet() : base() diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionConfigurationInput.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionConfigurationInput.cs index 9271713d190e..de7fcd1c46af 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionConfigurationInput.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionConfigurationInput.cs @@ -28,5 +28,6 @@ public class ExtensionConfigurationInput public string PrivateConfiguration { get; set; } public ExtensionRoleList Roles { get; set; } public X509Certificate2 X509Certificate { get; set; } + public string State { get; set; } } } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs index e9dc2a059c5f..f4f5c640d425 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs @@ -344,6 +344,40 @@ public ExtensionConfiguration Add(DeploymentGetResponse deployment, DeploymentGe return extConfig; } + public ExtensionConfiguration UpdateExtensionState(ExtensionConfigurationInput input) + { + var extConfig = new ExtensionConfiguration(); + if (input.Roles == null || input.Roles.Count == 1 && input.Roles[0].RoleType == ExtensionRoleType.AllRoles) + { + + extConfig.AllRoles = new List(); + extConfig.AllRoles.Add(new ExtensionConfiguration.Extension + { + Id = input.Id, + State = input.State + }); + } + else + { + extConfig.NamedRoles = new List(); + foreach (var role in input.Roles) + { + var ext = new List(); + ext.Add(new ExtensionConfiguration.Extension + { + Id = input.Id, + State = input.State + }); + extConfig.NamedRoles.Add(new ExtensionConfiguration.NamedRole + { + RoleName = role.RoleName, + Extensions = ext + }); + } + } + return extConfig; + } + public static bool Validate(ExtensionConfigurationInput[] inputs, out string errorConfigInput) { var roleList = (from c in inputs diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionParameterPropertyHelper.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionParameterPropertyHelper.cs index f7a0339702d0..269485aaeee7 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionParameterPropertyHelper.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionParameterPropertyHelper.cs @@ -29,5 +29,6 @@ public static class ExtensionParameterPropertyHelper public const string ExtensionNameHelpMessage = "Extension Name"; public const string VersionHelpMessage = "Extension Version"; public const string ExtensionIdHelpMessage = "Extension ID"; + public const string ExtensionStateHelpMessage = "Extension State. It is either Enable, Disable or Uninstall"; } } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs index 5585fb494c8d..d3fff4a56c93 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs @@ -50,6 +50,7 @@ public ExtensionRole(string roleName) PrefixName = RoleName = roleName.Trim(); PrefixName = PrefixName.Replace(".", string.Empty); PrefixName = PrefixName.Replace(" ", string.Empty); + PrefixName = PrefixName.Replace("_", string.Empty); RoleType = ExtensionRoleType.NamedRoles; Default = false; } @@ -64,6 +65,7 @@ public string GetExtensionId(string extensionName, string slot, int index) { var normalizedExtName = extensionName.Replace(".", string.Empty); normalizedExtName = normalizedExtName.Replace(" ", string.Empty); + normalizedExtName = normalizedExtName.Replace("_", string.Empty); var suffix = new StringBuilder(); suffix.AppendFormat(ExtensionIdSuffixTemplate, normalizedExtName, slot, index); diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/NewAzureServiceExtensionConfig.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/NewAzureServiceExtensionConfig.cs index 03596eea0db5..8ad7414b96bb 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/NewAzureServiceExtensionConfig.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/NewAzureServiceExtensionConfig.cs @@ -26,9 +26,11 @@ public class NewAzureServiceExtensionConfigCommand : BaseAzureServiceExtensionCm { private const string NetExtensionParameterSetName = NewExtensionParameterSetName; private const string NetExtensionUsingThumbprintParameterSetName = NewExtensionUsingThumbprintParameterSetName; + private const string NetUpdateExtensionStatusParameterSetName = UpdateExtensionStatusParameterSetName; [Parameter(Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = NetExtensionParameterSetName, HelpMessage = ExtensionParameterPropertyHelper.RoleHelpMessage)] [Parameter(Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = NetExtensionUsingThumbprintParameterSetName, HelpMessage = ExtensionParameterPropertyHelper.RoleHelpMessage)] + [Parameter(Position = 0, ValueFromPipelineByPropertyName = true, ParameterSetName = NetUpdateExtensionStatusParameterSetName, HelpMessage = ExtensionParameterPropertyHelper.ExtensionIdHelpMessage)] [ValidateNotNullOrEmpty] public override string[] Role { @@ -109,6 +111,7 @@ public override string Version [Parameter(Position = 8, Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = NetExtensionParameterSetName, HelpMessage = ExtensionParameterPropertyHelper.ExtensionIdHelpMessage)] [Parameter(Position = 8, Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = NetExtensionUsingThumbprintParameterSetName, HelpMessage = ExtensionParameterPropertyHelper.ExtensionIdHelpMessage)] + [Parameter(Position = 1, Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = NetUpdateExtensionStatusParameterSetName, HelpMessage = ExtensionParameterPropertyHelper.ExtensionIdHelpMessage)] [ValidateNotNullOrEmpty] public override string ExtensionId { @@ -116,6 +119,14 @@ public override string ExtensionId set; } + [Parameter(Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = NetUpdateExtensionStatusParameterSetName, HelpMessage = ExtensionParameterPropertyHelper.ExtensionStateHelpMessage)] + [ValidateSet("Enable", "Disable", "Uninstall", IgnoreCase = true)] + public override string ExtensionState + { + get; + set; + } + protected override void ValidateParameters() { base.ValidateParameters(); @@ -129,6 +140,7 @@ public void ExecuteCommand() WriteObject(new ExtensionConfigurationInput { Id = ExtensionId, + State = ExtensionState, CertificateThumbprint = CertificateThumbprint, ThumbprintAlgorithm = ThumbprintAlgorithm, ProviderNameSpace = ProviderNamespace, diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Diagnostics/BaseAzureServiceDiagnosticsExtension.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Diagnostics/BaseAzureServiceDiagnosticsExtension.cs index 369200f2b54e..b368789d822b 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Diagnostics/BaseAzureServiceDiagnosticsExtension.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Diagnostics/BaseAzureServiceDiagnosticsExtension.cs @@ -123,33 +123,43 @@ protected override void ValidateConfiguration() publicConfigElem.SetAttributeValue("xmlns", XmlNamespace); PublicConfiguration = publicConfigElem.ToString(); - // The element is not meant to be set by the user in the public config. - // Make sure it matches the storage account in the private config. XmlDocument doc = new XmlDocument(); XmlNamespaceManager ns = new XmlNamespaceManager(doc.NameTable); ns.AddNamespace("ns", XmlNamespace); doc.Load(DiagnosticsConfigurationPath); - var node = doc.SelectSingleNode("//ns:StorageAccount", ns); - if(node != null) + + // Make sure the configuration element exist + var configElement = doc.SelectSingleNode("//ns:WadCfg", ns) ?? doc.SelectSingleNode("//ns:WadCfgBlob", ns); + if (configElement == null) + { + throw new ArgumentException(Resources.DiagnosticsExtensionPaaSConfigElementNotDefined); + } + + // The element is not meant to be set by the user in the public config. + // Make sure it matches the storage account in the private config. + var storageAccountElement = doc.SelectSingleNode("//ns:StorageAccount", ns); + if(storageAccountElement != null) { // The StorageAccount is empty, we must set it - if (string.IsNullOrEmpty(node.InnerText)) + if (string.IsNullOrEmpty(storageAccountElement.InnerText)) { - var insertIndex = PublicConfiguration.IndexOf(""); - PublicConfiguration = PublicConfiguration.Insert(insertIndex, StorageAccountName); + storageAccountElement.InnerText = StorageAccountName; + PublicConfiguration = doc.OuterXml; } - else if (!string.IsNullOrEmpty(node.InnerText) && string.Compare(node.InnerText, StorageAccountName, true) != 0) + else if (!string.IsNullOrEmpty(storageAccountElement.InnerText) && string.Compare(storageAccountElement.InnerText, StorageAccountName, true) != 0) { throw new ArgumentException(Resources.DiagnosticsExtensionNoMatchStorageAccount); } } else { - // the StorageAccount is not there. we must set it - string storageAccountElem = "\n" + StorageAccountName + "\n"; - // insert it after - int wadCfgEndIndex = PublicConfiguration.IndexOf(""); - PublicConfiguration = PublicConfiguration.Insert(wadCfgEndIndex + "".Length, storageAccountElem); + // The StorageAccount is not there. we must set it + storageAccountElement = doc.CreateElement("StorageAccount", XmlNamespace); + storageAccountElement.InnerText = StorageAccountName; + + // Insert it after or + configElement.ParentNode.AppendChild(storageAccountElement); + PublicConfiguration = doc.OuterXml; } // Make sure the storage account name in PrivateConfig matches. diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/HostedServices/SetAzureDeployment.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/HostedServices/SetAzureDeployment.cs index 33b93a0d6de5..4f94fad9a5a6 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/HostedServices/SetAzureDeployment.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/HostedServices/SetAzureDeployment.cs @@ -192,7 +192,10 @@ public void ExecuteCommand() InvokeInOperationContext(() => peerDeployment = func(peerSlottype)); ExtensionManager extensionMgr = new ExtensionManager(this, ServiceName); - extConfig = extensionMgr.Add(currentDeployment, peerDeployment, ExtensionConfiguration, this.Slot); + + extConfig = (ExtensionConfiguration[0].State == null) + ? extensionMgr.Add(currentDeployment, peerDeployment, ExtensionConfiguration, this.Slot) + : extensionMgr.UpdateExtensionState(ExtensionConfiguration[0]); } // Upgrade Parameter Set diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Model/DeploymentInfoContext.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Model/DeploymentInfoContext.cs index 1cb67fd6b9f8..8c19bb15d98b 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Model/DeploymentInfoContext.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Model/DeploymentInfoContext.cs @@ -180,6 +180,12 @@ public PVM.LoadBalancerList LoadBalancers protected set; } + public PVM.ExtensionConfiguration ExtensionConfiguration + { + get; + protected set; + } + public DeploymentInfoContext(DeploymentGetResponse deployment) { this.Slot = deployment.DeploymentSlot.ToString(); @@ -287,6 +293,35 @@ from b in deployment.LoadBalancers this.InternalLoadBalancerName = this.LoadBalancers == null || !this.LoadBalancers.Any() ? null : this.LoadBalancers.First().Name; } + + // ExtensionConfiguration + if (deployment.ExtensionConfiguration != null) + { + this.ExtensionConfiguration = new PVM.ExtensionConfiguration(); + if (deployment.ExtensionConfiguration.AllRoles != null) + { + this.ExtensionConfiguration.AllRoles = new PVM.AllRoles( + from all in deployment.ExtensionConfiguration.AllRoles + select new PVM.Extension(all.Id, 0, all.State)); + } + + if (deployment.ExtensionConfiguration.NamedRoles != null) + { + this.ExtensionConfiguration.NamedRoles = new PVM.NamedRoles(); + foreach (var role in deployment.ExtensionConfiguration.NamedRoles) + { + var extList = new PVM.ExtensionList( + from ext in role.Extensions + select new PVM.Extension(ext.Id, 0, ext.State)); + + this.ExtensionConfiguration.NamedRoles.Add(new PVM.RoleExtensions + { + RoleName = role.RoleName, + Extensions = extList + }); + } + } + } } public XDocument SerializeRolesConfiguration() diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.Designer.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.Designer.cs index 02b39bfd7f05..bd16e884603c 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.Designer.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.Designer.cs @@ -485,11 +485,11 @@ public static string DeprovisioningVM { } /// - /// Looks up a localized string similar to WadCfg or xmlCfg is not defined in configuration file.. + /// Looks up a localized string similar to No WadCfg, WadCfgBlob or xmlCfg element defined in the configuration file.. /// - public static string DiagnosticsExtensionConfigNoWadCfgOrXmlCfg { + public static string DiagnosticsExtensionIaaSConfigElementNotDefined { get { - return ResourceManager.GetString("DiagnosticsExtensionConfigNoWadCfgOrXmlCfg", resourceCulture); + return ResourceManager.GetString("DiagnosticsExtensionIaaSConfigElementNotDefined", resourceCulture); } } @@ -565,6 +565,15 @@ public static string DiagnosticsExtensionNullStorageAccountName { } } + /// + /// Looks up a localized string similar to No WadCfg or WadCfgBlob element defined in the configuration file.. + /// + public static string DiagnosticsExtensionPaaSConfigElementNotDefined { + get { + return ResourceManager.GetString("DiagnosticsExtensionPaaSConfigElementNotDefined", resourceCulture); + } + } + /// /// Looks up a localized string similar to Your xml configuration file doesn't start with the required header <?xml version="1.0" encoding="utf-8"?>. /// diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.resx b/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.resx index b1b555e22972..a1f9d1f8839c 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.resx +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Properties/Resources.resx @@ -783,10 +783,13 @@ WadCfg start element in the config is not matching the end element. - - WadCfg or xmlCfg is not defined in configuration file. + + No WadCfg, WadCfgBlob or xmlCfg element defined in the configuration file. Invalid diagnostics configuration file. It should be in either xml or json format. + + No WadCfg or WadCfgBlob element defined in the configuration file. + \ No newline at end of file diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config b/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config index 02e97c5e9c9a..7f2978099228 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/packages.config @@ -18,7 +18,7 @@ - + diff --git a/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj b/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj index 2a030eef7f27..4f1f11b0c6ff 100644 --- a/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj +++ b/src/ServiceManagement/Network/Commands.Network.Test/Commands.ServiceManagement.Network.Test.csproj @@ -106,7 +106,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.4\lib\net40\Microsoft.WindowsAzure.Management.Network.dll diff --git a/src/ServiceManagement/Network/Commands.Network.Test/packages.config b/src/ServiceManagement/Network/Commands.Network.Test/packages.config index fce22eb3e263..c9e27783befb 100644 --- a/src/ServiceManagement/Network/Commands.Network.Test/packages.config +++ b/src/ServiceManagement/Network/Commands.Network.Test/packages.config @@ -18,7 +18,7 @@ - + diff --git a/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj b/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj index b4bbb1748bce..d1b2404a9038 100644 --- a/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj +++ b/src/ServiceManagement/Network/Commands.Network/Commands.ServiceManagement.Network.csproj @@ -103,7 +103,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll False diff --git a/src/ServiceManagement/Network/Commands.Network/packages.config b/src/ServiceManagement/Network/Commands.Network/packages.config index 2b704b7115b6..df4fa5de8bd8 100644 --- a/src/ServiceManagement/Network/Commands.Network/packages.config +++ b/src/ServiceManagement/Network/Commands.Network/packages.config @@ -18,7 +18,7 @@ - + diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj index e15261da52e1..19f47e0794fc 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj @@ -111,7 +111,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Network.7.0.4\lib\net40\Microsoft.WindowsAzure.Management.Network.dll diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config index 252fc6bbefd2..09e21c0de9c9 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/packages.config @@ -16,7 +16,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj b/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj index 877a1cfe67cb..21b4fa4c1299 100644 --- a/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj +++ b/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj @@ -96,7 +96,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll diff --git a/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config b/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config index f7cd715b9f92..52e42c131f19 100644 --- a/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config +++ b/src/ServiceManagement/Services/Commands.Test.Utilities/packages.config @@ -13,7 +13,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj b/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj index 16a8500684db..aca067a8dad2 100644 --- a/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj +++ b/src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj @@ -132,7 +132,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.ExpressRoute.0.18.14-preview\lib\net40\Microsoft.WindowsAzure.Management.ExpressRoute.dll diff --git a/src/ServiceManagement/Services/Commands.Test/packages.config b/src/ServiceManagement/Services/Commands.Test/packages.config index b8a5bb460f44..0835c6fe37e6 100644 --- a/src/ServiceManagement/Services/Commands.Test/packages.config +++ b/src/ServiceManagement/Services/Commands.Test/packages.config @@ -20,7 +20,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj b/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj index 259e67d1ab9a..71d6ec0ce294 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj +++ b/src/ServiceManagement/Services/Commands.Utilities/Commands.Utilities.csproj @@ -134,7 +134,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll False diff --git a/src/ServiceManagement/Services/Commands.Utilities/packages.config b/src/ServiceManagement/Services/Commands.Utilities/packages.config index 70b037b1d7d6..4535f53bd8d4 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/packages.config +++ b/src/ServiceManagement/Services/Commands.Utilities/packages.config @@ -19,7 +19,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands/Commands.csproj b/src/ServiceManagement/Services/Commands/Commands.csproj index e55786f494e8..34b84ad088e0 100644 --- a/src/ServiceManagement/Services/Commands/Commands.csproj +++ b/src/ServiceManagement/Services/Commands/Commands.csproj @@ -122,7 +122,7 @@ False - ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.3.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.12.5.0\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll False diff --git a/src/ServiceManagement/Services/Commands/packages.config b/src/ServiceManagement/Services/Commands/packages.config index bcde5cd6b41c..c476087614db 100644 --- a/src/ServiceManagement/Services/Commands/packages.config +++ b/src/ServiceManagement/Services/Commands/packages.config @@ -16,7 +16,7 @@ - + diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj index cec634ca02f2..f9defd8bf7b8 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/Commands.TrafficManager.csproj @@ -62,6 +62,15 @@ False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.11-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + ..\..\..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll + + + ..\..\..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll + + + ..\..\..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll True @@ -114,6 +123,9 @@ ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll + + ..\..\..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll + diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config index 271578ddb10c..4d2752df101a 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager/packages.config @@ -8,6 +8,9 @@ + + + @@ -15,4 +18,5 @@ + \ No newline at end of file From 6195ff49be83fc7db24331e126a60518ba042e36 Mon Sep 17 00:00:00 2001 From: Pankaj Singh Negi Date: Fri, 5 Feb 2016 13:27:58 -0800 Subject: [PATCH 14/19] AssemblyInfo fixed Removed InternalvisibleTo attribute as not needed --- .../LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs index f0c1b94ca76e..4c68e2ca7928 100644 --- a/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/LogicApp/Commands.LogicApp/Properties/AssemblyInfo.cs @@ -30,6 +30,4 @@ [assembly: Guid("e50b915e-1c94-4cd1-bbea-72ff2246d237")] [assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyFileVersion("1.0.0")] - -[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.LogicApp.Test")] +[assembly: AssemblyFileVersion("1.0.0")] \ No newline at end of file From 3e1c1805ecefff33a8928ce79a2ddc74eed40e8f Mon Sep 17 00:00:00 2001 From: markcowl Date: Fri, 5 Feb 2016 16:03:57 -0800 Subject: [PATCH 15/19] #1779 Fix display issue for subscription with extended details --- ...indowsAzure.Commands.Profile.format.ps1xml | 114 ++++++++++++++++++ 1 file changed, 114 insertions(+) diff --git a/src/ServiceManagement/Profile/Commands.Profile/Microsoft.WindowsAzure.Commands.Profile.format.ps1xml b/src/ServiceManagement/Profile/Commands.Profile/Microsoft.WindowsAzure.Commands.Profile.format.ps1xml index 3eb562cce517..33a87c1aa0f2 100644 --- a/src/ServiceManagement/Profile/Commands.Profile/Microsoft.WindowsAzure.Commands.Profile.format.ps1xml +++ b/src/ServiceManagement/Profile/Commands.Profile/Microsoft.WindowsAzure.Commands.Profile.format.ps1xml @@ -84,5 +84,119 @@ + + Microsoft.WindowsAzure.Commands.Profile.Models.PSAzureSubscriptionExtended + + Microsoft.WindowsAzure.Commands.Profile.Models.PSAzureSubscriptionExtended + + + + + + + ActiveDirectoryUserId + + + Account + + + Certificate + + + AccountAdminLiveEmailId + + + CurrentCoreCount + + + CurrentHostedServices + + + CurrentDnsServers + + + CurrentLocalNetworkSites + + + CurrentVirtualNetworkSites + + + CurrentStorageAccounts + + + MaxCoreCount + + + MaxDnsServers + + + MaxHostedServices + + + MaxLocalNetworkSites + + + MaxVirtualNetworkSites + + + MaxStorageAccounts + + + ServiceAdminLiveEmailId + + + SubscriptionRealName + + + SubscriptionStatus + + + OperationDescription + + + OperationId + + + OperationStatus + + + ServiceEndpoint + + + ResourceManagerEndpoint + + + GalleryEndpoint + + + SubscriptionId + + + SubscriptionName + + + Environment + + + DefaultAccount + + + IsDefault + + + IsCurrent + + + TenantId + + + + $_.GetAccountName() + + + + + + From 59f49f1206b852db1dc750d6b72b2753b18a6ad4 Mon Sep 17 00:00:00 2001 From: huangpf Date: Fri, 5 Feb 2016 23:39:32 -0800 Subject: [PATCH 16/19] Update --- setup/azurecmdfiles.wxi | 13248 +++++++++++++++++++------------------- 1 file changed, 6664 insertions(+), 6584 deletions(-) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 32066b7b8500..a257f77c1b0f 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -1,6597 +1,6677 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From a3c34a26f6d99e95348a4f2768b6bc089f2f148c Mon Sep 17 00:00:00 2001 From: Torsten Grabs Date: Mon, 8 Feb 2016 11:27:17 -0800 Subject: [PATCH 17/19] Documentation terminology and typo fixes. Fixed terminology and some typos for the new *-AzureRmSqlServerCommunicationLink cmdlets for Elastic Transactions. --- .../Microsoft.Azure.Commands.Sql.dll-Help.xml | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml index 8dcd923a6f94..01ead1f92cc7 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml +++ b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml @@ -4895,7 +4895,7 @@ Status : Queued Get-AzureRmSqlServerCommunicationLink - Gets server communication links and their property values in an Azure SQL Server. + Gets server communication links and their property values in an Azure SQL Database. @@ -5012,7 +5012,7 @@ Status : Queued PS C:\> Get-AzureRmSqlServerCommunicationLink -ResourceGroupName "resourcegroup01" -ServerName "server01" - Gets all server-to-server partnership for Elastic transactions that the specified server is involved in. + Gets all server-to-server partnerships for Elastic transactions that the specified server in Azure SQL Database is involved in. @@ -7194,7 +7194,7 @@ FirewallRuleName : rule01 New-AzureRmSqlServerCommunicationLink - Creates an Azure SQL Server partnership for Elastic transactions. Once established, Elastic transactions will be able to span databases in either of the servers paired. + Creates a communication link for Elastic transactions between two logical servers in Azure SQL Database. Once established, Elastic transactions will be able to span databases in either of the servers paired. @@ -7204,7 +7204,7 @@ FirewallRuleName : rule01 - The New-AzureRmSqlServerCommunicationLink cmdlet creates an Azure SQL Server partnership for Elastic transactions. The partnership can be set up for two servers at a time and once established, Elastic transactions will be able to span databases in either of the servers paired. Users can create many server partnerships as necessary and involve a server in multiple partnerships to span Elastic transactions over a larger number of servers. + The New-AzureRmSqlServerCommunicationLink cmdlet creates a communication link for Elastic transactions between two logical servers in Azure SQL Database. The communication link can be set up for two servers at a time and once established, Elastic transactions will be able to span databases in either of the servers paired. Users can create as many server partnerships as necessary and involve a server in multiple partnerships to span Elastic transactions over a larger number of servers. @@ -7324,7 +7324,7 @@ FirewallRuleName : rule01 - -------------------------- Example 1: Create a new Azure SQL Server communication link -------------------------- + -------------------------- Example 1: Create a new communication link -------------------------- PS C:\> @@ -9300,7 +9300,7 @@ resourcegroup01 server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b Remove-AzureRmSqlServerCommunicationLink - Deletes an Azure SQL Server communication link. + Deletes a communication link for Elastic transactions between two logical servers in Azure SQL Database. @@ -9346,14 +9346,14 @@ resourcegroup01 server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b WhatIf - Shows what would happen if the cmdlet runs. The cmdlet is not run.Shows what would happen if the cmdlet runs. The cmdlet is not run. + Shows what would happen if the cmdlet runs. The cmdlet is not run. SwitchParameter Confirm - Prompts you for confirmation before running the cmdlet.Prompts you for confirmation before running the cmdlet. + Prompts you for confirmation before running the cmdlet. SwitchParameter @@ -9411,7 +9411,7 @@ resourcegroup01 server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b WhatIf - Shows what would happen if the cmdlet runs. The cmdlet is not run.Shows what would happen if the cmdlet runs. The cmdlet is not run. + Shows what would happen if the cmdlet runs. The cmdlet is not run. SwitchParameter @@ -9423,7 +9423,7 @@ resourcegroup01 server01 DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b Confirm - Prompts you for confirmation before running the cmdlet.Prompts you for confirmation before running the cmdlet. + Prompts you for confirmation before running the cmdlet. SwitchParameter @@ -14101,4 +14101,4 @@ The final command upgrades the existing server named server02 in the resource g - \ No newline at end of file + From d07b1ebe02d840f13506984e7fa1ee5ad8a6fb91 Mon Sep 17 00:00:00 2001 From: huangpf Date: Mon, 8 Feb 2016 20:31:57 -0800 Subject: [PATCH 18/19] Fix Ext ID --- .../Extensions/Common/ExtensionRole.cs | 24 ++++++++++++++----- 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs index d3fff4a56c93..772144feb5cd 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs @@ -14,6 +14,7 @@ using System; using System.Text; +using System.Text.RegularExpressions; namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions { @@ -28,6 +29,21 @@ public class ExtensionRole public ExtensionRoleType RoleType { get; private set; } public bool Default { get; private set; } + private static string RemoveDisallowedCharacters(string roleName) + { + // Remove characters that are not allowed in the extension id + var disallowedCharactersRegex = new Regex(@"[^A-Za-z0-9\-]"); + var match = disallowedCharactersRegex.Match(roleName); + + while (match.Success) + { + roleName = roleName.Remove(match.Index, match.Length); + match = disallowedCharactersRegex.Match(roleName); + } + + return roleName; + } + public ExtensionRole() { RoleName = string.Empty; @@ -48,9 +64,7 @@ public ExtensionRole(string roleName) else { PrefixName = RoleName = roleName.Trim(); - PrefixName = PrefixName.Replace(".", string.Empty); - PrefixName = PrefixName.Replace(" ", string.Empty); - PrefixName = PrefixName.Replace("_", string.Empty); + PrefixName = RemoveDisallowedCharacters(PrefixName); RoleType = ExtensionRoleType.NamedRoles; Default = false; } @@ -63,9 +77,7 @@ public override string ToString() public string GetExtensionId(string extensionName, string slot, int index) { - var normalizedExtName = extensionName.Replace(".", string.Empty); - normalizedExtName = normalizedExtName.Replace(" ", string.Empty); - normalizedExtName = normalizedExtName.Replace("_", string.Empty); + var normalizedExtName = RemoveDisallowedCharacters(extensionName); var suffix = new StringBuilder(); suffix.AppendFormat(ExtensionIdSuffixTemplate, normalizedExtName, slot, index); From 343836ec36de2c31dcdbd89d129c0f2b59fb31b4 Mon Sep 17 00:00:00 2001 From: huangpf Date: Mon, 8 Feb 2016 22:30:55 -0800 Subject: [PATCH 19/19] Merge branch 'dev' of https://github.com/huangpf/azure-powershell into dev --- .../Commands.ScenarioTest.csproj | 1 + .../ServiceManagement/UnitTests.cs | 76 +++++++++++++++++++ .../Extensions/Common/ExtensionRole.cs | 7 ++ 3 files changed, 84 insertions(+) create mode 100644 src/ServiceManagement/Common/Commands.ScenarioTest/ServiceManagement/UnitTests.cs diff --git a/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj index ad81f675f239..df37c366081e 100644 --- a/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj +++ b/src/ServiceManagement/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj @@ -380,6 +380,7 @@ + diff --git a/src/ServiceManagement/Common/Commands.ScenarioTest/ServiceManagement/UnitTests.cs b/src/ServiceManagement/Common/Commands.ScenarioTest/ServiceManagement/UnitTests.cs new file mode 100644 index 000000000000..6d82aa4103de --- /dev/null +++ b/src/ServiceManagement/Common/Commands.ScenarioTest/ServiceManagement/UnitTests.cs @@ -0,0 +1,76 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions; +using System; +using Xunit; + +namespace Microsoft.WindowsAzure.Commands.ScenarioTest +{ + public partial class ServiceManagementTests + { + [Fact] + [Trait(Category.Service, Category.ServiceManagement)] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.AcceptanceType, Category.BVT)] + public void TestExtensionRoleNames() + { + var roleNames = new string[] + { + "test Role Name", + "!!!!! _____ test Role Name ~~~", + "testRoleName", + " testRoleName", + "testRoleName ", + " testRoleName" + }; + var expectedPrefixName = "testRoleName"; + var expectedExtensionId = "testRoleName-test-test-Ext-0"; + foreach (var roleName in roleNames) + { + ExtensionRole er = new ExtensionRole(roleName); + Assert.Equal(er.PrefixName, expectedPrefixName); + Assert.Equal(er.GetExtensionId("test", "test", 0), expectedExtensionId); + } + + var longRoleNames = new string[] + { + "A123456789B123456789C123456789D123456789E123456789F123456789G123456789H123456789", + " A123456789B123456789C123456789D123456789E123456789F123456789G123456789H123456789 ~~~" + }; + + // Extenion ID's Max Length 60 = 43 + 1 + 4 + 1 + 4 + 1 + 5 + // i.e. 'A123...E123' + '-' + 'test' + '-' + 'test' + '-' + 'Ext-0' + // L=43 L=1 L=4 L=1 L=4 L=1 L=5 + expectedPrefixName = longRoleNames[0]; + expectedExtensionId = "A123456789B123456789C123456789D123456789E123-test-test-Ext-0"; + foreach (var roleName in longRoleNames) + { + ExtensionRole er = new ExtensionRole(roleName); + Assert.Equal(er.PrefixName, expectedPrefixName); + Assert.Equal(er.GetExtensionId("test", "test", 0), expectedExtensionId); + } + + + var longExtensionNames = longRoleNames; + expectedExtensionId = "D-A123456789B123456789C123456789D123456789E123456-test-Ext-1"; + foreach (var extensionName in longExtensionNames) + { + ExtensionRole er = new ExtensionRole(); + Assert.Equal(er.PrefixName, "Default"); + Assert.Equal(er.GetExtensionId(extensionName, "test", 1), expectedExtensionId); + } + } + } +} diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs index 772144feb5cd..e417e42e913c 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionRole.cs @@ -23,6 +23,7 @@ public class ExtensionRole protected const string DefaultExtensionIdPrefixStr = "Default"; protected const string ExtensionIdSuffixTemplate = "-{0}-{1}-Ext-{2}"; protected const int MaxExtensionIdLength = 60; + protected const int MaxSuffixLength = MaxExtensionIdLength - 1; public string RoleName { get; private set; } public string PrefixName { get; private set; } @@ -81,6 +82,12 @@ public string GetExtensionId(string extensionName, string slot, int index) var suffix = new StringBuilder(); suffix.AppendFormat(ExtensionIdSuffixTemplate, normalizedExtName, slot, index); + if (suffix.Length > MaxSuffixLength) + { + int lenDiff = suffix.Length - MaxSuffixLength; + int startIndex = 1; // Suffix starts with '-' + suffix.Remove(startIndex + normalizedExtName.Length - lenDiff, lenDiff); + } int prefixSubStrLen = Math.Min(Math.Max(MaxExtensionIdLength - suffix.Length, 0), PrefixName.Length);