From 7d1c59826525459b1b54e9448ce94f5a86921c24 Mon Sep 17 00:00:00 2001 From: Bhaskar Brahma Date: Tue, 30 Oct 2018 16:46:39 -0700 Subject: [PATCH] New SDK for 2018-06-30 changes and other nit fixes ver2 (#4971) * Generated SDK using generate.ps1 * Added changes to RP.Props * Added SDK for Automation.Python2Packages and re-recorded tests * Reduced poll interval for modules and python2packages for faster playback * new test python2 packages, DynamicGroup and Prepost * Changed version for assembyinfo and csproj files * Addressed PR comments --- .../ScenarioTests/AutomationTests.cs | 79 +- .../UpdateManagement/BaseTest.cs | 4 +- ...twareUpdateConfigurationMachineRunTests.cs | 10 +- .../SoftwareUpdateConfigurationRunTests.cs | 14 +- .../SoftwareUpdateConfigurationTests.cs | 78 +- ...anCreateUpdateDeleteAutomationModules.json | 2045 +++++++--- .../CanCreateUpdateDeleteCredential.json | 629 +-- ...CanCreateUpdateDeleteDscConfiguration.json | 629 +-- ...reateUpdateDeleteDscNodeConfiguration.json | 745 ++-- .../CanCreateUpdateDeletePython2Packages.json | 3513 +++++++++++++++++ .../CanCreateUpdateDeleteRunbook.json | 1127 +++--- .../CanCreateUpdateDeleteSourceControl.json | 286 +- .../CanCreateUpdateDeleteVariable.json | 639 +-- .../CanCreateUpdateDeleteWebhook.json | 1007 +++-- .../CanGetAllMachineRuns.json | 60 +- .../CanGetAllRunsByCorrelationId.json | 60 +- .../CanGetAllRunsByStatus.json | 60 +- .../CanGetMachineRunById.json | 60 +- .../CanGetAllRuns.json | 60 +- .../CanGetAllRunsByConfigurationName.json | 60 +- .../CanGetAllRunsByOs.json | 60 +- .../CanGetAllRunsByStartTime.json | 60 +- .../CanGetAllRunsByStatus.json | 60 +- .../CanGetRunById.json | 60 +- .../CanCreateGetAndDelete.json | 588 +-- .../TestSupport/AutomationTestBase.cs | 35 +- src/SDKs/Automation/AzSdk.RP.props | 2 +- ...gurationMachineRunsOperationsExtensions.cs | 6 - .../Generated/AutomationClient.cs | 94 +- .../Generated/DscConfigurationOperations.cs | 33 +- .../DscConfigurationOperationsExtensions.cs | 12 +- .../Generated/IAutomationClient.cs | 45 +- .../Generated/IDscConfigurationOperations.cs | 5 +- .../Generated/IPython2PackageOperations.cs | 195 + .../Generated/IRunbookDraftOperations.cs | 56 +- .../Generated/IRunbookOperations.cs | 52 + ...ftwareUpdateConfigurationRunsOperations.cs | 2 +- .../Generated/Models/AzureQueryProperties.cs | 71 + .../Generated/Models/HttpStatusCode.cs | 359 +- .../Models/PythonPackageCreateParameters.cs | 85 + .../Models/PythonPackageUpdateParameters.cs | 56 + .../Models/RunbookDraftUndoEditResult.cs | 4 +- ...ishHeaders.cs => RunbookPublishHeaders.cs} | 10 +- ...areUpdateConfigurationRunTaskProperties.cs | 69 + .../SoftareUpdateConfigurationRunTasks.cs | 61 + .../Models/SoftwareUpdateConfiguration.cs | 26 +- .../SoftwareUpdateConfigurationMachineRun.cs | 10 +- .../Models/SoftwareUpdateConfigurationRun.cs | 22 +- .../SoftwareUpdateConfigurationTasks.cs | 61 + .../Generated/Models/SourceControlSyncJob.cs | 6 +- .../Models/SourceControlSyncJobById.cs | 6 +- .../Generated/Models/SyncType.cs | 2 +- .../Generated/Models/TagOperators.cs | 60 + .../Generated/Models/TagSettingsProperties.cs | 64 + .../Generated/Models/TargetProperties.cs | 55 + .../Generated/Models/TaskProperties.cs | 62 + .../Generated/Models/UpdateConfiguration.cs | 11 +- .../Generated/Python2PackageOperations.cs | 1313 ++++++ .../Python2PackageOperationsExtensions.cs | 304 ++ .../Generated/RunbookDraftOperations.cs | 244 +- .../RunbookDraftOperationsExtensions.cs | 104 +- .../Generated/RunbookOperations.cs | 246 +- .../Generated/RunbookOperationsExtensions.cs | 96 + .../Generated/SdkInfo_AutomationClient.cs | 9 +- ...ftwareUpdateConfigurationRunsOperations.cs | 2 +- ...teConfigurationRunsOperationsExtensions.cs | 4 +- .../Generated/TestJobOperations.cs | 10 +- .../Generated/TestJobStreamsOperations.cs | 4 +- ...crosoft.Azure.Management.Automation.csproj | 6 +- .../Properties/AssemblyInfo.cs | 2 +- .../_metadata/automation_resource-manager.txt | 16 +- 71 files changed, 11477 insertions(+), 4513 deletions(-) create mode 100644 src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeletePython2Packages.json create mode 100644 src/SDKs/Automation/Management.Automation/Generated/IPython2PackageOperations.cs create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Models/AzureQueryProperties.cs create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Models/PythonPackageCreateParameters.cs create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Models/PythonPackageUpdateParameters.cs rename src/SDKs/Automation/Management.Automation/Generated/Models/{RunbookDraftPublishHeaders.cs => RunbookPublishHeaders.cs} (79%) create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Models/SoftareUpdateConfigurationRunTaskProperties.cs create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Models/SoftareUpdateConfigurationRunTasks.cs create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationTasks.cs create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Models/TagOperators.cs create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Models/TagSettingsProperties.cs create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Models/TargetProperties.cs create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Models/TaskProperties.cs create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Python2PackageOperations.cs create mode 100644 src/SDKs/Automation/Management.Automation/Generated/Python2PackageOperationsExtensions.cs diff --git a/src/SDKs/Automation/Automation.Tests/ScenarioTests/AutomationTests.cs b/src/SDKs/Automation/Automation.Tests/ScenarioTests/AutomationTests.cs index 4e3a99568cfd5..1d5ec0cf0b78d 100644 --- a/src/SDKs/Automation/Automation.Tests/ScenarioTests/AutomationTests.cs +++ b/src/SDKs/Automation/Automation.Tests/ScenarioTests/AutomationTests.cs @@ -344,7 +344,7 @@ public void CanCreateUpdateDeleteAutomationModules() Assert.NotNull(module); Assert.Equal(ModuleProvisioningState.Creating, module.ProvisioningState); - EnsureModuleReachesSuccessProvisioningState(moduleName, testFixture, out module); + module = EnsureModuleReachesSuccessProvisioningState(moduleName, testFixture); Assert.Equal(moduleName, module.Name); Assert.Equal("1.0", module.Version); @@ -352,7 +352,7 @@ public void CanCreateUpdateDeleteAutomationModules() module = testFixture.CreateAutomationModule(moduleName, contentLink2); Assert.NotNull(module); Assert.Equal(ModuleProvisioningState.Creating, module.ProvisioningState); - EnsureModuleReachesSuccessProvisioningState(moduleName, testFixture, out module); + module = EnsureModuleReachesSuccessProvisioningState(moduleName, testFixture); Assert.Equal(moduleName, module.Name); Assert.Equal("2.0", module.Version); @@ -373,6 +373,54 @@ public void CanCreateUpdateDeleteAutomationModules() } } + [Fact] + public void CanCreateUpdateDeletePython2Packages() + { + using (var context = MockContext.Start(GetType().FullName)) + { + using (var testFixture = new AutomationTestBase(context)) + { + + var python2PackageName = "numpy"; + // Content links don't have to be valid for playback. However, these are the actual module download locations used for recording. + var contentLink1 = "https://bhbrahmaprodtestingseau.blob.core.windows.net/module1/numpy-1.14.5-cp27-none-win_amd64.whl"; + var contentLink2 = "https://bhbrahmaprodtestingseau.blob.core.windows.net/module2/numpy-1.15.2-cp27-none-win_amd64.whl"; + + testFixture.DeletePython2Package(python2PackageName, true); + + var python2Package = testFixture.CreateAutomationPython2Package(python2PackageName, contentLink1); + + Assert.NotNull(python2Package); + Assert.Equal(ModuleProvisioningState.Creating, python2Package.ProvisioningState); + python2Package = EnsurePython2PackageReachesSuccessProvisioningState(python2PackageName, testFixture); + Assert.Equal(python2PackageName, python2Package.Name); + Assert.Equal("1.14.5", python2Package.Version); + + // Update the module + python2Package = testFixture.CreateAutomationPython2Package(python2PackageName, contentLink2); + Assert.NotNull(python2Package); + Assert.Equal(ModuleProvisioningState.Creating, python2Package.ProvisioningState); + python2Package = EnsurePython2PackageReachesSuccessProvisioningState(python2PackageName, testFixture); + Assert.Equal(python2PackageName, python2Package.Name); + Assert.Equal("1.15.2", python2Package.Version); + + // Delete the module + bool deleteCompleted = false; + testFixture.DeletePython2Package(python2PackageName); + try + { + testFixture.GetAutomationPython2Package(python2PackageName); + } + catch (ErrorResponseException) + { + // Exception expected + deleteCompleted = true; + } + Assert.True(deleteCompleted); + } + } + } + [Fact] public void CanCreateUpdateDeleteSourceControl() { @@ -479,23 +527,40 @@ public void CanCreateSourceControlSyncJob() } } - private void EnsureModuleReachesSuccessProvisioningState(string moduleName, AutomationTestBase testFixture, out Module module) + private Module EnsureModuleReachesSuccessProvisioningState(string moduleName, AutomationTestBase testFixture) { // Wait for the module Provisioing state to reach Succeeded + GetModuleAction getmoduleAction = () => testFixture.GetAutomationModule(moduleName); + return TestProvisioningStateSucceeded(getmoduleAction); + } + + private Module EnsurePython2PackageReachesSuccessProvisioningState(string moduleName, AutomationTestBase testFixture) + { + GetModuleAction getPython2PackageAction = () => testFixture.GetAutomationPython2Package(moduleName); + return TestProvisioningStateSucceeded(getPython2PackageAction); + } + + private delegate Module GetModuleAction(); + + private Module TestProvisioningStateSucceeded (GetModuleAction action) + { var startTime = DateTime.Now; var endTime = startTime.AddMinutes(5); - bool provisioningSucceeded = false; + bool success = false; + Module module; do { Thread.Sleep(50); // Used 5 seconds polling delay in the record mode, using 50 ms in playback for test to complete fast - module = testFixture.GetAutomationModule(moduleName); + module = action(); if (module.ProvisioningState == ModuleProvisioningState.Succeeded) { - provisioningSucceeded = true; + success = true; break; } + } while (DateTime.Now < endTime); - Assert.True(provisioningSucceeded); + Assert.True(success); + return module; } } diff --git a/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/BaseTest.cs b/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/BaseTest.cs index fae88b75e7235..fff715f7068f4 100644 --- a/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/BaseTest.cs +++ b/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/BaseTest.cs @@ -11,8 +11,8 @@ public class BaseTest protected const string AutomationAccountName = "fbs-aa-01"; protected const string updateConfigurationName_01 = "test-suc-001"; protected const string updateConfigurationName_02 = "test-suc-002"; - protected const string VM_01 = "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01"; - protected const string VM_02 = "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02"; + protected const string VM_01 = "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01"; + protected const string VM_02 = "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02"; protected AutomationClient automationClient; diff --git a/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationMachineRunTests.cs b/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationMachineRunTests.cs index e9213ff0de5bc..8f9c68ee830e7 100644 --- a/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationMachineRunTests.cs +++ b/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationMachineRunTests.cs @@ -12,7 +12,7 @@ public class SoftwareUpdateConfigurationMachineRunTests : BaseTest [Fact] public void CanGetMachineRunById() { - var runId = Guid.Parse("b56021cf-1643-4bfb-99d3-6b798db242f5"); + var runId = Guid.Parse("da6493d0-de31-48d9-bc78-08e3c1d80d0a"); using (var context = MockContext.Start(GetType().FullName)) { this.CreateAutomationClient(context); @@ -32,14 +32,14 @@ public void CanGetAllMachineRuns() var runs = this.automationClient.SoftwareUpdateConfigurationMachineRuns.List(ResourceGroupName, AutomationAccountName); Assert.NotNull(runs.Value); - Assert.Equal(27, runs.Value.Count); + Assert.Equal(16, runs.Value.Count); } } [Fact] public void CanGetAllRunsByCorrelationId() { - Guid correlationId = Guid.Parse("595159c7-64cb-436f-892d-b44b31970f7a"); + Guid correlationId = Guid.Parse("6ff49ee2-092a-48bf-841a-c3d645611689"); using (var context = MockContext.Start(GetType().FullName)) { this.CreateAutomationClient(context); @@ -53,14 +53,14 @@ public void CanGetAllRunsByCorrelationId() [Fact] public void CanGetAllRunsByStatus() { - const string status = "Failed"; + const string status = "Succeeded"; using (var context = MockContext.Start(GetType().FullName)) { this.CreateAutomationClient(context); var runs = this.automationClient.SoftwareUpdateConfigurationMachineRuns.ListByStatus(ResourceGroupName, AutomationAccountName, status); Assert.NotNull(runs.Value); - Assert.Equal(4, runs.Value.Count); + Assert.Equal(16, runs.Value.Count); } } } diff --git a/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationRunTests.cs b/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationRunTests.cs index 3ff2b72e0d7d2..91b1a5338d362 100644 --- a/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationRunTests.cs +++ b/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationRunTests.cs @@ -12,7 +12,7 @@ public class SoftwareUpdateConfigurationRunTests : BaseTest [Fact] public void CanGetRunById() { - var runId = Guid.Parse("595159c7-64cb-436f-892d-b44b31970f7a"); + var runId = Guid.Parse("6ff49ee2-092a-48bf-841a-c3d645611689"); using (var context = MockContext.Start(GetType().FullName)) { this.CreateAutomationClient(context); @@ -32,7 +32,7 @@ public void CanGetAllRuns() var runs = this.automationClient.SoftwareUpdateConfigurationRuns.List(ResourceGroupName, AutomationAccountName); Assert.NotNull(runs.Value); - Assert.Equal(15, runs.Value.Count); + Assert.Equal(7, runs.Value.Count); } } @@ -46,7 +46,7 @@ public void CanGetAllRunsByConfigurationName() var runs = this.automationClient.SoftwareUpdateConfigurationRuns.ListByConfigurationName(ResourceGroupName, AutomationAccountName, configName); Assert.NotNull(runs.Value); - Assert.Equal(6, runs.Value.Count); + Assert.Equal(2, runs.Value.Count); } } @@ -60,7 +60,7 @@ public void CanGetAllRunsByOs() var runs = this.automationClient.SoftwareUpdateConfigurationRuns.ListByOsType(ResourceGroupName, AutomationAccountName, os); Assert.NotNull(runs.Value); - Assert.Equal(17, runs.Value.Count); + Assert.Equal(7, runs.Value.Count); } } @@ -74,21 +74,21 @@ public void CanGetAllRunsByStatus() var runs = this.automationClient.SoftwareUpdateConfigurationRuns.ListByStatus(ResourceGroupName, AutomationAccountName, status); Assert.NotNull(runs.Value); - Assert.Equal(2, runs.Value.Count); + Assert.Equal(0, runs.Value.Count); } } [Fact] public void CanGetAllRunsByStartTime() { - var startTime = DateTime.Parse("2017-12-03T22:01:00-8").ToUniversalTime(); + var startTime = DateTime.Parse("2018-10-23T11:02:00-8").ToUniversalTime(); using (var context = MockContext.Start(GetType().FullName)) { this.CreateAutomationClient(context); var runs = this.automationClient.SoftwareUpdateConfigurationRuns.ListByStartTime(ResourceGroupName, AutomationAccountName, startTime); Assert.NotNull(runs.Value); - Assert.Equal(3, runs.Value.Count); + Assert.Equal(1, runs.Value.Count); } } } diff --git a/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationTests.cs b/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationTests.cs index b0dc1e11b09fa..0cc3fc324d91c 100644 --- a/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationTests.cs +++ b/src/SDKs/Automation/Automation.Tests/ScenarioTests/UpdateManagement/SoftwareUpdateConfigurationTests.cs @@ -1,6 +1,7 @@ namespace Automation.Tests.ScenarioTests.UpdateManagement { using System; + using System.Collections.Generic; using System.Linq; using Microsoft.Azure.Management.Automation; @@ -33,18 +34,32 @@ public void CanCreateGetAndDelete() getResult = this.automationClient.SoftwareUpdateConfigurations.GetByName(ResourceGroupName, AutomationAccountName, updateConfigurationName_02); Assert.NotNull(getResult); + Assert.NotNull(getResult.UpdateConfiguration); + Assert.NotNull(getResult.UpdateConfiguration.Targets); + Assert.NotNull(getResult.UpdateConfiguration.Targets.AzureQueries); + Assert.Equal(1, getResult.UpdateConfiguration.Targets.AzureQueries.Count); + Assert.Equal(2, getResult.UpdateConfiguration.Targets.AzureQueries.First().Scope.Count); + Assert.NotNull(getResult.Tasks); + Assert.NotNull(getResult.Tasks.PreTask); + Assert.Equal("preScript", getResult.Tasks.PreTask.Source); + Assert.NotNull(getResult.Tasks.PostTask); + Assert.NotNull(getResult.Tasks.PostTask.Source); + Assert.NotNull(getResult.Tasks.PostTask.Parameters); + Assert.Equal(1, getResult.Tasks.PostTask.Parameters.Count); + Assert.Equal("postScript", getResult.Tasks.PostTask.Source); // List all SUCs var listResult = this.automationClient.SoftwareUpdateConfigurations.List(ResourceGroupName, AutomationAccountName); Assert.NotNull(listResult); Assert.NotNull(listResult.Value); - Assert.Equal(9, listResult.Value.Count); + Assert.Equal(3, listResult.Value.Count); + // List for specific VM listResult = this.automationClient.SoftwareUpdateConfigurations.ListByAzureVirtualMachine(ResourceGroupName, AutomationAccountName, VM_01); Assert.NotNull(listResult); Assert.NotNull(listResult.Value); - Assert.Equal(6, listResult.Value.Count); + Assert.Equal(3, listResult.Value.Count); var suc = listResult.Value.Where(v => v.Name.Equals(updateConfigurationName_01, StringComparison.OrdinalIgnoreCase)).Single(); Assert.Equal(updateConfigurationName_01, suc.Name); @@ -76,18 +91,71 @@ private SoftwareUpdateConfiguration CreateSoftwareUpdateConfigurationModel(strin ExcludedKbNumbers = new[] { "KB123", "KB123" } }, Duration = TimeSpan.FromHours(3), - AzureVirtualMachines = azureVirtualMachines + AzureVirtualMachines = azureVirtualMachines, + Targets = new TargetProperties + { + AzureQueries = new List + { + new AzureQueryProperties + { + Locations = new List + { + "Japan East", + "UK South" + }, + Scope = new List + { + "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0", + "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d" + }, + TagSettings = new TagSettingsProperties + { + Tags = new Dictionary> + { + { + "tag1" , new List + { + "tag1Value1", + "tag1Value2" + } + }, + { + "tag2" , new List + { + "tag2Value1", + "tag2Value2" + } + }, + }, + FilterOperator = TagOperators.All + } + } + } + } }; var scheduleInfo = new ScheduleProperties { Frequency = ScheduleFrequency.Day, - StartTime = DateTime.Parse("2018-05-05T19:26:00.000"), + StartTime = DateTime.Parse("2019-05-05T19:26:00.000"), Interval = 1, TimeZone = "America/Los_Angeles" }; - return new SoftwareUpdateConfiguration(updateConfiguration, scheduleInfo); + var tasks = new SoftwareUpdateConfigurationTasks + { + PreTask = new TaskProperties + { + Source = "preScript" + }, + PostTask = new TaskProperties + { + Source = "postScript", + Parameters = new Dictionary() { { "Num", "4" } } + } + }; + + return new SoftwareUpdateConfiguration(updateConfiguration, scheduleInfo, tasks: tasks); } } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteAutomationModules.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteAutomationModules.json index 2ea578561a413..cedb9b48d379e 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteAutomationModules.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteAutomationModules.json @@ -1,120 +1,1063 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourcegroups/automation-sdk-test?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/automation-sdk-test?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "88f29b21-1a03-4c29-800b-8427d102f216" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2894a297-2995-43a3-b0cf-d8f52cedfd24" + ], + "x-ms-correlation-request-id": [ + "2894a297-2995-43a3-b0cf-d8f52cedfd24" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183817Z:2894a297-2995-43a3-b0cf-d8f52cedfd24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "192" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae7fef8f-c485-401b-aeb5-e083015ccbf2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "188" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "ae7fef8f-c485-401b-aeb5-e083015ccbf2" + ], + "x-ms-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + ], + "ocp-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d88b18fd-2569-41fb-a7bd-1e8ebe2285dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183818Z:d88b18fd-2569-41fb-a7bd-1e8ebe2285dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/40a380f5-d385-4c68-99bb-beec79e4d5d1\",\r\n \"creationTime\": \"2018-10-19T11:38:18.217-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T11:38:18.217-07:00\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ae9d8a2-ddb6-4eaf-8a24-fba66222f9c9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "8ae9d8a2-ddb6-4eaf-8a24-fba66222f9c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "93ddea18-e39f-40dd-816e-922ed958becb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183818Z:93ddea18-e39f-40dd-816e-922ed958becb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c85081df-e035-4b86-a387-01edc9614fd2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "c85081df-e035-4b86-a387-01edc9614fd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "45c440ca-655e-4ae5-a240-7a34537a62e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183818Z:45c440ca-655e-4ae5-a240-7a34537a62e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9ab010c-ad5a-42e4-82d2-69b485c6e82d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" ], + "x-ms-request-id": [ + "f9ab010c-ad5a-42e4-82d2-69b485c6e82d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "3a1666f3-fc0a-4f77-8a9b-4e3fd796b402" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183818Z:3a1666f3-fc0a-4f77-8a9b-4e3fd796b402" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b7a9db5-18a1-4734-8e9d-6f90cbcfcd99" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "9b7a9db5-18a1-4734-8e9d-6f90cbcfcd99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "ea110947-d1f8-4d57-9486-8d55a2c15aee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183819Z:ea110947-d1f8-4d57-9486-8d55a2c15aee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "303e5740-6782-4150-8b11-e13bd5caca6e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "303e5740-6782-4150-8b11-e13bd5caca6e" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "8ea05810-f137-463a-a24f-b1ac50a6dcbe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183819Z:8ea05810-f137-463a-a24f-b1ac50a6dcbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88b7e377-25eb-4b29-8813-14f1213d5bf7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "88b7e377-25eb-4b29-8813-14f1213d5bf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "02d51b5e-176a-42f6-b6fd-7b814ece45d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183820Z:02d51b5e-176a-42f6-b6fd-7b814ece45d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69882ec-646c-4a08-ac59-301945d4a409" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:40:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "b69882ec-646c-4a08-ac59-301945d4a409" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "a9c58d8f-4b3c-4ad5-b05b-8089d09a30d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T184029Z:a9c58d8f-4b3c-4ad5-b05b-8089d09a30d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"contentLink\": {\r\n \"uri\": \"https://bhbrahmaprodtestingseau.blob.core.windows.net/module1/HelloAndSum.zip\"\r\n }\r\n },\r\n \"name\": \"HelloAndSum\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0e32bad-ec9f-4f7d-817d-602ad0109f6f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "220" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "f0e32bad-ec9f-4f7d-817d-602ad0109f6f" + ], + "x-ms-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31" + ], + "ocp-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "f159cc3a-e9a9-47a9-bcb1-560404f6b08a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183821Z:f159cc3a-e9a9-47a9-bcb1-560404f6b08a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:38:21.607-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": null\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"contentLink\": {\r\n \"uri\": \"https://bhbrahmaprodtestingseau.blob.core.windows.net/module2/HelloAndSum.zip\"\r\n }\r\n },\r\n \"name\": \"HelloAndSum\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d409669b-f854-4a61-b3d0-c0323f57e228" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "220" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:39:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "d409669b-f854-4a61-b3d0-c0323f57e228" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "125fb165-cab0-43a3-a11d-797e31b2e85c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183926Z:125fb165-cab0-43a3-a11d-797e31b2e85c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"HelloAndSum\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": null\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87aa0423-3616-43bf-abff-a31d111c2e5e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "87aa0423-3616-43bf-abff-a31d111c2e5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "abba0c47-34c1-4fd1-8a34-4e9eb4664f6c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183827Z:abba0c47-34c1-4fd1-8a34-4e9eb4664f6c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:38:21.607-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7056390-a723-47a0-bd11-1d319738a06b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "a7056390-a723-47a0-bd11-1d319738a06b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "7d16bc1f-f275-425c-9904-f3801e4ad774" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183832Z:7d16bc1f-f275-425c-9904-f3801e4ad774" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:38:21.607-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1c9d723-451d-49a2-91d1-1ee982c85535" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:38:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "e1c9d723-451d-49a2-91d1-1ee982c85535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "80a348a7-eafd-4a5b-a9f3-799dd54107d7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183837Z:80a348a7-eafd-4a5b-a9f3-799dd54107d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:38:21.607-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "x-ms-client-request-id": [ - "4c2d268d-bf7d-42fb-80af-2d710c8f25c5" + "6a18b90f-4629-450c-aa99-e8e1ba26b069" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:53:49 GMT" + "Fri, 19 Oct 2018 18:38:42 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Server": [ + "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" + "x-ms-request-id": [ + "6a18b90f-4629-450c-aa99-e8e1ba26b069" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "eca4cfb2-9268-4c81-8d61-d65c189861b7" + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], "x-ms-correlation-request-id": [ - "eca4cfb2-9268-4c81-8d61-d65c189861b7" + "f2be3243-e200-42eb-9a13-8cf91913f771" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035349Z:eca4cfb2-9268-4c81-8d61-d65c189861b7" + "WESTUS2:20181019T183842Z:f2be3243-e200-42eb-9a13-8cf91913f771" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:38:21.607-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"East US 2\"\r\n}", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "188" - ], "x-ms-client-request-id": [ - "21bad893-a05d-4329-87ae-27d523dcbcc5" + "5d211cd0-e26f-43d8-8d99-9b6d3bd51161" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/3a4a9a77-4c18-4aab-8704-1689e0c35cf3\",\r\n \"creationTime\": \"2017-12-19T18:56:11.017-08:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2017-12-19T19:53:49.91-08:00\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:53:50 GMT" + "Fri, 19 Oct 2018 18:38:47 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "21bad893-a05d-4329-87ae-27d523dcbcc5" + "5d211cd0-e26f-43d8-8d99-9b6d3bd51161" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -125,63 +1068,63 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" ], "x-ms-correlation-request-id": [ - "8ca55857-e153-4f7b-97cf-6bf8d42e325c" + "a2338a3f-bcd3-434d-9bd9-bdcb0da4a075" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035350Z:8ca55857-e153-4f7b-97cf-6bf8d42e325c" + "WESTUS2:20181019T183848Z:a2338a3f-bcd3-434d-9bd9-bdcb0da4a075" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:38:21.607-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30507f4b-981b-4a45-8f77-56c076329c7b" + "158c7c60-6ea0-44af-8b09-80d545937597" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:53:50 GMT" + "Fri, 19 Oct 2018 18:38:52 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "30507f4b-981b-4a45-8f77-56c076329c7b" + "158c7c60-6ea0-44af-8b09-80d545937597" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,62 +1136,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "11987" ], "x-ms-correlation-request-id": [ - "3ce2cea0-dc5b-4a75-a749-b0263ceea356" + "f7675b33-3afb-463b-b164-82dd18bdba24" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035351Z:3ce2cea0-dc5b-4a75-a749-b0263ceea356" + "WESTUS2:20181019T183853Z:f7675b33-3afb-463b-b164-82dd18bdba24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:38:21.607-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b0a1ab7-0d98-4731-8d14-1ae214f22385" + "c70599a7-9e15-46ec-98a6-3b53d8442f66" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:53:50 GMT" + "Fri, 19 Oct 2018 18:38:57 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "9b0a1ab7-0d98-4731-8d14-1ae214f22385" + "c70599a7-9e15-46ec-98a6-3b53d8442f66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -260,62 +1203,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "11986" ], "x-ms-correlation-request-id": [ - "13af2883-4572-4db5-848d-c6a958f7beb8" + "fa40bdb3-e239-46aa-9846-4f8328e2ad89" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035351Z:13af2883-4572-4db5-848d-c6a958f7beb8" + "WESTUS2:20181019T183858Z:fa40bdb3-e239-46aa-9846-4f8328e2ad89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:38:21.607-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dc3682b-0a4e-43f3-999b-d307c24aa8cf" + "c44cfdec-7a30-43b8-bc68-57d11b07edc5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:53:51 GMT" + "Fri, 19 Oct 2018 18:39:03 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "9dc3682b-0a4e-43f3-999b-d307c24aa8cf" + "c44cfdec-7a30-43b8-bc68-57d11b07edc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,62 +1270,129 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "11985" ], "x-ms-correlation-request-id": [ - "4650a10c-0aa0-4b56-903b-28f6e6ace7a4" + "c7d23b26-f8fb-469e-b2cd-69a2fb389d0d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035351Z:4650a10c-0aa0-4b56-903b-28f6e6ace7a4" + "WESTUS2:20181019T183903Z:c7d23b26-f8fb-469e-b2cd-69a2fb389d0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:38:21.607-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c633d8d6-9dcd-4d2d-b868-d808d5799fbe" + "54f6a283-155c-4e8b-8780-c9bcd6c57472" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:39:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "54f6a283-155c-4e8b-8780-c9bcd6c57472" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "df690b51-15de-4113-a301-cd002e54505e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183908Z:df690b51-15de-4113-a301-cd002e54505e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "580" + ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:38:21.607-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21ee06e-adac-4ac3-9fb5-1b98f340ed9d" + ], + "accept-language": [ + "en-US" ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:53:51 GMT" + "Fri, 19 Oct 2018 18:39:14 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "c633d8d6-9dcd-4d2d-b868-d808d5799fbe" + "b21ee06e-adac-4ac3-9fb5-1b98f340ed9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,108 +1404,187 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "11983" ], "x-ms-correlation-request-id": [ - "78c97f1a-6969-4bf3-938e-d1b550c603ac" + "21761dab-9bc9-4bfe-a03a-e09bb13a4767" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035351Z:78c97f1a-6969-4bf3-938e-d1b550c603ac" + "WESTUS2:20181019T183914Z:21761dab-9bc9-4bfe-a03a-e09bb13a4767" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"HelloAndSum\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:38:21.607-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d059541d-19ac-4dfc-ad05-3179293f1ecd" + "47fe53a7-cc74-4b9e-873f-8d92964a715f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 18:39:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "47fe53a7-cc74-4b9e-873f-8d92964a715f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "c9ee7c21-1b44-43bb-a552-28a9049e4d4b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183919Z:c9ee7c21-1b44-43bb-a552-28a9049e4d4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "588" + ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"HelloAndSum\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:19.717-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8875303a-572a-4486-9ac1-afa92dcd3750" ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:53:52 GMT" + "Fri, 19 Oct 2018 18:39:24 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "d059541d-19ac-4dfc-ad05-3179293f1ecd" + "8875303a-572a-4486-9ac1-afa92dcd3750" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "11981" ], "x-ms-correlation-request-id": [ - "23b12178-6a29-4f11-82d1-0a10df95a259" + "7628460f-8d5b-46f8-a1fc-ac00cb7c34e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035352Z:23b12178-6a29-4f11-82d1-0a10df95a259" + "WESTUS2:20181019T183925Z:7628460f-8d5b-46f8-a1fc-ac00cb7c34e1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"HelloAndSum\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:22.733-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "714d4a7f-9268-45eb-8b30-e13a11aa5e8a" + "3ca2a156-b20a-4ed8-a795-b8284e07e25d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:53:56 GMT" + "Fri, 19 Oct 2018 18:39:31 GMT" ], "Pragma": [ "no-cache" @@ -504,7 +1593,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "714d4a7f-9268-45eb-8b30-e13a11aa5e8a" + "3ca2a156-b20a-4ed8-a795-b8284e07e25d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -515,48 +1604,54 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "ad5171d2-53e2-4c09-9f2a-3970e5051cd4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T183931Z:ad5171d2-53e2-4c09-9f2a-3970e5051cd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" ], - "x-ms-correlation-request-id": [ - "f9a37cde-6a20-4bdc-813c-a0dd12066347" + "Content-Type": [ + "application/json; charset=utf-8" ], - "x-ms-routing-request-id": [ - "WESTUS2:20171220T035357Z:f9a37cde-6a20-4bdc-813c-a0dd12066347" + "Expires": [ + "-1" ] }, - "StatusCode": 204 + "ResponseBody": "{\r\n \"name\": \"HelloAndSum\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62370421-55df-4ec3-9a31-d9fe36b472d0" + "5f5bc6e4-3b74-4fe9-9f41-4846ff991ccf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:59:03 GMT" + "Fri, 19 Oct 2018 18:39:36 GMT" ], "Pragma": [ "no-cache" @@ -565,7 +1660,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "62370421-55df-4ec3-9a31-d9fe36b472d0" + "5f5bc6e4-3b74-4fe9-9f41-4846ff991ccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -576,75 +1671,63 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" ], "x-ms-correlation-request-id": [ - "5de37497-b94c-4cdc-a5a7-f5de92303811" + "5a7e87fb-d388-43e5-848d-00ece20e1030" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035903Z:5de37497-b94c-4cdc-a5a7-f5de92303811" + "WESTUS2:20181019T183936Z:5a7e87fb-d388-43e5-848d-00ece20e1030" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"HelloAndSum\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"contentLink\": {\r\n \"uri\": \"https://bhbrahmaprodtestingseau.blob.core.windows.net/module1/HelloAndSum.zip\"\r\n }\r\n },\r\n \"name\": \"HelloAndSum\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "220" - ], "x-ms-client-request-id": [ - "4cede1ee-d97c-4ce7-8d67-8b5c2e0ac4f6" + "03091e46-6279-44e2-9858-976da240d342" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2017-12-19T19:54:08.537-08:00\",\r\n \"lastModifiedTime\": \"2017-12-19T19:54:08.583-08:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": null\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "563" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:54:09 GMT" + "Fri, 19 Oct 2018 18:39:41 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31" - ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "4cede1ee-d97c-4ce7-8d67-8b5c2e0ac4f6" - ], - "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31" - ], - "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31" + "03091e46-6279-44e2-9858-976da240d342" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -655,69 +1738,63 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" ], "x-ms-correlation-request-id": [ - "b563484f-0396-4870-bf82-f2ef33307621" + "3dc67b3a-cd1c-4db3-b6a6-d7eaa22af89e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035410Z:b563484f-0396-4870-bf82-f2ef33307621" + "WESTUS2:20181019T183942Z:3dc67b3a-cd1c-4db3-b6a6-d7eaa22af89e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"name\": \"HelloAndSum\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 3,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"contentLink\": {\r\n \"uri\": \"https://bhbrahmaprodtestingseau.blob.core.windows.net/module2/HelloAndSum.zip\"\r\n }\r\n },\r\n \"name\": \"HelloAndSum\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "220" - ], "x-ms-client-request-id": [ - "2cdb45d3-a96b-46f5-8a52-cd46bdd6ac2c" + "5ab6ddfc-b8e8-4382-9663-26d9a6c93f80" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2017-12-19T19:54:08.537-08:00\",\r\n \"lastModifiedTime\": \"2017-12-19T19:55:19.383-08:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": null\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:55:20 GMT" + "Fri, 19 Oct 2018 18:39:46 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "2cdb45d3-a96b-46f5-8a52-cd46bdd6ac2c" + "5ab6ddfc-b8e8-4382-9663-26d9a6c93f80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -728,63 +1805,63 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" ], "x-ms-correlation-request-id": [ - "645b06c0-1b7f-4c57-ad6d-a5f6be07b93e" + "2c5e5765-2750-40e3-be44-c64df690ff89" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035521Z:645b06c0-1b7f-4c57-ad6d-a5f6be07b93e" + "WESTUS2:20181019T183947Z:2c5e5765-2750-40e3-be44-c64df690ff89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"HelloAndSum\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 3,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e757e3e-d60d-4c74-a434-052a7b90556d" + "9d549fc2-a651-4aa1-97e2-352617f2e887" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2017-12-19T19:54:08.537-08:00\",\r\n \"lastModifiedTime\": \"2017-12-19T19:54:08.583-08:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:54:18 GMT" + "Fri, 19 Oct 2018 18:39:51 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "3e757e3e-d60d-4c74-a434-052a7b90556d" + "9d549fc2-a651-4aa1-97e2-352617f2e887" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -796,62 +1873,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11976" ], "x-ms-correlation-request-id": [ - "6cd4ba43-143a-43fe-88f4-46c0f65ede9f" + "c9615324-5c76-4229-8493-56f46fe51f7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035419Z:6cd4ba43-143a-43fe-88f4-46c0f65ede9f" + "WESTUS2:20181019T183952Z:c9615324-5c76-4229-8493-56f46fe51f7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"HelloAndSum\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 3,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "beb6112e-dfbc-4d97-b10a-a5e6e7ea459d" + "488672a5-78a1-4c41-a5cd-8acc022e7e25" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2017-12-19T19:54:08.537-08:00\",\r\n \"lastModifiedTime\": \"2017-12-19T19:54:08.583-08:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:54:25 GMT" + "Fri, 19 Oct 2018 18:39:56 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "beb6112e-dfbc-4d97-b10a-a5e6e7ea459d" + "488672a5-78a1-4c41-a5cd-8acc022e7e25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -863,62 +1940,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11975" ], "x-ms-correlation-request-id": [ - "1559d6c6-b1c3-4e6e-9c36-699faa5674f2" + "49a3f509-85af-4340-88e7-056e37e91c22" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035425Z:1559d6c6-b1c3-4e6e-9c36-699faa5674f2" + "WESTUS2:20181019T183957Z:49a3f509-85af-4340-88e7-056e37e91c22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 3,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1ce4544-ebdf-43c4-ba42-875a0aa622b4" + "7c4a6496-864e-4068-b290-2ebc759912fa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2017-12-19T19:54:08.537-08:00\",\r\n \"lastModifiedTime\": \"2017-12-19T19:54:08.583-08:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:54:32 GMT" + "Fri, 19 Oct 2018 18:40:02 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "d1ce4544-ebdf-43c4-ba42-875a0aa622b4" + "7c4a6496-864e-4068-b290-2ebc759912fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -930,62 +2007,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11975" ], "x-ms-correlation-request-id": [ - "74c7d792-7e64-4c39-8e5c-642e66bd3843" + "6ee0834e-45c8-47bc-b12e-8bdc95951de2" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035432Z:74c7d792-7e64-4c39-8e5c-642e66bd3843" + "WESTUS2:20181019T184002Z:6ee0834e-45c8-47bc-b12e-8bdc95951de2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"HelloAndSum\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 3,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "482055ab-2697-45b4-aef6-ae928bd37c5b" + "a55774a3-d4ca-47cd-9425-4c77d909b683" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2017-12-19T19:54:08.537-08:00\",\r\n \"lastModifiedTime\": \"2017-12-19T19:54:08.583-08:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:54:37 GMT" + "Fri, 19 Oct 2018 18:40:08 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "482055ab-2697-45b4-aef6-ae928bd37c5b" + "a55774a3-d4ca-47cd-9425-4c77d909b683" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -997,62 +2074,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11974" ], "x-ms-correlation-request-id": [ - "dc0d54ae-8fb1-4b28-9993-d0fe8b2c7f8a" + "79c160fc-775b-4b96-8e55-155db307bf43" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035438Z:dc0d54ae-8fb1-4b28-9993-d0fe8b2c7f8a" + "WESTUS2:20181019T184008Z:79c160fc-775b-4b96-8e55-155db307bf43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 3,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1164f607-c964-488f-9e4d-f93706d33d22" + "0b3b6957-e8e8-4b05-bcb4-d954b4bef104" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2017-12-19T19:54:08.537-08:00\",\r\n \"lastModifiedTime\": \"2017-12-19T19:54:08.583-08:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:54:43 GMT" + "Fri, 19 Oct 2018 18:40:13 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "1164f607-c964-488f-9e4d-f93706d33d22" + "0b3b6957-e8e8-4b05-bcb4-d954b4bef104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,62 +2141,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11973" ], "x-ms-correlation-request-id": [ - "5eb445ac-f944-40f5-b5e4-45ef1676da43" + "8d32ca04-ce6d-4111-a923-908b5a5e3953" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035444Z:5eb445ac-f944-40f5-b5e4-45ef1676da43" + "WESTUS2:20181019T184013Z:8d32ca04-ce6d-4111-a923-908b5a5e3953" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 3,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea6e4af6-3664-4cdb-baaa-7e07ffa4fd41" + "59d5e854-1874-430f-881e-c56d0f84f6ef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2017-12-19T19:54:08.537-08:00\",\r\n \"lastModifiedTime\": \"2017-12-19T19:54:46.07-08:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:54:50 GMT" + "Fri, 19 Oct 2018 18:40:18 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "ea6e4af6-3664-4cdb-baaa-7e07ffa4fd41" + "59d5e854-1874-430f-881e-c56d0f84f6ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1131,62 +2208,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11972" ], "x-ms-correlation-request-id": [ - "3c61f116-a3f3-457b-8956-19253c2fb28a" + "900f2053-bc97-4682-97fd-cb156e5555cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035450Z:3c61f116-a3f3-457b-8956-19253c2fb28a" + "WESTUS2:20181019T184019Z:900f2053-bc97-4682-97fd-cb156e5555cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 3,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47b92434-d978-4a6f-b9c2-9cd2b0ea8d3b" + "ad9061c3-1d4e-4506-b5e4-58edfe65afe4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2017-12-19T19:54:08.537-08:00\",\r\n \"lastModifiedTime\": \"2017-12-19T19:54:52.54-08:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:54:56 GMT" + "Fri, 19 Oct 2018 18:40:24 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "47b92434-d978-4a6f-b9c2-9cd2b0ea8d3b" + "ad9061c3-1d4e-4506-b5e4-58edfe65afe4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1198,62 +2275,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11971" ], "x-ms-correlation-request-id": [ - "49f4534d-97d9-400e-ab83-d79d7a200c9f" + "4cf21cff-3583-4ad1-81de-1675f3f35777" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035457Z:49f4534d-97d9-400e-ab83-d79d7a200c9f" + "WESTUS2:20181019T184024Z:4cf21cff-3583-4ad1-81de-1675f3f35777" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.0\",\r\n \"sizeInBytes\": 1835,\r\n \"activityCount\": 3,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:39:26.17-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea7d250d-5968-4656-adae-3ba6566d4d97" + "08fa60d3-f4a5-470d-ae72-d37040996011" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"2.0\",\r\n \"sizeInBytes\": 1842,\r\n \"activityCount\": 5,\r\n \"creationTime\": \"2017-12-19T19:54:08.537-08:00\",\r\n \"lastModifiedTime\": \"2017-12-19T19:56:03.527-08:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:58:36 GMT" + "Fri, 19 Oct 2018 18:40:29 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "ea7d250d-5968-4656-adae-3ba6566d4d97" + "08fa60d3-f4a5-470d-ae72-d37040996011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1265,50 +2342,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14753" + "11970" ], "x-ms-correlation-request-id": [ - "52ede1f8-741f-41ea-b998-0c0e3905e0e5" + "29f73b7d-8c4f-4c15-b69c-0f468fbfa1bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035836Z:52ede1f8-741f-41ea-b998-0c0e3905e0e5" + "WESTUS2:20181019T184029Z:29f73b7d-8c4f-4c15-b69c-0f468fbfa1bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum\",\r\n \"name\": \"HelloAndSum\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Modules\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"2.0\",\r\n \"sizeInBytes\": 1842,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T11:38:21.53-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:40:29.19-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"isComposite\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/modules/HelloAndSum?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbW9kdWxlcy9IZWxsb0FuZFN1bT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca0bb491-16e8-4311-951c-eebd789b0211" + "8a3c9ecc-16a9-4fa0-9aed-a47dd311c5a9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "32" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Dec 2017 03:59:11 GMT" + "Fri, 19 Oct 2018 18:40:29 GMT" ], "Pragma": [ "no-cache" @@ -1317,7 +2397,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "ca0bb491-16e8-4311-951c-eebd789b0211" + "8a3c9ecc-16a9-4fa0-9aed-a47dd311c5a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1329,20 +2409,33 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" + "11969" ], "x-ms-correlation-request-id": [ - "4754dbd0-7ad0-4fb6-870a-ed6c98b9d773" + "ab0cc7c9-a8f4-4eca-867c-5227c0bbef6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20171220T035912Z:4754dbd0-7ad0-4fb6-870a-ed6c98b9d773" + "WESTUS2:20181019T184029Z:ab0cc7c9-a8f4-4eca-867c-5227c0bbef6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"\"\r\n}", "StatusCode": 404 } ], "Names": {}, "Variables": { - "SubscriptionId": "b5e4748c-f69a-467c-8749-e2f9c8cd3db0" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteCredential.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteCredential.json index 0f0d57850b06b..82ce9fe58b924 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteCredential.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteCredential.json @@ -1,44 +1,34 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourcegroups/automation-sdk-test?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/automation-sdk-test?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "31" - ], "x-ms-client-request-id": [ - "4d05a2f6-8dab-4725-9444-643825e74f7a" + "00ae5a83-174d-4693-8829-16cd9008ad2e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26328.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "192" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:34 GMT" + "Fri, 19 Oct 2018 18:47:20 GMT" ], "Pragma": [ "no-cache" @@ -47,77 +37,80 @@ "1199" ], "x-ms-request-id": [ - "162dc382-2331-4492-ab5d-10054ac96416" + "bfaffcda-86df-4b32-bcb1-f718a6f09e95" ], "x-ms-correlation-request-id": [ - "162dc382-2331-4492-ab5d-10054ac96416" + "bfaffcda-86df-4b32-bcb1-f718a6f09e95" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071434Z:162dc382-2331-4492-ab5d-10054ac96416" + "WESTUS2:20181019T184720Z:bfaffcda-86df-4b32-bcb1-f718a6f09e95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "192" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "188" - ], "x-ms-client-request-id": [ - "32d58e19-c4e5-4010-90a6-2b02c3917c30" + "be1fe411-56e2-4704-a059-d0909d801156" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/f7eea67e-49f6-4b00-accd-becbfb25b8ec\",\r\n \"creationTime\": \"2017-11-19T23:14:38.15-08:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2017-11-19T23:14:38.15-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "621" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "188" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:36 GMT" + "Fri, 19 Oct 2018 18:47:21 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "32d58e19-c4e5-4010-90a6-2b02c3917c30" + "be1fe411-56e2-4704-a059-d0909d801156" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -132,59 +125,59 @@ "1198" ], "x-ms-correlation-request-id": [ - "faa06adb-b669-404a-89c6-7e5ba5d3aa01" + "adbcaca5-4f95-4a28-b295-b671c1dafb77" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071436Z:faa06adb-b669-404a-89c6-7e5ba5d3aa01" + "WESTUS2:20181019T184722Z:adbcaca5-4f95-4a28-b295-b671c1dafb77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/5421f32a-c487-4c8e-89b4-4cd54480e1c2\",\r\n \"creationTime\": \"2018-10-19T11:47:21.483-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T11:47:21.483-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "845eb338-259b-4697-893e-b93f0eade06d" + "d2650f3d-f31f-4b62-b849-d5da6fc7634b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:37 GMT" + "Fri, 19 Oct 2018 18:47:22 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "845eb338-259b-4697-893e-b93f0eade06d" + "d2650f3d-f31f-4b62-b849-d5da6fc7634b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,62 +189,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" + "11983" ], "x-ms-correlation-request-id": [ - "c455b5ba-8cb5-4b8b-8c09-fcb6d3632e26" + "4eb37c01-5af4-49de-be27-f7fa10dfb56e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071437Z:c455b5ba-8cb5-4b8b-8c09-fcb6d3632e26" + "WESTUS2:20181019T184722Z:4eb37c01-5af4-49de-be27-f7fa10dfb56e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c553f76-5653-4e1d-b985-1da0b02e0c8e" + "f8ad7204-7ba5-4f98-aa25-cefb68b602cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139\",\r\n \"name\": \"credential6139\",\r\n \"properties\": {\r\n \"userName\": \"userName1\",\r\n \"description\": \"description of credential\",\r\n \"creationTime\": \"2017-11-19T23:14:40.87-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:14:41.477-08:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:40 GMT" + "Fri, 19 Oct 2018 18:47:24 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "9c553f76-5653-4e1d-b985-1da0b02e0c8e" + "f8ad7204-7ba5-4f98-aa25-cefb68b602cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -263,62 +256,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "11977" ], "x-ms-correlation-request-id": [ - "c6c4f444-c503-4754-bbf5-73651e3c1d54" + "3e1dfc2f-9d45-4b59-b1ab-75950b2e6270" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071440Z:c6c4f444-c503-4754-bbf5-73651e3c1d54" + "WESTUS2:20181019T184725Z:3e1dfc2f-9d45-4b59-b1ab-75950b2e6270" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "472" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861\",\r\n \"name\": \"credential861\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Credentials\",\r\n \"properties\": {\r\n \"userName\": \"userName1\",\r\n \"description\": \"description of credential\",\r\n \"creationTime\": \"2018-10-19T11:47:24.077-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:47:25.11-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46fcae72-3521-4002-b560-9e09c810d1cf" + "584f9f42-46b2-48eb-83f4-5f2d105c1f20" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:37 GMT" + "Fri, 19 Oct 2018 18:47:22 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "46fcae72-3521-4002-b560-9e09c810d1cf" + "584f9f42-46b2-48eb-83f4-5f2d105c1f20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -330,62 +323,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" + "11982" ], "x-ms-correlation-request-id": [ - "7e88e807-39be-4fbb-b557-8f34ab766688" + "0f3af54f-d1fe-4b4c-a891-d64a8408a6b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071437Z:7e88e807-39be-4fbb-b557-8f34ab766688" + "WESTUS2:20181019T184722Z:0f3af54f-d1fe-4b4c-a891-d64a8408a6b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "292ccc63-2fe0-476b-a2e5-cce402b6f04e" + "3a057fc2-f8e9-4d6d-87eb-98a9c3f57943" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:37 GMT" + "Fri, 19 Oct 2018 18:47:22 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "292ccc63-2fe0-476b-a2e5-cce402b6f04e" + "3a057fc2-f8e9-4d6d-87eb-98a9c3f57943" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,62 +390,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "11981" ], "x-ms-correlation-request-id": [ - "07ca7e4f-679f-4611-9e03-b33ab1f92793" + "6ba59d2a-54dc-4a02-b15b-21648c966d95" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071437Z:07ca7e4f-679f-4611-9e03-b33ab1f92793" + "WESTUS2:20181019T184722Z:6ba59d2a-54dc-4a02-b15b-21648c966d95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa382a72-1a78-4fe0-89c3-ff56b228228f" + "1149a64d-167f-4e74-9275-1735ba71ac46" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:37 GMT" + "Fri, 19 Oct 2018 18:47:22 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "aa382a72-1a78-4fe0-89c3-ff56b228228f" + "1149a64d-167f-4e74-9275-1735ba71ac46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -464,138 +457,141 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "11980" ], "x-ms-correlation-request-id": [ - "c03cfd5d-a3de-4b7a-9beb-56fbd05ea57b" + "4499742b-757e-4583-805b-d59b1f11cd60" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071438Z:c03cfd5d-a3de-4b7a-9beb-56fbd05ea57b" + "WESTUS2:20181019T184722Z:4499742b-757e-4583-805b-d59b1f11cd60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f19932-a2e2-4d30-8cb5-2c3e49f0ce55" + "d05f149b-495c-4db6-9e22-d8c3f9332709" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:38 GMT" + "Fri, 19 Oct 2018 18:47:23 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "14f19932-a2e2-4d30-8cb5-2c3e49f0ce55" + "d05f149b-495c-4db6-9e22-d8c3f9332709" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "11979" ], "x-ms-correlation-request-id": [ - "92699d0d-8979-42cf-9d19-9c56f70ac99b" + "a1cd8471-1697-4e29-81f9-8776775fa20f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071438Z:92699d0d-8979-42cf-9d19-9c56f70ac99b" + "WESTUS2:20181019T184723Z:a1cd8471-1697-4e29-81f9-8776775fa20f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHMvY3JlZGVudGlhbDYxMzk/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHMvY3JlZGVudGlhbDg2MT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"credential6139\",\r\n \"properties\": {\r\n \"userName\": \"userName1\",\r\n \"password\": \"pwd1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"credential861\",\r\n \"properties\": {\r\n \"userName\": \"userName1\",\r\n \"password\": \"pwd1\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "111" - ], "x-ms-client-request-id": [ - "2320f038-eb2a-41c4-bd1c-e09c614fb3fd" + "d7a0bce6-3082-4ad6-8286-ab39315ce6d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139\",\r\n \"name\": \"credential6139\",\r\n \"properties\": {\r\n \"userName\": \"userName1\",\r\n \"description\": null,\r\n \"creationTime\": \"2017-11-19T23:14:40.87-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:14:40.87-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "377" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "110" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:39 GMT" + "Fri, 19 Oct 2018 18:47:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "2320f038-eb2a-41c4-bd1c-e09c614fb3fd" + "d7a0bce6-3082-4ad6-8286-ab39315ce6d8" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861?api-version=2015-10-31" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861?api-version=2015-10-31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -610,59 +606,59 @@ "1197" ], "x-ms-correlation-request-id": [ - "871a1a0b-3957-4c91-a4b9-4c808eb6ca62" + "a5b7ade4-3ef6-4c83-a5ff-2a615fb8094b" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071439Z:871a1a0b-3957-4c91-a4b9-4c808eb6ca62" + "WESTUS2:20181019T184724Z:a5b7ade4-3ef6-4c83-a5ff-2a615fb8094b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861\",\r\n \"name\": \"credential861\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Credentials\",\r\n \"properties\": {\r\n \"userName\": \"userName1\",\r\n \"description\": null,\r\n \"creationTime\": \"2018-10-19T11:47:24.077-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:47:24.077-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHMvY3JlZGVudGlhbDYxMzk/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHMvY3JlZGVudGlhbDg2MT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8373c04b-a5fa-4da6-923d-f275e0a0eccf" + "c83e8221-3585-4351-987f-0c9899834c36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139\",\r\n \"name\": \"credential6139\",\r\n \"properties\": {\r\n \"userName\": \"userName1\",\r\n \"description\": null,\r\n \"creationTime\": \"2017-11-19T23:14:40.87-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:14:40.87-08:00\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:39 GMT" + "Fri, 19 Oct 2018 18:47:23 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "8373c04b-a5fa-4da6-923d-f275e0a0eccf" + "c83e8221-3585-4351-987f-0c9899834c36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -674,50 +670,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "11978" ], "x-ms-correlation-request-id": [ - "7d845519-178a-4540-91bf-1ae8e31e7c9b" + "371bfb9f-8121-4fb1-b824-4d6c9647f7b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071439Z:7d845519-178a-4540-91bf-1ae8e31e7c9b" + "WESTUS2:20181019T184724Z:371bfb9f-8121-4fb1-b824-4d6c9647f7b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861\",\r\n \"name\": \"credential861\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Credentials\",\r\n \"properties\": {\r\n \"userName\": \"userName1\",\r\n \"description\": null,\r\n \"creationTime\": \"2018-10-19T11:47:24.077-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:47:24.077-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHMvY3JlZGVudGlhbDYxMzk/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHMvY3JlZGVudGlhbDg2MT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "605da875-28c6-4cff-9bfe-43e40d94267a" + "60d09dd2-5b36-4ed1-a0d2-23f4a5cd7126" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Credential not found.\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "53" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:41 GMT" + "Fri, 19 Oct 2018 18:47:25 GMT" ], "Pragma": [ "no-cache" @@ -726,7 +725,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "605da875-28c6-4cff-9bfe-43e40d94267a" + "60d09dd2-5b36-4ed1-a0d2-23f4a5cd7126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -738,68 +737,68 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "11976" ], "x-ms-correlation-request-id": [ - "f2227f53-f0db-467a-85c2-7c454baa8b43" + "c7612738-fcc3-41e8-89de-a9c7ee35c6e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071441Z:f2227f53-f0db-467a-85c2-7c454baa8b43" + "WESTUS2:20181019T184725Z:c7612738-fcc3-41e8-89de-a9c7ee35c6e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "53" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Credential not found.\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHMvY3JlZGVudGlhbDYxMzk/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHMvY3JlZGVudGlhbDg2MT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"name\": \"userName2\",\r\n \"properties\": {\r\n \"userName\": \"userName1\",\r\n \"password\": \"pwd2\",\r\n \"description\": \"description of credential\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "155" - ], "x-ms-client-request-id": [ - "2e043c98-c55c-46d1-8839-5594fa5adbc3" + "9daf1605-dff0-414e-a12f-2448f870e2d3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139\",\r\n \"name\": \"credential6139\",\r\n \"properties\": {\r\n \"userName\": \"userName1\",\r\n \"description\": \"description of credential\",\r\n \"creationTime\": \"2017-11-19T23:14:40.87-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:14:40.87-08:00\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "155" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:39 GMT" + "Fri, 19 Oct 2018 18:47:24 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "2e043c98-c55c-46d1-8839-5594fa5adbc3" + "9daf1605-dff0-414e-a12f-2448f870e2d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -814,44 +813,50 @@ "1196" ], "x-ms-correlation-request-id": [ - "430ce6cc-efa1-4d31-af26-658f7d9123ad" + "088824be-b463-4976-8a60-30c6cad2421e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071439Z:430ce6cc-efa1-4d31-af26-658f7d9123ad" + "WESTUS2:20181019T184725Z:088824be-b463-4976-8a60-30c6cad2421e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "461" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861\",\r\n \"name\": \"credential861\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Credentials\",\r\n \"properties\": {\r\n \"userName\": \"userName1\",\r\n \"description\": \"description of credential\",\r\n \"creationTime\": \"2018-10-19T11:47:24.077-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:47:24.077-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential6139?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHMvY3JlZGVudGlhbDYxMzk/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials/credential861?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHMvY3JlZGVudGlhbDg2MT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a8fbc19-e450-419b-b4bc-e22b33ccfff5" + "84dedd17-e0c1-495b-b452-849d233a9b07" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:14:40 GMT" + "Fri, 19 Oct 2018 18:47:25 GMT" ], "Pragma": [ "no-cache" @@ -860,7 +865,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "6a8fbc19-e450-419b-b4bc-e22b33ccfff5" + "84dedd17-e0c1-495b-b452-849d233a9b07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -871,25 +876,35 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "cc10dcca-972e-4b84-87e0-0bfc5a26f984" + "f47b7878-b667-4e6e-8f2b-9b02bbd97b37" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T071440Z:cc10dcca-972e-4b84-87e0-0bfc5a26f984" + "WESTUS2:20181019T184725Z:f47b7878-b667-4e6e-8f2b-9b02bbd97b37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "CanCreateUpdateDeleteCredential": [ - "credential6139" + "credential861" ] }, "Variables": { - "SubscriptionId": "b5e4748c-f69a-467c-8749-e2f9c8cd3db0" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteDscConfiguration.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteDscConfiguration.json index 58f8c6a3a24f8..39c5ba6fca2bc 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteDscConfiguration.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteDscConfiguration.json @@ -1,44 +1,34 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourcegroups/automation-sdk-test?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/automation-sdk-test?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "31" - ], "x-ms-client-request-id": [ - "e7b5879c-9c4d-4df9-87c5-5389b12f3e20" + "9aff9245-6b08-453a-a977-c8f143637724" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26328.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "192" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:17 GMT" + "Fri, 19 Oct 2018 18:51:22 GMT" ], "Pragma": [ "no-cache" @@ -47,77 +37,80 @@ "1199" ], "x-ms-request-id": [ - "c73bc73f-e2a4-448d-b741-19288bfd191d" + "246f3570-11da-40df-9411-feadcbf5880a" ], "x-ms-correlation-request-id": [ - "c73bc73f-e2a4-448d-b741-19288bfd191d" + "246f3570-11da-40df-9411-feadcbf5880a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070817Z:c73bc73f-e2a4-448d-b741-19288bfd191d" + "WESTUS2:20181019T185123Z:246f3570-11da-40df-9411-feadcbf5880a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "192" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "188" - ], "x-ms-client-request-id": [ - "701374be-c852-4266-a17a-a1e843541372" + "dc858078-d60c-4dce-bd02-6686b1773ef9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/9463ca72-7e1a-4fab-a0f5-d00bf313863b\",\r\n \"creationTime\": \"2017-11-19T23:08:20.44-08:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2017-11-19T23:08:20.44-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "621" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "188" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:19 GMT" + "Fri, 19 Oct 2018 18:51:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "701374be-c852-4266-a17a-a1e843541372" + "dc858078-d60c-4dce-bd02-6686b1773ef9" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -132,59 +125,59 @@ "1198" ], "x-ms-correlation-request-id": [ - "9c67c7fe-a790-47d5-8deb-fd6f34b5bd52" + "5016c98c-88e6-4515-a116-6375312f7492" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070819Z:9c67c7fe-a790-47d5-8deb-fd6f34b5bd52" + "WESTUS2:20181019T185125Z:5016c98c-88e6-4515-a116-6375312f7492" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/90945ddd-2b9c-4735-86d7-031b240af1e5\",\r\n \"creationTime\": \"2018-10-19T11:51:24.837-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T11:51:24.837-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67043a4e-8830-4065-a1c2-43bbcd0f546d" + "1c310cab-efbe-47fe-b870-ada2639e745f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:19 GMT" + "Fri, 19 Oct 2018 18:51:24 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "67043a4e-8830-4065-a1c2-43bbcd0f546d" + "1c310cab-efbe-47fe-b870-ada2639e745f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,62 +189,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14811" + "11984" ], "x-ms-correlation-request-id": [ - "5e5a6756-befc-4c8d-9836-a4e2b7db00dc" + "639a3bd8-c636-4060-a460-02e33e61ac7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070819Z:5e5a6756-befc-4c8d-9836-a4e2b7db00dc" + "WESTUS2:20181019T185125Z:639a3bd8-c636-4060-a460-02e33e61ac7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a04493d-e66a-4ef0-a5db-a42fc2676e24" + "f1eaf309-86f5-4d36-8703-aeca5defe977" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:19 GMT" + "Fri, 19 Oct 2018 18:51:24 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "9a04493d-e66a-4ef0-a5db-a42fc2676e24" + "f1eaf309-86f5-4d36-8703-aeca5defe977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -263,62 +256,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "11983" ], "x-ms-correlation-request-id": [ - "7038cc66-1ce2-4f16-aa53-4b93a9aca19f" + "b0439af2-3c5a-41ff-a782-67b5363e8214" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070820Z:7038cc66-1ce2-4f16-aa53-4b93a9aca19f" + "WESTUS2:20181019T185125Z:b0439af2-3c5a-41ff-a782-67b5363e8214" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4fc1a8c-eec3-4710-a38f-500d1fae1fc0" + "07d0967e-6e89-4fc1-9473-79932c2895c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:20 GMT" + "Fri, 19 Oct 2018 18:51:24 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "d4fc1a8c-eec3-4710-a38f-500d1fae1fc0" + "07d0967e-6e89-4fc1-9473-79932c2895c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -330,62 +323,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14809" + "11982" ], "x-ms-correlation-request-id": [ - "7b3ba69f-e8b9-45f4-8cb2-cc38b9de3c1d" + "219221e1-17ad-4b07-965e-333c8e9dfae0" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070820Z:7b3ba69f-e8b9-45f4-8cb2-cc38b9de3c1d" + "WESTUS2:20181019T185125Z:219221e1-17ad-4b07-965e-333c8e9dfae0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "025e78f5-0c4b-40a8-9840-5abb723f7f6e" + "051b4ec1-1477-4323-a512-4394ed1badf9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:20 GMT" + "Fri, 19 Oct 2018 18:51:25 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "025e78f5-0c4b-40a8-9840-5abb723f7f6e" + "051b4ec1-1477-4323-a512-4394ed1badf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,141 +390,144 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "11981" ], "x-ms-correlation-request-id": [ - "b4920688-4788-48f2-a9e4-6746db34952d" + "473e4181-b801-44ed-af3c-9a9da5f92291" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070820Z:b4920688-4788-48f2-a9e4-6746db34952d" + "WESTUS2:20181019T185125Z:473e4181-b801-44ed-af3c-9a9da5f92291" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0b3aa4e-3e54-4e6a-a61b-152c35d1c1e8" + "afc24d48-144e-44ba-b618-049a54dcbc42" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:21 GMT" + "Fri, 19 Oct 2018 18:51:25 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "b0b3aa4e-3e54-4e6a-a61b-152c35d1c1e8" + "afc24d48-144e-44ba-b618-049a54dcbc42" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "11980" ], "x-ms-correlation-request-id": [ - "e342049a-4a8b-47ad-8735-f2efb0c831d3" + "20d73394-c7a9-4350-ad88-b314f002fb76" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070821Z:e342049a-4a8b-47ad-8735-f2efb0c831d3" + "WESTUS2:20181019T185126Z:20d73394-c7a9-4350-ad88-b314f002fb76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"source\": {\r\n \"hash\": {\r\n \"algorithm\": \"sha256\",\r\n \"value\": \"A9E5DB56BA21513F61E0B3868816FDC6D4DF5131F5617D7FF0D769674BD5072F\"\r\n },\r\n \"type\": \"embeddedContent\",\r\n \"value\": \"Configuration SampleConfiguration {\\r\\n Node SampleConfiguration.localhost {\\r\\n WindowsFeature IIS {\\r\\n Name = \\\"Web - Server\\\";\\r\\n Ensure = \\\"Present\\\"; \\r\\n}}}\"\r\n },\r\n \"description\": \"sample configuration test\"\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "518" - ], "x-ms-client-request-id": [ - "34bb0229-1b2e-4632-9c47-e36365806a85" + "483e684d-325f-4b66-a32f-e428f4fdf964" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration\",\r\n \"name\": \"SampleConfiguration\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Configurations\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636467585038170000\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"jobCount\": 0,\r\n \"parameters\": {},\r\n \"description\": \"sample configuration test\",\r\n \"source\": null,\r\n \"state\": \"Published\",\r\n \"creationTime\": \"2017-11-19T23:08:23.783-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:08:23.817-08:00\",\r\n \"logVerbose\": false\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "635" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "518" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:22 GMT" + "Fri, 19 Oct 2018 18:51:26 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"636467585038170000\"" + "\"636755718874900000\"" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "34bb0229-1b2e-4632-9c47-e36365806a85" + "483e684d-325f-4b66-a32f-e428f4fdf964" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -546,68 +542,68 @@ "1197" ], "x-ms-correlation-request-id": [ - "3ec5a0a7-7257-4829-afcb-0cc7e77d2864" + "06aabe86-3228-4daf-bb63-4f2b1f496ea2" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070822Z:3ec5a0a7-7257-4829-afcb-0cc7e77d2864" + "WESTUS2:20181019T185127Z:06aabe86-3228-4daf-bb63-4f2b1f496ea2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "676" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration\",\r\n \"name\": \"SampleConfiguration\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Configurations\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636755718874900000\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"jobCount\": 0,\r\n \"parameters\": {},\r\n \"description\": \"sample configuration test\",\r\n \"source\": null,\r\n \"state\": \"Published\",\r\n \"creationTime\": \"2018-10-19T11:51:27.477-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:51:27.49-07:00\",\r\n \"logVerbose\": false,\r\n \"rawTags\": null,\r\n \"nodeConfigurationCount\": 0\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"source\": {\r\n \"hash\": {\r\n \"algorithm\": \"sha256\",\r\n \"value\": \"A9E5DB56BA21513F61E0B3868816FDC6D4DF5131F5617D7FF0D769674BD5072F\"\r\n },\r\n \"type\": \"embeddedContent\",\r\n \"value\": \"Configuration SampleConfiguration {\\r\\n Node SampleConfiguration.localhost {\\r\\n WindowsFeature IIS {\\r\\n Name = \\\"Web - Server\\\";\\r\\n Ensure = \\\"Present\\\"; \\r\\n}}}\"\r\n },\r\n \"description\": \"new sample configuration test\"\r\n },\r\n \"name\": \"SampleConfiguration\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "556" - ], "x-ms-client-request-id": [ - "7b629d2c-8187-44e2-b1f7-43ffe47a13bf" + "cd245ef2-dc88-4d14-9ff3-5e047be70ebe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration\",\r\n \"name\": \"SampleConfiguration\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Configurations\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636467585046430000\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"jobCount\": 0,\r\n \"parameters\": {},\r\n \"description\": \"new sample configuration test\",\r\n \"source\": null,\r\n \"state\": \"Published\",\r\n \"creationTime\": \"2017-11-19T23:08:23.783-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:08:24.643-08:00\",\r\n \"logVerbose\": false\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "556" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:22 GMT" + "Fri, 19 Oct 2018 18:51:27 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"636467585046430000\"" + "\"636755718883830000\"" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "7b629d2c-8187-44e2-b1f7-43ffe47a13bf" + "cd245ef2-dc88-4d14-9ff3-5e047be70ebe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -622,62 +618,62 @@ "1196" ], "x-ms-correlation-request-id": [ - "90835ae6-1b1e-487a-ac3a-b9cdb6aa58c4" + "2f6613f9-b04e-407d-ab0c-e3165caadd4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070823Z:90835ae6-1b1e-487a-ac3a-b9cdb6aa58c4" + "WESTUS2:20181019T185128Z:2f6613f9-b04e-407d-ab0c-e3165caadd4c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "681" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration\",\r\n \"name\": \"SampleConfiguration\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Configurations\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636755718883830000\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"jobCount\": 0,\r\n \"parameters\": {},\r\n \"description\": \"new sample configuration test\",\r\n \"source\": null,\r\n \"state\": \"Published\",\r\n \"creationTime\": \"2018-10-19T11:51:27.477-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:51:28.383-07:00\",\r\n \"logVerbose\": false,\r\n \"rawTags\": null,\r\n \"nodeConfigurationCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21ffb49d-1ca4-4aa2-b8cf-26691ac17941" + "66096a6e-69f3-4d53-b564-f6a0f2555a11" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration\",\r\n \"name\": \"SampleConfiguration\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Configurations\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636467585038170000\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": null,\r\n \"jobCount\": 0,\r\n \"parameters\": {},\r\n \"description\": \"sample configuration test\",\r\n \"source\": null,\r\n \"state\": \"Published\",\r\n \"creationTime\": \"2017-11-19T23:08:23.783-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:08:23.817-08:00\",\r\n \"logVerbose\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:22 GMT" + "Fri, 19 Oct 2018 18:51:27 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"636467585038170000\"" + "\"636755718874900000\"" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "21ffb49d-1ca4-4aa2-b8cf-26691ac17941" + "66096a6e-69f3-4d53-b564-f6a0f2555a11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -689,50 +685,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14806" + "11979" ], "x-ms-correlation-request-id": [ - "02b12299-b082-4a4e-9ade-78a717644a3d" + "db030d28-8806-4268-b24a-f935a93294f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070822Z:02b12299-b082-4a4e-9ade-78a717644a3d" + "WESTUS2:20181019T185128Z:db030d28-8806-4268-b24a-f935a93294f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "676" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration\",\r\n \"name\": \"SampleConfiguration\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Configurations\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636755718874900000\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"jobCount\": 0,\r\n \"parameters\": {},\r\n \"description\": \"sample configuration test\",\r\n \"source\": null,\r\n \"state\": \"Published\",\r\n \"creationTime\": \"2018-10-19T11:51:27.477-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:51:27.49-07:00\",\r\n \"logVerbose\": false,\r\n \"rawTags\": null,\r\n \"nodeConfigurationCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "492077f5-941a-4ee7-bfee-f6b335da8d2e" + "fcd1e5f0-2206-4d0d-807d-543fb459f19f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration' under resource group 'automation-sdk-test' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "225" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:24 GMT" + "Fri, 19 Oct 2018 18:51:28 GMT" ], "Pragma": [ "no-cache" @@ -741,65 +740,65 @@ "gateway" ], "x-ms-request-id": [ - "459cabb7-c72f-4f7b-94f7-6e42f7f2a3ca" + "8c8cecdb-ccde-4bd3-957e-f0d1f6a5854a" ], "x-ms-correlation-request-id": [ - "459cabb7-c72f-4f7b-94f7-6e42f7f2a3ca" + "8c8cecdb-ccde-4bd3-957e-f0d1f6a5854a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070824Z:459cabb7-c72f-4f7b-94f7-6e42f7f2a3ca" + "WESTUS2:20181019T185129Z:8c8cecdb-ccde-4bd3-957e-f0d1f6a5854a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration' under resource group 'automation-sdk-test' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4088eafb-52db-4587-9f54-1367e1584faf" + "e005c37b-5249-4d09-8152-3c512228a49e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"SampleConfiguration\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Configurations\",\r\n \"properties\": {\r\n \"state\": \"Published\",\r\n \"creationTime\": \"2017-11-19T23:08:23.783-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:08:24.643-08:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:23 GMT" + "Fri, 19 Oct 2018 18:51:27 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "4088eafb-52db-4587-9f54-1367e1584faf" + "e005c37b-5249-4d09-8152-3c512228a49e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -811,47 +810,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14805" + "11978" ], "x-ms-correlation-request-id": [ - "5eb1e178-b718-46f8-b7a0-51aad9e8b5c9" + "e8dd6888-ed02-4fbf-bf3a-937322d69459" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070823Z:5eb1e178-b718-46f8-b7a0-51aad9e8b5c9" + "WESTUS2:20181019T185128Z:e8dd6888-ed02-4fbf-bf3a-937322d69459" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"SampleConfiguration\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Configurations\",\r\n \"properties\": {\r\n \"state\": \"Published\",\r\n \"creationTime\": \"2018-10-19T11:51:27.477-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T11:51:28.383-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d07584e-cc3e-4c76-ad4a-0737584cc693" + "8ef4131b-e3bc-44e8-a264-66933b437543" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:08:24 GMT" + "Fri, 19 Oct 2018 18:51:28 GMT" ], "Pragma": [ "no-cache" @@ -860,7 +865,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "1d07584e-cc3e-4c76-ad4a-0737584cc693" + "8ef4131b-e3bc-44e8-a264-66933b437543" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -871,21 +876,31 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "a64b9b58-f48f-46fc-aeb2-137bbf49bd47" + "99c65202-9ecc-4e8e-8490-da9c854cb588" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T070824Z:a64b9b58-f48f-46fc-aeb2-137bbf49bd47" + "WESTUS2:20181019T185129Z:99c65202-9ecc-4e8e-8490-da9c854cb588" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "b5e4748c-f69a-467c-8749-e2f9c8cd3db0" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteDscNodeConfiguration.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteDscNodeConfiguration.json index 775c2168c4b2b..5736259288645 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteDscNodeConfiguration.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteDscNodeConfiguration.json @@ -1,123 +1,116 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourcegroups/automation-sdk-test?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/automation-sdk-test?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "31" - ], "x-ms-client-request-id": [ - "e776a7b3-21c9-4cef-aa8d-3fa178034b1f" + "5681dac0-f153-4eb6-9d88-bcc631a53dbd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26328.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:17:58 GMT" + "Fri, 19 Oct 2018 20:35:16 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "d4a1704a-88d1-4fc4-a894-fd5fb9b9ee5f" + "447cda74-ce8d-430b-9433-70d8ce46689b" ], "x-ms-correlation-request-id": [ - "d4a1704a-88d1-4fc4-a894-fd5fb9b9ee5f" + "447cda74-ce8d-430b-9433-70d8ce46689b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201758Z:d4a1704a-88d1-4fc4-a894-fd5fb9b9ee5f" + "WESTUS2:20181019T203516Z:447cda74-ce8d-430b-9433-70d8ce46689b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "192" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "188" - ], "x-ms-client-request-id": [ - "51718d94-6494-48f3-ae14-25536c7ae213" + "ebf2bd07-f67b-4b8e-b95f-358200e11c50" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/5b38c1c4-3598-4108-bc6f-5c7462e5ee2a\",\r\n \"creationTime\": \"2018-04-10T16:21:45.85-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-06-26T13:17:59.707-07:00\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "188" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:17:59 GMT" + "Fri, 19 Oct 2018 20:35:17 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "51718d94-6494-48f3-ae14-25536c7ae213" + "ebf2bd07-f67b-4b8e-b95f-358200e11c50" + ], + "x-ms-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + ], + "ocp-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -132,62 +125,59 @@ "1198" ], "x-ms-correlation-request-id": [ - "758e0fd5-6c87-4fca-ae39-8d34b032c4e1" + "632c1071-f21f-49a6-9307-ff46ded6abe1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201759Z:758e0fd5-6c87-4fca-ae39-8d34b032c4e1" + "WESTUS2:20181019T203518Z:632c1071-f21f-49a6-9307-ff46ded6abe1" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/d20e166e-efc8-4823-9140-78885db45613\",\r\n \"creationTime\": \"2018-10-19T13:35:18.143-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T13:35:18.143-07:00\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6dd2090c-f257-4365-abef-0a0dacad526e" + "caae7c32-319b-4ae1-882b-98caa4078ad1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:17:59 GMT" + "Fri, 19 Oct 2018 20:35:18 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "6dd2090c-f257-4365-abef-0a0dacad526e" + "caae7c32-319b-4ae1-882b-98caa4078ad1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,65 +189,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11998" ], "x-ms-correlation-request-id": [ - "3e96d1f6-4b1e-4e7c-8017-7472d6dbf5ae" + "c232f04a-01dd-4c5b-9fde-df94232c32af" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201800Z:3e96d1f6-4b1e-4e7c-8017-7472d6dbf5ae" + "WESTUS2:20181019T203518Z:c232f04a-01dd-4c5b-9fde-df94232c32af" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a3b7406-80a8-4fec-94ce-ca5e52d666ff" + "b161a699-3a2e-4088-bf76-bc789ce48d72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:17:59 GMT" + "Fri, 19 Oct 2018 20:35:18 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "5a3b7406-80a8-4fec-94ce-ca5e52d666ff" + "b161a699-3a2e-4088-bf76-bc789ce48d72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -269,65 +256,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11997" ], "x-ms-correlation-request-id": [ - "1b1e9285-3d42-4464-af45-278b1ea5e2ac" + "ea8b3460-27a8-4845-bd0d-c8094c80cc4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201800Z:1b1e9285-3d42-4464-af45-278b1ea5e2ac" + "WESTUS2:20181019T203519Z:ea8b3460-27a8-4845-bd0d-c8094c80cc4c" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36aeb93b-7ceb-4459-8300-49950851c9e2" + "879f8f15-278a-480e-9abb-64e8e6040073" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:18:00 GMT" + "Fri, 19 Oct 2018 20:35:18 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "36aeb93b-7ceb-4459-8300-49950851c9e2" + "879f8f15-278a-480e-9abb-64e8e6040073" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -339,65 +323,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11996" ], "x-ms-correlation-request-id": [ - "f3d5c7ef-108c-4833-abc4-8ca20128f07a" + "bbfc9455-09f6-42a3-ac03-085daabad056" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201800Z:f3d5c7ef-108c-4833-abc4-8ca20128f07a" + "WESTUS2:20181019T203519Z:bbfc9455-09f6-42a3-ac03-085daabad056" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e71fd3c3-7915-47b3-b212-e22e837a2a86" + "a358a83d-baf1-496d-94d1-0a9a4c96f6d6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:18:00 GMT" + "Fri, 19 Oct 2018 20:35:18 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "e71fd3c3-7915-47b3-b212-e22e837a2a86" + "a358a83d-baf1-496d-94d1-0a9a4c96f6d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -409,138 +390,144 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11995" ], "x-ms-correlation-request-id": [ - "b6193a42-2fe9-4053-b512-a5b835709efd" + "0e656133-f655-4142-97e2-fedaa88299eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201800Z:b6193a42-2fe9-4053-b512-a5b835709efd" + "WESTUS2:20181019T203519Z:0e656133-f655-4142-97e2-fedaa88299eb" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2023c50c-8283-4c1f-89bd-83eb22852780" + "79877a4b-8434-4472-b831-79f54fb3add1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:18:01 GMT" + "Fri, 19 Oct 2018 20:35:19 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "2023c50c-8283-4c1f-89bd-83eb22852780" + "79877a4b-8434-4472-b831-79f54fb3add1" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11994" ], "x-ms-correlation-request-id": [ - "c9177378-0a95-4918-9ffd-54cdf7f7fdfb" + "6f9e8e74-68b6-4364-b911-5ca2bad18910" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201801Z:c9177378-0a95-4918-9ffd-54cdf7f7fdfb" + "WESTUS2:20181019T203519Z:6f9e8e74-68b6-4364-b911-5ca2bad18910" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY29uZmlndXJhdGlvbnMvU2FtcGxlQ29uZmlndXJhdGlvbj9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"source\": {\r\n \"hash\": {\r\n \"algorithm\": \"sha256\",\r\n \"value\": \"A9E5DB56BA21513F61E0B3868816FDC6D4DF5131F5617D7FF0D769674BD5072F\"\r\n },\r\n \"type\": \"embeddedContent\",\r\n \"value\": \"Configuration SampleConfiguration {\\r\\n Node SampleConfiguration.localhost {\\r\\n WindowsFeature IIS {\\r\\n Name = \\\"Web - Server\\\";\\r\\n Ensure = \\\"Present\\\"; \\r\\n}}}\"\r\n },\r\n \"description\": \"sample configuration test\"\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "518" - ], "x-ms-client-request-id": [ - "1b666d8f-5b66-4601-8650-ae13488551c2" + "257fb0db-64a5-45be-9b77-5e251160aa9a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration\",\r\n \"name\": \"SampleConfiguration\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Configurations\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"jobCount\": 0,\r\n \"parameters\": {},\r\n \"description\": \"sample configuration test\",\r\n \"source\": null,\r\n \"state\": null,\r\n \"creationTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"logVerbose\": false,\r\n \"rawTags\": null,\r\n \"nodeConfigurationCount\": 0\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "518" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:18:02 GMT" + "Fri, 19 Oct 2018 20:35:20 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "ETag": [ + "\"636755781207530000\"" + ], + "Location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "1b666d8f-5b66-4601-8650-ae13488551c2" + "257fb0db-64a5-45be-9b77-5e251160aa9a" + ], + "x-ms-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31" + ], + "ocp-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration?api-version=2015-10-31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -555,74 +542,74 @@ "1197" ], "x-ms-correlation-request-id": [ - "a764543d-df0a-4471-ad74-dfe3a33842db" + "70f95695-4ab8-43d9-8bc1-8bedf8cdf3c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201802Z:a764543d-df0a-4471-ad74-dfe3a33842db" + "WESTUS2:20181019T203521Z:70f95695-4ab8-43d9-8bc1-8bedf8cdf3c0" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "676" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/configurations/SampleConfiguration\",\r\n \"name\": \"SampleConfiguration\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Configurations\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636755781207530000\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"jobCount\": 0,\r\n \"parameters\": {},\r\n \"description\": \"sample configuration test\",\r\n \"source\": null,\r\n \"state\": \"Published\",\r\n \"creationTime\": \"2018-10-19T13:35:20.74-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T13:35:20.753-07:00\",\r\n \"logVerbose\": false,\r\n \"rawTags\": null,\r\n \"nodeConfigurationCount\": 0\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"source\": {\r\n \"hash\": {\r\n \"algorithm\": \"sha256\",\r\n \"value\": \"6DE256A57F01BFA29B88696D5E77A383D6E61484C7686E8DB955FA10ACE9FFE5\"\r\n },\r\n \"type\": \"embeddedContent\",\r\n \"value\": \"instance of MSFT_RoleResource as $MSFT_RoleResource1ref\\r\\n{\\r\\n ResourceID = \\\"[WindowsFeature]IIS\\\";\\r\\n Ensure = \\\"Present\\\";\\r\\n SourceInfo = \\\"::3::32::WindowsFeature\\\";\\r\\n Name = \\\"Web-Server\\\"; \\r\\n ModuleName = \\\"PsDesiredStateConfiguration\\\";\\r\\n ModuleVersion = \\\"1.0\\\";\\r\\n ConfigurationName = \\\"SampleConfiguration\\\";\\r\\n};\\r\\n\\r\\ninstance of OMI_ConfigurationDocument\\r\\n{\\r\\n Version=\\\"2.0.0\\\";\\r\\n MinimumCompatibleVersion = \\\"1.0.0\\\";\\r\\n CompatibleVersionAdditionalProperties= {\\\"Omi_BaseResource:ConfigurationName\\\"};\\r\\n Author=\\\"vameru\\\";\\r\\n GenerationDate=\\\"03/30/2017 13:40:25\\\";\\r\\n GenerationHost=\\\"VAMERU-BACKEND\\\";\\r\\n Name=\\\"SampleConfiguration\\\";\\r\\n};\",\r\n \"version\": \"1.0\"\r\n },\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n }\r\n },\r\n \"name\": \"SampleConfiguration.localhost\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1111" - ], "x-ms-client-request-id": [ - "a3bccf0e-5e60-4376-a930-359aa03a49b0" + "bccd0fb5-3ab5-4b0d-a450-d629d5e9eae1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/nodeConfigurations\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2018-06-26T13:18:03.389762-07:00\",\r\n \"creationTime\": \"2018-06-26T13:18:03.389762-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n },\r\n \"source\": null,\r\n \"nodeCount\": 0,\r\n \"incrementNodeConfigurationBuild\": false\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "563" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1111" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:18:03 GMT" + "Fri, 19 Oct 2018 20:35:21 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "a3bccf0e-5e60-4376-a930-359aa03a49b0" + "bccd0fb5-3ab5-4b0d-a450-d629d5e9eae1" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -637,74 +624,74 @@ "1196" ], "x-ms-correlation-request-id": [ - "ebfebc35-0abb-4dc4-8a90-679a9082fb60" + "4b163861-45fa-4d7c-b80a-630e0893a9f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201803Z:ebfebc35-0abb-4dc4-8a90-679a9082fb60" + "WESTUS2:20181019T203522Z:4b163861-45fa-4d7c-b80a-630e0893a9f1" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "565" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/nodeConfigurations\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2018-10-19T13:35:22.1412768-07:00\",\r\n \"creationTime\": \"2018-10-19T13:35:22.1412768-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n },\r\n \"source\": null,\r\n \"nodeCount\": 0,\r\n \"incrementNodeConfigurationBuild\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"source\": {\r\n \"hash\": {\r\n \"algorithm\": \"sha256\",\r\n \"value\": \"6DE256A57F01BFA29B88696D5E77A383D6E61484C7686E8DB955FA10ACE9FFE5\"\r\n },\r\n \"type\": \"embeddedContent\",\r\n \"value\": \"instance of MSFT_RoleResource as $MSFT_RoleResource1ref\\r\\n{\\r\\n ResourceID = \\\"[WindowsFeature]IIS\\\";\\r\\n Ensure = \\\"Present\\\";\\r\\n SourceInfo = \\\"::3::32::WindowsFeature\\\";\\r\\n Name = \\\"Web-Server\\\"; \\r\\n ModuleName = \\\"PsDesiredStateConfiguration\\\";\\r\\n ModuleVersion = \\\"1.0\\\";\\r\\n ConfigurationName = \\\"SampleConfiguration\\\";\\r\\n};\\r\\n\\r\\ninstance of OMI_ConfigurationDocument\\r\\n{\\r\\n Version=\\\"2.0.0\\\";\\r\\n MinimumCompatibleVersion = \\\"1.0.0\\\";\\r\\n CompatibleVersionAdditionalProperties= {\\\"Omi_BaseResource:ConfigurationName\\\"};\\r\\n Author=\\\"vameru\\\";\\r\\n GenerationDate=\\\"03/30/2017 13:40:25\\\";\\r\\n GenerationHost=\\\"VAMERU-BACKEND\\\";\\r\\n Name=\\\"SampleConfiguration\\\";\\r\\n};\",\r\n \"version\": \"2.0\"\r\n },\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n }\r\n },\r\n \"name\": \"SampleConfiguration.localhost\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1111" - ], "x-ms-client-request-id": [ - "86996fd0-03b4-4976-b250-8440bd3c37a1" + "bbfcd0a7-7da0-4827-bed1-7588bdd3549d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/nodeConfigurations\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2018-06-26T13:18:34.4147415-07:00\",\r\n \"creationTime\": \"2018-06-26T13:18:34.4147415-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n },\r\n \"source\": null,\r\n \"nodeCount\": 0,\r\n \"incrementNodeConfigurationBuild\": false\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "565" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1111" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:18:33 GMT" + "Fri, 19 Oct 2018 20:35:52 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "86996fd0-03b4-4976-b250-8440bd3c37a1" + "bbfcd0a7-7da0-4827-bed1-7588bdd3549d" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -719,56 +706,53 @@ "1195" ], "x-ms-correlation-request-id": [ - "c6eae6f3-10bd-4317-bad7-71d82f4df37a" + "a14debb5-6ef0-44eb-89d6-7cae5820adb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201834Z:c6eae6f3-10bd-4317-bad7-71d82f4df37a" + "WESTUS2:20181019T203553Z:a14debb5-6ef0-44eb-89d6-7cae5820adb9" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "565" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/nodeConfigurations\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2018-10-19T13:35:53.0579292-07:00\",\r\n \"creationTime\": \"2018-10-19T13:35:53.0579292-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n },\r\n \"source\": null,\r\n \"nodeCount\": 0,\r\n \"incrementNodeConfigurationBuild\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/nodeConfigurations\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2018-04-10T16:32:08.3202284-07:00\",\r\n \"creationTime\": \"2018-04-10T16:32:08.3202284-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n },\r\n \"source\": null,\r\n \"nodeCount\": 0,\r\n \"incrementNodeConfigurationBuild\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:18:32 GMT" + "Fri, 19 Oct 2018 20:35:52 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "4ba6f8d9-fcf3-4c60-b4fd-80bbee11900c" + "c6e0905e-2408-4e8c-b791-62cf5bf520b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,65 +764,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11992" ], "x-ms-correlation-request-id": [ - "227b4164-0466-45c1-ac22-42e497858532" + "425aafc5-9802-42d3-9c97-0a8ae1d550b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201833Z:227b4164-0466-45c1-ac22-42e497858532" + "WESTUS2:20181019T203552Z:425aafc5-9802-42d3-9c97-0a8ae1d550b3" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "565" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/nodeConfigurations\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2018-10-19T13:35:22.1175154-07:00\",\r\n \"creationTime\": \"2018-10-19T13:35:22.1175154-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n },\r\n \"source\": null,\r\n \"nodeCount\": 0,\r\n \"incrementNodeConfigurationBuild\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3369eb60-ec08-41f4-889a-73852eb282a8" + "2c5d64e3-3eab-4b3b-af04-54884ec6298f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/nodeConfigurations\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2018-04-10T16:32:08.3202284-07:00\",\r\n \"creationTime\": \"2018-04-10T16:32:08.3202284-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n },\r\n \"source\": null,\r\n \"nodeCount\": 0,\r\n \"incrementNodeConfigurationBuild\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:18:33 GMT" + "Fri, 19 Oct 2018 20:35:52 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "3369eb60-ec08-41f4-889a-73852eb282a8" + "2c5d64e3-3eab-4b3b-af04-54884ec6298f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -850,59 +831,56 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11991" ], "x-ms-correlation-request-id": [ - "18a5e342-67dc-41ed-b35c-abda7334ed20" + "61e9808e-5f88-4d72-9b02-1466a7fd294c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201833Z:18a5e342-67dc-41ed-b35c-abda7334ed20" + "WESTUS2:20181019T203552Z:61e9808e-5f88-4d72-9b02-1466a7fd294c" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "565" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/nodeConfigurations\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2018-10-19T13:35:22.1175154-07:00\",\r\n \"creationTime\": \"2018-10-19T13:35:22.1175154-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n },\r\n \"source\": null,\r\n \"nodeCount\": 0,\r\n \"incrementNodeConfigurationBuild\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/nodeConfigurations\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2018-04-10T16:32:08.3202284-07:00\",\r\n \"creationTime\": \"2018-04-10T16:32:08.3202284-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n },\r\n \"source\": null,\r\n \"nodeCount\": 0,\r\n \"incrementNodeConfigurationBuild\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:19:04 GMT" + "Fri, 19 Oct 2018 20:36:22 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "992f51d0-0159-4ffd-85d2-e32fa32f29cd" + "0e9620cb-1490-44c8-af50-d86d19e347b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -914,53 +892,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "11990" ], "x-ms-correlation-request-id": [ - "b766f3b2-6b15-4d55-b83e-688a8d9a12df" + "0ce31bb0-795b-41c6-b2d4-8635d8a9734a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201904Z:b766f3b2-6b15-4d55-b83e-688a8d9a12df" + "WESTUS2:20181019T203623Z:0ce31bb0-795b-41c6-b2d4-8635d8a9734a" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "565" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/nodeConfigurations\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2018-10-19T13:35:22.1175154-07:00\",\r\n \"creationTime\": \"2018-10-19T13:35:22.1175154-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n },\r\n \"source\": null,\r\n \"nodeCount\": 0,\r\n \"incrementNodeConfigurationBuild\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2b71d06-69be-47fb-aeb5-1377e1a9f198" + "a833ee87-f1f9-42e4-8ca9-fbc8110cd026" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "32" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:19:04 GMT" + "Fri, 19 Oct 2018 20:36:23 GMT" ], "Pragma": [ "no-cache" @@ -969,7 +947,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "f2b71d06-69be-47fb-aeb5-1377e1a9f198" + "a833ee87-f1f9-42e4-8ca9-fbc8110cd026" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,65 +959,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "11988" ], "x-ms-correlation-request-id": [ - "f18509f6-29f0-47b6-878f-582d7e4ddf92" + "f8a486ae-8f7c-45bb-9257-6872eea77a02" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201905Z:f18509f6-29f0-47b6-878f-582d7e4ddf92" + "WESTUS2:20181019T203623Z:f8a486ae-8f7c-45bb-9257-6872eea77a02" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations?api-version=2018-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations?api-version=2018-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54413a63-6ccb-44c9-a54c-d817e53668af" + "3cde63b3-d1d2-4790-a856-d3601b85d721" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"properties\": {\r\n \"creationTime\": \"2018-04-10T16:32:08.3202284-07:00\",\r\n \"lastModifiedTime\": \"2018-04-10T16:32:08.3202284-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:19:04 GMT" + "Fri, 19 Oct 2018 20:36:22 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "54413a63-6ccb-44c9-a54c-d817e53668af" + "3cde63b3-d1d2-4790-a856-d3601b85d721" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1051,50 +1026,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "11989" ], "x-ms-correlation-request-id": [ - "7f591b90-cc43-4499-a7a9-71ff8edd6f48" + "6bac7262-232a-43e7-bd18-c133ab38b8fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201904Z:7f591b90-cc43-4499-a7a9-71ff8edd6f48" + "WESTUS2:20181019T203623Z:6bac7262-232a-43e7-bd18-c133ab38b8fb" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "441" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost\",\r\n \"name\": \"SampleConfiguration.localhost\",\r\n \"properties\": {\r\n \"creationTime\": \"2018-10-19T13:35:22.1175154-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T13:35:22.1175154-07:00\",\r\n \"configuration\": {\r\n \"name\": \"SampleConfiguration\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/nodeConfigurations/SampleConfiguration.localhost?api-version=2018-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvbm9kZUNvbmZpZ3VyYXRpb25zL1NhbXBsZUNvbmZpZ3VyYXRpb24ubG9jYWxob3N0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93b685d8-3df0-4c42-a777-d9703cd9d21c" + "e123d9bb-4d90-49a0-ae69-156864e5934e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.3.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 26 Jun 2018 20:19:04 GMT" + "Fri, 19 Oct 2018 20:36:23 GMT" ], "Pragma": [ "no-cache" @@ -1103,7 +1081,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "93b685d8-3df0-4c42-a777-d9703cd9d21c" + "e123d9bb-4d90-49a0-ae69-156864e5934e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1118,20 +1096,27 @@ "14999" ], "x-ms-correlation-request-id": [ - "afdb8617-9bd4-491e-a096-ccea72a528e1" + "8443b6fa-3a3e-4b30-80d5-38898062f745" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T201905Z:afdb8617-9bd4-491e-a096-ccea72a528e1" + "WESTUS2:20181019T203623Z:8443b6fa-3a3e-4b30-80d5-38898062f745" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "b5e4748c-f69a-467c-8749-e2f9c8cd3db0" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeletePython2Packages.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeletePython2Packages.json new file mode 100644 index 0000000000000..37b5189bf5f6b --- /dev/null +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeletePython2Packages.json @@ -0,0 +1,3513 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/automation-sdk-test?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4f9ad85-0cef-4ab7-8d4f-5098449a8cd7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:04:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "186d40ee-5bee-4dab-9356-8e794aea0052" + ], + "x-ms-correlation-request-id": [ + "186d40ee-5bee-4dab-9356-8e794aea0052" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210458Z:186d40ee-5bee-4dab-9356-8e794aea0052" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "192" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cf6300a-e7b1-4a3a-bd27-2736bcf01d00" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "188" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:04:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "7cf6300a-e7b1-4a3a-bd27-2736bcf01d00" + ], + "x-ms-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + ], + "ocp-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d5283bbe-2dc4-4221-9de4-1826bedfe0fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210500Z:d5283bbe-2dc4-4221-9de4-1826bedfe0fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/45f383b1-51c2-4036-b4f3-aa644bd42ddb\",\r\n \"creationTime\": \"2018-10-19T14:05:00.13-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T14:05:00.13-07:00\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1d5c716-ff66-46f3-836d-bb62e45ddb01" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:04:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "f1d5c716-ff66-46f3-836d-bb62e45ddb01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "d4496ae6-397e-4f85-8313-7c6665499b9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210500Z:d4496ae6-397e-4f85-8313-7c6665499b9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52cddaaa-6d83-4fe7-926c-5e5828cc325f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "52cddaaa-6d83-4fe7-926c-5e5828cc325f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "8b7c9b51-5155-4b7e-818b-7a86ebb0f7d7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210500Z:8b7c9b51-5155-4b7e-818b-7a86ebb0f7d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d898e75a-f8f4-466c-af32-de9de2763278" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "d898e75a-f8f4-466c-af32-de9de2763278" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "a1addecb-0b5d-4472-b2d8-67911ec854d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210501Z:a1addecb-0b5d-4472-b2d8-67911ec854d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ef5964a-5018-4de9-9220-33648b69f3ac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "0ef5964a-5018-4de9-9220-33648b69f3ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "83e82c3f-4ae5-4b49-96a0-107c396970ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210501Z:83e82c3f-4ae5-4b49-96a0-107c396970ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf31af01-f2e8-4acd-a1ca-e33cfd87f062" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "bf31af01-f2e8-4acd-a1ca-e33cfd87f062" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "4e49e22d-d852-4cfd-882b-8cbeb1d1d337" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210502Z:4e49e22d-d852-4cfd-882b-8cbeb1d1d337" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7055e969-1652-46e5-a510-248515c33f48" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "7055e969-1652-46e5-a510-248515c33f48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "b72eef4b-32bc-4d92-ac23-5769730046e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210502Z:b72eef4b-32bc-4d92-ac23-5769730046e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e76eb5d4-faed-4772-8a3c-140f5999da34" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:08:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "e76eb5d4-faed-4772-8a3c-140f5999da34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "2e7efbd5-cf6c-433d-ba67-3d9a193b66db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210835Z:2e7efbd5-cf6c-433d-ba67-3d9a193b66db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"contentLink\": {\r\n \"uri\": \"https://bhbrahmaprodtestingseau.blob.core.windows.net/module1/numpy-1.14.5-cp27-none-win_amd64.whl\"\r\n }\r\n },\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0eb37208-a207-4109-9d66-e429d1fa36a8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "187" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "0eb37208-a207-4109-9d66-e429d1fa36a8" + ], + "x-ms-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30" + ], + "ocp-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "984346ad-af0d-4d32-bd00-c342ecd852c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210504Z:984346ad-af0d-4d32-bd00-c342ecd852c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": null\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"contentLink\": {\r\n \"uri\": \"https://bhbrahmaprodtestingseau.blob.core.windows.net/module2/numpy-1.15.2-cp27-none-win_amd64.whl\"\r\n }\r\n },\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5046ebb3-0267-4691-bfc3-b9eae5d5e7a5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "187" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "5046ebb3-0267-4691-bfc3-b9eae5d5e7a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "a547d447-4cc2-4de6-8692-e2ecd6ed81de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210644Z:a547d447-4cc2-4de6-8692-e2ecd6ed81de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": null\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c440427f-e287-476c-b2a3-6d4fea931f5e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "c440427f-e287-476c-b2a3-6d4fea931f5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "a56f235c-8905-434e-8b71-8b16fd21a73b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210509Z:a56f235c-8905-434e-8b71-8b16fd21a73b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48b8f4dc-80b1-4013-bc0f-f64cfc7ef9a7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "48b8f4dc-80b1-4013-bc0f-f64cfc7ef9a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "6cef7a36-2748-4878-811c-cc6492b5290b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210514Z:6cef7a36-2748-4878-811c-cc6492b5290b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69618f24-eb17-412d-b9db-301ce74a112a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "69618f24-eb17-412d-b9db-301ce74a112a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "62ffaf4e-d693-4403-a92f-6e8c879c7689" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210519Z:62ffaf4e-d693-4403-a92f-6e8c879c7689" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e27516c4-d25d-4c7a-aeb9-421cd3cd7806" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "e27516c4-d25d-4c7a-aeb9-421cd3cd7806" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "17baebc8-791a-4504-b931-882b99ef2ce4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210525Z:17baebc8-791a-4504-b931-882b99ef2ce4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cdd17b7-354b-43b0-b736-271185f32b83" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "0cdd17b7-354b-43b0-b736-271185f32b83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "ef299d17-85f2-4c6f-9ef6-53f15855cb0d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210530Z:ef299d17-85f2-4c6f-9ef6-53f15855cb0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "333b89d8-f78c-419d-a6ef-99b56bfbcec1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "333b89d8-f78c-419d-a6ef-99b56bfbcec1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "f9e9f40a-527f-4ce9-9077-ee8bd0ab9e99" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210535Z:f9e9f40a-527f-4ce9-9077-ee8bd0ab9e99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "421bbb6a-2c45-49d8-b1be-d80a48f2799d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "421bbb6a-2c45-49d8-b1be-d80a48f2799d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "d925cbfe-d195-485d-8391-c993129b584a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210540Z:d925cbfe-d195-485d-8391-c993129b584a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffaa0483-39f5-446b-adac-1e310ded1bce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "ffaa0483-39f5-446b-adac-1e310ded1bce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "5e9f4a99-e618-48a9-bda4-bd185de7dd30" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210546Z:5e9f4a99-e618-48a9-bda4-bd185de7dd30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13921776-9380-4f23-878b-c0bffbdce3e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "13921776-9380-4f23-878b-c0bffbdce3e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "f83f880d-1b19-44c7-aad2-e28a01591e03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210551Z:f83f880d-1b19-44c7-aad2-e28a01591e03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0522804-0c8d-4312-9d3f-0f9dc0af317b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:05:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "d0522804-0c8d-4312-9d3f-0f9dc0af317b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "2cc12cd3-39d1-425a-b345-419ed721bd32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210556Z:2cc12cd3-39d1-425a-b345-419ed721bd32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "069c9b7f-c730-4fd6-86fe-1deb8f33e4c5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "069c9b7f-c730-4fd6-86fe-1deb8f33e4c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "350be7bd-4061-4a99-a46f-d449cf54adba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210601Z:350be7bd-4061-4a99-a46f-d449cf54adba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:05:03.863-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0060b410-0101-40fc-94c7-0fba3000c82e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "0060b410-0101-40fc-94c7-0fba3000c82e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "f17906d0-ce70-4628-83e0-285454065efb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210606Z:f17906d0-ce70-4628-83e0-285454065efb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "601" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:03.083-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"RunningImportModuleRunbook\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a1d1a4f-3189-4860-a5aa-5b39d5285810" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "9a1d1a4f-3189-4860-a5aa-5b39d5285810" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "3a3aee3c-38f7-4216-afdf-36c622115811" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210612Z:3a3aee3c-38f7-4216-afdf-36c622115811" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:08.85-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36432e0d-5496-4704-adf0-6e98d11184d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "36432e0d-5496-4704-adf0-6e98d11184d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "91ee6116-4943-4419-8ca8-c8446f7c4dd9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210617Z:91ee6116-4943-4419-8ca8-c8446f7c4dd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:08.85-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8f633c8-ca09-4abd-83c4-625c1631fccf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "c8f633c8-ca09-4abd-83c4-625c1631fccf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "38734d1e-6b59-4c5a-8116-681742e4ba4a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210622Z:38734d1e-6b59-4c5a-8116-681742e4ba4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:08.85-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12c6c11b-3f6b-4b65-9f76-ffbe3f101f4b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "12c6c11b-3f6b-4b65-9f76-ffbe3f101f4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "2389c8f1-ee62-41b0-815c-5d02a54828ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210628Z:2389c8f1-ee62-41b0-815c-5d02a54828ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:08.85-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a8a3078-0f2b-4cd1-87c6-211fa78bc999" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "8a8a3078-0f2b-4cd1-87c6-211fa78bc999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "d6dc3c01-e912-4cb0-afdc-945c67a6d711" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210633Z:d6dc3c01-e912-4cb0-afdc-945c67a6d711" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:08.85-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff78369e-6c19-4676-ae9e-bd7bc08f081a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "ff78369e-6c19-4676-ae9e-bd7bc08f081a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "cbb4d1f8-0866-4726-b941-09c73e024a74" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210638Z:cbb4d1f8-0866-4726-b941-09c73e024a74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": null,\r\n \"sizeInBytes\": 0,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:08.85-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2e2b644-c6a2-44da-bc89-7353a4a2de86" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "a2e2b644-c6a2-44da-bc89-7353a4a2de86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-correlation-request-id": [ + "15fc1f07-cefd-4fd9-b133-56a918036145" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210643Z:15fc1f07-cefd-4fd9-b133-56a918036145" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "594" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:40.85-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a75e88b-e2e3-405c-94f1-050b457f3bf6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "7a75e88b-e2e3-405c-94f1-050b457f3bf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "5f69bb69-bc9e-4821-9249-698ee3c1c726" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210650Z:5f69bb69-bc9e-4821-9249-698ee3c1c726" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2ae977c-e0a7-461b-9271-cf1406420e0b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:06:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "f2ae977c-e0a7-461b-9271-cf1406420e0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "bfe6d29d-a37a-4ea8-8cc5-7341959ca795" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210655Z:bfe6d29d-a37a-4ea8-8cc5-7341959ca795" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d20f2121-a947-4996-ad7d-b3f0d7bd467a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "d20f2121-a947-4996-ad7d-b3f0d7bd467a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "e4d17348-774c-4472-ade2-2d3b8f8a617e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210700Z:e4d17348-774c-4472-ade2-2d3b8f8a617e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ad053b5-6513-48ca-98f3-874dfbb0e28f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "2ad053b5-6513-48ca-98f3-874dfbb0e28f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "490f60b2-9a98-4a6a-8ffa-6fdb80a0e688" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210705Z:490f60b2-9a98-4a6a-8ffa-6fdb80a0e688" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea6d94a6-ab17-43ce-82da-920d2734509b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "ea6d94a6-ab17-43ce-82da-920d2734509b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "0e50ac7f-47a4-4ecb-9890-36f567d64977" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210711Z:0e50ac7f-47a4-4ecb-9890-36f567d64977" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e204bfd4-2fff-4ec5-8025-ffeb8394c537" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "e204bfd4-2fff-4ec5-8025-ffeb8394c537" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "69955c93-83b6-4cd7-8916-dbeca266c75b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210716Z:69955c93-83b6-4cd7-8916-dbeca266c75b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc7fa1c7-1cfd-429e-a130-917c933bff6f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "fc7fa1c7-1cfd-429e-a130-917c933bff6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "1fbb3ce0-7bed-4d62-b4d5-207e535c7a41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210721Z:1fbb3ce0-7bed-4d62-b4d5-207e535c7a41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b334241-5138-4c70-8b1b-854bc5456638" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "0b334241-5138-4c70-8b1b-854bc5456638" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "0042afc8-a4e3-4554-a6c8-dffd60e23ddd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210726Z:0042afc8-a4e3-4554-a6c8-dffd60e23ddd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"numpy\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb8ce667-adad-446f-8d44-a71e0ee2c02c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "bb8ce667-adad-446f-8d44-a71e0ee2c02c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "ffb5c2ee-e50d-48f2-bc34-20e4b7e63181" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210731Z:ffb5c2ee-e50d-48f2-bc34-20e4b7e63181" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1878128d-7cb3-4b2c-88db-fc5e70225f7b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "1878128d-7cb3-4b2c-88db-fc5e70225f7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-correlation-request-id": [ + "95fd60ab-ac17-4d3c-b00a-f10d7ea59328" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210737Z:95fd60ab-ac17-4d3c-b00a-f10d7ea59328" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c499990b-36ea-4299-a71d-855b961ca9f4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "c499990b-36ea-4299-a71d-855b961ca9f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "06193c18-dec3-4986-965d-a31f977ec7f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210742Z:06193c18-dec3-4986-965d-a31f977ec7f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9969d2c2-9386-4115-aef4-55ac89fb74c2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "9969d2c2-9386-4115-aef4-55ac89fb74c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-correlation-request-id": [ + "f7189ac3-9a05-4221-a20c-b2dcc05d9b7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210747Z:f7189ac3-9a05-4221-a20c-b2dcc05d9b7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5727f76a-8494-48bb-8b38-1ecf7c0b7f34" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "5727f76a-8494-48bb-8b38-1ecf7c0b7f34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-correlation-request-id": [ + "b02d6a24-57e9-4212-8eb6-ded9ab456d37" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210752Z:b02d6a24-57e9-4212-8eb6-ded9ab456d37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:06:44.82-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f8d37f3-965b-4106-aaf1-8bc9d2a8645a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:07:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "2f8d37f3-965b-4106-aaf1-8bc9d2a8645a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-correlation-request-id": [ + "da1aea9b-b422-4df8-9135-78e9b41beb4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210758Z:da1aea9b-b422-4df8-9135-78e9b41beb4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "611" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:07:54.37-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"RunningImportModuleRunbook\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47d1c7d4-13e3-4680-bfd1-c39ed3f55358" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:08:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "47d1c7d4-13e3-4680-bfd1-c39ed3f55358" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-correlation-request-id": [ + "18b48bc6-4977-4e1c-b9c1-3d564f355836" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210803Z:18b48bc6-4977-4e1c-b9c1-3d564f355836" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "600" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:07:59.7-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a443367-db94-4a9c-b413-2b929d182a18" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:08:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "6a443367-db94-4a9c-b413-2b929d182a18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-correlation-request-id": [ + "e4af0f4d-f25d-4065-8ff3-b48196da877f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210808Z:e4af0f4d-f25d-4065-8ff3-b48196da877f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "600" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:07:59.7-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04728dfb-3773-40f9-99fa-b8e103877c5d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:08:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "04728dfb-3773-40f9-99fa-b8e103877c5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-correlation-request-id": [ + "3913e157-f449-4870-8ced-e04a5c1dd977" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210813Z:3913e157-f449-4870-8ced-e04a5c1dd977" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "600" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:07:59.7-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f308c13-992b-4d50-853c-707cda7044f7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:08:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "5f308c13-992b-4d50-853c-707cda7044f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-correlation-request-id": [ + "4ee29c9f-2672-4f73-b15e-69c0d3d45985" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210818Z:4ee29c9f-2672-4f73-b15e-69c0d3d45985" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "600" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:07:59.7-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1ae9de6-cc91-480e-9780-84b71f4d8b9c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:08:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "b1ae9de6-cc91-480e-9780-84b71f4d8b9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-correlation-request-id": [ + "cc557875-34d2-4882-ba2e-cb6e3f6a5baa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210824Z:cc557875-34d2-4882-ba2e-cb6e3f6a5baa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "600" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:07:59.7-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4102aeb-03e1-4277-ad24-34ec702d5e6d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:08:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "d4102aeb-03e1-4277-ad24-34ec702d5e6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-correlation-request-id": [ + "8909791c-4f3b-4374-8b00-a5a0615aefbe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210829Z:8909791c-4f3b-4374-8b00-a5a0615aefbe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "600" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.14.5\",\r\n \"sizeInBytes\": 13345673,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:07:59.7-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"ContentValidated\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a048c904-adbe-4646-8cd3-b26835cc4728" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:08:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "a048c904-adbe-4646-8cd3-b26835cc4728" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-correlation-request-id": [ + "9659364f-87f8-4b23-ae58-6fe3cd1f8bec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210834Z:9659364f-87f8-4b23-ae58-6fe3cd1f8bec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "595" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy\",\r\n \"name\": \"numpy\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Python2Packages\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"isGlobal\": false,\r\n \"version\": \"1.15.2\",\r\n \"sizeInBytes\": 13470594,\r\n \"activityCount\": 0,\r\n \"creationTime\": \"2018-10-19T14:05:03.8-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T14:08:34.747-07:00\",\r\n \"error\": {\r\n \"code\": null,\r\n \"message\": \"\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"isComposite\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/python2Packages/numpy?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcHl0aG9uMlBhY2thZ2VzL251bXB5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4fe0f83-69b3-4a95-bec3-e0b06ad570d9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 21:08:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "c4fe0f83-69b3-4a95-bec3-e0b06ad570d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-correlation-request-id": [ + "0d41499d-9940-4997-aabb-281e45432fa0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T210835Z:0d41499d-9940-4997-aabb-281e45432fa0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"\"\r\n}", + "StatusCode": 404 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" + } +} \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteRunbook.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteRunbook.json index 2e7b0a57ffb0c..b545cd238510c 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteRunbook.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteRunbook.json @@ -1,123 +1,116 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourcegroups/automation-sdk-test?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/automation-sdk-test?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "31" - ], "x-ms-client-request-id": [ - "4d340402-b98e-40b3-9595-b51d36ac85cb" + "f6fb9afd-695f-4493-bc3d-f3cb7c635d56" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26328.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:22 GMT" + "Fri, 19 Oct 2018 20:46:18 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "53820b28-bbcb-4e9c-8c4a-2144350f9271" + "79a19283-96e2-49a3-ac8a-22574ad142e5" ], "x-ms-correlation-request-id": [ - "53820b28-bbcb-4e9c-8c4a-2144350f9271" + "79a19283-96e2-49a3-ac8a-22574ad142e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022623Z:53820b28-bbcb-4e9c-8c4a-2144350f9271" + "WESTUS2:20181019T204618Z:79a19283-96e2-49a3-ac8a-22574ad142e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "192" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "188" - ], "x-ms-client-request-id": [ - "c9498f28-5bfe-49c2-99f2-b6ced39e6933" + "193115a4-ed9c-450c-88af-195c9e7d98cd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/9fe9d5e0-8938-45da-b446-0cb88a27d89e\",\r\n \"creationTime\": \"2018-07-13T15:03:56.71-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-07-19T19:26:23.96-07:00\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "188" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:23 GMT" + "Fri, 19 Oct 2018 20:46:20 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "c9498f28-5bfe-49c2-99f2-b6ced39e6933" + "193115a4-ed9c-450c-88af-195c9e7d98cd" + ], + "x-ms-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + ], + "ocp-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -132,132 +125,59 @@ "1198" ], "x-ms-correlation-request-id": [ - "12c2e4e5-9de8-4383-9078-188acd2ed4e5" + "13d729f9-84a5-4876-80e0-55a60d1f20b5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022623Z:12c2e4e5-9de8-4383-9078-188acd2ed4e5" + "WESTUS2:20181019T204620Z:13d729f9-84a5-4876-80e0-55a60d1f20b5" ], "X-Content-Type-Options": [ "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "56c5fa86-6dd1-4424-a982-e550c70a12c1" ], - "accept-language": [ - "en-US" + "Content-Length": [ + "625" ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 20 Jul 2018 02:26:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "56c5fa86-6dd1-4424-a982-e550c70a12c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "e70b6584-2e46-4507-98ad-48e9d03a1294" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022624Z:e70b6584-2e46-4507-98ad-48e9d03a1294" - ], - "X-Content-Type-Options": [ - "nosniff" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/8f62de5d-a01f-4a0c-81d8-a16aec0a0edd\",\r\n \"creationTime\": \"2018-10-19T13:46:19.777-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T13:46:19.777-07:00\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ab54cca-f01f-4080-a752-8eb06408ebdf" + "52ca3b5b-35e7-434c-83e3-3ef42662291d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript\",\r\n \"location\": \"East US 2\",\r\n \"name\": \"TestPSScript\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"runbookType\": \"PowerShell\",\r\n \"state\": \"Edit\",\r\n \"logVerbose\": false,\r\n \"logProgress\": true,\r\n \"logActivityTrace\": 0,\r\n \"creationTime\": \"2018-07-13T15:04:01.46-07:00\",\r\n \"lastModifiedTime\": \"2018-07-13T15:09:56.44-07:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:23 GMT" + "Fri, 19 Oct 2018 20:46:20 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "8ab54cca-f01f-4080-a752-8eb06408ebdf" + "52ca3b5b-35e7-434c-83e3-3ef42662291d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -269,114 +189,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11999" ], "x-ms-correlation-request-id": [ - "47c2e7ce-4eff-449f-a269-02c8ea019ac1" + "f91453d6-aaff-44d9-855f-bcf8eb713615" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022624Z:47c2e7ce-4eff-449f-a269-02c8ea019ac1" + "WESTUS2:20181019T204620Z:f91453d6-aaff-44d9-855f-bcf8eb713615" ], "X-Content-Type-Options": [ "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "317cbcd8-bfd6-4a25-9030-ded50f1e2eb3" ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { "Content-Length": [ - "0" + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 20 Jul 2018 02:26:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-request-id": [ - "317cbcd8-bfd6-4a25-9030-ded50f1e2eb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "04c0489f-007a-4e5c-b4e8-17977a8bbcb5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022625Z:04c0489f-007a-4e5c-b4e8-17977a8bbcb5" - ], - "X-Content-Type-Options": [ - "nosniff" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c9579d9-64ca-466a-8556-4c9e4c3cf236" + "a8ff1981-5692-466e-b076-9ff499784c24" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:27:29 GMT" + "Fri, 19 Oct 2018 20:46:20 GMT" ], "Pragma": [ "no-cache" @@ -385,7 +244,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "5c9579d9-64ca-466a-8556-4c9e4c3cf236" + "a8ff1981-5692-466e-b076-9ff499784c24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -396,66 +255,63 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "410f6638-eb8a-4c81-9615-83a5c1a5da2e" + "112d075c-3e9d-4bc0-8b5a-f9bd6fc66229" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022730Z:410f6638-eb8a-4c81-9615-83a5c1a5da2e" + "WESTUS2:20181019T204620Z:112d075c-3e9d-4bc0-8b5a-f9bd6fc66229" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c773f6c8-8b0c-4417-9903-d7a373d30ea1" + "e188a1e3-6eb6-4f87-87c5-f66bcada7663" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:25 GMT" + "Fri, 19 Oct 2018 20:46:20 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "c773f6c8-8b0c-4417-9903-d7a373d30ea1" + "e188a1e3-6eb6-4f87-87c5-f66bcada7663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -467,65 +323,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11997" ], "x-ms-correlation-request-id": [ - "f8b50c10-730e-4ef8-b132-bd1dd1eb153f" + "cbd560d9-7014-4d80-b710-686ebafc2bff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022625Z:f8b50c10-730e-4ef8-b132-bd1dd1eb153f" + "WESTUS2:20181019T204620Z:cbd560d9-7014-4d80-b710-686ebafc2bff" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af835408-93ad-4bfd-8bd1-07c8f5cdeb09" + "4b3b51ce-2c98-4e1f-99f0-554159b3e2f5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:25 GMT" + "Fri, 19 Oct 2018 20:46:20 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "af835408-93ad-4bfd-8bd1-07c8f5cdeb09" + "4b3b51ce-2c98-4e1f-99f0-554159b3e2f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,147 +390,144 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11996" ], "x-ms-correlation-request-id": [ - "c2c2c0b1-9e39-4d57-8c2a-7b01b742e970" + "1b5f45dc-914c-4662-b6ec-e63bab660047" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022625Z:c2c2c0b1-9e39-4d57-8c2a-7b01b742e970" + "WESTUS2:20181019T204620Z:1b5f45dc-914c-4662-b6ec-e63bab660047" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cee792bd-2484-4eaa-9c3b-583c712944d8" + "5546de50-a979-43ff-9648-1b4093c92c6b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:26 GMT" + "Fri, 19 Oct 2018 20:46:21 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "cee792bd-2484-4eaa-9c3b-583c712944d8" + "5546de50-a979-43ff-9648-1b4093c92c6b" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11995" ], "x-ms-correlation-request-id": [ - "9e904442-796b-4a6e-bd8d-ad49153e4aa2" + "1335c479-0f5e-4117-b7f5-f1f50707925e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022626Z:9e904442-796b-4a6e-bd8d-ad49153e4aa2" + "WESTUS2:20181019T204621Z:1335c479-0f5e-4117-b7f5-f1f50707925e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"runbookType\": \"PowerShell\",\r\n \"draft\": {\r\n \"creationTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00-08:00\"\r\n }\r\n },\r\n \"name\": \"TestPSScript\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "247" - ], "x-ms-client-request-id": [ - "84f2d7cd-f1b1-4598-9d2f-48de7fecafa9" + "e224feef-9239-4ee7-83d8-6017f8ec3c99" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript\",\r\n \"name\": \"TestPSScript\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636676503866470000\\\"\",\r\n \"properties\": {\r\n \"description\": null,\r\n \"logVerbose\": false,\r\n \"logProgress\": false,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShell\",\r\n \"parameters\": {},\r\n \"state\": \"New\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-07-19T19:26:26.647-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-07-19T19:26:26.647-07:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "702" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "247" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:26 GMT" + "Fri, 19 Oct 2018 20:46:22 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"636676503866470000\"" + "\"636755787821500000\"" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2018-06-30" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "84f2d7cd-f1b1-4598-9d2f-48de7fecafa9" + "e224feef-9239-4ee7-83d8-6017f8ec3c99" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2018-06-30" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2018-06-30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -692,59 +542,62 @@ "1197" ], "x-ms-correlation-request-id": [ - "a3042df8-849e-41e2-bf2e-bb12f9c1538b" + "9a01e614-de4f-4da3-a0a7-c143d80ce0cf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022626Z:a3042df8-849e-41e2-bf2e-bb12f9c1538b" + "WESTUS2:20181019T204622Z:9a01e614-de4f-4da3-a0a7-c143d80ce0cf" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "700" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript\",\r\n \"name\": \"TestPSScript\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636755787821500000\\\"\",\r\n \"properties\": {\r\n \"description\": null,\r\n \"logVerbose\": false,\r\n \"logProgress\": false,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShell\",\r\n \"parameters\": {},\r\n \"state\": \"New\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-10-19T13:46:22.15-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T13:46:22.15-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "PUT", "RequestBody": "get-date", "RequestHeaders": { - "Content-Type": [ - "text/powershell" - ], - "Content-Length": [ - "8" - ], "x-ms-client-request-id": [ - "fab2887f-6607-4cf8-affb-d20c924a6a64" + "1240ac20-aba9-4ee9-8e12-1ef61d6477a2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], + "Content-Type": [ + "text/powershell" + ], + "Content-Length": [ + "8" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:27 GMT" + "Fri, 19 Oct 2018 20:46:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/a7d9a26c-97e1-4012-ba6e-f4ce0cdb0991?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/556c1dc1-6e60-42f1-a9aa-c5294d4a60bf?api-version=2018-06-30" ], "Retry-After": [ "30" @@ -753,17 +606,17 @@ "Microsoft-IIS/8.5" ], "ocp-automation-operationresultid": [ - "a7d9a26c-97e1-4012-ba6e-f4ce0cdb0991", - "a7d9a26c-97e1-4012-ba6e-f4ce0cdb0991" + "556c1dc1-6e60-42f1-a9aa-c5294d4a60bf", + "556c1dc1-6e60-42f1-a9aa-c5294d4a60bf" ], "x-ms-request-id": [ - "fab2887f-6607-4cf8-affb-d20c924a6a64" + "1240ac20-aba9-4ee9-8e12-1ef61d6477a2" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/a7d9a26c-97e1-4012-ba6e-f4ce0cdb0991?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/556c1dc1-6e60-42f1-a9aa-c5294d4a60bf?api-version=2018-06-30" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/a7d9a26c-97e1-4012-ba6e-f4ce0cdb0991?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/556c1dc1-6e60-42f1-a9aa-c5294d4a60bf?api-version=2018-06-30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,59 +631,59 @@ "1196" ], "x-ms-correlation-request-id": [ - "67f89119-c9e0-431b-a71f-2c4e80cd426b" + "571205c7-1148-4908-8cbe-d03abe0f2cd2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022627Z:67f89119-c9e0-431b-a71f-2c4e80cd426b" + "WESTUS2:20181019T204623Z:571205c7-1148-4908-8cbe-d03abe0f2cd2" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "PUT", "RequestBody": "get-date; start-sleep -seconds 10", "RequestHeaders": { - "Content-Type": [ - "text/powershell" - ], - "Content-Length": [ - "33" - ], "x-ms-client-request-id": [ - "8a46dcab-f710-4207-8343-a48edefb4647" + "babb5ca2-9614-416f-93bd-ed7e05728f2b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], + "Content-Type": [ + "text/powershell" + ], + "Content-Length": [ + "33" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:58 GMT" + "Fri, 19 Oct 2018 20:46:53 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/6104cb1e-8b1e-49cb-942a-469ec82bc5d0?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/fdf128f6-d626-4264-be56-69eefeede2f4?api-version=2018-06-30" ], "Retry-After": [ "30" @@ -839,17 +692,17 @@ "Microsoft-IIS/8.5" ], "ocp-automation-operationresultid": [ - "6104cb1e-8b1e-49cb-942a-469ec82bc5d0", - "6104cb1e-8b1e-49cb-942a-469ec82bc5d0" + "fdf128f6-d626-4264-be56-69eefeede2f4", + "fdf128f6-d626-4264-be56-69eefeede2f4" ], "x-ms-request-id": [ - "8a46dcab-f710-4207-8343-a48edefb4647" + "babb5ca2-9614-416f-93bd-ed7e05728f2b" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/6104cb1e-8b1e-49cb-942a-469ec82bc5d0?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/fdf128f6-d626-4264-be56-69eefeede2f4?api-version=2018-06-30" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/6104cb1e-8b1e-49cb-942a-469ec82bc5d0?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/fdf128f6-d626-4264-be56-69eefeede2f4?api-version=2018-06-30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -864,44 +717,41 @@ "1193" ], "x-ms-correlation-request-id": [ - "475b100a-74f0-4da4-abac-ed0e837fef3a" + "57711953-56b4-48ee-b336-253f35986401" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022659Z:475b100a-74f0-4da4-abac-ed0e837fef3a" + "WESTUS2:20181019T204654Z:57711953-56b4-48ee-b336-253f35986401" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/a7d9a26c-97e1-4012-ba6e-f4ce0cdb0991?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQvb3BlcmF0aW9uUmVzdWx0cy9hN2Q5YTI2Yy05N2UxLTQwMTItYmE2ZS1mNGNlMGNkYjA5OTE/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/556c1dc1-6e60-42f1-a9aa-c5294d4a60bf?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQvb3BlcmF0aW9uUmVzdWx0cy81NTZjMWRjMS02ZTYwLTQyZjEtYTlhYS1jNTI5NGQ0YTYwYmY/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:56 GMT" + "Fri, 19 Oct 2018 20:46:52 GMT" ], "Pragma": [ "no-cache" @@ -910,7 +760,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "bf15da19-e70c-4842-b4c5-434cae037433" + "d89ece10-62ac-4b3f-bf75-e9c118ea04a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -922,66 +772,65 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11994" ], "x-ms-correlation-request-id": [ - "d79ff208-dab3-4617-b72d-6a4043c404bd" + "56739b29-bed8-43ab-b3dc-64bc43b0011b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022657Z:d79ff208-dab3-4617-b72d-6a4043c404bd" + "WESTUS2:20181019T204653Z:56739b29-bed8-43ab-b3dc-64bc43b0011b" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "get-date", "ResponseHeaders": { - "Content-Type": [ - "text/powershell" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:57 GMT" + "Fri, 19 Oct 2018 20:46:52 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"636676503872730000\"" + "\"636755787830270000\"" ], "Server": [ "Microsoft-IIS/8.5" ], "Vary": [ - "Accept-Encoding", "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11993" ], "x-ms-request-id": [ - "44aad873-3944-4563-92b1-fce5cb12c3a4" + "e2b6500c-b0be-4cdb-aa0a-38f6bec56e38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,63 +842,62 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "dcac8109-150b-4689-b964-dfba927d2425" + "56463434-0d1a-461e-8e49-bbc702007e2f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022657Z:dcac8109-150b-4689-b964-dfba927d2425" + "WESTUS2:20181019T204653Z:56463434-0d1a-461e-8e49-bbc702007e2f" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "8" + ], + "Content-Type": [ + "text/powershell" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "get-date", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "get-date; start-sleep -seconds 10", "ResponseHeaders": { - "Content-Type": [ - "text/powershell" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:27:28 GMT" + "Fri, 19 Oct 2018 20:47:24 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"636676504190270000\"" + "\"636755788147470000\"" ], "Server": [ "Microsoft-IIS/8.5" ], "Vary": [ - "Accept-Encoding", "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11988" ], "x-ms-request-id": [ - "b34e5707-6d6c-40d2-83be-f4db60d45710" + "3c933bb1-5392-4881-a4ba-86662b911b5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1061,69 +909,68 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "dc6a485d-8b35-4762-b678-ccffda796f05" + "1d8363eb-3883-449d-8c5e-9dd7b81fcbcc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022729Z:dc6a485d-8b35-4762-b678-ccffda796f05" + "WESTUS2:20181019T204725Z:1d8363eb-3883-449d-8c5e-9dd7b81fcbcc" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "33" + ], + "Content-Type": [ + "text/powershell" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "get-date; start-sleep -seconds 10", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad9408f7-3eb0-416f-b4f0-0c4877efd47e" + "aedf9d69-4d6d-4f9d-a45e-389815652c7e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "get-date; start-sleep -seconds 10", "ResponseHeaders": { - "Content-Type": [ - "text/powershell" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:27:28 GMT" + "Fri, 19 Oct 2018 20:47:24 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"636676504190270000\"" + "\"636755788147470000\"" ], "Server": [ "Microsoft-IIS/8.5" ], "Vary": [ - "Accept-Encoding", "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "11987" ], "x-ms-request-id": [ - "ad9408f7-3eb0-416f-b4f0-0c4877efd47e" + "aedf9d69-4d6d-4f9d-a45e-389815652c7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1135,65 +982,62 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "ee892b8a-2024-47a3-b2e0-02a43ed1b0d2" + "a2c6cbb3-a256-46f6-b676-c4c7194892e1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022729Z:ee892b8a-2024-47a3-b2e0-02a43ed1b0d2" + "WESTUS2:20181019T204725Z:a2c6cbb3-a256-46f6-b676-c4c7194892e1" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "33" + ], + "Content-Type": [ + "text/powershell" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "get-date; start-sleep -seconds 10", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b98cda6c-7e88-4331-ae22-7def7ec263df" + "5ed16567-84da-44ec-bc71-2b7fe44f99a7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript\",\r\n \"name\": \"TestPSScript\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636676503866470000\\\"\",\r\n \"properties\": {\r\n \"description\": null,\r\n \"logVerbose\": false,\r\n \"logProgress\": false,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShell\",\r\n \"parameters\": {},\r\n \"state\": \"New\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-07-19T19:26:26.647-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-07-19T19:26:26.647-07:00\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:57 GMT" + "Fri, 19 Oct 2018 20:46:52 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"636676503866470000\"" + "\"636755787821500000\"" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "b98cda6c-7e88-4331-ae22-7def7ec263df" + "5ed16567-84da-44ec-bc71-2b7fe44f99a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1205,68 +1049,65 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11992" ], "x-ms-correlation-request-id": [ - "ef5a37ec-daa0-4fae-9a2a-cde64da70de3" + "c3a22662-86c6-44a1-b832-f2c1c0f374db" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022658Z:ef5a37ec-daa0-4fae-9a2a-cde64da70de3" + "WESTUS2:20181019T204653Z:c3a22662-86c6-44a1-b832-f2c1c0f374db" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "700" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript\",\r\n \"name\": \"TestPSScript\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636755787821500000\\\"\",\r\n \"properties\": {\r\n \"description\": null,\r\n \"logVerbose\": false,\r\n \"logProgress\": false,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShell\",\r\n \"parameters\": {},\r\n \"state\": \"New\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-10-19T13:46:22.15-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T13:46:22.15-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9525439e-ae25-4e28-ab21-f53dd3c350ca" + "1b727ba6-40b6-4707-8f5c-cc58bc4bd0d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript\",\r\n \"name\": \"TestPSScript\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636676504181500000\\\"\",\r\n \"properties\": {\r\n \"description\": null,\r\n \"logVerbose\": false,\r\n \"logProgress\": false,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShell\",\r\n \"parameters\": {},\r\n \"state\": \"Published\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-07-19T19:26:26.647-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-07-19T19:26:58.15-07:00\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:57 GMT" + "Fri, 19 Oct 2018 20:46:53 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"636676504181500000\"" + "\"636755788138870000\"" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "9525439e-ae25-4e28-ab21-f53dd3c350ca" + "1b727ba6-40b6-4707-8f5c-cc58bc4bd0d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,68 +1119,65 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11991" ], "x-ms-correlation-request-id": [ - "b06f04f4-3baa-4591-a93d-b462ab3176ff" + "2eef2ab4-5245-4829-8a94-a9fa5c276444" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022658Z:b06f04f4-3baa-4591-a93d-b462ab3176ff" + "WESTUS2:20181019T204654Z:2eef2ab4-5245-4829-8a94-a9fa5c276444" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "707" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript\",\r\n \"name\": \"TestPSScript\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636755788138870000\\\"\",\r\n \"properties\": {\r\n \"description\": null,\r\n \"logVerbose\": false,\r\n \"logProgress\": false,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShell\",\r\n \"parameters\": {},\r\n \"state\": \"Published\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-10-19T13:46:22.15-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T13:46:53.887-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94b8e7fb-d6e7-4a7f-bca9-fe9b1a08a0da" + "da655a2e-cb27-46b6-afd4-e23b8330749e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript\",\r\n \"name\": \"TestPSScript\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636676504187300000\\\"\",\r\n \"properties\": {\r\n \"description\": \"description of runbook\",\r\n \"logVerbose\": false,\r\n \"logProgress\": true,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShell\",\r\n \"parameters\": {},\r\n \"state\": \"Published\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-07-19T19:26:26.647-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-07-19T19:26:58.73-07:00\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:58 GMT" + "Fri, 19 Oct 2018 20:46:53 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"636676504187300000\"" + "\"636755788144170000\"" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "94b8e7fb-d6e7-4a7f-bca9-fe9b1a08a0da" + "da655a2e-cb27-46b6-afd4-e23b8330749e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1351,53 +1189,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11990" ], "x-ms-correlation-request-id": [ - "58b67028-1065-4ff4-b59a-bd0ca46cc428" + "d94b5208-f144-410f-b065-e872a0fb7cb3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022658Z:58b67028-1065-4ff4-b59a-bd0ca46cc428" + "WESTUS2:20181019T204654Z:d94b5208-f144-410f-b065-e872a0fb7cb3" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript\",\r\n \"name\": \"TestPSScript\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636755788144170000\\\"\",\r\n \"properties\": {\r\n \"description\": \"description of runbook\",\r\n \"logVerbose\": false,\r\n \"logProgress\": true,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShell\",\r\n \"parameters\": {},\r\n \"state\": \"Published\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-10-19T13:46:22.15-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T13:46:54.417-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d5ebd6f-90f0-4564-b135-91b699a442ad" + "61878ad7-6201-49d3-a187-4e160958757c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript' under resource group 'automation-sdk-test' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "212" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:27:29 GMT" + "Fri, 19 Oct 2018 20:47:26 GMT" ], "Pragma": [ "no-cache" @@ -1406,59 +1244,62 @@ "gateway" ], "x-ms-request-id": [ - "726f124b-7515-4c57-b5bf-dd1cb74973ae" + "e710e624-041b-4143-a149-4f476405a2d2" ], "x-ms-correlation-request-id": [ - "726f124b-7515-4c57-b5bf-dd1cb74973ae" + "e710e624-041b-4143-a149-4f476405a2d2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022730Z:726f124b-7515-4c57-b5bf-dd1cb74973ae" + "WESTUS2:20181019T204726Z:e710e624-041b-4143-a149-4f476405a2d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "212" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript' under resource group 'automation-sdk-test' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/publish?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L3B1Ymxpc2g/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/publish?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L3B1Ymxpc2g/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecf485de-89e9-404a-bfe0-47b57c55641c" + "08abb61d-5cbd-4ea7-b706-5c1202c3fd03" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:57 GMT" + "Fri, 19 Oct 2018 20:46:53 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/publish/operationResults/15440eb0-3b9a-41d9-8e51-c20ea3ca9849?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/publish/operationResults/e38352c9-1f29-4420-89f6-5190123034d1?api-version=2018-06-30" ], "Retry-After": [ "30" @@ -1467,17 +1308,17 @@ "Microsoft-IIS/8.5" ], "ocp-automation-operationresultid": [ - "15440eb0-3b9a-41d9-8e51-c20ea3ca9849", - "15440eb0-3b9a-41d9-8e51-c20ea3ca9849" + "e38352c9-1f29-4420-89f6-5190123034d1", + "e38352c9-1f29-4420-89f6-5190123034d1" ], "x-ms-request-id": [ - "ecf485de-89e9-404a-bfe0-47b57c55641c" + "08abb61d-5cbd-4ea7-b706-5c1202c3fd03" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/publish/operationResults/15440eb0-3b9a-41d9-8e51-c20ea3ca9849?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/publish/operationResults/e38352c9-1f29-4420-89f6-5190123034d1?api-version=2018-06-30" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/publish/operationResults/15440eb0-3b9a-41d9-8e51-c20ea3ca9849?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/publish/operationResults/e38352c9-1f29-4420-89f6-5190123034d1?api-version=2018-06-30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1492,71 +1333,65 @@ "1195" ], "x-ms-correlation-request-id": [ - "91e4c6d3-65f1-418e-80d3-28f9b292269f" + "2f8ce4ba-bf06-45e0-9a03-58546f04efa8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022658Z:91e4c6d3-65f1-418e-80d3-28f9b292269f" + "WESTUS2:20181019T204653Z:2f8ce4ba-bf06-45e0-9a03-58546f04efa8" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description of runbook\",\r\n \"logVerbose\": false,\r\n \"logProgress\": true\r\n },\r\n \"name\": \"TestPSScript\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "152" - ], "x-ms-client-request-id": [ - "10c460d0-95cf-42f4-8e1d-e6fd1e8ce8ba" + "7c7fecbc-e934-41b8-8641-ede3094ddb5f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript\",\r\n \"name\": \"TestPSScript\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636676504187300000\\\"\",\r\n \"properties\": {\r\n \"description\": \"description of runbook\",\r\n \"logVerbose\": false,\r\n \"logProgress\": true,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShell\",\r\n \"parameters\": {},\r\n \"state\": \"Published\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-07-19T19:26:26.647-07:00\",\r\n \"lastModifiedBy\": \"{scrubbed}\",\r\n \"lastModifiedTime\": \"2018-07-19T19:26:58.73-07:00\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "152" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:26:57 GMT" + "Fri, 19 Oct 2018 20:46:53 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"636676504187300000\"" + "\"636755788144170000\"" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "10c460d0-95cf-42f4-8e1d-e6fd1e8ce8ba" + "7c7fecbc-e934-41b8-8641-ede3094ddb5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1571,30 +1406,75 @@ "1194" ], "x-ms-correlation-request-id": [ - "b64b2532-a72c-42cd-89b5-0b02a8369081" + "e961b7b6-9e65-40ef-81c4-7ac97c7ea570" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022658Z:b64b2532-a72c-42cd-89b5-0b02a8369081" + "WESTUS2:20181019T204654Z:e961b7b6-9e65-40ef-81c4-7ac97c7ea570" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "734" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript\",\r\n \"name\": \"TestPSScript\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636755788144170000\\\"\",\r\n \"properties\": {\r\n \"description\": \"description of runbook\",\r\n \"logVerbose\": false,\r\n \"logProgress\": true,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShell\",\r\n \"parameters\": {},\r\n \"state\": \"Published\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-10-19T13:46:22.15-07:00\",\r\n \"lastModifiedBy\": \"{scrubbed}\",\r\n \"lastModifiedTime\": \"2018-10-19T13:46:54.417-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/6104cb1e-8b1e-49cb-942a-469ec82bc5d0?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQvb3BlcmF0aW9uUmVzdWx0cy82MTA0Y2IxZS04YjFlLTQ5Y2ItOTQyYS00NjllYzgyYmM1ZDA/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript/draft/content/operationResults/fdf128f6-d626-4264-be56-69eefeede2f4?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0L2RyYWZ0L2NvbnRlbnQvb3BlcmF0aW9uUmVzdWx0cy9mZGYxMjhmNi1kNjI2LTQyNjQtYmU1Ni02OWVlZmVlZGUyZjQ/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.1.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 19 Oct 2018 20:47:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-request-id": [ + "d1c9a6e4-846f-4fd2-9112-7c556a9e9843" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "a97301f1-fc39-43f2-b57e-f4e38b674b84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20181019T204725Z:a97301f1-fc39-43f2-b57e-f4e38b674b84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Content-Length": [ "0" ], @@ -1603,12 +1483,34 @@ ], "Expires": [ "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestPSScript?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdFBTU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "559a3eb5-7c8a-4381-b777-e8137d9b208e" + ], + "accept-language": [ + "en-US" ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 20 Jul 2018 02:27:28 GMT" + "Fri, 19 Oct 2018 20:47:26 GMT" ], "Pragma": [ "no-cache" @@ -1617,7 +1519,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "ecac8dbb-e30c-440f-98ee-4e2ee36beb8f" + "559a3eb5-7c8a-4381-b777-e8137d9b208e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1628,24 +1530,31 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "37378042-e028-40da-a77b-a136a6474bd8" + "ce3eda16-44b1-4c8c-8daf-48ffe0c88f00" ], "x-ms-routing-request-id": [ - "CENTRALUS:20180720T022729Z:37378042-e028-40da-a77b-a136a6474bd8" + "WESTUS2:20181019T204726Z:ce3eda16-44b1-4c8c-8daf-48ffe0c88f00" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "b5e4748c-f69a-467c-8749-e2f9c8cd3db0" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteSourceControl.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteSourceControl.json index c260724c8abfa..26ded173998de 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteSourceControl.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteSourceControl.json @@ -1,26 +1,26 @@ { "Entries": [ { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourcegroups/automation-sdk-test?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/automation-sdk-test?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "04e90e5b-69e8-4a70-a386-fa09e6e4c75b" + "181e550b-c158-4ac6-854e-b5c13ae9336d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", + "FxVersion/4.6.26328.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "37" + "31" ] }, "ResponseHeaders": { @@ -28,7 +28,7 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:14:46 GMT" + "Fri, 19 Oct 2018 20:49:13 GMT" ], "Pragma": [ "no-cache" @@ -37,13 +37,13 @@ "1199" ], "x-ms-request-id": [ - "d4ec56cb-6d8a-4e2f-b8b1-e5650c44a96e" + "34a8d73d-be2b-4102-9f9f-fb9ced05d256" ], "x-ms-correlation-request-id": [ - "d4ec56cb-6d8a-4e2f-b8b1-e5650c44a96e" + "34a8d73d-be2b-4102-9f9f-fb9ced05d256" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211446Z:d4ec56cb-6d8a-4e2f-b8b1-e5650c44a96e" + "WESTUS2:20181019T204913Z:34a8d73d-be2b-4102-9f9f-fb9ced05d256" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,7 +52,7 @@ "nosniff" ], "Content-Length": [ - "198" + "192" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,30 +61,30 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a2fc84-5dab-41b9-a821-853db5024150" + "e9a33a74-7006-44b3-908b-11e612c1448f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "194" + "188" ] }, "ResponseHeaders": { @@ -92,25 +92,25 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:14:46 GMT" + "Fri, 19 Oct 2018 20:49:14 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "e6a2fc84-5dab-41b9-a821-853db5024150" + "e9a33a74-7006-44b3-908b-11e612c1448f" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "ocp-location": [ - "https://management.azure.com/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -125,16 +125,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "ba496424-9277-4fb0-a0a0-52d9d872766c" + "0bc21685-be9c-4a8c-9b83-d389dd2e0ad7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211446Z:ba496424-9277-4fb0-a0a0-52d9d872766c" + "WESTUS2:20181019T204915Z:0bc21685-be9c-4a8c-9b83-d389dd2e0ad7" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "639" + "625" ], "Content-Type": [ "application/json; charset=utf-8" @@ -143,24 +143,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://wcus-agentservice-prod-1.azure-automation.net/accounts/0ca4b0ae-04e4-44e7-9caa-17230c0b527c\",\r\n \"creationTime\": \"2018-08-06T14:14:46.5766667-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-08-06T14:14:46.5766667-07:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/9ad2ef72-dd0a-4a9b-9495-b5c0428c45c5\",\r\n \"creationTime\": \"2018-10-19T13:49:15.017-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T13:49:15.017-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "471d8493-856c-44cf-b256-0abdfc0eec5a" + "b8b0b805-87b9-46b5-93a5-faf0d4150965" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, "ResponseHeaders": { @@ -168,7 +168,7 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:14:46 GMT" + "Fri, 19 Oct 2018 20:49:15 GMT" ], "Pragma": [ "no-cache" @@ -177,7 +177,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "471d8493-856c-44cf-b256-0abdfc0eec5a" + "b8b0b805-87b9-46b5-93a5-faf0d4150965" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,13 +189,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "d7c18e51-18c6-44a4-b901-75669f1e1c62" + "15126fa7-d761-4d58-970a-4ff49436574b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211446Z:d7c18e51-18c6-44a4-b901-75669f1e1c62" + "WESTUS2:20181019T204916Z:15126fa7-d761-4d58-970a-4ff49436574b" ], "X-Content-Type-Options": [ "nosniff" @@ -214,20 +214,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c56612e8-ad7a-41b7-8a3c-394c5e7d41ba" + "571995ed-5c9a-4e38-9e11-e34ca3b2a373" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, "ResponseHeaders": { @@ -235,7 +235,7 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:14:46 GMT" + "Fri, 19 Oct 2018 20:49:15 GMT" ], "Pragma": [ "no-cache" @@ -244,7 +244,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "c56612e8-ad7a-41b7-8a3c-394c5e7d41ba" + "571995ed-5c9a-4e38-9e11-e34ca3b2a373" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,13 +256,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "16fca05c-c250-4fd3-8ccd-8a052670086a" + "f7d0c5b0-d347-466e-bd9f-8260919e5236" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211447Z:16fca05c-c250-4fd3-8ccd-8a052670086a" + "WESTUS2:20181019T204916Z:f7d0c5b0-d347-466e-bd9f-8260919e5236" ], "X-Content-Type-Options": [ "nosniff" @@ -281,20 +281,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39df769e-5bcc-4100-90e9-5322b51ebcf6" + "936596fe-13ca-48a9-980a-5dfe04080c0f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, "ResponseHeaders": { @@ -302,7 +302,7 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:14:47 GMT" + "Fri, 19 Oct 2018 20:49:15 GMT" ], "Pragma": [ "no-cache" @@ -311,7 +311,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "39df769e-5bcc-4100-90e9-5322b51ebcf6" + "936596fe-13ca-48a9-980a-5dfe04080c0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -323,13 +323,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "d32f2625-975b-4501-96d6-3b88cf8412d5" + "6bb41818-4a36-45bd-8a2f-8b400e2834a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211447Z:d32f2625-975b-4501-96d6-3b88cf8412d5" + "WESTUS2:20181019T204916Z:6bb41818-4a36-45bd-8a2f-8b400e2834a1" ], "X-Content-Type-Options": [ "nosniff" @@ -348,20 +348,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e20ce835-c0ea-45a7-a909-a5b468026c54" + "2532419d-5337-421e-8085-d71afef078c3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, "ResponseHeaders": { @@ -369,7 +369,7 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:14:47 GMT" + "Fri, 19 Oct 2018 20:49:15 GMT" ], "Pragma": [ "no-cache" @@ -378,7 +378,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "e20ce835-c0ea-45a7-a909-a5b468026c54" + "2532419d-5337-421e-8085-d71afef078c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -390,13 +390,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "c5261760-17ee-4470-b068-4fc572032204" + "cabc976f-2e47-4b04-9fdc-54d51d2b334b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211447Z:c5261760-17ee-4470-b068-4fc572032204" + "WESTUS2:20181019T204916Z:cabc976f-2e47-4b04-9fdc-54d51d2b334b" ], "X-Content-Type-Options": [ "nosniff" @@ -415,20 +415,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "355bf006-e57d-4840-a157-6f6039d7cbd4" + "50515592-0c22-4356-a659-d97fb8984b1b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, "ResponseHeaders": { @@ -436,7 +436,7 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:14:47 GMT" + "Fri, 19 Oct 2018 20:49:16 GMT" ], "Pragma": [ "no-cache" @@ -445,19 +445,19 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "355bf006-e57d-4840-a157-6f6039d7cbd4" + "50515592-0c22-4356-a659-d97fb8984b1b" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "e215af7e-0de7-4a06-bd16-460ae0ac6035" + "3dc9fe50-615f-4496-ae4b-c4916e614678" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211447Z:e215af7e-0de7-4a06-bd16-460ae0ac6035" + "WESTUS2:20181019T204917Z:3dc9fe50-615f-4496-ae4b-c4916e614678" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -479,20 +479,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHMvc3dhZ2dlclNvdXJjZUNvbnRyb2w/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHMvc3dhZ2dlclNvdXJjZUNvbnRyb2w/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"repoUrl\": \"https://miaromero.visualstudio.com/_git/Marvin\",\r\n \"branch\": \"master\",\r\n \"folderPath\": \"/FolderOne\",\r\n \"autoSync\": false,\r\n \"publishRunbook\": true,\r\n \"sourceType\": \"VsoGit\",\r\n \"securityToken\": {\r\n \"accessToken\": \"xjarxmpjtlv3bqxs22nxfhsimfy6joouqa2sq5sl2hvi6hnrrnyq\",\r\n \"tokenType\": \"PersonalAccessToken\"\r\n },\r\n \"description\": \"test creating a Source Control\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "470447ce-d83d-4ae9-84cb-ec5b378dee67" + "419cb24b-200c-4785-96f3-cfd2eb0126d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -506,25 +506,25 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:14:49 GMT" + "Fri, 19 Oct 2018 20:49:19 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "470447ce-d83d-4ae9-84cb-ec5b378dee67" + "419cb24b-200c-4785-96f3-cfd2eb0126d8" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview" ], "ocp-location": [ - "https://management.azure.com/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -539,10 +539,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "0624ac52-3c09-4417-aa0a-6782caa846dc" + "2f231dcd-2826-4f2a-88b9-d2aa206df65c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211449Z:0624ac52-3c09-4417-aa0a-6782caa846dc" + "WESTUS2:20181019T204920Z:2f231dcd-2826-4f2a-88b9-d2aa206df65c" ], "X-Content-Type-Options": [ "nosniff" @@ -557,24 +557,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl\",\r\n \"name\": \"swaggerSourceControl\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"creationTime\": \"2018-08-06T14:14:49.5044078-07:00\",\r\n \"lastModifiedTime\": \"2018-08-06T14:14:49.5044078-07:00\",\r\n \"repoUrl\": \"https://miaromero.visualstudio.com/_git/Marvin\",\r\n \"sourceType\": \"VsoGit\",\r\n \"branch\": \"master\",\r\n \"folderPath\": \"/FolderOne\",\r\n \"autoSync\": false,\r\n \"publishRunbook\": true,\r\n \"description\": \"test creating a Source Control\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl\",\r\n \"name\": \"swaggerSourceControl\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"creationTime\": \"2018-10-19T13:49:19.7627448-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T13:49:19.7627448-07:00\",\r\n \"repoUrl\": \"https://miaromero.visualstudio.com/_git/Marvin\",\r\n \"sourceType\": \"VsoGit\",\r\n \"branch\": \"master\",\r\n \"folderPath\": \"/FolderOne\",\r\n \"autoSync\": false,\r\n \"publishRunbook\": true,\r\n \"description\": \"test creating a Source Control\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHMvc3dhZ2dlclNvdXJjZUNvbnRyb2w/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHMvc3dhZ2dlclNvdXJjZUNvbnRyb2w/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "418e706d-66f1-44b6-b0e9-19b7c5a94747" + "a0235eb4-a4e4-4b2b-9921-4410afe9b0c0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, "ResponseHeaders": { @@ -582,7 +582,7 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:14:49 GMT" + "Fri, 19 Oct 2018 20:49:19 GMT" ], "Pragma": [ "no-cache" @@ -591,7 +591,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "418e706d-66f1-44b6-b0e9-19b7c5a94747" + "a0235eb4-a4e4-4b2b-9921-4410afe9b0c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -603,13 +603,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "812daabb-4998-42b9-8e51-59ff126ee8ee" + "3e08db76-591b-42da-86f3-978ceeadbc30" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211449Z:812daabb-4998-42b9-8e51-59ff126ee8ee" + "WESTUS2:20181019T204920Z:3e08db76-591b-42da-86f3-978ceeadbc30" ], "X-Content-Type-Options": [ "nosniff" @@ -624,24 +624,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl\",\r\n \"name\": \"swaggerSourceControl\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"creationTime\": \"2018-08-06T14:14:49.5044078-07:00\",\r\n \"lastModifiedTime\": \"2018-08-06T14:14:49.5044078-07:00\",\r\n \"repoUrl\": \"https://miaromero.visualstudio.com/_git/Marvin\",\r\n \"sourceType\": \"VsoGit\",\r\n \"branch\": \"master\",\r\n \"folderPath\": \"/FolderOne\",\r\n \"autoSync\": false,\r\n \"publishRunbook\": true,\r\n \"description\": \"test creating a Source Control\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl\",\r\n \"name\": \"swaggerSourceControl\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"creationTime\": \"2018-10-19T13:49:19.7627448-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T13:49:19.7627448-07:00\",\r\n \"repoUrl\": \"https://miaromero.visualstudio.com/_git/Marvin\",\r\n \"sourceType\": \"VsoGit\",\r\n \"branch\": \"master\",\r\n \"folderPath\": \"/FolderOne\",\r\n \"autoSync\": false,\r\n \"publishRunbook\": true,\r\n \"description\": \"test creating a Source Control\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHMvc3dhZ2dlclNvdXJjZUNvbnRyb2w/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHMvc3dhZ2dlclNvdXJjZUNvbnRyb2w/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b9b623c-e0f0-42a1-9b6a-a2cc213e7784" + "9da3c908-0921-49f0-97ea-7aa02fe64ee3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, "ResponseHeaders": { @@ -649,7 +649,7 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:15:46 GMT" + "Fri, 19 Oct 2018 20:49:22 GMT" ], "Pragma": [ "no-cache" @@ -658,7 +658,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "8b9b623c-e0f0-42a1-9b6a-a2cc213e7784" + "9da3c908-0921-49f0-97ea-7aa02fe64ee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,13 +670,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "6f32879a-7524-4d8c-9405-e87646612a91" + "27e5b4a7-f110-40cd-b993-6315325b88b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211546Z:6f32879a-7524-4d8c-9405-e87646612a91" + "WESTUS2:20181019T204923Z:27e5b4a7-f110-40cd-b993-6315325b88b4" ], "X-Content-Type-Options": [ "nosniff" @@ -695,20 +695,20 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHMvc3dhZ2dlclNvdXJjZUNvbnRyb2w/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHMvc3dhZ2dlclNvdXJjZUNvbnRyb2w/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"BranchTwo\",\r\n \"autoSync\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f62cea66-1767-4c80-8a07-e30846da64ab" + "1e712b18-50eb-4b74-9046-e992b2190888" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -722,7 +722,7 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:14:50 GMT" + "Fri, 19 Oct 2018 20:49:21 GMT" ], "Pragma": [ "no-cache" @@ -731,7 +731,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "f62cea66-1767-4c80-8a07-e30846da64ab" + "1e712b18-50eb-4b74-9046-e992b2190888" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,10 +746,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "9b066d47-3fd4-4e3e-a30c-0d0437c4491c" + "7e336c2c-0088-41e7-a312-a2f6cf5da786" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211451Z:9b066d47-3fd4-4e3e-a30c-0d0437c4491c" + "WESTUS2:20181019T204921Z:7e336c2c-0088-41e7-a312-a2f6cf5da786" ], "X-Content-Type-Options": [ "nosniff" @@ -764,24 +764,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl\",\r\n \"name\": \"swaggerSourceControl\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"creationTime\": \"2018-08-06T14:14:49.5044078-07:00\",\r\n \"lastModifiedTime\": \"2018-08-06T14:14:50.9823297-07:00\",\r\n \"repoUrl\": \"https://miaromero.visualstudio.com/_git/Marvin\",\r\n \"sourceType\": \"VsoGit\",\r\n \"branch\": \"BranchTwo\",\r\n \"folderPath\": \"/FolderOne\",\r\n \"autoSync\": false,\r\n \"publishRunbook\": true,\r\n \"description\": \"test creating a Source Control\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl\",\r\n \"name\": \"swaggerSourceControl\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"creationTime\": \"2018-10-19T13:49:19.7627448-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T13:49:21.5792104-07:00\",\r\n \"repoUrl\": \"https://miaromero.visualstudio.com/_git/Marvin\",\r\n \"sourceType\": \"VsoGit\",\r\n \"branch\": \"BranchTwo\",\r\n \"folderPath\": \"/FolderOne\",\r\n \"autoSync\": false,\r\n \"publishRunbook\": true,\r\n \"description\": \"test creating a Source Control\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHM/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHM/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ea08402-ff80-4e9e-aaf8-aca4ab0f09bc" + "d9764d34-275b-4f15-a97f-a27dcc72699a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, "ResponseHeaders": { @@ -789,7 +789,7 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:14:58 GMT" + "Fri, 19 Oct 2018 20:49:21 GMT" ], "Pragma": [ "no-cache" @@ -798,7 +798,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "7ea08402-ff80-4e9e-aaf8-aca4ab0f09bc" + "d9764d34-275b-4f15-a97f-a27dcc72699a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,13 +810,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "31210f96-3e58-4118-8a02-8af1e59b4b87" + "47996089-ba12-48c5-99f9-9fe27308529a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211458Z:31210f96-3e58-4118-8a02-8af1e59b4b87" + "WESTUS2:20181019T204921Z:47996089-ba12-48c5-99f9-9fe27308529a" ], "X-Content-Type-Options": [ "nosniff" @@ -831,24 +831,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl\",\r\n \"name\": \"swaggerSourceControl\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"creationTime\": \"2018-08-06T14:14:49.5044078-07:00\",\r\n \"lastModifiedTime\": \"2018-08-06T14:14:50.9823297-07:00\",\r\n \"repoUrl\": \"https://miaromero.visualstudio.com/_git/Marvin\",\r\n \"sourceType\": \"VsoGit\",\r\n \"branch\": \"BranchTwo\",\r\n \"folderPath\": \"/FolderOne\",\r\n \"autoSync\": false,\r\n \"publishRunbook\": true,\r\n \"description\": \"test creating a Source Control\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl\",\r\n \"name\": \"swaggerSourceControl\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"creationTime\": \"2018-10-19T13:49:19.7627448-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T13:49:21.5792104-07:00\",\r\n \"repoUrl\": \"https://miaromero.visualstudio.com/_git/Marvin\",\r\n \"sourceType\": \"VsoGit\",\r\n \"branch\": \"BranchTwo\",\r\n \"folderPath\": \"/FolderOne\",\r\n \"autoSync\": false,\r\n \"publishRunbook\": true,\r\n \"description\": \"test creating a Source Control\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/52d8cf1b-bcac-493a-bbae-f234b5ff38b0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTJkOGNmMWItYmNhYy00OTNhLWJiYWUtZjIzNGI1ZmYzOGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHMvc3dhZ2dlclNvdXJjZUNvbnRyb2w/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/sourceControls/swaggerSourceControl?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc291cmNlQ29udHJvbHMvc3dhZ2dlclNvdXJjZUNvbnRyb2w/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e02c03b-c413-4d54-a004-2b10c011c1de" + "a1c5ed8a-401a-4fb4-b924-8b53285a7612" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.2.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, "ResponseHeaders": { @@ -856,7 +856,7 @@ "no-cache" ], "Date": [ - "Mon, 06 Aug 2018 21:15:35 GMT" + "Fri, 19 Oct 2018 20:49:22 GMT" ], "Pragma": [ "no-cache" @@ -865,7 +865,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "2e02c03b-c413-4d54-a004-2b10c011c1de" + "a1c5ed8a-401a-4fb4-b924-8b53285a7612" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -880,10 +880,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "d54c68b6-7e0a-4dec-a37c-c457a3c2cb74" + "c5184315-57dd-4711-a863-88445eb69ff9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180806T211535Z:d54c68b6-7e0a-4dec-a37c-c457a3c2cb74" + "WESTUS2:20181019T204922Z:c5184315-57dd-4711-a863-88445eb69ff9" ], "X-Content-Type-Options": [ "nosniff" @@ -901,6 +901,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "52d8cf1b-bcac-493a-bbae-f234b5ff38b0" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteVariable.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteVariable.json index 5cc740fa2dc0a..f8b573c441e02 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteVariable.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteVariable.json @@ -1,123 +1,116 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourcegroups/automation-sdk-test?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/automation-sdk-test?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "31" - ], "x-ms-client-request-id": [ - "e0069af3-a960-4286-a004-1a598addfcf1" + "7ba3f852-1c04-47b6-ab9c-a73459922961" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26328.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "192" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:26 GMT" + "Fri, 19 Oct 2018 20:53:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-request-id": [ - "2d0232d2-a750-4ae3-b5ba-d30b093508dc" + "2600819a-ff79-4e11-bed0-578fbaa0290f" ], "x-ms-correlation-request-id": [ - "2d0232d2-a750-4ae3-b5ba-d30b093508dc" + "2600819a-ff79-4e11-bed0-578fbaa0290f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072626Z:2d0232d2-a750-4ae3-b5ba-d30b093508dc" + "WESTUS2:20181019T205310Z:2600819a-ff79-4e11-bed0-578fbaa0290f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "192" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "188" - ], "x-ms-client-request-id": [ - "31bc11ce-488c-401e-8253-63f5b6d5a277" + "aa248bcb-5ccd-4873-89c9-5032da859eb8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/9aa1daf3-faf5-4490-8408-ef944dddc282\",\r\n \"creationTime\": \"2017-11-19T23:26:30.013-08:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2017-11-19T23:26:30.013-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "623" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "188" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:28 GMT" + "Fri, 19 Oct 2018 20:53:11 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "31bc11ce-488c-401e-8253-63f5b6d5a277" + "aa248bcb-5ccd-4873-89c9-5032da859eb8" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -129,62 +122,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1198" ], "x-ms-correlation-request-id": [ - "c7c19b08-59b4-459e-90a8-c0c0f743affc" + "30f59bb1-dcab-46cd-91e0-501048ee35e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072628Z:c7c19b08-59b4-459e-90a8-c0c0f743affc" + "WESTUS2:20181019T205311Z:30f59bb1-dcab-46cd-91e0-501048ee35e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/6fa6e5b2-be99-4098-93b6-f4eafd19f42f\",\r\n \"creationTime\": \"2018-10-19T13:53:11.133-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T13:53:11.133-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90b12de4-6a06-4dd8-8a1e-9899fe6e072e" + "7948c846-ee61-497d-b6f9-c86b0e20bcfd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:28 GMT" + "Fri, 19 Oct 2018 20:53:11 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "90b12de4-6a06-4dd8-8a1e-9899fe6e072e" + "7948c846-ee61-497d-b6f9-c86b0e20bcfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -196,62 +189,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "11994" ], "x-ms-correlation-request-id": [ - "01a7f2b1-1874-4fc2-b552-a2a1c493f6da" + "3e5b33b9-983c-46cf-b3ab-999109a27bbd" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072629Z:01a7f2b1-1874-4fc2-b552-a2a1c493f6da" + "WESTUS2:20181019T205311Z:3e5b33b9-983c-46cf-b3ab-999109a27bbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "571fc7d8-a593-46ec-b148-1d84e67be51d" + "07c31f98-732e-4359-b69f-46bfd3fce4bb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:28 GMT" + "Fri, 19 Oct 2018 20:53:11 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "571fc7d8-a593-46ec-b148-1d84e67be51d" + "07c31f98-732e-4359-b69f-46bfd3fce4bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -263,62 +256,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "11993" ], "x-ms-correlation-request-id": [ - "6ee956b0-19d9-45d8-9812-0a4657f0fb62" + "6744f30f-d002-41f5-94ef-27b596f6d0fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072629Z:6ee956b0-19d9-45d8-9812-0a4657f0fb62" + "WESTUS2:20181019T205311Z:6744f30f-d002-41f5-94ef-27b596f6d0fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44a6e9b0-18d3-4455-8e76-3ca82c3aa211" + "b3d9e48a-e2c2-4567-914b-247cad0ddf97" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:29 GMT" + "Fri, 19 Oct 2018 20:53:11 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "44a6e9b0-18d3-4455-8e76-3ca82c3aa211" + "b3d9e48a-e2c2-4567-914b-247cad0ddf97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -330,62 +323,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "11992" ], "x-ms-correlation-request-id": [ - "5e0f5f96-ecf6-478b-a560-1abd127ffbac" + "7140fb43-04cd-4046-822c-a269293ce023" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072629Z:5e0f5f96-ecf6-478b-a560-1abd127ffbac" + "WESTUS2:20181019T205311Z:7140fb43-04cd-4046-822c-a269293ce023" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22ab9103-d364-4f01-9ddd-c9abfce696df" + "51fe6c79-cdfd-492b-92a9-a5bc8d88fc58" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:29 GMT" + "Fri, 19 Oct 2018 20:53:11 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "22ab9103-d364-4f01-9ddd-c9abfce696df" + "51fe6c79-cdfd-492b-92a9-a5bc8d88fc58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,62 +390,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "11991" ], "x-ms-correlation-request-id": [ - "fce82f5e-8517-404a-8794-6200f9c8879c" + "f412b66e-939b-4237-9bec-213d179f9812" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072629Z:fce82f5e-8517-404a-8794-6200f9c8879c" + "WESTUS2:20181019T205312Z:f412b66e-939b-4237-9bec-213d179f9812" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41843b2e-eb24-4bca-81b0-0975395adc66" + "5dd631cb-5cd9-4be8-85dd-7840d58a4350" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870\",\r\n \"name\": \"variable5870\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-11-19T23:26:32.513-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:26:33.2-08:00\",\r\n \"isEncrypted\": false,\r\n \"value\": \"20\",\r\n \"description\": \"int typed variable\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:31 GMT" + "Fri, 19 Oct 2018 20:53:13 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "41843b2e-eb24-4bca-81b0-0975395adc66" + "5dd631cb-5cd9-4be8-85dd-7840d58a4350" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -464,138 +457,141 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "11988" ], "x-ms-correlation-request-id": [ - "f6b21349-2348-433f-815b-3d3a9340dac2" + "4d919e49-65c6-4d88-a270-d92184c84031" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072631Z:f6b21349-2348-433f-815b-3d3a9340dac2" + "WESTUS2:20181019T205313Z:4d919e49-65c6-4d88-a270-d92184c84031" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281\",\r\n \"name\": \"variable2281\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Variables\",\r\n \"properties\": {\r\n \"creationTime\": \"2018-10-19T13:53:13.133-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T13:53:13.71-07:00\",\r\n \"isEncrypted\": false,\r\n \"value\": \"20\",\r\n \"description\": \"int typed variable\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c5aaf15-1b58-4b7a-b8c4-fe25940acc01" + "bc41ef1b-76e9-4c86-a4b6-02b3e65457d1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:30 GMT" + "Fri, 19 Oct 2018 20:53:12 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "3c5aaf15-1b58-4b7a-b8c4-fe25940acc01" + "bc41ef1b-76e9-4c86-a4b6-02b3e65457d1" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "11990" ], "x-ms-correlation-request-id": [ - "db1c50a1-bc00-4cc8-97e3-51a67d810653" + "9887fdf9-c851-484d-b798-01bccd70a9cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072630Z:db1c50a1-bc00-4cc8-97e3-51a67d810653" + "WESTUS2:20181019T205312Z:9887fdf9-c851-484d-b798-01bccd70a9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzL3ZhcmlhYmxlNTg3MD9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzL3ZhcmlhYmxlMjI4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"variable5870\",\r\n \"properties\": {\r\n \"value\": \"10\",\r\n \"isEncrypted\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"variable2281\",\r\n \"properties\": {\r\n \"value\": \"10\",\r\n \"isEncrypted\": false\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "101" - ], "x-ms-client-request-id": [ - "da96e208-c7ed-44af-8821-0f4b002d0783" + "2fd07d45-997a-4932-8ebb-84aa5cfb1e76" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870\",\r\n \"name\": \"variable5870\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-11-19T23:26:32.513-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:26:32.513-08:00\",\r\n \"isEncrypted\": false,\r\n \"value\": \"10\",\r\n \"description\": null\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "383" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "101" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:30 GMT" + "Fri, 19 Oct 2018 20:53:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "da96e208-c7ed-44af-8821-0f4b002d0783" + "2fd07d45-997a-4932-8ebb-84aa5cfb1e76" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281?api-version=2015-10-31" ], "ocp-location": [ - "https://management.azure.com/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281?api-version=2015-10-31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -607,62 +603,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1197" ], "x-ms-correlation-request-id": [ - "9116e270-646f-4732-8b0b-c0582af34a72" + "90138fd4-09c1-4276-8f3c-594b455eab6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072631Z:9116e270-646f-4732-8b0b-c0582af34a72" + "WESTUS2:20181019T205313Z:90138fd4-09c1-4276-8f3c-594b455eab6c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "442" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281\",\r\n \"name\": \"variable2281\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Variables\",\r\n \"properties\": {\r\n \"creationTime\": \"2018-10-19T13:53:13.133-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T13:53:13.133-07:00\",\r\n \"isEncrypted\": false,\r\n \"value\": \"10\",\r\n \"description\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzL3ZhcmlhYmxlNTg3MD9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzL3ZhcmlhYmxlMjI4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f93960a-8fcc-47dc-81dd-d9cf2e4d31ac" + "97f8ee25-b4af-4d9c-b4f3-e4024f108362" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870\",\r\n \"name\": \"variable5870\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-11-19T23:26:32.513-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:26:32.513-08:00\",\r\n \"isEncrypted\": false,\r\n \"value\": \"10\",\r\n \"description\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:30 GMT" + "Fri, 19 Oct 2018 20:53:13 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "4f93960a-8fcc-47dc-81dd-d9cf2e4d31ac" + "97f8ee25-b4af-4d9c-b4f3-e4024f108362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -674,50 +670,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "11989" ], "x-ms-correlation-request-id": [ - "dfb9a179-dc46-4262-aff7-85efb6f5520b" + "b0ee5c86-077d-4945-bb85-fce368213b37" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072631Z:dfb9a179-dc46-4262-aff7-85efb6f5520b" + "WESTUS2:20181019T205313Z:b0ee5c86-077d-4945-bb85-fce368213b37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "442" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281\",\r\n \"name\": \"variable2281\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Variables\",\r\n \"properties\": {\r\n \"creationTime\": \"2018-10-19T13:53:13.133-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T13:53:13.133-07:00\",\r\n \"isEncrypted\": false,\r\n \"value\": \"10\",\r\n \"description\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzL3ZhcmlhYmxlNTg3MD9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzL3ZhcmlhYmxlMjI4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d6d9eb4-065f-48c4-a485-7b2679fde48d" + "c7788f6d-a179-4758-9b39-ada2461f031e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Variable not found.\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "51" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:32 GMT" + "Fri, 19 Oct 2018 20:53:14 GMT" ], "Pragma": [ "no-cache" @@ -726,7 +725,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "2d6d9eb4-065f-48c4-a485-7b2679fde48d" + "c7788f6d-a179-4758-9b39-ada2461f031e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -738,68 +737,68 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "11987" ], "x-ms-correlation-request-id": [ - "c0d09fd8-e85c-4c8d-a262-01e513d82256" + "f3deafb5-6ff7-43b7-bf54-b9b8d8403064" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072632Z:c0d09fd8-e85c-4c8d-a262-01e513d82256" + "WESTUS2:20181019T205314Z:f3deafb5-6ff7-43b7-bf54-b9b8d8403064" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Variable not found.\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzL3ZhcmlhYmxlNTg3MD9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzL3ZhcmlhYmxlMjI4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"name\": \"variable5870\",\r\n \"properties\": {\r\n \"value\": \"20\",\r\n \"description\": \"int typed variable\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"variable2281\",\r\n \"properties\": {\r\n \"value\": \"20\",\r\n \"description\": \"int typed variable\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "116" - ], "x-ms-client-request-id": [ - "0d597598-af6e-4e8e-9048-cd4a0d2fb52b" + "178373a7-f07c-488a-a1a0-de8d65a9b665" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870\",\r\n \"name\": \"variable5870\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-11-19T23:26:32.513-08:00\",\r\n \"lastModifiedTime\": \"2017-11-19T23:26:33.2-08:00\",\r\n \"isEncrypted\": false,\r\n \"value\": \"20\",\r\n \"description\": \"int typed variable\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "116" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:31 GMT" + "Fri, 19 Oct 2018 20:53:13 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "0d597598-af6e-4e8e-9048-cd4a0d2fb52b" + "178373a7-f07c-488a-a1a0-de8d65a9b665" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -811,47 +810,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1196" ], "x-ms-correlation-request-id": [ - "11610451-4387-45e5-bf73-885016575cfa" + "c816d304-5acf-443d-b998-35cf6e041191" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072631Z:11610451-4387-45e5-bf73-885016575cfa" + "WESTUS2:20181019T205313Z:c816d304-5acf-443d-b998-35cf6e041191" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "457" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281\",\r\n \"name\": \"variable2281\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Variables\",\r\n \"properties\": {\r\n \"creationTime\": \"2018-10-19T13:53:13.133-07:00\",\r\n \"lastModifiedTime\": \"2018-10-19T13:53:13.71-07:00\",\r\n \"isEncrypted\": false,\r\n \"value\": \"20\",\r\n \"description\": \"int typed variable\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b5e4748c-f69a-467c-8749-e2f9c8cd3db0/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable5870?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjVlNDc0OGMtZjY5YS00NjdjLTg3NDktZTJmOWM4Y2QzZGIwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzL3ZhcmlhYmxlNTg3MD9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables/variable2281?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzL3ZhcmlhYmxlMjI4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03ced0d2-ed9f-4506-92d4-805432338c7a" + "af1933f4-967d-46f1-a29b-ffaffb863c69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 20 Nov 2017 07:26:31 GMT" + "Fri, 19 Oct 2018 20:53:14 GMT" ], "Pragma": [ "no-cache" @@ -860,7 +865,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "03ced0d2-ed9f-4506-92d4-805432338c7a" + "af1933f4-967d-46f1-a29b-ffaffb863c69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -871,25 +876,35 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "84f21119-49f2-405b-a94a-0867f2c33d2e" + "36f78520-b526-435e-81c6-3eff2d858b7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171120T072632Z:84f21119-49f2-405b-a94a-0867f2c33d2e" + "WESTUS2:20181019T205314Z:36f78520-b526-435e-81c6-3eff2d858b7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "CanCreateUpdateDeleteVariable": [ - "variable5870" + "variable2281" ] }, "Variables": { - "SubscriptionId": "b5e4748c-f69a-467c-8749-e2f9c8cd3db0" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteWebhook.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteWebhook.json index 2dea4d32a9e3f..279e9b15b8c90 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteWebhook.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteWebhook.json @@ -1,123 +1,116 @@ { "Entries": [ { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourcegroups/automation-sdk-test?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/automation-sdk-test?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlZ3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "37" - ], "x-ms-client-request-id": [ - "0674abea-184b-45af-8ccc-5134e665db1e" + "1500579f-8103-4c3e-9842-946e56c49719" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", + "FxVersion/4.6.26328.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:17 GMT" + "Fri, 19 Oct 2018 21:01:24 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "3979a37a-1062-4e1b-898d-c0a41988316a" + "3c6889bd-6980-4b88-82a6-ef994a04ba45" ], "x-ms-correlation-request-id": [ - "3979a37a-1062-4e1b-898d-c0a41988316a" + "3c6889bd-6980-4b88-82a6-ef994a04ba45" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232718Z:3979a37a-1062-4e1b-898d-c0a41988316a" + "WESTUS2:20181019T210124Z:3c6889bd-6980-4b88-82a6-ef994a04ba45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "192" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test\",\r\n \"name\": \"automation-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Free\",\r\n \"family\": \"Test\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"name\": \"automation-sdk-test-account\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "194" - ], "x-ms-client-request-id": [ - "23499eb0-787c-4a29-a436-564e6cae27cc" + "090926cd-b9f0-418e-b16e-b75559bf775f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://wcus-agentservice-prod-1.azure-automation.net/accounts/265bd015-53a6-4fc4-a6c8-c7b29c94e2c5\",\r\n \"creationTime\": \"2018-05-04T16:09:38.39-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-05-04T16:27:18.7133333-07:00\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "188" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:18 GMT" + "Fri, 19 Oct 2018 21:01:26 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "23499eb0-787c-4a29-a436-564e6cae27cc" + "090926cd-b9f0-418e-b16e-b75559bf775f" + ], + "x-ms-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" + ], + "ocp-location": [ + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account?api-version=2015-10-31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -132,62 +125,59 @@ "1198" ], "x-ms-correlation-request-id": [ - "1ef2d966-3fd3-433b-87b9-168cae08b71c" + "85b40a24-ba53-40c0-bad5-04c8268610ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232718Z:1ef2d966-3fd3-433b-87b9-168cae08b71c" + "WESTUS2:20181019T210126Z:85b40a24-ba53-40c0-bad5-04c8268610ab" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"automation-sdk-test-account\",\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": null,\r\n \"capacity\": null\r\n },\r\n \"state\": \"Ok\",\r\n \"RegistrationUrl\": \"https://eus2-agentservice-prod-1.azure-automation.net/accounts/bbd9dd3f-ac4e-4eba-b7cf-ba0774e302da\",\r\n \"creationTime\": \"2018-10-19T14:01:26.243-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T14:01:26.243-07:00\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/credentials?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9e718af-28f5-4db5-8961-bccc94d666e8" + "c2cf9df8-a38f-44ea-b2de-473d5f4ec92d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:18 GMT" + "Fri, 19 Oct 2018 21:01:26 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "e9e718af-28f5-4db5-8961-bccc94d666e8" + "c2cf9df8-a38f-44ea-b2de-473d5f4ec92d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,65 +189,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11996" ], "x-ms-correlation-request-id": [ - "ce7ba37f-a463-40e1-90a4-4c8d40c5e5fe" + "34fac413-8805-4d91-b683-13b77ca0440d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232718Z:ce7ba37f-a463-40e1-90a4-4c8d40c5e5fe" + "WESTUS2:20181019T210126Z:34fac413-8805-4d91-b683-13b77ca0440d" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3M/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e7760e1-2cae-45a2-8b70-3d2552dcda38" + "d24cf6b5-a32c-4beb-9ee9-d607c3dafd8b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:18 GMT" + "Fri, 19 Oct 2018 21:01:26 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "8e7760e1-2cae-45a2-8b70-3d2552dcda38" + "d24cf6b5-a32c-4beb-9ee9-d607c3dafd8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -269,65 +256,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11995" ], "x-ms-correlation-request-id": [ - "4b041775-6f82-48d0-9672-29af7b0509fe" + "c685aa9f-4527-423b-801a-68fa8e1ae5c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232718Z:4b041775-6f82-48d0-9672-29af7b0509fe" + "WESTUS2:20181019T210126Z:c685aa9f-4527-423b-801a-68fa8e1ae5c2" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/schedules?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvc2NoZWR1bGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f25fa68f-d0d5-4cf2-8535-355a1dce3e84" + "9ef73027-511a-4a82-b53c-73232a49b487" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:18 GMT" + "Fri, 19 Oct 2018 21:01:26 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "f25fa68f-d0d5-4cf2-8535-355a1dce3e84" + "9ef73027-511a-4a82-b53c-73232a49b487" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -339,65 +323,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11994" ], "x-ms-correlation-request-id": [ - "3af49bd2-6ab5-475c-a051-b51b0589d5fa" + "f7de1287-2eb9-4d6f-ba9b-1bdac3ecba40" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232718Z:3af49bd2-6ab5-475c-a051-b51b0589d5fa" + "WESTUS2:20181019T210127Z:f7de1287-2eb9-4d6f-ba9b-1bdac3ecba40" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/variables?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvdmFyaWFibGVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e55ea19-7eee-4bcd-a6ba-b4a984f9c871" + "ba4b6ed9-9290-4a2f-93f4-65a435441044" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:18 GMT" + "Fri, 19 Oct 2018 21:01:26 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "7e55ea19-7eee-4bcd-a6ba-b4a984f9c871" + "ba4b6ed9-9290-4a2f-93f4-65a435441044" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -409,214 +390,208 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11993" ], "x-ms-correlation-request-id": [ - "b7a769ee-8dc4-4ee5-8a4c-ebbb76874596" + "b8a81d2c-3caf-48d0-b3af-4e9079297221" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232719Z:b7a769ee-8dc4-4ee5-8a4c-ebbb76874596" + "WESTUS2:20181019T210127Z:b8a81d2c-3caf-48d0-b3af-4e9079297221" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7096b424-1064-4469-9f69-d0814390945c" + "0402a96b-b491-4f52-b4bc-8dd174f69d2d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:18 GMT" + "Fri, 19 Oct 2018 21:01:27 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "7096b424-1064-4469-9f69-d0814390945c" + "0402a96b-b491-4f52-b4bc-8dd174f69d2d" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11992" ], "x-ms-correlation-request-id": [ - "827e6788-e30b-4d77-9f1b-db61ec5e1fde" + "380c7bd3-558a-46ee-9e5e-753e4c57c41d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232719Z:827e6788-e30b-4d77-9f1b-db61ec5e1fde" + "WESTUS2:20181019T210127Z:380c7bd3-558a-46ee-9e5e-753e4c57c41d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d9c6f6a-6f00-441a-a82a-d93de11e9e5e" + "257c28dd-69f4-4003-bd1c-b3b637476963" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook888\",\r\n \"name\": \"webhook888\",\r\n \"properties\": {\r\n \"isEnabled\": false,\r\n \"expiryTime\": \"2019-05-04T09:27:51.4850625-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n },\r\n \"lastInvokedTime\": null,\r\n \"runOn\": null,\r\n \"parameters\": null,\r\n \"uri\": null,\r\n \"creationTime\": \"2018-05-04T16:27:52.0105308-07:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2018-05-04T16:27:52.3542871-07:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:52 GMT" + "Fri, 19 Oct 2018 21:02:02 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "1d9c6f6a-6f00-441a-a82a-d93de11e9e5e" + "257c28dd-69f4-4003-bd1c-b3b637476963" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11987" ], "x-ms-correlation-request-id": [ - "691fd520-f59a-4335-853f-cf139c5a2179" + "b5826674-e189-4166-912d-ef2cfc61e28a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232752Z:691fd520-f59a-4335-853f-cf139c5a2179" + "WESTUS2:20181019T210202Z:b5826674-e189-4166-912d-ef2cfc61e28a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "540" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook2478\",\r\n \"name\": \"webhook2478\",\r\n \"properties\": {\r\n \"isEnabled\": false,\r\n \"expiryTime\": \"2019-10-19T07:02:00.4994487-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n },\r\n \"lastInvokedTime\": null,\r\n \"runOn\": null,\r\n \"parameters\": null,\r\n \"uri\": null,\r\n \"creationTime\": \"2018-10-19T14:02:01.3831183-07:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2018-10-19T14:02:02.6509816-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"runbookType\": \"PowerShellWorkflow\",\r\n \"draft\": {\r\n \"creationTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00-08:00\"\r\n }\r\n },\r\n \"name\": \"TestFasterWorkflow\",\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"runbookType\": \"PowerShellWorkflow\",\r\n \"draft\": {\r\n \"creationTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00-08:00\"\r\n }\r\n },\r\n \"name\": \"TestFasterWorkflow\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "267" - ], "x-ms-client-request-id": [ - "bf12c255-05f4-449f-a515-4de3da0ac674" + "02802e31-f0e9-4690-aa29-51a32bb18deb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"TestFasterWorkflow\",\r\n \"id\": \"/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636610732401033333\\\"\",\r\n \"properties\": {\r\n \"description\": null,\r\n \"logVerbose\": false,\r\n \"logProgress\": false,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShellWorkflow\",\r\n \"parameters\": {},\r\n \"state\": \"New\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-05-04T16:27:20.1033333-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-05-04T16:27:20.1033333-07:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "736" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "261" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:19 GMT" + "Fri, 19 Oct 2018 21:01:28 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"636610732401033333\"" + "\"636755796886370000\"" ], "Location": [ - "https://management.azure.com/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2018-06-30" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "bf12c255-05f4-449f-a515-4de3da0ac674" + "02802e31-f0e9-4690-aa29-51a32bb18deb" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2018-06-30" ], "ocp-location": [ - "https://management.azure.com/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2018-06-30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -631,59 +606,62 @@ "1197" ], "x-ms-correlation-request-id": [ - "1ab8d15d-1c74-4fa6-bf26-be7ea9c94d01" + "64ba48a7-1e91-4d63-854c-00e76e8bc4e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232720Z:1ab8d15d-1c74-4fa6-bf26-be7ea9c94d01" + "WESTUS2:20181019T210128Z:64ba48a7-1e91-4d63-854c-00e76e8bc4e3" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "722" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow\",\r\n \"name\": \"TestFasterWorkflow\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636755796886370000\\\"\",\r\n \"properties\": {\r\n \"description\": null,\r\n \"logVerbose\": false,\r\n \"logProgress\": false,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShellWorkflow\",\r\n \"parameters\": {},\r\n \"state\": \"New\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-10-19T14:01:28.637-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T14:01:28.637-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "PUT", - "RequestBody": "\"System.Byte[]\"", + "RequestBody": "Workflow TestFasterWorkflow {\r\n get-date\r\n }", "RequestHeaders": { - "Content-Type": [ - "text/powershell" - ], - "Content-Length": [ - "15" - ], "x-ms-client-request-id": [ - "18aa8fa0-f0e3-4c0d-937a-db1aafd75b87" + "f7d9159b-204c-466e-a4ba-d7c5e708e5f9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], + "Content-Type": [ + "text/powershell" + ], + "Content-Length": [ + "70" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:20 GMT" + "Fri, 19 Oct 2018 21:01:29 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content/operationResults/d7a41b2c-328b-4534-b02e-63e488be49e4?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content/operationResults/6f796efe-3a42-4cf9-884e-c4459438e3ba?api-version=2018-06-30" ], "Retry-After": [ "30" @@ -692,17 +670,17 @@ "Microsoft-IIS/8.5" ], "ocp-automation-operationresultid": [ - "d7a41b2c-328b-4534-b02e-63e488be49e4", - "d7a41b2c-328b-4534-b02e-63e488be49e4" + "6f796efe-3a42-4cf9-884e-c4459438e3ba", + "6f796efe-3a42-4cf9-884e-c4459438e3ba" ], "x-ms-request-id": [ - "18aa8fa0-f0e3-4c0d-937a-db1aafd75b87" + "f7d9159b-204c-466e-a4ba-d7c5e708e5f9" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content/operationResults/d7a41b2c-328b-4534-b02e-63e488be49e4?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content/operationResults/6f796efe-3a42-4cf9-884e-c4459438e3ba?api-version=2018-06-30" ], "ocp-location": [ - "https://management.azure.com/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content/operationResults/d7a41b2c-328b-4534-b02e-63e488be49e4?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content/operationResults/6f796efe-3a42-4cf9-884e-c4459438e3ba?api-version=2018-06-30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,44 +695,41 @@ "1196" ], "x-ms-correlation-request-id": [ - "a3c8f5bf-dd14-4094-8fad-79c0759c1d20" + "bc480948-61a6-4f9c-b2a6-bcd1fa98f794" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232720Z:a3c8f5bf-dd14-4094-8fad-79c0759c1d20" + "WESTUS2:20181019T210129Z:bc480948-61a6-4f9c-b2a6-bcd1fa98f794" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content/operationResults/d7a41b2c-328b-4534-b02e-63e488be49e4?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93L2RyYWZ0L2NvbnRlbnQvb3BlcmF0aW9uUmVzdWx0cy9kN2E0MWIyYy0zMjhiLTQ1MzQtYjAyZS02M2U0ODhiZTQ5ZTQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content/operationResults/6f796efe-3a42-4cf9-884e-c4459438e3ba?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93L2RyYWZ0L2NvbnRlbnQvb3BlcmF0aW9uUmVzdWx0cy82Zjc5NmVmZS0zYTQyLTRjZjktODg0ZS1jNDQ1OTQzOGUzYmE/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:50 GMT" + "Fri, 19 Oct 2018 21:01:59 GMT" ], "Pragma": [ "no-cache" @@ -763,7 +738,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "c0a4924c-78d0-434c-b898-62390d824d58" + "11a68192-c1ec-4c27-8645-16c9f4461ef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -775,66 +750,65 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11991" ], "x-ms-correlation-request-id": [ - "f85340b6-72cb-47d0-a41e-b96145a25735" + "fd6e4a0c-46b8-4dc7-b6bc-9760b032e070" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232750Z:f85340b6-72cb-47d0-a41e-b96145a25735" + "WESTUS2:20181019T210159Z:fd6e4a0c-46b8-4dc7-b6bc-9760b032e070" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/content?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93L2RyYWZ0L2NvbnRlbnQ/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "<# \r\n\tThis PowerShell script was automatically converted to PowerShell Workflow so it can be run as a runbook.\r\n\tSpecific changes that have been made are marked with a comment starting with “Converter:”\r\n#>\r\nworkflow TestFasterWorkflow {\r\n\t\r\n\t# Converter: Wrapping initial script in an InlineScript activity, and passing any parameters for use within the InlineScript\r\n\t# Converter: If you want this InlineScript to execute on another host rather than the Automation worker, simply add some combination of -PSComputerName, -PSCredential, -PSConnectionURI, or other workflow common parameters (http://technet.microsoft.com/en-us/library/jj129719.aspx) as parameters of the InlineScript\r\n\tinlineScript {\r\n\t\t\"System.Byte[]\"\r\n\t}\r\n}", "ResponseHeaders": { - "Content-Type": [ - "text/powershell" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:50 GMT" + "Fri, 19 Oct 2018 21:01:59 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"636610732406500000\"" + "\"636755796894000000\"" ], "Server": [ "Microsoft-IIS/8.5" ], "Vary": [ - "Accept-Encoding", "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11990" ], "x-ms-request-id": [ - "df92c08c-f284-4b52-911d-7003cfe0115c" + "5c45192f-ea3e-49d3-a576-bc9d920b58fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,53 +820,56 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "fce5e06b-ae89-45d6-80ce-d8d16af1e32a" + "36b24e20-ca41-42ec-91a1-555dc6172f1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232751Z:fce5e06b-ae89-45d6-80ce-d8d16af1e32a" + "WESTUS2:20181019T210200Z:36b24e20-ca41-42ec-91a1-555dc6172f1d" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "70" + ], + "Content-Type": [ + "text/powershell" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "Workflow TestFasterWorkflow {\r\n get-date\r\n }", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/publish?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93L2RyYWZ0L3B1Ymxpc2g/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/publish?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93L3B1Ymxpc2g/YXBpLXZlcnNpb249MjAxOC0wNi0zMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee9f0dd1-279e-4ea0-95da-844c30168089" + "8fda051f-6259-475a-aafa-9121331b5da5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:51 GMT" + "Fri, 19 Oct 2018 21:01:59 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/publish/operationResults/3e64cc55-db51-49e2-906c-31b4fb35411a?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/publish/operationResults/94bd357b-e572-43a7-af00-47eb435f8434?api-version=2018-06-30" ], "Retry-After": [ "30" @@ -901,17 +878,17 @@ "Microsoft-IIS/8.5" ], "ocp-automation-operationresultid": [ - "3e64cc55-db51-49e2-906c-31b4fb35411a", - "3e64cc55-db51-49e2-906c-31b4fb35411a" + "94bd357b-e572-43a7-af00-47eb435f8434", + "94bd357b-e572-43a7-af00-47eb435f8434" ], "x-ms-request-id": [ - "ee9f0dd1-279e-4ea0-95da-844c30168089" + "8fda051f-6259-475a-aafa-9121331b5da5" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/publish/operationResults/3e64cc55-db51-49e2-906c-31b4fb35411a?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/publish/operationResults/94bd357b-e572-43a7-af00-47eb435f8434?api-version=2018-06-30" ], "ocp-location": [ - "https://management.azure.com/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/draft/publish/operationResults/3e64cc55-db51-49e2-906c-31b4fb35411a?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow/publish/operationResults/94bd357b-e572-43a7-af00-47eb435f8434?api-version=2018-06-30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -926,65 +903,59 @@ "1195" ], "x-ms-correlation-request-id": [ - "e8de52dd-ceeb-4282-b595-6be780039bcf" + "b3ca62ce-f569-4411-b8f6-431c3f3adef1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232751Z:e8de52dd-ceeb-4282-b595-6be780039bcf" + "WESTUS2:20181019T210200Z:b3ca62ce-f569-4411-b8f6-431c3f3adef1" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fde22bd9-da4a-4dcd-bad3-b603c47ae0ec" + "48495ca5-014e-4aaa-afce-df26da751048" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"TestFasterWorkflow\",\r\n \"id\": \"/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636610732712466667\\\"\",\r\n \"properties\": {\r\n \"description\": null,\r\n \"logVerbose\": false,\r\n \"logProgress\": false,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShellWorkflow\",\r\n \"parameters\": {},\r\n \"state\": \"Published\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-05-04T16:27:20.1033333-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-05-04T16:27:51.2466667-07:00\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:51 GMT" + "Fri, 19 Oct 2018 21:01:59 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"636610732712466667\"" + "\"636755797202300000\"" ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "fde22bd9-da4a-4dcd-bad3-b603c47ae0ec" + "48495ca5-014e-4aaa-afce-df26da751048" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,65 +967,62 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11989" ], "x-ms-correlation-request-id": [ - "65f6e402-e61a-4150-9df8-8ecb0a2d438e" + "dbd76d1d-5d65-4f8b-9d50-42f66b3cf3f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232751Z:65f6e402-e61a-4150-9df8-8ecb0a2d438e" + "WESTUS2:20181019T210200Z:dbd76d1d-5d65-4f8b-9d50-42f66b3cf3f5" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "727" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow\",\r\n \"name\": \"TestFasterWorkflow\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Runbooks\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"636755797202300000\\\"\",\r\n \"properties\": {\r\n \"description\": null,\r\n \"logVerbose\": false,\r\n \"logProgress\": false,\r\n \"logActivityTrace\": 0,\r\n \"runbookType\": \"PowerShellWorkflow\",\r\n \"parameters\": {},\r\n \"state\": \"Published\",\r\n \"jobCount\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceManagementTags\": null,\r\n \"outputTypes\": [],\r\n \"creationTime\": \"2018-10-19T14:01:28.637-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-19T14:02:00.23-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/generateUri?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3MvZ2VuZXJhdGVVcmk/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/generateUri?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3MvZ2VuZXJhdGVVcmk/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e5a1f8b-b854-4f8c-bbd0-24320d7f3e94" + "2bf9434e-86aa-4d8f-abc4-c0a04c8b7e1e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "\"https://s13events.azure-automation.net/webhooks?token=OTKPYzH4IOU0tHQmS3z8pgfWezRYfwosqQ0WiRb0WBc%3d\"", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:51 GMT" + "Fri, 19 Oct 2018 21:02:00 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "6e5a1f8b-b854-4f8c-bbd0-24320d7f3e94" + "2bf9434e-86aa-4d8f-abc4-c0a04c8b7e1e" ], "X-Powered-By": [ "ASP.NET" @@ -1063,71 +1031,71 @@ "1194" ], "x-ms-correlation-request-id": [ - "00b8fef1-3382-475a-b1c2-b93cb5995c58" + "fbf93136-7cf1-4557-9749-72c070fdeafc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232751Z:00b8fef1-3382-475a-b1c2-b93cb5995c58" + "WESTUS2:20181019T210200Z:fbf93136-7cf1-4557-9749-72c070fdeafc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "\"https://s1events.azure-automation.net/webhooks?token=zzi4vUb24aaxbS0FF6SC96F1vfpOQDFUaGn8Xw6jnoY%3d\"", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook888?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3Mvd2ViaG9vazg4OD9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook2478?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3Mvd2ViaG9vazI0Nzg/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"webhook888\",\r\n \"properties\": {\r\n \"isEnabled\": true,\r\n \"uri\": \"https://s13events.azure-automation.net/webhooks?token=OTKPYzH4IOU0tHQmS3z8pgfWezRYfwosqQ0WiRb0WBc%3d\",\r\n \"expiryTime\": \"2019-05-04T16:27:51.4850625-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"webhook2478\",\r\n \"properties\": {\r\n \"isEnabled\": true,\r\n \"uri\": \"https://s1events.azure-automation.net/webhooks?token=zzi4vUb24aaxbS0FF6SC96F1vfpOQDFUaGn8Xw6jnoY%3d\",\r\n \"expiryTime\": \"2019-10-19T14:02:00.4994487-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "310" - ], "x-ms-client-request-id": [ - "a0e8464a-6594-4993-90aa-9f2b353cc6d6" + "423eaf33-6fec-49fa-82b0-aa3d1a252725" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook888\",\r\n \"name\": \"webhook888\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Webhooks\",\r\n \"properties\": {\r\n \"isEnabled\": true,\r\n \"expiryTime\": \"2019-05-04T09:27:51.4850625-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n },\r\n \"lastInvokedTime\": null,\r\n \"runOn\": null,\r\n \"parameters\": null,\r\n \"uri\": \"\",\r\n \"creationTime\": \"2018-05-04T16:27:52.0105308-07:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2018-05-04T16:27:52.0105308-07:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "581" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "310" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:51 GMT" + "Fri, 19 Oct 2018 21:02:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook888?api-version=2015-10-31" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook2478?api-version=2015-10-31" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "a0e8464a-6594-4993-90aa-9f2b353cc6d6" + "423eaf33-6fec-49fa-82b0-aa3d1a252725" ], "X-Powered-By": [ "ASP.NET" @@ -1136,120 +1104,117 @@ "1193" ], "x-ms-correlation-request-id": [ - "40da16ce-14a8-4fa2-90d6-e54e3dd679e0" + "607a3f1b-b5b7-4b8b-996d-c00c8f218520" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232751Z:40da16ce-14a8-4fa2-90d6-e54e3dd679e0" + "WESTUS2:20181019T210201Z:607a3f1b-b5b7-4b8b-996d-c00c8f218520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook2478\",\r\n \"name\": \"webhook2478\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Webhooks\",\r\n \"properties\": {\r\n \"isEnabled\": true,\r\n \"expiryTime\": \"2019-10-19T07:02:00.4994487-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n },\r\n \"lastInvokedTime\": null,\r\n \"runOn\": null,\r\n \"parameters\": null,\r\n \"uri\": \"\",\r\n \"creationTime\": \"2018-10-19T14:02:01.3831183-07:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2018-10-19T14:02:01.3831183-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook888?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3Mvd2ViaG9vazg4OD9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook2478?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3Mvd2ViaG9vazI0Nzg/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0f630f6-067f-4f78-8782-09d41f0d979d" + "3e5b996f-845d-4ae3-af07-e8ecc6b1b932" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook888\",\r\n \"name\": \"webhook888\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Webhooks\",\r\n \"properties\": {\r\n \"isEnabled\": true,\r\n \"expiryTime\": \"2019-05-04T09:27:51.4850625-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n },\r\n \"lastInvokedTime\": null,\r\n \"runOn\": null,\r\n \"parameters\": null,\r\n \"uri\": \"\",\r\n \"creationTime\": \"2018-05-04T16:27:52.0105308-07:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2018-05-04T16:27:52.0105308-07:00\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:51 GMT" + "Fri, 19 Oct 2018 21:02:01 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "f0f630f6-067f-4f78-8782-09d41f0d979d" + "3e5b996f-845d-4ae3-af07-e8ecc6b1b932" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11988" ], "x-ms-correlation-request-id": [ - "09a96bf3-22e8-4c21-8570-6ea88dd6de14" + "9825b0a1-64c0-4e82-bc73-61460cba8b2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232752Z:09a96bf3-22e8-4c21-8570-6ea88dd6de14" + "WESTUS2:20181019T210201Z:9825b0a1-64c0-4e82-bc73-61460cba8b2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook2478\",\r\n \"name\": \"webhook2478\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Webhooks\",\r\n \"properties\": {\r\n \"isEnabled\": true,\r\n \"expiryTime\": \"2019-10-19T07:02:00.4994487-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n },\r\n \"lastInvokedTime\": null,\r\n \"runOn\": null,\r\n \"parameters\": null,\r\n \"uri\": \"\",\r\n \"creationTime\": \"2018-10-19T14:02:01.3831183-07:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2018-10-19T14:02:01.3831183-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook888?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3Mvd2ViaG9vazg4OD9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook2478?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3Mvd2ViaG9vazI0Nzg/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "870e2e35-6250-463f-852e-e9097b4f5ecc" + "37849045-14ac-4969-b9a6-9c89186ac8bf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "Webhook not found.", "ResponseHeaders": { - "Content-Length": [ - "18" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:53 GMT" + "Fri, 19 Oct 2018 21:02:04 GMT" ], "Pragma": [ "no-cache" @@ -1258,80 +1223,77 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "870e2e35-6250-463f-852e-e9097b4f5ecc" + "37849045-14ac-4969-b9a6-9c89186ac8bf" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "11985" ], "x-ms-correlation-request-id": [ - "939357a0-9bf2-4358-887c-4d01bbe2e86c" + "c34c7db5-a10e-4061-b4cc-6f11ac8727d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232753Z:939357a0-9bf2-4358-887c-4d01bbe2e86c" + "WESTUS2:20181019T210204Z:c34c7db5-a10e-4061-b4cc-6f11ac8727d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "18" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "Webhook not found.", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook888?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3Mvd2ViaG9vazg4OD9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook2478?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3Mvd2ViaG9vazI0Nzg/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"name\": \"webhook888\",\r\n \"properties\": {\r\n \"isEnabled\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"webhook2478\",\r\n \"properties\": {\r\n \"isEnabled\": false\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "77" - ], "x-ms-client-request-id": [ - "b97bbaaf-b6ea-4666-96f6-6d0c0c49c964" + "78034837-db28-4593-aec8-6130c43dbe5b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook888\",\r\n \"name\": \"webhook888\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Webhooks\",\r\n \"properties\": {\r\n \"isEnabled\": false,\r\n \"expiryTime\": \"2019-05-04T09:27:51.4850625-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n },\r\n \"lastInvokedTime\": null,\r\n \"runOn\": null,\r\n \"parameters\": null,\r\n \"uri\": \"\",\r\n \"creationTime\": \"2018-05-04T16:27:52.0105308-07:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2018-05-04T16:27:52.3542871-07:00\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "78" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:52 GMT" + "Fri, 19 Oct 2018 21:02:02 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "b97bbaaf-b6ea-4666-96f6-6d0c0c49c964" + "78034837-db28-4593-aec8-6130c43dbe5b" ], "X-Powered-By": [ "ASP.NET" @@ -1340,117 +1302,117 @@ "1192" ], "x-ms-correlation-request-id": [ - "0f98dca9-8cec-4eab-a42b-9cf39226f9f9" + "4a0fff2d-9987-4532-ae4d-ecf2fd544f0d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232752Z:0f98dca9-8cec-4eab-a42b-9cf39226f9f9" + "WESTUS2:20181019T210202Z:4a0fff2d-9987-4532-ae4d-ecf2fd544f0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook2478\",\r\n \"name\": \"webhook2478\",\r\n \"type\": \"Microsoft.Automation/AutomationAccounts/Webhooks\",\r\n \"properties\": {\r\n \"isEnabled\": false,\r\n \"expiryTime\": \"2019-10-19T07:02:00.4994487-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n },\r\n \"lastInvokedTime\": null,\r\n \"runOn\": null,\r\n \"parameters\": null,\r\n \"uri\": \"\",\r\n \"creationTime\": \"2018-10-19T14:02:01.3831183-07:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2018-10-19T14:02:02.6509816-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?$filter=properties/runbook/name%20eq%20'TestFasterWorkflow'&api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/JGZpbHRlcj1wcm9wZXJ0aWVzL3J1bmJvb2svbmFtZSUyMGVxJTIwJ1Rlc3RGYXN0ZXJXb3JrZmxvdycmYXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks?$filter=properties/runbook/name%20eq%20'TestFasterWorkflow'&api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3M/JGZpbHRlcj1wcm9wZXJ0aWVzL3J1bmJvb2svbmFtZSUyMGVxJTIwJ1Rlc3RGYXN0ZXJXb3JrZmxvdycmYXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "178bc6b1-74d1-4b48-b165-a564531bbb50" + "204e0a07-6897-4d63-88ad-bfb4013e70ef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook888\",\r\n \"name\": \"webhook888\",\r\n \"properties\": {\r\n \"isEnabled\": false,\r\n \"expiryTime\": \"2019-05-04T09:27:51.4850625-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n },\r\n \"lastInvokedTime\": null,\r\n \"runOn\": null,\r\n \"parameters\": null,\r\n \"uri\": null,\r\n \"creationTime\": \"2018-05-04T16:27:52.0105308-07:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2018-05-04T16:27:52.3542871-07:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:52 GMT" + "Fri, 19 Oct 2018 21:02:02 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-IIS/8.5" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "178bc6b1-74d1-4b48-b165-a564531bbb50" + "204e0a07-6897-4d63-88ad-bfb4013e70ef" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11986" ], "x-ms-correlation-request-id": [ - "8423ef6d-7a3f-44e5-bdf6-b4561151b0da" + "aa0c23fe-056c-485e-b402-5519a8c77456" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232752Z:8423ef6d-7a3f-44e5-bdf6-b4561151b0da" + "WESTUS2:20181019T210203Z:aa0c23fe-056c-485e-b402-5519a8c77456" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "540" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook2478\",\r\n \"name\": \"webhook2478\",\r\n \"properties\": {\r\n \"isEnabled\": false,\r\n \"expiryTime\": \"2019-10-19T07:02:00.4994487-07:00\",\r\n \"runbook\": {\r\n \"name\": \"TestFasterWorkflow\"\r\n },\r\n \"lastInvokedTime\": null,\r\n \"runOn\": null,\r\n \"parameters\": null,\r\n \"uri\": null,\r\n \"creationTime\": \"2018-10-19T14:02:01.3831183-07:00\",\r\n \"lastModifiedBy\": \"\",\r\n \"lastModifiedTime\": \"2018-10-19T14:02:02.6509816-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook888?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3Mvd2ViaG9vazg4OD9hcGktdmVyc2lvbj0yMDE1LTEwLTMx", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/webhooks/webhook2478?api-version=2015-10-31", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvd2ViaG9va3Mvd2ViaG9vazI0Nzg/YXBpLXZlcnNpb249MjAxNS0xMC0zMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dce24cdc-26f9-4f0d-b380-fac0b3d22384" + "cba95df7-4e6d-4c7e-8b26-646fef37525a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:52 GMT" + "Fri, 19 Oct 2018 21:02:02 GMT" ], "Pragma": [ "no-cache" @@ -1459,59 +1421,59 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "dce24cdc-26f9-4f0d-b380-fac0b3d22384" + "cba95df7-4e6d-4c7e-8b26-646fef37525a" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "81b058f7-db94-4cc2-82ee-7eb5a9c83953" + "01f3fa4b-27cb-47cf-b970-651d85ca2feb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232752Z:81b058f7-db94-4cc2-82ee-7eb5a9c83953" + "WESTUS2:20181019T210203Z:01f3fa4b-27cb-47cf-b970-651d85ca2feb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38bbf4c3-a118-476e-8e88-b2dfa92f3a10/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2015-10-31", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzhiYmY0YzMtYTExOC00NzZlLThlODgtYjJkZmE5MmYzYTEwL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTUtMTAtMzE=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/automation-sdk-test/providers/Microsoft.Automation/automationAccounts/automation-sdk-test-account/runbooks/TestFasterWorkflow?api-version=2018-06-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL2F1dG9tYXRpb24tc2RrLXRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRvbWF0aW9uL2F1dG9tYXRpb25BY2NvdW50cy9hdXRvbWF0aW9uLXNkay10ZXN0LWFjY291bnQvcnVuYm9va3MvVGVzdEZhc3RlcldvcmtmbG93P2FwaS12ZXJzaW9uPTIwMTgtMDYtMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61be973f-2b99-42ef-889d-0da70484c55f" + "d28be72d-ded5-4451-8d23-697ca9cac10e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26328.01", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 04 May 2018 23:27:53 GMT" + "Fri, 19 Oct 2018 21:02:03 GMT" ], "Pragma": [ "no-cache" @@ -1520,7 +1482,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "61be973f-2b99-42ef-889d-0da70484c55f" + "d28be72d-ded5-4451-8d23-697ca9cac10e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1531,28 +1493,35 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "e3c18c36-7d62-485a-8f13-5f2873bf3822" + "cdfe63e6-15f5-48d2-ae9c-7b6304a6b76f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180504T232753Z:e3c18c36-7d62-485a-8f13-5f2873bf3822" + "WESTUS2:20181019T210204Z:cdfe63e6-15f5-48d2-ae9c-7b6304a6b76f" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "CanCreateUpdateDeleteWebhook": [ - "webhook888" + "webhook2478" ] }, "Variables": { - "SubscriptionId": "38bbf4c3-a118-476e-8e88-b2dfa92f3a10" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllMachineRuns.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllMachineRuns.json index 452b84205e6f4..d70b4f2379ced 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllMachineRuns.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllMachineRuns.json @@ -1,54 +1,38 @@ { "Entries": [ { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25NYWNoaW5lUnVucz9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25NYWNoaW5lUnVucz9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aca39479-ab3f-4bce-ab87-2343e0de0596" + "d907343a-17d6-4189-a9e1-1ae89c090799" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/a58c1a70-2250-4273-a407-cdb1b0feda63\",\r\n \"name\": \"a58c1a70-2250-4273-a407-cdb1b0feda63\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"659368f1-45f0-4ab3-99e3-647159be858a\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T23:05:01.7040608-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T23:05:01.7040608-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:06:03.1566667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/3a66c678-388a-49b8-9870-6ab28e434776\",\r\n \"name\": \"3a66c678-388a-49b8-9870-6ab28e434776\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"900045de-4709-4c72-af35-578a8449cf81\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T23:02:16.623424-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T23:02:16.623424-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:03:18.62-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/a02aa8f5-c824-441f-9642-6f47f5285d62\",\r\n \"name\": \"a02aa8f5-c824-441f-9642-6f47f5285d62\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"900045de-4709-4c72-af35-578a8449cf81\",\r\n \"sourceComputerId\": \"3a919404-fc45-4d2f-aaca-42ca398bbd21\",\r\n \"startTime\": \"2017-12-03T23:02:15.7954412-08:00\",\r\n \"endTime\": \"2017-12-03T23:02:25.8233333-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T23:02:15.7954412-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:03:18.0566667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/204e0368-6db6-4f58-bffe-8cbb9ae05228\",\r\n \"name\": \"204e0368-6db6-4f58-bffe-8cbb9ae05228\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"Failed\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"afb91d65-b7ff-488c-9ff5-8ea1678e3197\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T22:05:03.3058008-08:00\",\r\n \"endTime\": \"2017-12-03T22:36:33.5866667-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T22:05:03.3058008-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:37:14.3066667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/b56021cf-1643-4bfb-99d3-6b798db242f5\",\r\n \"name\": \"b56021cf-1643-4bfb-99d3-6b798db242f5\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Failed\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"595159c7-64cb-436f-892d-b44b31970f7a\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T22:01:03.0427936-08:00\",\r\n \"endTime\": \"2017-12-03T22:35:44.8333333-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T22:01:03.0427936-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:36:15.3566667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/cd9d9164-0268-438a-8d8a-dbca25ade827\",\r\n \"name\": \"cd9d9164-0268-438a-8d8a-dbca25ade827\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"595159c7-64cb-436f-892d-b44b31970f7a\",\r\n \"sourceComputerId\": \"3a919404-fc45-4d2f-aaca-42ca398bbd21\",\r\n \"startTime\": \"2017-12-03T22:01:02.2462645-08:00\",\r\n \"endTime\": \"2017-12-03T22:01:30.9866667-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T22:01:02.2462645-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:02:04.3933333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/c4975a99-f857-4620-a45a-c3373f495362\",\r\n \"name\": \"c4975a99-f857-4620-a45a-c3373f495362\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"f1e53082-2fa9-42b3-8e03-5e2b0b3cfa6a\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T21:05:31.5806397-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T21:05:31.5806397-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:06:34.2766667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/6930b5b9-75b2-4496-9d80-9d94e310e868\",\r\n \"name\": \"6930b5b9-75b2-4496-9d80-9d94e310e868\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"6997253d-1a09-4a86-8ce0-748bdb29ad9c\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T21:00:29.2416781-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T21:00:29.2416781-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:01:32.1166667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/32165385-8113-43dd-8934-0e3413f63b21\",\r\n \"name\": \"32165385-8113-43dd-8934-0e3413f63b21\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"6997253d-1a09-4a86-8ce0-748bdb29ad9c\",\r\n \"sourceComputerId\": \"3a919404-fc45-4d2f-aaca-42ca398bbd21\",\r\n \"startTime\": \"2017-12-03T21:00:28.4762796-08:00\",\r\n \"endTime\": \"2017-12-03T21:00:56.31-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T21:00:28.4762796-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:01:30.62-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/8508acc4-aa22-41b1-b994-8b4ace45675f\",\r\n \"name\": \"8508acc4-aa22-41b1-b994-8b4ace45675f\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"Failed\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"3558b1c5-8fe1-43e1-9601-58247383c1fc\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T20:05:55.2337603-08:00\",\r\n \"endTime\": \"2017-12-03T20:42:33.0333333-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T20:05:55.2337603-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:43:08.6933333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/0d6716ab-5b79-4816-98cc-1833ed7098bd\",\r\n \"name\": \"0d6716ab-5b79-4816-98cc-1833ed7098bd\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Failed\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"c6f3a468-107f-42a3-ad8e-174ff9857fc8\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T20:03:29.9034394-08:00\",\r\n \"endTime\": \"2017-12-03T20:42:16.8066667-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T20:03:29.9034394-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:42:45.7333333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/5766f363-238d-4f42-92eb-c0e7d1cf7091\",\r\n \"name\": \"5766f363-238d-4f42-92eb-c0e7d1cf7091\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"c6f3a468-107f-42a3-ad8e-174ff9857fc8\",\r\n \"sourceComputerId\": \"3a919404-fc45-4d2f-aaca-42ca398bbd21\",\r\n \"startTime\": \"2017-12-03T20:03:28.9820295-08:00\",\r\n \"endTime\": \"2017-12-03T20:07:06.49-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T20:03:28.9820295-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:07:33.59-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/7395e87d-f249-47d3-b841-16f461f5bbd5\",\r\n \"name\": \"7395e87d-f249-47d3-b841-16f461f5bbd5\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"84fd39b5-b28d-4a2a-8856-9c695f4a2805\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T19:05:02.4519754-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T19:05:02.4519754-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:06:21.0133333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/39e0f311-0766-4d53-91b0-4e0e09101273\",\r\n \"name\": \"39e0f311-0766-4d53-91b0-4e0e09101273\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"5ba8cbea-df0b-4937-932d-0f840e0befb4\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T19:02:16.605992-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T19:02:16.605992-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:04:09.1133333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/873b39a2-c006-421e-974e-552941d812c6\",\r\n \"name\": \"873b39a2-c006-421e-974e-552941d812c6\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"5ba8cbea-df0b-4937-932d-0f840e0befb4\",\r\n \"sourceComputerId\": \"3a919404-fc45-4d2f-aaca-42ca398bbd21\",\r\n \"startTime\": \"2017-12-03T19:02:14.8565448-08:00\",\r\n \"endTime\": \"2017-12-03T19:03:14.2033333-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T19:02:14.8565448-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:04:09.3666667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/43943787-066a-423f-b39b-20c0448653bf\",\r\n \"name\": \"43943787-066a-423f-b39b-20c0448653bf\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"4acce870-3ddb-4469-bde6-9bd42d991828\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T18:05:30.961048-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T18:05:30.961048-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:06:24.59-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/1397c273-f2b3-4d07-8aad-b8d200841f79\",\r\n \"name\": \"1397c273-f2b3-4d07-8aad-b8d200841f79\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"de940d19-c4d2-467c-a916-1d6e489092c4\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T18:01:45.516477-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T18:01:45.516477-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:02:50.2633333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/6939a2d7-92fa-4b03-b2c0-9e6621dc5589\",\r\n \"name\": \"6939a2d7-92fa-4b03-b2c0-9e6621dc5589\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"de940d19-c4d2-467c-a916-1d6e489092c4\",\r\n \"sourceComputerId\": \"3a919404-fc45-4d2f-aaca-42ca398bbd21\",\r\n \"startTime\": \"2017-12-03T18:01:44.672857-08:00\",\r\n \"endTime\": \"2017-12-03T18:01:54.4033333-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T18:01:44.672857-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:02:48.4733333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/5fbe0453-e603-4bbd-8c2c-8346e8f14921\",\r\n \"name\": \"5fbe0453-e603-4bbd-8c2c-8346e8f14921\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"3aab1bb9-3144-4fe0-85bc-bc59a446ab41\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T17:05:29.0836163-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T17:05:29.0836163-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:06:37.2433333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/31941815-326b-4d47-bba5-a4a4e0aa53b6\",\r\n \"name\": \"31941815-326b-4d47-bba5-a4a4e0aa53b6\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"064a5c2d-3a3a-4081-af1b-7ca4badd4c09\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T17:02:24.7518491-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T17:02:24.7518491-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:04:34.41-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/f5f295a7-6792-4998-8c48-cd84cbfc26ff\",\r\n \"name\": \"f5f295a7-6792-4998-8c48-cd84cbfc26ff\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"064a5c2d-3a3a-4081-af1b-7ca4badd4c09\",\r\n \"sourceComputerId\": \"3a919404-fc45-4d2f-aaca-42ca398bbd21\",\r\n \"startTime\": \"2017-12-03T17:02:23.7990863-08:00\",\r\n \"endTime\": \"2017-12-03T17:02:34.1533333-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T17:02:23.7990863-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:04:33.41-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/8dbec6cf-bbdb-4718-ae63-4da176199d8c\",\r\n \"name\": \"8dbec6cf-bbdb-4718-ae63-4da176199d8c\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"1c6d425e-9356-4516-8ac8-426cddbdaaf6\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T16:05:39.8673719-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T16:05:39.8673719-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:07:06.48-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/9d49b235-4a04-4169-a699-3c9e82735546\",\r\n \"name\": \"9d49b235-4a04-4169-a699-3c9e82735546\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"3eb47451-4612-4088-a58f-81349607fa36\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T16:01:12.3153445-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T16:01:12.3153445-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:05:04.7633333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/6ebb9879-dea7-48f2-8367-a2274c6a563a\",\r\n \"name\": \"6ebb9879-dea7-48f2-8367-a2274c6a563a\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"3eb47451-4612-4088-a58f-81349607fa36\",\r\n \"sourceComputerId\": \"3a919404-fc45-4d2f-aaca-42ca398bbd21\",\r\n \"startTime\": \"2017-12-03T16:01:11.5646677-08:00\",\r\n \"endTime\": \"2017-12-03T16:08:40.6833333-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T16:01:11.5646677-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:05:05.0066667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/4cc52000-6689-4d50-bb92-d32efe861531\",\r\n \"name\": \"4cc52000-6689-4d50-bb92-d32efe861531\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"cf4fd039-ad1d-4eab-82c3-f34c68cdd1c7\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T15:05:28.921775-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T15:05:28.921775-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:06:25.2466667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/572abcd1-6013-4286-a3be-116e3862f407\",\r\n \"name\": \"572abcd1-6013-4286-a3be-116e3862f407\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"second\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"70925935-7c65-4372-bfe4-24e6e0edd331\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T15:01:12.4322251-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T15:01:12.4322251-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T23:03:46.21-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/1010ff31-8e3d-4db9-b7d1-d1334e69e239\",\r\n \"name\": \"1010ff31-8e3d-4db9-b7d1-d1334e69e239\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"first\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"24f7d45f-6eed-45b9-90f2-6e596774fe2c\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T14:50:34.6608639-08:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T14:50:34.6608639-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:51:46.1466667-08:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 07:17:53 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "aca39479-ab3f-4bce-ab87-2343e0de0596" + "d907343a-17d6-4189-a9e1-1ae89c090799" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -56,20 +40,36 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11999" ], "x-ms-correlation-request-id": [ - "cab3497d-cb6b-49aa-8a43-80fb334ec059" + "6adbc0db-8cc2-4535-a35c-a7c4f6024634" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T071753Z:cab3497d-cb6b-49aa-8a43-80fb334ec059" + "WESTUS2:20181023T190357Z:6adbc0db-8cc2-4535-a35c-a7c4f6024634" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 19:03:56 GMT" + ], + "Content-Length": [ + "15392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/d7e6805c-a132-4c61-a827-3dfbf0ac4118\",\r\n \"name\": \"d7e6805c-a132-4c61-a827-3dfbf0ac4118\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"NotStarted\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"bce3e2c2-08fa-4d7f-8b54-9cd84162c909\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-23T12:02:49.6324578-07:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-23T12:02:49.6324578-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-23T12:02:49.6324578-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/6788e7b7-b5ea-45d3-afd7-7aecc23cf5a7\",\r\n \"name\": \"6788e7b7-b5ea-45d3-afd7-7aecc23cf5a7\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"NotStarted\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"bce3e2c2-08fa-4d7f-8b54-9cd84162c909\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-23T12:02:49.5387178-07:00\",\r\n \"endTime\": null,\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-23T12:02:49.5387178-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-23T12:02:49.5387178-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/da6493d0-de31-48d9-bc78-08e3c1d80d0a\",\r\n \"name\": \"da6493d0-de31-48d9-bc78-08e3c1d80d0a\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T17:04:13.3313852-07:00\",\r\n \"endTime\": \"2018-10-22T17:05:40.397-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T17:04:13.3313852-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:06:24.88-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/9f36c27c-25be-4d05-8aad-6d6691d689b2\",\r\n \"name\": \"9f36c27c-25be-4d05-8aad-6d6691d689b2\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T17:04:13.2219827-07:00\",\r\n \"endTime\": \"2018-10-22T17:05:36.957-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T17:04:13.2219827-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:06:25.037-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/3f96b621-d665-4ccb-bfed-824c847d71e1\",\r\n \"name\": \"3f96b621-d665-4ccb-bfed-824c847d71e1\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"165f5e2a-e38d-46d0-946f-8345a545903e\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T17:02:02.7334739-07:00\",\r\n \"endTime\": \"2018-10-22T17:03:40.39-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T17:02:02.7334739-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:04:15.203-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/f740670c-f4a4-499e-bc3d-5262d2a59149\",\r\n \"name\": \"f740670c-f4a4-499e-bc3d-5262d2a59149\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"165f5e2a-e38d-46d0-946f-8345a545903e\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T17:02:02.6240617-07:00\",\r\n \"endTime\": \"2018-10-22T17:03:36.89-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T17:02:02.6240617-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:04:15.423-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/446688e2-893f-4336-a1e0-454216c7615a\",\r\n \"name\": \"446688e2-893f-4336-a1e0-454216c7615a\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"b3cdaaea-7ce1-4f87-8a65-d4ace0c345db\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T16:03:39.8254901-07:00\",\r\n \"endTime\": \"2018-10-22T16:05:08.437-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T16:03:39.8254901-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:05:51.423-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/006ab824-4a77-46ea-8e17-291b3d25dd4b\",\r\n \"name\": \"006ab824-4a77-46ea-8e17-291b3d25dd4b\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"b3cdaaea-7ce1-4f87-8a65-d4ace0c345db\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T16:03:39.6848581-07:00\",\r\n \"endTime\": \"2018-10-22T16:05:03.843-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T16:03:39.6848581-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:05:51.61-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/b2c9ef5b-dc84-438a-b855-425b4c1af79c\",\r\n \"name\": \"b2c9ef5b-dc84-438a-b855-425b4c1af79c\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"bc5876e9-2bae-4fdf-8457-902f817230d2\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T16:02:01.4154435-07:00\",\r\n \"endTime\": \"2018-10-22T16:04:36.25-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T16:02:01.4154435-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:05:13.377-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/4ed9e626-2883-4677-955e-d6b62be69026\",\r\n \"name\": \"4ed9e626-2883-4677-955e-d6b62be69026\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"bc5876e9-2bae-4fdf-8457-902f817230d2\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T16:02:01.3060837-07:00\",\r\n \"endTime\": \"2018-10-22T16:04:34.78-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T16:02:01.3060837-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:05:13.64-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/3da71ac1-6f95-4d0c-b12b-97e2ea9b31c1\",\r\n \"name\": \"3da71ac1-6f95-4d0c-b12b-97e2ea9b31c1\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"5d1e9fc4-2a1b-4f30-a967-e21df6c00c3b\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T15:03:01.0976088-07:00\",\r\n \"endTime\": \"2018-10-22T15:04:33.693-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T15:03:01.0976088-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T15:05:11.803-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/ff664b6b-4fa8-48ab-a8e5-83c22760cd94\",\r\n \"name\": \"ff664b6b-4fa8-48ab-a8e5-83c22760cd94\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"5d1e9fc4-2a1b-4f30-a967-e21df6c00c3b\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T15:03:00.9726251-07:00\",\r\n \"endTime\": \"2018-10-22T15:04:29.583-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T15:03:00.9726251-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T15:05:11.973-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/a14598d3-a71a-4a70-88b5-fc870d434dd6\",\r\n \"name\": \"a14598d3-a71a-4a70-88b5-fc870d434dd6\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"790db7ee-9612-43aa-ac25-cf673019b5b6\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T14:03:36.9234409-07:00\",\r\n \"endTime\": \"2018-10-22T14:04:59.923-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T14:03:36.9234409-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T14:05:47.393-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/540844c3-0684-4bde-a2c3-0e1bc40f5183\",\r\n \"name\": \"540844c3-0684-4bde-a2c3-0e1bc40f5183\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"790db7ee-9612-43aa-ac25-cf673019b5b6\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T14:03:36.8140607-07:00\",\r\n \"endTime\": \"2018-10-22T14:05:25.893-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T14:03:36.8140607-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T14:05:47.58-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/b80afc35-133d-4925-b86f-1c6373f6a4bd\",\r\n \"name\": \"b80afc35-133d-4925-b86f-1c6373f6a4bd\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"d6e5c243-8d25-42f3-8144-b2023cc823e8\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T13:02:40.0075731-07:00\",\r\n \"endTime\": \"2018-10-22T13:04:45.103-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T13:02:40.0075731-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T13:04:50.213-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/b2c0facc-39bf-4831-953d-9b1bc257cf4a\",\r\n \"name\": \"b2c0facc-39bf-4831-953d-9b1bc257cf4a\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"d6e5c243-8d25-42f3-8144-b2023cc823e8\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T13:02:39.8981721-07:00\",\r\n \"endTime\": \"2018-10-22T13:04:37.76-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T13:02:39.8981721-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T13:04:50.4-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "05fd3142-4b8e-4b16-8da9-98b4bbfd722d" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllRunsByCorrelationId.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllRunsByCorrelationId.json index b8ecdebf27a0d..447ff72cd1005 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllRunsByCorrelationId.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllRunsByCorrelationId.json @@ -1,54 +1,38 @@ { "Entries": [ { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns?api-version=2017-05-15-preview&$filter=properties%2FcorrelationId%20eq%20595159c7-64cb-436f-892d-b44b31970f7a", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25NYWNoaW5lUnVucz9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXcmJGZpbHRlcj1wcm9wZXJ0aWVzJTJGY29ycmVsYXRpb25JZCUyMGVxJTIwNTk1MTU5YzctNjRjYi00MzZmLTg5MmQtYjQ0YjMxOTcwZjdh", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns?api-version=2017-05-15-preview&$filter=properties%2FcorrelationId%20eq%206ff49ee2-092a-48bf-841a-c3d645611689", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25NYWNoaW5lUnVucz9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXcmJGZpbHRlcj1wcm9wZXJ0aWVzJTJGY29ycmVsYXRpb25JZCUyMGVxJTIwNmZmNDllZTItMDkyYS00OGJmLTg0MWEtYzNkNjQ1NjExNjg5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dde25426-d83b-47f5-8e86-2c330fe819d8" + "8864d1a5-b5ae-48ff-83b2-ae5bfed5220c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/b56021cf-1643-4bfb-99d3-6b798db242f5\",\r\n \"name\": \"b56021cf-1643-4bfb-99d3-6b798db242f5\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Failed\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"595159c7-64cb-436f-892d-b44b31970f7a\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T22:01:03.0427936-08:00\",\r\n \"endTime\": \"2017-12-03T22:35:44.8333333-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T22:01:03.0427936-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:36:15.3566667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/cd9d9164-0268-438a-8d8a-dbca25ade827\",\r\n \"name\": \"cd9d9164-0268-438a-8d8a-dbca25ade827\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"595159c7-64cb-436f-892d-b44b31970f7a\",\r\n \"sourceComputerId\": \"3a919404-fc45-4d2f-aaca-42ca398bbd21\",\r\n \"startTime\": \"2017-12-03T22:01:02.2462645-08:00\",\r\n \"endTime\": \"2017-12-03T22:01:30.9866667-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T22:01:02.2462645-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:02:04.3933333-08:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 07:23:32 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "dde25426-d83b-47f5-8e86-2c330fe819d8" + "8864d1a5-b5ae-48ff-83b2-ae5bfed5220c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -56,20 +40,36 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11999" ], "x-ms-correlation-request-id": [ - "5b6e13f8-4b6f-45de-9286-8b7ce7ef447f" + "a4a21525-02ee-46b2-bada-a4b45ff5f00e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T072333Z:5b6e13f8-4b6f-45de-9286-8b7ce7ef447f" + "WESTUS2:20181023T190503Z:a4a21525-02ee-46b2-bada-a4b45ff5f00e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 19:05:02 GMT" + ], + "Content-Length": [ + "1940" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/da6493d0-de31-48d9-bc78-08e3c1d80d0a\",\r\n \"name\": \"da6493d0-de31-48d9-bc78-08e3c1d80d0a\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T17:04:13.3313852-07:00\",\r\n \"endTime\": \"2018-10-22T17:05:40.397-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T17:04:13.3313852-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:06:24.88-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/9f36c27c-25be-4d05-8aad-6d6691d689b2\",\r\n \"name\": \"9f36c27c-25be-4d05-8aad-6d6691d689b2\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T17:04:13.2219827-07:00\",\r\n \"endTime\": \"2018-10-22T17:05:36.957-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T17:04:13.2219827-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:06:25.037-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "05fd3142-4b8e-4b16-8da9-98b4bbfd722d" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllRunsByStatus.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllRunsByStatus.json index 70cb00e97b82a..da56b8beaeedf 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllRunsByStatus.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetAllRunsByStatus.json @@ -1,54 +1,38 @@ { "Entries": [ { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns?api-version=2017-05-15-preview&$filter=properties%2Fstatus%20eq%20'Failed'", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25NYWNoaW5lUnVucz9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXcmJGZpbHRlcj1wcm9wZXJ0aWVzJTJGc3RhdHVzJTIwZXElMjAlMjdGYWlsZWQlMjc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns?api-version=2017-05-15-preview&$filter=properties%2Fstatus%20eq%20%27Succeeded%27", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25NYWNoaW5lUnVucz9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXcmJGZpbHRlcj1wcm9wZXJ0aWVzJTJGc3RhdHVzJTIwZXElMjAlMjdTdWNjZWVkZWQlMjc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eb36ef2-bfd7-49b9-a02d-38d58bfbcf00" + "3721a3f1-6d28-4c79-b814-9b24117cb145" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/204e0368-6db6-4f58-bffe-8cbb9ae05228\",\r\n \"name\": \"204e0368-6db6-4f58-bffe-8cbb9ae05228\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"Failed\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"afb91d65-b7ff-488c-9ff5-8ea1678e3197\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T22:05:03.3058008-08:00\",\r\n \"endTime\": \"2017-12-03T22:36:33.5866667-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T22:05:03.3058008-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:37:14.3066667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/b56021cf-1643-4bfb-99d3-6b798db242f5\",\r\n \"name\": \"b56021cf-1643-4bfb-99d3-6b798db242f5\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Failed\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"595159c7-64cb-436f-892d-b44b31970f7a\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T22:01:03.0427936-08:00\",\r\n \"endTime\": \"2017-12-03T22:35:44.8333333-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T22:01:03.0427936-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:36:15.3566667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/8508acc4-aa22-41b1-b994-8b4ace45675f\",\r\n \"name\": \"8508acc4-aa22-41b1-b994-8b4ace45675f\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"Failed\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"3558b1c5-8fe1-43e1-9601-58247383c1fc\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T20:05:55.2337603-08:00\",\r\n \"endTime\": \"2017-12-03T20:42:33.0333333-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T20:05:55.2337603-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:43:08.6933333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/0d6716ab-5b79-4816-98cc-1833ed7098bd\",\r\n \"name\": \"0d6716ab-5b79-4816-98cc-1833ed7098bd\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Failed\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"c6f3a468-107f-42a3-ad8e-174ff9857fc8\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T20:03:29.9034394-08:00\",\r\n \"endTime\": \"2017-12-03T20:42:16.8066667-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"creationTime\": \"2017-12-03T20:03:29.9034394-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:42:45.7333333-08:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 07:24:20 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "2eb36ef2-bfd7-49b9-a02d-38d58bfbcf00" + "3721a3f1-6d28-4c79-b814-9b24117cb145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -56,20 +40,36 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11998" ], "x-ms-correlation-request-id": [ - "69951c03-42d1-49ef-a4f9-a7df3f1296b7" + "f435062b-1158-4562-971c-bb4b0c38ee41" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T072420Z:69951c03-42d1-49ef-a4f9-a7df3f1296b7" + "WESTUS2:20181023T190700Z:f435062b-1158-4562-971c-bb4b0c38ee41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 19:07:00 GMT" + ], + "Content-Length": [ + "15433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/d7e6805c-a132-4c61-a827-3dfbf0ac4118\",\r\n \"name\": \"d7e6805c-a132-4c61-a827-3dfbf0ac4118\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"bce3e2c2-08fa-4d7f-8b54-9cd84162c909\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-23T12:02:49.6324578-07:00\",\r\n \"endTime\": \"2018-10-23T12:04:19.01-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-23T12:02:49.6324578-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-23T12:05:00.667-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/6788e7b7-b5ea-45d3-afd7-7aecc23cf5a7\",\r\n \"name\": \"6788e7b7-b5ea-45d3-afd7-7aecc23cf5a7\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"bce3e2c2-08fa-4d7f-8b54-9cd84162c909\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-23T12:02:49.5387178-07:00\",\r\n \"endTime\": \"2018-10-23T12:04:37.917-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-23T12:02:49.5387178-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-23T12:05:00.9-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/da6493d0-de31-48d9-bc78-08e3c1d80d0a\",\r\n \"name\": \"da6493d0-de31-48d9-bc78-08e3c1d80d0a\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T17:04:13.3313852-07:00\",\r\n \"endTime\": \"2018-10-22T17:05:40.397-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T17:04:13.3313852-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:06:24.88-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/9f36c27c-25be-4d05-8aad-6d6691d689b2\",\r\n \"name\": \"9f36c27c-25be-4d05-8aad-6d6691d689b2\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T17:04:13.2219827-07:00\",\r\n \"endTime\": \"2018-10-22T17:05:36.957-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T17:04:13.2219827-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:06:25.037-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/3f96b621-d665-4ccb-bfed-824c847d71e1\",\r\n \"name\": \"3f96b621-d665-4ccb-bfed-824c847d71e1\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"165f5e2a-e38d-46d0-946f-8345a545903e\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T17:02:02.7334739-07:00\",\r\n \"endTime\": \"2018-10-22T17:03:40.39-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T17:02:02.7334739-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:04:15.203-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/f740670c-f4a4-499e-bc3d-5262d2a59149\",\r\n \"name\": \"f740670c-f4a4-499e-bc3d-5262d2a59149\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"165f5e2a-e38d-46d0-946f-8345a545903e\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T17:02:02.6240617-07:00\",\r\n \"endTime\": \"2018-10-22T17:03:36.89-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T17:02:02.6240617-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:04:15.423-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/446688e2-893f-4336-a1e0-454216c7615a\",\r\n \"name\": \"446688e2-893f-4336-a1e0-454216c7615a\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"b3cdaaea-7ce1-4f87-8a65-d4ace0c345db\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T16:03:39.8254901-07:00\",\r\n \"endTime\": \"2018-10-22T16:05:08.437-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T16:03:39.8254901-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:05:51.423-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/006ab824-4a77-46ea-8e17-291b3d25dd4b\",\r\n \"name\": \"006ab824-4a77-46ea-8e17-291b3d25dd4b\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"b3cdaaea-7ce1-4f87-8a65-d4ace0c345db\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T16:03:39.6848581-07:00\",\r\n \"endTime\": \"2018-10-22T16:05:03.843-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T16:03:39.6848581-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:05:51.61-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/b2c9ef5b-dc84-438a-b855-425b4c1af79c\",\r\n \"name\": \"b2c9ef5b-dc84-438a-b855-425b4c1af79c\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"bc5876e9-2bae-4fdf-8457-902f817230d2\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T16:02:01.4154435-07:00\",\r\n \"endTime\": \"2018-10-22T16:04:36.25-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T16:02:01.4154435-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:05:13.377-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/4ed9e626-2883-4677-955e-d6b62be69026\",\r\n \"name\": \"4ed9e626-2883-4677-955e-d6b62be69026\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"bc5876e9-2bae-4fdf-8457-902f817230d2\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T16:02:01.3060837-07:00\",\r\n \"endTime\": \"2018-10-22T16:04:34.78-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T16:02:01.3060837-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:05:13.64-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/3da71ac1-6f95-4d0c-b12b-97e2ea9b31c1\",\r\n \"name\": \"3da71ac1-6f95-4d0c-b12b-97e2ea9b31c1\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"5d1e9fc4-2a1b-4f30-a967-e21df6c00c3b\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T15:03:01.0976088-07:00\",\r\n \"endTime\": \"2018-10-22T15:04:33.693-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T15:03:01.0976088-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T15:05:11.803-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/ff664b6b-4fa8-48ab-a8e5-83c22760cd94\",\r\n \"name\": \"ff664b6b-4fa8-48ab-a8e5-83c22760cd94\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"5d1e9fc4-2a1b-4f30-a967-e21df6c00c3b\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T15:03:00.9726251-07:00\",\r\n \"endTime\": \"2018-10-22T15:04:29.583-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T15:03:00.9726251-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T15:05:11.973-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/a14598d3-a71a-4a70-88b5-fc870d434dd6\",\r\n \"name\": \"a14598d3-a71a-4a70-88b5-fc870d434dd6\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"790db7ee-9612-43aa-ac25-cf673019b5b6\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T14:03:36.9234409-07:00\",\r\n \"endTime\": \"2018-10-22T14:04:59.923-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T14:03:36.9234409-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T14:05:47.393-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/540844c3-0684-4bde-a2c3-0e1bc40f5183\",\r\n \"name\": \"540844c3-0684-4bde-a2c3-0e1bc40f5183\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"790db7ee-9612-43aa-ac25-cf673019b5b6\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T14:03:36.8140607-07:00\",\r\n \"endTime\": \"2018-10-22T14:05:25.893-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T14:03:36.8140607-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T14:05:47.58-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/b80afc35-133d-4925-b86f-1c6373f6a4bd\",\r\n \"name\": \"b80afc35-133d-4925-b86f-1c6373f6a4bd\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"d6e5c243-8d25-42f3-8144-b2023cc823e8\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T13:02:40.0075731-07:00\",\r\n \"endTime\": \"2018-10-22T13:04:45.103-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T13:02:40.0075731-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T13:04:50.213-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/b2c0facc-39bf-4831-953d-9b1bc257cf4a\",\r\n \"name\": \"b2c0facc-39bf-4831-953d-9b1bc257cf4a\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"d6e5c243-8d25-42f3-8144-b2023cc823e8\",\r\n \"sourceComputerId\": \"497c5c9d-ef45-4467-84d0-a7dbc8a7469f\",\r\n \"startTime\": \"2018-10-22T13:02:39.8981721-07:00\",\r\n \"endTime\": \"2018-10-22T13:04:37.76-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": null,\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T13:02:39.8981721-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T13:04:50.4-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "05fd3142-4b8e-4b16-8da9-98b4bbfd722d" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetMachineRunById.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetMachineRunById.json index 0969bccba2ed4..7f98c31118799 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetMachineRunById.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationMachineRunTests/CanGetMachineRunById.json @@ -1,54 +1,38 @@ { "Entries": [ { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/b56021cf-1643-4bfb-99d3-6b798db242f5?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25NYWNoaW5lUnVucy9iNTYwMjFjZi0xNjQzLTRiZmItOTlkMy02Yjc5OGRiMjQyZjU/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/da6493d0-de31-48d9-bc78-08e3c1d80d0a?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25NYWNoaW5lUnVucy9kYTY0OTNkMC1kZTMxLTQ4ZDktYmM3OC0wOGUzYzFkODBkMGE/YXBpLXZlcnNpb249MjAxNy0wNS0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dea5b43-3f4f-422f-948d-db55b39d6bab" + "b518f1da-e113-4e13-aa36-3e477f1c1d43" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/b56021cf-1643-4bfb-99d3-6b798db242f5\",\r\n \"name\": \"b56021cf-1643-4bfb-99d3-6b798db242f5\",\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Failed\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"595159c7-64cb-436f-892d-b44b31970f7a\",\r\n \"sourceComputerId\": \"282452db-3afa-4538-9461-91f6361b1be1\",\r\n \"startTime\": \"2017-12-03T22:01:03.0427936-08:00\",\r\n \"endTime\": \"2017-12-03T22:35:44.8333333-08:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/jobs/b56021cf-1643-4bfb-99d3-6b798db242f5\"\r\n },\r\n \"creationTime\": \"2017-12-03T22:01:03.0427936-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:36:15.3566667-08:00\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 07:16:23 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "1dea5b43-3f4f-422f-948d-db55b39d6bab" + "b518f1da-e113-4e13-aa36-3e477f1c1d43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -56,20 +40,36 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11986" ], "x-ms-correlation-request-id": [ - "794fb85a-5a4c-4c8e-91da-f8ceb97b1d6c" + "cc6dc7bd-0255-45bb-823c-df3ddfae8687" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T071624Z:794fb85a-5a4c-4c8e-91da-f8ceb97b1d6c" + "WESTUS2:20181023T190254Z:cc6dc7bd-0255-45bb-823c-df3ddfae8687" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 19:02:53 GMT" + ], + "Content-Length": [ + "1149" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationMachineRuns/da6493d0-de31-48d9-bc78-08e3c1d80d0a\",\r\n \"name\": \"da6493d0-de31-48d9-bc78-08e3c1d80d0a\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"targetComputer\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\",\r\n \"targetComputerType\": \"AzureVirtualMachines\",\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"osType\": \"Windows\",\r\n \"correlationId\": \"6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"sourceComputerId\": \"6e3fb962-c468-49c4-81d4-b9a6d854d1ad\",\r\n \"startTime\": \"2018-10-22T17:04:13.3313852-07:00\",\r\n \"endTime\": \"2018-10-22T17:05:40.397-07:00\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"job\": {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/jobs/da6493d0-de31-48d9-bc78-08e3c1d80d0a\"\r\n },\r\n \"error\": null,\r\n \"creationTime\": \"2018-10-22T17:04:13.3313852-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:06:24.88-07:00\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "05fd3142-4b8e-4b16-8da9-98b4bbfd722d" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRuns.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRuns.json index 65d50bed1e69a..c07de3db4843f 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRuns.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRuns.json @@ -1,54 +1,38 @@ { "Entries": [ { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "624d5cae-b2e6-4c13-ad66-5406847fa748" + "542055fe-3db5-4cbf-8117-59fde58cde5e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/f1e53082-2fa9-42b3-8e03-5e2b0b3cfa6a\",\r\n \"name\": \"f1e53082-2fa9-42b3-8e03-5e2b0b3cfa6a\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T21:05:31.3150583-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T21:05:31.3150583-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:05:32.3133333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/6997253d-1a09-4a86-8ce0-748bdb29ad9c\",\r\n \"name\": \"6997253d-1a09-4a86-8ce0-748bdb29ad9c\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T21:00:28.179483-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T21:00:28.179483-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:00:29.99-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/3558b1c5-8fe1-43e1-9601-58247383c1fc\",\r\n \"name\": \"3558b1c5-8fe1-43e1-9601-58247383c1fc\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"Failed\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T20:05:54.1405681-08:00\",\r\n \"endTime\": \"2017-12-03T20:42:33.0333333-08:00\",\r\n \"computerCount\": 1,\r\n \"failedCount\": 1,\r\n \"creationTime\": \"2017-12-03T20:05:54.1405681-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:43:09.0533333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/c6f3a468-107f-42a3-ad8e-174ff9857fc8\",\r\n \"name\": \"c6f3a468-107f-42a3-ad8e-174ff9857fc8\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Failed\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T20:03:27.9356546-08:00\",\r\n \"endTime\": \"2017-12-03T20:42:16.8066667-08:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 1,\r\n \"creationTime\": \"2017-12-03T20:03:27.9356546-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:42:46.78-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/84fd39b5-b28d-4a2a-8856-9c695f4a2805\",\r\n \"name\": \"84fd39b5-b28d-4a2a-8856-9c695f4a2805\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T19:05:02.1864192-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T19:05:02.1864192-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T19:05:03.2466667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/5ba8cbea-df0b-4937-932d-0f840e0befb4\",\r\n \"name\": \"5ba8cbea-df0b-4937-932d-0f840e0befb4\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T19:02:14.5441554-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T19:02:14.5441554-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T19:02:17.4166667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/4acce870-3ddb-4469-bde6-9bd42d991828\",\r\n \"name\": \"4acce870-3ddb-4469-bde6-9bd42d991828\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T18:05:29.9143703-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T18:05:29.9143703-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:05:22.52-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/de940d19-c4d2-467c-a916-1d6e489092c4\",\r\n \"name\": \"de940d19-c4d2-467c-a916-1d6e489092c4\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T18:01:44.3135947-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T18:01:44.3135947-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:01:47.8666667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/3aab1bb9-3144-4fe0-85bc-bc59a446ab41\",\r\n \"name\": \"3aab1bb9-3144-4fe0-85bc-bc59a446ab41\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T17:05:28.0371572-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T17:05:28.0371572-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:05:25.09-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/064a5c2d-3a3a-4081-af1b-7ca4badd4c09\",\r\n \"name\": \"064a5c2d-3a3a-4081-af1b-7ca4badd4c09\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T17:02:22.6588665-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T17:02:22.6588665-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:03:14.55-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/1c6d425e-9356-4516-8ac8-426cddbdaaf6\",\r\n \"name\": \"1c6d425e-9356-4516-8ac8-426cddbdaaf6\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T16:05:38.8138047-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T16:05:38.8138047-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T19:05:58.69-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/3eb47451-4612-4088-a58f-81349607fa36\",\r\n \"name\": \"3eb47451-4612-4088-a58f-81349607fa36\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T16:01:11.2366375-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T16:01:11.2366375-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T19:03:37.37-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/cf4fd039-ad1d-4eab-82c3-f34c68cdd1c7\",\r\n \"name\": \"cf4fd039-ad1d-4eab-82c3-f34c68cdd1c7\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T15:05:27.8753539-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T15:05:27.8753539-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:05:23.2833333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/70925935-7c65-4372-bfe4-24e6e0edd331\",\r\n \"name\": \"70925935-7c65-4372-bfe4-24e6e0edd331\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"second\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T15:01:11.3233398-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T15:01:11.3233398-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:02:44.0233333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/24f7d45f-6eed-45b9-90f2-6e596774fe2c\",\r\n \"name\": \"24f7d45f-6eed-45b9-90f2-6e596774fe2c\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"first\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T14:50:33.552091-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T14:50:33.552091-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:50:44.15-08:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 05:56:02 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "624d5cae-b2e6-4c13-ad66-5406847fa748" + "542055fe-3db5-4cbf-8117-59fde58cde5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -56,20 +40,36 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "11999" ], "x-ms-correlation-request-id": [ - "96f49107-fc29-4dcf-af8a-8db2c9f4a7e5" + "5035574c-227c-4bf6-b46b-457afc422796" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T055602Z:96f49107-fc29-4dcf-af8a-8db2c9f4a7e5" + "WESTUS2:20181023T185028Z:5035574c-227c-4bf6-b46b-457afc422796" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 18:50:27 GMT" + ], + "Content-Length": [ + "6193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"name\": \"6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T17:04:12.6907218-07:00\",\r\n \"endTime\": \"2018-10-22T17:05:40.397-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"1b351dc1-bc24-4ad5-b655-c7eefe0493ea\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"380bff3f-3a82-4d16-9972-546f8293f224\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T17:04:12.6907218-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:07:29.133-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/165f5e2a-e38d-46d0-946f-8345a545903e\",\r\n \"name\": \"165f5e2a-e38d-46d0-946f-8345a545903e\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T17:02:02.092798-07:00\",\r\n \"endTime\": \"2018-10-22T17:03:40.39-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"c6667103-368f-459e-8d91-dcab6df3be16\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"e0de6ce5-1d51-4af9-9e2b-fa853c29a202\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T17:02:02.092798-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:05:19.77-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/b3cdaaea-7ce1-4f87-8a65-d4ace0c345db\",\r\n \"name\": \"b3cdaaea-7ce1-4f87-8a65-d4ace0c345db\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T16:03:39.1379614-07:00\",\r\n \"endTime\": \"2018-10-22T16:05:08.437-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"b70a6fdc-51c8-4979-8150-930551e67346\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"129fe0ff-22a6-4dfb-98f5-526ed80ea1ee\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T16:03:39.1379614-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:06:56.347-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/bc5876e9-2bae-4fdf-8457-902f817230d2\",\r\n \"name\": \"bc5876e9-2bae-4fdf-8457-902f817230d2\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T16:02:00.7591699-07:00\",\r\n \"endTime\": \"2018-10-22T16:04:36.25-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"3e436f44-786b-468b-93d3-07d84043f302\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"941dd22a-fe1f-410a-84fe-e0fbddd82912\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T16:02:00.7591699-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:06:17.503-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/5d1e9fc4-2a1b-4f30-a967-e21df6c00c3b\",\r\n \"name\": \"5d1e9fc4-2a1b-4f30-a967-e21df6c00c3b\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T15:03:00.4413559-07:00\",\r\n \"endTime\": \"2018-10-22T15:04:33.693-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"28f76f90-64b1-4542-bc2b-f35e68253b20\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"9586e59f-4248-4ddb-8bd2-12f312d58ec3\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T15:03:00.4413559-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T15:06:15.71-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/790db7ee-9612-43aa-ac25-cf673019b5b6\",\r\n \"name\": \"790db7ee-9612-43aa-ac25-cf673019b5b6\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T14:03:36.2827953-07:00\",\r\n \"endTime\": \"2018-10-22T14:05:25.893-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"9a3c32f1-7004-4a9b-95d5-8e7d229b0704\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"145b352b-b904-44b7-a76f-b9c31ba80a68\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T14:03:36.2827953-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T14:06:51.397-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/d6e5c243-8d25-42f3-8144-b2023cc823e8\",\r\n \"name\": \"d6e5c243-8d25-42f3-8144-b2023cc823e8\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T13:02:39.3825328-07:00\",\r\n \"endTime\": \"2018-10-22T13:04:45.103-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"ef93a1ac-aba5-48f3-8626-ec431f4da510\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"1eaaa6e0-e9c2-418a-80e6-8f7ef16c4d76\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T13:02:39.3825328-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T13:05:53.887-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "05fd3142-4b8e-4b16-8da9-98b4bbfd722d" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByConfigurationName.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByConfigurationName.json index 8a405fa46fd0a..58fb19773011f 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByConfigurationName.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByConfigurationName.json @@ -1,54 +1,38 @@ { "Entries": [ { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns?api-version=2017-05-15-preview&$filter=properties%2FsoftwareUpdateConfiguration%2Fname%20eq%20'all-01'", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldyYkZmlsdGVyPXByb3BlcnRpZXMlMkZzb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb24lMkZuYW1lJTIwZXElMjAlMjdhbGwtMDElMjc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns?api-version=2017-05-15-preview&$filter=properties%2FsoftwareUpdateConfiguration%2Fname%20eq%20%27all-01%27", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldyYkZmlsdGVyPXByb3BlcnRpZXMlMkZzb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb24lMkZuYW1lJTIwZXElMjAlMjdhbGwtMDElMjc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b71ea5ae-f49c-4d44-a11a-5e696f9dabc2" + "73aaf0d8-e371-46da-9e77-e18654f41cfa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/6997253d-1a09-4a86-8ce0-748bdb29ad9c\",\r\n \"name\": \"6997253d-1a09-4a86-8ce0-748bdb29ad9c\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T21:00:28.179483-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T21:00:28.179483-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:00:29.99-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/c6f3a468-107f-42a3-ad8e-174ff9857fc8\",\r\n \"name\": \"c6f3a468-107f-42a3-ad8e-174ff9857fc8\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Failed\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T20:03:27.9356546-08:00\",\r\n \"endTime\": \"2017-12-03T20:42:16.8066667-08:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 1,\r\n \"creationTime\": \"2017-12-03T20:03:27.9356546-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:42:46.78-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/5ba8cbea-df0b-4937-932d-0f840e0befb4\",\r\n \"name\": \"5ba8cbea-df0b-4937-932d-0f840e0befb4\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T19:02:14.5441554-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T19:02:14.5441554-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T19:02:17.4166667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/de940d19-c4d2-467c-a916-1d6e489092c4\",\r\n \"name\": \"de940d19-c4d2-467c-a916-1d6e489092c4\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T18:01:44.3135947-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T18:01:44.3135947-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:01:47.8666667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/064a5c2d-3a3a-4081-af1b-7ca4badd4c09\",\r\n \"name\": \"064a5c2d-3a3a-4081-af1b-7ca4badd4c09\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T17:02:22.6588665-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T17:02:22.6588665-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:03:14.55-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/3eb47451-4612-4088-a58f-81349607fa36\",\r\n \"name\": \"3eb47451-4612-4088-a58f-81349607fa36\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T16:01:11.2366375-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T16:01:11.2366375-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T19:03:37.37-08:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 05:40:51 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "b71ea5ae-f49c-4d44-a11a-5e696f9dabc2" + "73aaf0d8-e371-46da-9e77-e18654f41cfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -56,20 +40,36 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "11998" ], "x-ms-correlation-request-id": [ - "03adc694-07fa-4848-92ae-3bbfc643d6c7" + "76e9a0de-9e18-4d90-a6e8-2ca88af79cdc" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T054051Z:03adc694-07fa-4848-92ae-3bbfc643d6c7" + "WESTUS2:20181023T200938Z:76e9a0de-9e18-4d90-a6e8-2ca88af79cdc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 20:09:38 GMT" + ], + "Content-Length": [ + "1772" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/d701fc57-0a87-472a-a5ad-cd8e6ce2735b\",\r\n \"name\": \"d701fc57-0a87-472a-a5ad-cd8e6ce2735b\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-23T13:02:40.1380889-07:00\",\r\n \"endTime\": \"2018-10-23T13:04:22.92-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"903a27c0-9068-4027-8263-56488dc4d309\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"531010f6-7a6a-4bce-a1c9-6fc5110b68f4\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-23T13:02:40.1380889-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-23T13:05:55.55-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/bce3e2c2-08fa-4d7f-8b54-9cd84162c909\",\r\n \"name\": \"bce3e2c2-08fa-4d7f-8b54-9cd84162c909\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-23T12:02:49.2105431-07:00\",\r\n \"endTime\": \"2018-10-23T12:04:37.917-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"12e37bb1-e25c-41f5-a8ed-67db4a1a1cd8\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"9f8aebf9-918e-4d4e-8f13-b12d4e0666eb\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-23T12:02:49.2105431-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-23T12:06:05.12-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "05fd3142-4b8e-4b16-8da9-98b4bbfd722d" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByOs.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByOs.json index a1dbc30be0c3d..a9a5e07dd7fd0 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByOs.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByOs.json @@ -1,54 +1,38 @@ { "Entries": [ { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns?api-version=2017-05-15-preview&$filter=properties%2FosType%20eq%20'Windows'", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldyYkZmlsdGVyPXByb3BlcnRpZXMlMkZvc1R5cGUlMjBlcSUyMCUyN1dpbmRvd3MlMjc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns?api-version=2017-05-15-preview&$filter=properties%2FosType%20eq%20%27Windows%27", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldyYkZmlsdGVyPXByb3BlcnRpZXMlMkZvc1R5cGUlMjBlcSUyMCUyN1dpbmRvd3MlMjc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e65a836c-c6d5-4385-9db7-0793bf7bf9ea" + "e552b3d5-7d91-499e-8863-e4ed44a0edd9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/afb91d65-b7ff-488c-9ff5-8ea1678e3197\",\r\n \"name\": \"afb91d65-b7ff-488c-9ff5-8ea1678e3197\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T22:05:02.977826-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T22:05:02.977826-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:05:04.0366667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/595159c7-64cb-436f-892d-b44b31970f7a\",\r\n \"name\": \"595159c7-64cb-436f-892d-b44b31970f7a\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T22:01:01.9339046-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T22:01:01.9339046-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:01:03.79-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/f1e53082-2fa9-42b3-8e03-5e2b0b3cfa6a\",\r\n \"name\": \"f1e53082-2fa9-42b3-8e03-5e2b0b3cfa6a\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T21:05:31.3150583-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T21:05:31.3150583-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:05:32.3133333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/6997253d-1a09-4a86-8ce0-748bdb29ad9c\",\r\n \"name\": \"6997253d-1a09-4a86-8ce0-748bdb29ad9c\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T21:00:28.179483-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T21:00:28.179483-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:00:29.99-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/3558b1c5-8fe1-43e1-9601-58247383c1fc\",\r\n \"name\": \"3558b1c5-8fe1-43e1-9601-58247383c1fc\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"Failed\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T20:05:54.1405681-08:00\",\r\n \"endTime\": \"2017-12-03T20:42:33.0333333-08:00\",\r\n \"computerCount\": 1,\r\n \"failedCount\": 1,\r\n \"creationTime\": \"2017-12-03T20:05:54.1405681-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:43:09.0533333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/c6f3a468-107f-42a3-ad8e-174ff9857fc8\",\r\n \"name\": \"c6f3a468-107f-42a3-ad8e-174ff9857fc8\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Failed\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T20:03:27.9356546-08:00\",\r\n \"endTime\": \"2017-12-03T20:42:16.8066667-08:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 1,\r\n \"creationTime\": \"2017-12-03T20:03:27.9356546-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:42:46.78-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/84fd39b5-b28d-4a2a-8856-9c695f4a2805\",\r\n \"name\": \"84fd39b5-b28d-4a2a-8856-9c695f4a2805\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T19:05:02.1864192-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T19:05:02.1864192-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:05:20.7333333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/5ba8cbea-df0b-4937-932d-0f840e0befb4\",\r\n \"name\": \"5ba8cbea-df0b-4937-932d-0f840e0befb4\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T19:02:14.5441554-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T19:02:14.5441554-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:03:08.7266667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/4acce870-3ddb-4469-bde6-9bd42d991828\",\r\n \"name\": \"4acce870-3ddb-4469-bde6-9bd42d991828\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T18:05:29.9143703-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T18:05:29.9143703-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:05:22.52-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/de940d19-c4d2-467c-a916-1d6e489092c4\",\r\n \"name\": \"de940d19-c4d2-467c-a916-1d6e489092c4\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T18:01:44.3135947-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T18:01:44.3135947-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:01:47.8666667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/3aab1bb9-3144-4fe0-85bc-bc59a446ab41\",\r\n \"name\": \"3aab1bb9-3144-4fe0-85bc-bc59a446ab41\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T17:05:28.0371572-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T17:05:28.0371572-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:05:25.09-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/064a5c2d-3a3a-4081-af1b-7ca4badd4c09\",\r\n \"name\": \"064a5c2d-3a3a-4081-af1b-7ca4badd4c09\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T17:02:22.6588665-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T17:02:22.6588665-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:03:14.55-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/1c6d425e-9356-4516-8ac8-426cddbdaaf6\",\r\n \"name\": \"1c6d425e-9356-4516-8ac8-426cddbdaaf6\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T16:05:38.8138047-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T16:05:38.8138047-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:06:05.9666667-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/3eb47451-4612-4088-a58f-81349607fa36\",\r\n \"name\": \"3eb47451-4612-4088-a58f-81349607fa36\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T16:01:11.2366375-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T16:01:11.2366375-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:04:04.2433333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/cf4fd039-ad1d-4eab-82c3-f34c68cdd1c7\",\r\n \"name\": \"cf4fd039-ad1d-4eab-82c3-f34c68cdd1c7\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T15:05:27.8753539-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T15:05:27.8753539-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:05:23.2833333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/70925935-7c65-4372-bfe4-24e6e0edd331\",\r\n \"name\": \"70925935-7c65-4372-bfe4-24e6e0edd331\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"second\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T15:01:11.3233398-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T15:01:11.3233398-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T21:02:44.0233333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/24f7d45f-6eed-45b9-90f2-6e596774fe2c\",\r\n \"name\": \"24f7d45f-6eed-45b9-90f2-6e596774fe2c\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"first\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T14:50:33.552091-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T14:50:33.552091-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:50:44.15-08:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 06:32:01 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "e65a836c-c6d5-4385-9db7-0793bf7bf9ea" + "e552b3d5-7d91-499e-8863-e4ed44a0edd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -56,20 +40,36 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-correlation-request-id": [ - "ebb01a50-aa5d-422e-8953-2743a0fb7075" + "67bffd07-6529-4916-8760-41e704d9cd63" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T063201Z:ebb01a50-aa5d-422e-8953-2743a0fb7075" + "WESTUS2:20181023T185624Z:67bffd07-6529-4916-8760-41e704d9cd63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 18:56:24 GMT" + ], + "Content-Length": [ + "6193" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"name\": \"6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T17:04:12.6907218-07:00\",\r\n \"endTime\": \"2018-10-22T17:05:40.397-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"1b351dc1-bc24-4ad5-b655-c7eefe0493ea\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"380bff3f-3a82-4d16-9972-546f8293f224\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T17:04:12.6907218-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:07:29.133-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/165f5e2a-e38d-46d0-946f-8345a545903e\",\r\n \"name\": \"165f5e2a-e38d-46d0-946f-8345a545903e\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T17:02:02.092798-07:00\",\r\n \"endTime\": \"2018-10-22T17:03:40.39-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"c6667103-368f-459e-8d91-dcab6df3be16\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"e0de6ce5-1d51-4af9-9e2b-fa853c29a202\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T17:02:02.092798-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:05:19.77-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/b3cdaaea-7ce1-4f87-8a65-d4ace0c345db\",\r\n \"name\": \"b3cdaaea-7ce1-4f87-8a65-d4ace0c345db\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T16:03:39.1379614-07:00\",\r\n \"endTime\": \"2018-10-22T16:05:08.437-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"b70a6fdc-51c8-4979-8150-930551e67346\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"129fe0ff-22a6-4dfb-98f5-526ed80ea1ee\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T16:03:39.1379614-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:06:56.347-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/bc5876e9-2bae-4fdf-8457-902f817230d2\",\r\n \"name\": \"bc5876e9-2bae-4fdf-8457-902f817230d2\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdktest2\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T16:02:00.7591699-07:00\",\r\n \"endTime\": \"2018-10-22T16:04:36.25-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"3e436f44-786b-468b-93d3-07d84043f302\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"941dd22a-fe1f-410a-84fe-e0fbddd82912\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T16:02:00.7591699-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T16:06:17.503-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/5d1e9fc4-2a1b-4f30-a967-e21df6c00c3b\",\r\n \"name\": \"5d1e9fc4-2a1b-4f30-a967-e21df6c00c3b\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T15:03:00.4413559-07:00\",\r\n \"endTime\": \"2018-10-22T15:04:33.693-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"28f76f90-64b1-4542-bc2b-f35e68253b20\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"9586e59f-4248-4ddb-8bd2-12f312d58ec3\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T15:03:00.4413559-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T15:06:15.71-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/790db7ee-9612-43aa-ac25-cf673019b5b6\",\r\n \"name\": \"790db7ee-9612-43aa-ac25-cf673019b5b6\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T14:03:36.2827953-07:00\",\r\n \"endTime\": \"2018-10-22T14:05:25.893-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"9a3c32f1-7004-4a9b-95d5-8e7d229b0704\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"145b352b-b904-44b7-a76f-b9c31ba80a68\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T14:03:36.2827953-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T14:06:51.397-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/d6e5c243-8d25-42f3-8144-b2023cc823e8\",\r\n \"name\": \"d6e5c243-8d25-42f3-8144-b2023cc823e8\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T13:02:39.3825328-07:00\",\r\n \"endTime\": \"2018-10-22T13:04:45.103-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"ef93a1ac-aba5-48f3-8626-ec431f4da510\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"1eaaa6e0-e9c2-418a-80e6-8f7ef16c4d76\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T13:02:39.3825328-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T13:05:53.887-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "05fd3142-4b8e-4b16-8da9-98b4bbfd722d" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByStartTime.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByStartTime.json index 5351711f69289..11b9c5ac29423 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByStartTime.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByStartTime.json @@ -1,54 +1,38 @@ { "Entries": [ { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns?api-version=2017-05-15-preview&$filter=properties%2FstartTime%20ge%202017-12-04T06:01:00.0000000Z", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldyYkZmlsdGVyPXByb3BlcnRpZXMlMkZzdGFydFRpbWUlMjBnZSUyMDIwMTctMTItMDRUMDYlM0EwMSUzQTAwLjAwMDAwMDBa", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns?api-version=2017-05-15-preview&$filter=properties%2FstartTime%20ge%202018-10-23T19%3A02%3A00.0000000Z", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldyYkZmlsdGVyPXByb3BlcnRpZXMlMkZzdGFydFRpbWUlMjBnZSUyMDIwMTgtMTAtMjNUMTklM0EwMiUzQTAwLjAwMDAwMDBa", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a87fe4c-74bc-4f7e-9980-d724477ede2d" + "4a7578fb-ac68-4fc7-994a-2352de543aba" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.1.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/c7f97f66-2aca-42a5-a292-23fbf9e83555\",\r\n \"name\": \"c7f97f66-2aca-42a5-a292-23fbf9e83555\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"test\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-01-31T15:04:07.1910863-08:00\",\r\n \"endTime\": \"2018-01-31T15:04:39.797-08:00\",\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2018-01-31T15:04:07.1910863-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-01-31T15:05:11.657-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/688151d2-6097-46a7-ae21-2d873c311c42\",\r\n \"name\": \"688151d2-6097-46a7-ae21-2d873c311c42\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"test\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-01-31T14:08:52.6090288-08:00\",\r\n \"endTime\": \"2018-01-31T14:43:48.56-08:00\",\r\n \"computerCount\": 1,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2018-01-31T14:08:52.6090288-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-01-31T14:44:00.463-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/5f806946-dc53-4261-91a5-4632cfac3df8\",\r\n \"name\": \"5f806946-dc53-4261-91a5-4632cfac3df8\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"test\"\r\n },\r\n \"status\": \"Failed\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-01-31T13:06:33.2246522-08:00\",\r\n \"endTime\": \"2018-01-31T13:06:34.1933756-08:00\",\r\n \"computerCount\": 1,\r\n \"failedCount\": 1,\r\n \"creationTime\": \"2018-01-31T13:06:33.2246522-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-01-31T13:49:42.267-08:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Thu, 01 Feb 2018 01:44:48 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "1a87fe4c-74bc-4f7e-9980-d724477ede2d" + "4a7578fb-ac68-4fc7-994a-2352de543aba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -56,20 +40,36 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11996" ], "x-ms-correlation-request-id": [ - "fd246534-f19c-4215-b538-c0676098d3bc" + "7d5b02f3-a234-4d5d-b4f6-56ebc56f4ed4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180201T014448Z:fd246534-f19c-4215-b538-c0676098d3bc" + "WESTUS2:20181023T191225Z:7d5b02f3-a234-4d5d-b4f6-56ebc56f4ed4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 19:12:25 GMT" + ], + "Content-Length": [ + "892" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/bce3e2c2-08fa-4d7f-8b54-9cd84162c909\",\r\n \"name\": \"bce3e2c2-08fa-4d7f-8b54-9cd84162c909\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-23T12:02:49.2105431-07:00\",\r\n \"endTime\": \"2018-10-23T12:04:37.917-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"12e37bb1-e25c-41f5-a8ed-67db4a1a1cd8\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"9f8aebf9-918e-4d4e-8f13-b12d4e0666eb\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-23T12:02:49.2105431-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-23T12:06:05.12-07:00\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "05fd3142-4b8e-4b16-8da9-98b4bbfd722d" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByStatus.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByStatus.json index 95e7c2f4df3e6..e2ec4161fe051 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByStatus.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetAllRunsByStatus.json @@ -1,54 +1,38 @@ { "Entries": [ { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns?api-version=2017-05-15-preview&$filter=properties%2Fstatus%20eq%20'Failed'", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldyYkZmlsdGVyPXByb3BlcnRpZXMlMkZzdGF0dXMlMjBlcSUyMCUyN0ZhaWxlZCUyNw==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns?api-version=2017-05-15-preview&$filter=properties%2Fstatus%20eq%20%27Failed%27", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldyYkZmlsdGVyPXByb3BlcnRpZXMlMkZzdGF0dXMlMjBlcSUyMCUyN0ZhaWxlZCUyNw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27e30bad-6ddf-4992-85f2-220d4b16304c" + "c8a9265c-c1d3-4af3-9aa7-cd6e4069f416" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/3558b1c5-8fe1-43e1-9601-58247383c1fc\",\r\n \"name\": \"3558b1c5-8fe1-43e1-9601-58247383c1fc\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"third\"\r\n },\r\n \"status\": \"Failed\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T20:05:54.1405681-08:00\",\r\n \"endTime\": \"2017-12-03T20:42:33.0333333-08:00\",\r\n \"computerCount\": 1,\r\n \"failedCount\": 1,\r\n \"creationTime\": \"2017-12-03T20:05:54.1405681-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:43:09.0533333-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/c6f3a468-107f-42a3-ad8e-174ff9857fc8\",\r\n \"name\": \"c6f3a468-107f-42a3-ad8e-174ff9857fc8\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"Failed\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T20:03:27.9356546-08:00\",\r\n \"endTime\": \"2017-12-03T20:42:16.8066667-08:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 1,\r\n \"creationTime\": \"2017-12-03T20:03:27.9356546-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T20:42:46.78-08:00\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 06:11:32 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "27e30bad-6ddf-4992-85f2-220d4b16304c" + "c8a9265c-c1d3-4af3-9aa7-cd6e4069f416" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -56,20 +40,36 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "11999" ], "x-ms-correlation-request-id": [ - "e2167050-dec6-4e29-8305-8cbaa6d78cdf" + "efdfc304-db6d-4e61-9363-7b6a464a3f2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T061133Z:e2167050-dec6-4e29-8305-8cbaa6d78cdf" + "WESTUS2:20181023T185642Z:efdfc304-db6d-4e61-9363-7b6a464a3f2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 18:56:41 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "05fd3142-4b8e-4b16-8da9-98b4bbfd722d" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetRunById.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetRunById.json index 3b8f8d91a74f7..47c333f1b5398 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetRunById.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationRunTests/CanGetRunById.json @@ -1,54 +1,38 @@ { "Entries": [ { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/595159c7-64cb-436f-892d-b44b31970f7a?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zLzU5NTE1OWM3LTY0Y2ItNDM2Zi04OTJkLWI0NGIzMTk3MGY3YT9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/6ff49ee2-092a-48bf-841a-c3d645611689?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25SdW5zLzZmZjQ5ZWUyLTA5MmEtNDhiZi04NDFhLWMzZDY0NTYxMTY4OT9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffc42903-34ed-424d-a180-bdc6aa0e5de6" + "b80db329-fca5-4a97-a9cf-e6320176fdaa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/595159c7-64cb-436f-892d-b44b31970f7a\",\r\n \"name\": \"595159c7-64cb-436f-892d-b44b31970f7a\",\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"all-01\"\r\n },\r\n \"status\": \"InProgress\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2017-12-03T22:01:01.9339046-08:00\",\r\n \"endTime\": null,\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"creationTime\": \"2017-12-03T22:01:01.9339046-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-03T22:01:03.79-08:00\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 06:06:34 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "ffc42903-34ed-424d-a180-bdc6aa0e5de6" + "b80db329-fca5-4a97-a9cf-e6320176fdaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -56,20 +40,36 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "11999" ], "x-ms-correlation-request-id": [ - "38f63f40-a75c-43a2-a382-bf6967f9c4b0" + "3e13829c-b059-4535-bf61-49c4e8b842ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T060634Z:38f63f40-a75c-43a2-a382-bf6967f9c4b0" + "WESTUS2:20181023T190039Z:3e13829c-b059-4535-bf61-49c4e8b842ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 19:00:38 GMT" + ], + "Content-Length": [ + "883" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurationRuns/6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"name\": \"6ff49ee2-092a-48bf-841a-c3d645611689\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"softwareUpdateConfiguration\": {\r\n \"name\": \"sdkTest1\"\r\n },\r\n \"status\": \"Succeeded\",\r\n \"configuredDuration\": \"PT2H\",\r\n \"osType\": \"Windows\",\r\n \"startTime\": \"2018-10-22T17:04:12.6907218-07:00\",\r\n \"endTime\": \"2018-10-22T17:05:40.397-07:00\",\r\n \"computerCount\": 2,\r\n \"failedCount\": 0,\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"1b351dc1-bc24-4ad5-b655-c7eefe0493ea\"\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"status\": \"Completed\",\r\n \"jobId\": \"380bff3f-3a82-4d16-9972-546f8293f224\"\r\n }\r\n },\r\n \"creationTime\": \"2018-10-22T17:04:12.6907218-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-22T17:07:29.133-07:00\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "05fd3142-4b8e-4b16-8da9-98b4bbfd722d" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationTests/CanCreateGetAndDelete.json b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationTests/CanCreateGetAndDelete.json index e56eabfb7bc0a..29dda6b189ccd 100644 --- a/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationTests/CanCreateGetAndDelete.json +++ b/src/SDKs/Automation/Automation.Tests/SessionRecords/Automation.Tests.ScenarioTests.UpdateManagement.SoftwareUpdateConfigurationTests/CanCreateGetAndDelete.json @@ -1,66 +1,53 @@ { "Entries": [ { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMT9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMT9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical,Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ]\r\n },\r\n \"scheduleInfo\": {\r\n \"startTime\": \"2018-05-05T19:26:00Z\",\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"timeZone\": \"America/Los_Angeles\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical,Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\"\r\n ],\r\n \"targets\": {\r\n \"azureQueries\": [\r\n {\r\n \"scope\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d\"\r\n ],\r\n \"locations\": [\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"tagSettings\": {\r\n \"tags\": {\r\n \"tag1\": [\r\n \"tag1Value1\",\r\n \"tag1Value2\"\r\n ],\r\n \"tag2\": [\r\n \"tag2Value1\",\r\n \"tag2Value2\"\r\n ]\r\n },\r\n \"filterOperator\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"scheduleInfo\": {\r\n \"startTime\": \"2019-05-05T19:26:00-07:00\",\r\n \"expiryTimeOffsetMinutes\": 0.0,\r\n \"nextRunOffsetMinutes\": 0.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"timeZone\": \"America/Los_Angeles\",\r\n \"creationTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\"\r\n },\r\n \"postTask\": {\r\n \"parameters\": {\r\n \"Num\": \"4\"\r\n },\r\n \"source\": \"postScript\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "654" - ], "x-ms-client-request-id": [ - "1c7d3d9f-df38-4ec2-a17f-4561c533db5a" + "83f9fb67-aaa5-4ff1-a36e-3659ce9e225d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001\",\r\n \"name\": \"test-suc-001\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ]\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2018-05-05T19:26:00-07:00\",\r\n \"startTimeOffsetMinutes\": -420.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": -480.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2018-05-05T19:26:00-07:00\",\r\n \"nextRunOffsetMinutes\": -420.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"creationTime\": \"2017-12-04T14:05:53.6933333-08:00\",\r\n \"lastModifiedTime\": \"2017-12-04T14:05:53.6933333-08:00\",\r\n \"timeZone\": \"America/Los_Angeles\",\r\n \"advancedSchedule\": null\r\n },\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdBy\": \"\",\r\n \"error\": null,\r\n \"creationTime\": \"2017-12-04T14:05:53.71-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-04T14:05:53.8333333-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1248" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1801" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 22:05:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview" ], "x-ms-request-id": [ - "1c7d3d9f-df38-4ec2-a17f-4561c533db5a" + "83f9fb67-aaa5-4ff1-a36e-3659ce9e225d" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview" ], "ocp-location": [ - "https://management.azure.com/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -71,63 +58,63 @@ "1199" ], "x-ms-correlation-request-id": [ - "a3525393-1d1f-4a20-8ae6-1f0abf1014a7" + "adeaf443-26a0-4754-9c11-a8390659156e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T220554Z:a3525393-1d1f-4a20-8ae6-1f0abf1014a7" + "WESTUS2:20181023T201122Z:adeaf443-26a0-4754-9c11-a8390659156e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 20:11:22 GMT" + ], + "Content-Length": [ + "1786" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001\",\r\n \"name\": \"test-suc-001\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ],\r\n \"includedKbNumbers\": null,\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": {\r\n \"azureQueries\": [\r\n {\r\n \"scope\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0\"\r\n ],\r\n \"tagSettings\": {\r\n \"tags\": {\r\n \"tag1\": [\r\n \"tag1Value1\",\r\n \"tag1Value2\"\r\n ],\r\n \"tag2\": [\r\n \"tag2Value1\",\r\n \"tag2Value2\"\r\n ]\r\n },\r\n \"filterOperator\": \"All\"\r\n },\r\n \"locations\": [\r\n \"Japan East\",\r\n \"UK South\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2019-05-05T19:26:00-07:00\",\r\n \"startTimeOffsetMinutes\": -420.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": -480.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2019-05-05T19:26:00-07:00\",\r\n \"nextRunOffsetMinutes\": -420.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"creationTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"timeZone\": \"America/Los_Angeles\",\r\n \"advancedSchedule\": null\r\n },\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdBy\": \"{scrubbed}\",\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"parameters\": {}\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"parameters\": {\r\n \"Num\": \"4\"\r\n }\r\n }\r\n },\r\n \"creationTime\": \"2018-10-23T13:10:14.95-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-23T13:11:22.343-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMT9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMT9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d3873d0-5ed5-4c07-b1e2-61039c087ae7" + "d0ec94da-a194-428e-ad21-31f31415acab" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001\",\r\n \"name\": \"test-suc-001\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ]\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2018-05-05T19:26:00-07:00\",\r\n \"startTimeOffsetMinutes\": -420.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": -480.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2018-05-05T19:26:00-07:00\",\r\n \"nextRunOffsetMinutes\": -420.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"creationTime\": \"2017-12-04T14:05:53.6933333-08:00\",\r\n \"lastModifiedTime\": \"2017-12-04T14:05:53.6933333-08:00\",\r\n \"timeZone\": \"America/Los_Angeles\",\r\n \"advancedSchedule\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdBy\": \"\",\r\n \"error\": null,\r\n \"creationTime\": \"2017-12-04T14:05:53.71-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-04T14:05:53.8333333-08:00\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 22:05:54 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "6d3873d0-5ed5-4c07-b1e2-61039c087ae7" + "d0ec94da-a194-428e-ad21-31f31415acab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -135,63 +122,66 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "11982" ], "x-ms-correlation-request-id": [ - "63dfdbbb-5fb6-4a46-bc52-fc591deb2f70" + "cabd8659-046a-4bc1-ad6e-d3a169d7a8d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T220554Z:63dfdbbb-5fb6-4a46-bc52-fc591deb2f70" + "WESTUS2:20181023T201123Z:cabd8659-046a-4bc1-ad6e-d3a169d7a8d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 20:11:23 GMT" + ], + "Content-Length": [ + "1790" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001\",\r\n \"name\": \"test-suc-001\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ],\r\n \"includedKbNumbers\": null,\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": {\r\n \"azureQueries\": [\r\n {\r\n \"scope\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0\"\r\n ],\r\n \"tagSettings\": {\r\n \"tags\": {\r\n \"tag1\": [\r\n \"tag1Value1\",\r\n \"tag1Value2\"\r\n ],\r\n \"tag2\": [\r\n \"tag2Value1\",\r\n \"tag2Value2\"\r\n ]\r\n },\r\n \"filterOperator\": \"All\"\r\n },\r\n \"locations\": [\r\n \"Japan East\",\r\n \"UK South\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2019-05-05T19:26:00-07:00\",\r\n \"startTimeOffsetMinutes\": -420.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": -480.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2019-05-05T19:26:00-07:00\",\r\n \"nextRunOffsetMinutes\": -420.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"creationTime\": \"2018-10-23T13:10:14.903-07:00\",\r\n \"lastModifiedTime\": \"2018-10-23T13:11:22.28-07:00\",\r\n \"timeZone\": \"America/Los_Angeles\",\r\n \"advancedSchedule\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdBy\": \"{scrubbed}\",\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"parameters\": {}\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"parameters\": {\r\n \"Num\": \"4\"\r\n }\r\n }\r\n },\r\n \"creationTime\": \"2018-10-23T13:10:14.95-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-23T13:11:22.343-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMT9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMT9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d3c37da-0ba2-4a99-ba37-10a2602564ec" + "a1b5a2b2-5548-4678-b30e-d93a780bb6bc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Software update configuration not found\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "71" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 22:05:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-request-id": [ - "4d3c37da-0ba2-4a99-ba37-10a2602564ec" + "a1b5a2b2-5548-4678-b30e-d93a780bb6bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -199,78 +189,81 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "11978" ], "x-ms-correlation-request-id": [ - "85a9c2b0-6ee1-42fe-b1c7-7b2e8365c750" + "8ae11b50-90b8-4540-bcab-89e7d799a3d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T220558Z:85a9c2b0-6ee1-42fe-b1c7-7b2e8365c750" + "WESTUS2:20181023T201143Z:8ae11b50-90b8-4540-bcab-89e7d799a3d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 20:11:42 GMT" + ], + "Content-Length": [ + "71" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Software update configuration not found\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMj9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMj9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical,Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\"\r\n ]\r\n },\r\n \"scheduleInfo\": {\r\n \"startTime\": \"2018-05-05T19:26:00Z\",\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"timeZone\": \"America/Los_Angeles\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical,Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\"\r\n ],\r\n \"targets\": {\r\n \"azureQueries\": [\r\n {\r\n \"scope\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d\"\r\n ],\r\n \"locations\": [\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"tagSettings\": {\r\n \"tags\": {\r\n \"tag1\": [\r\n \"tag1Value1\",\r\n \"tag1Value2\"\r\n ],\r\n \"tag2\": [\r\n \"tag2Value1\",\r\n \"tag2Value2\"\r\n ]\r\n },\r\n \"filterOperator\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"scheduleInfo\": {\r\n \"startTime\": \"2019-05-05T19:26:00-07:00\",\r\n \"expiryTimeOffsetMinutes\": 0.0,\r\n \"nextRunOffsetMinutes\": 0.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"timeZone\": \"America/Los_Angeles\",\r\n \"creationTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\"\r\n },\r\n \"postTask\": {\r\n \"parameters\": {\r\n \"Num\": \"4\"\r\n },\r\n \"source\": \"postScript\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "797" - ], "x-ms-client-request-id": [ - "f3859d38-faaf-4aea-9244-07c392f8fb27" + "4848f24a-0d03-4851-bbd5-804d38046eed" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002\",\r\n \"name\": \"test-suc-002\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ]\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2018-05-05T19:26:00-07:00\",\r\n \"startTimeOffsetMinutes\": -420.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": -480.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2018-05-05T19:26:00-07:00\",\r\n \"nextRunOffsetMinutes\": -420.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"creationTime\": \"2017-12-04T14:05:54.5533333-08:00\",\r\n \"lastModifiedTime\": \"2017-12-04T14:05:54.5533333-08:00\",\r\n \"timeZone\": \"America/Los_Angeles\",\r\n \"advancedSchedule\": null\r\n },\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdBy\": \"\",\r\n \"error\": null,\r\n \"creationTime\": \"2017-12-04T14:05:54.6166667-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-04T14:05:54.6166667-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1386" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1948" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 22:05:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview" - ], - "Server": [ - "Microsoft-IIS/8.5" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview" ], "x-ms-request-id": [ - "f3859d38-faaf-4aea-9244-07c392f8fb27" + "4848f24a-0d03-4851-bbd5-804d38046eed" ], "x-ms-location": [ - "https://management.azure.com/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview" ], "ocp-location": [ - "https://management.azure.com/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview" + "https://management.azure.com/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -281,63 +274,63 @@ "1198" ], "x-ms-correlation-request-id": [ - "c295e267-1bf1-4f0b-8251-5955b264f603" + "031dd271-bfda-4895-b78f-2caef32f731a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T220555Z:c295e267-1bf1-4f0b-8251-5955b264f603" + "WESTUS2:20181023T201126Z:031dd271-bfda-4895-b78f-2caef32f731a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 20:11:25 GMT" + ], + "Content-Length": [ + "1920" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002\",\r\n \"name\": \"test-suc-002\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ],\r\n \"includedKbNumbers\": null,\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": {\r\n \"azureQueries\": [\r\n {\r\n \"scope\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0\"\r\n ],\r\n \"tagSettings\": {\r\n \"tags\": {\r\n \"tag1\": [\r\n \"tag1Value1\",\r\n \"tag1Value2\"\r\n ],\r\n \"tag2\": [\r\n \"tag2Value1\",\r\n \"tag2Value2\"\r\n ]\r\n },\r\n \"filterOperator\": \"All\"\r\n },\r\n \"locations\": [\r\n \"Japan East\",\r\n \"UK South\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2019-05-05T19:26:00-07:00\",\r\n \"startTimeOffsetMinutes\": -420.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": -480.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2019-05-05T19:26:00-07:00\",\r\n \"nextRunOffsetMinutes\": -420.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"creationTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"timeZone\": \"America/Los_Angeles\",\r\n \"advancedSchedule\": null\r\n },\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdBy\": \"{scrubbed}\",\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"parameters\": {}\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"parameters\": {\r\n \"Num\": \"4\"\r\n }\r\n }\r\n },\r\n \"creationTime\": \"2018-10-23T13:10:15.983-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-23T13:11:26-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMj9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMj9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae4ff550-ff6a-49af-be76-1d87999b54d8" + "703e78b3-bd22-46dd-b25a-771f455fbdd2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002\",\r\n \"name\": \"test-suc-002\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ]\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2018-05-05T19:26:00-07:00\",\r\n \"startTimeOffsetMinutes\": -420.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": -480.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2018-05-05T19:26:00-07:00\",\r\n \"nextRunOffsetMinutes\": -420.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"creationTime\": \"2017-12-04T14:05:54.5533333-08:00\",\r\n \"lastModifiedTime\": \"2017-12-04T14:05:54.5533333-08:00\",\r\n \"timeZone\": \"America/Los_Angeles\",\r\n \"advancedSchedule\": null\r\n },\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdBy\": \"\",\r\n \"error\": null,\r\n \"creationTime\": \"2017-12-04T14:05:54.6166667-08:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2017-12-04T14:05:54.6166667-08:00\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 22:05:55 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "ae4ff550-ff6a-49af-be76-1d87999b54d8" + "703e78b3-bd22-46dd-b25a-771f455fbdd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -345,63 +338,66 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "11981" ], "x-ms-correlation-request-id": [ - "dd738c69-5fe9-4cc5-aa34-4db3addf36d4" + "f40dc528-cb40-4a64-950d-3e7a37cbb8f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T220555Z:dd738c69-5fe9-4cc5-aa34-4db3addf36d4" + "WESTUS2:20181023T201127Z:f40dc528-cb40-4a64-950d-3e7a37cbb8f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 20:11:27 GMT" + ], + "Content-Length": [ + "1927" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002\",\r\n \"name\": \"test-suc-002\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": [\r\n \"KB123\",\r\n \"KB123\"\r\n ],\r\n \"includedKbNumbers\": null,\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": {\r\n \"azureQueries\": [\r\n {\r\n \"scope\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0\"\r\n ],\r\n \"tagSettings\": {\r\n \"tags\": {\r\n \"tag1\": [\r\n \"tag1Value1\",\r\n \"tag1Value2\"\r\n ],\r\n \"tag2\": [\r\n \"tag2Value1\",\r\n \"tag2Value2\"\r\n ]\r\n },\r\n \"filterOperator\": \"All\"\r\n },\r\n \"locations\": [\r\n \"Japan East\",\r\n \"UK South\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2019-05-05T19:26:00-07:00\",\r\n \"startTimeOffsetMinutes\": -420.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": -480.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2019-05-05T19:26:00-07:00\",\r\n \"nextRunOffsetMinutes\": -420.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Day\",\r\n \"creationTime\": \"2018-10-23T13:10:15.42-07:00\",\r\n \"lastModifiedTime\": \"2018-10-23T13:11:25.453-07:00\",\r\n \"timeZone\": \"America/Los_Angeles\",\r\n \"advancedSchedule\": null\r\n },\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdBy\": \"{scrubbed}\",\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"parameters\": {}\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"parameters\": {\r\n \"Num\": \"4\"\r\n }\r\n }\r\n },\r\n \"creationTime\": \"2018-10-23T13:10:15.983-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2018-10-23T13:11:26-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMj9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMj9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ccda381-e73c-4086-9fa3-1f665a5b7039" + "cdae63d3-81c3-480a-b831-dbdfaca5e5e5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Software update configuration not found\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "71" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 22:05:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-request-id": [ - "4ccda381-e73c-4086-9fa3-1f665a5b7039" + "cdae63d3-81c3-480a-b831-dbdfaca5e5e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -409,66 +405,66 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "11977" ], "x-ms-correlation-request-id": [ - "b5bbee98-1478-45fb-8732-56c3fc6178c0" + "4b960dc7-ce2d-4250-ba2c-e2ee24ea2991" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T220558Z:b5bbee98-1478-45fb-8732-56c3fc6178c0" + "WESTUS2:20181023T201145Z:4b960dc7-ce2d-4250-ba2c-e2ee24ea2991" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 20:11:44 GMT" + ], + "Content-Length": [ + "71" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Software update configuration not found\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldw==", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "809350a3-8cc4-45ce-a4b3-a5f4c089e98d" + "a3e979e5-2501-4d43-8df9-a86570daab04" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/all-01\",\r\n \"name\": \"all-01\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Hour\",\r\n \"startTime\": \"2017-12-03T16:00:00-08:00\",\r\n \"creationTime\": \"2017-12-03T15:50:29.5066667-08:00\",\r\n \"lastModifiedTime\": \"2017-12-03T15:50:43.7566667-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2017-12-04T15:00:00-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/third\",\r\n \"name\": \"third\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Hour\",\r\n \"startTime\": \"2017-12-03T15:05:00-08:00\",\r\n \"creationTime\": \"2017-12-03T14:46:00.49-08:00\",\r\n \"lastModifiedTime\": \"2017-12-03T14:46:00.7566667-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2017-12-04T15:05:00-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002\",\r\n \"name\": \"test-suc-002\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Day\",\r\n \"startTime\": \"2018-05-05T19:26:00-07:00\",\r\n \"creationTime\": \"2017-12-04T14:05:54.6166667-08:00\",\r\n \"lastModifiedTime\": \"2017-12-04T14:05:54.6166667-08:00\",\r\n \"provisioningState\": \"Provisioning\",\r\n \"nextRun\": \"2018-05-05T19:26:00-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001\",\r\n \"name\": \"test-suc-001\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Day\",\r\n \"startTime\": \"2018-05-05T19:26:00-07:00\",\r\n \"creationTime\": \"2017-12-04T14:05:53.71-08:00\",\r\n \"lastModifiedTime\": \"2017-12-04T14:05:53.8333333-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2018-05-05T19:26:00-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-02\",\r\n \"name\": \"test-suc-02\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Day\",\r\n \"startTime\": \"2018-05-05T19:26:00-07:00\",\r\n \"creationTime\": \"2017-11-29T23:27:55.3433333-08:00\",\r\n \"lastModifiedTime\": \"2017-11-29T23:28:22.7233333-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2018-05-05T19:26:00-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test\",\r\n \"name\": \"test\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"OneTime\",\r\n \"startTime\": \"2018-11-30T01:19:00-08:00\",\r\n \"creationTime\": \"2017-11-30T00:50:02.7766667-08:00\",\r\n \"lastModifiedTime\": \"2017-11-30T00:50:03.0266667-08:00\",\r\n \"provisioningState\": \"Failed\",\r\n \"nextRun\": \"2018-11-30T01:19:00-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/second\",\r\n \"name\": \"second\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"OneTime\",\r\n \"startTime\": \"2017-12-03T15:00:00-08:00\",\r\n \"creationTime\": \"2017-12-03T14:44:46.0433333-08:00\",\r\n \"lastModifiedTime\": \"2017-12-03T14:44:46.2466667-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/first\",\r\n \"name\": \"first\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"OneTime\",\r\n \"startTime\": \"2017-12-03T14:50:00-08:00\",\r\n \"creationTime\": \"2017-12-03T14:44:12.5633333-08:00\",\r\n \"lastModifiedTime\": \"2017-12-03T14:44:12.8466667-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/ttt\",\r\n \"name\": \"ttt\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"OneTime\",\r\n \"startTime\": \"2017-11-30T02:44:00-08:00\",\r\n \"creationTime\": \"2017-11-30T02:15:06.7666667-08:00\",\r\n \"lastModifiedTime\": \"2017-11-30T02:15:07.1266667-08:00\",\r\n \"provisioningState\": \"Failed\",\r\n \"nextRun\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 22:05:55 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "809350a3-8cc4-45ce-a4b3-a5f4c089e98d" + "a3e979e5-2501-4d43-8df9-a86570daab04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -476,66 +472,66 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "11980" ], "x-ms-correlation-request-id": [ - "c1e350fd-a6bf-4817-8661-a1b55a611383" + "701400f4-2f1c-4f6b-b8dd-bb5aa36876f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T220555Z:c1e350fd-a6bf-4817-8661-a1b55a611383" + "WESTUS2:20181023T201135Z:701400f4-2f1c-4f6b-b8dd-bb5aa36876f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 20:11:34 GMT" + ], + "Content-Length": [ + "4074" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/all-01\",\r\n \"name\": \"all-01\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null,\r\n \"includedKbNumbers\": null,\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/a-stasku-rg0/providers/microsoft.compute/virtualmachines/vmj-arm-02\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/a-stasku-rg0/providers/microsoft.compute/virtualmachines/vmj-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Hour\",\r\n \"startTime\": \"2018-10-23T12:02:00-07:00\",\r\n \"creationTime\": \"2018-10-23T11:54:17.86-07:00\",\r\n \"lastModifiedTime\": \"2018-10-23T11:54:28.58-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2018-10-23T14:02:00-07:00\",\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"parameters\": {}\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"parameters\": {\r\n \"NUM\": \"32\"\r\n }\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002\",\r\n \"name\": \"test-suc-002\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": null,\r\n \"includedKbNumbers\": null,\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": {\r\n \"azureQueries\": [\r\n {\r\n \"scope\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0\"\r\n ],\r\n \"tagSettings\": {\r\n \"tags\": {\r\n \"tag1\": [\r\n \"tag1Value1\",\r\n \"tag1Value2\"\r\n ],\r\n \"tag2\": [\r\n \"tag2Value1\",\r\n \"tag2Value2\"\r\n ]\r\n },\r\n \"filterOperator\": \"All\"\r\n },\r\n \"locations\": [\r\n \"Japan East\",\r\n \"UK South\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Day\",\r\n \"startTime\": \"2019-05-05T19:26:00-07:00\",\r\n \"creationTime\": \"2018-10-23T13:10:15.983-07:00\",\r\n \"lastModifiedTime\": \"2018-10-23T13:11:26-07:00\",\r\n \"provisioningState\": \"Provisioning\",\r\n \"nextRun\": \"2019-05-05T19:26:00-07:00\",\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"parameters\": {}\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"parameters\": {\r\n \"Num\": \"4\"\r\n }\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001\",\r\n \"name\": \"test-suc-001\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": null,\r\n \"includedKbNumbers\": null,\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": {\r\n \"azureQueries\": [\r\n {\r\n \"scope\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0\"\r\n ],\r\n \"tagSettings\": {\r\n \"tags\": {\r\n \"tag1\": [\r\n \"tag1Value1\",\r\n \"tag1Value2\"\r\n ],\r\n \"tag2\": [\r\n \"tag2Value1\",\r\n \"tag2Value2\"\r\n ]\r\n },\r\n \"filterOperator\": \"All\"\r\n },\r\n \"locations\": [\r\n \"Japan East\",\r\n \"UK South\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Day\",\r\n \"startTime\": \"2019-05-05T19:26:00-07:00\",\r\n \"creationTime\": \"2018-10-23T13:10:14.95-07:00\",\r\n \"lastModifiedTime\": \"2018-10-23T13:11:22.343-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2019-05-05T19:26:00-07:00\",\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"parameters\": {}\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"parameters\": {\r\n \"Num\": \"4\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations?api-version=2017-05-15-preview&$filter=properties%2FupdateConfiguration%2FazureVirtualMachines%2Fany(m:%20m%20eq%20'%2Fsubscriptions%2F05fd3142-4b8e-4b16-8da9-98b4bbfd722d%2FresourceGroups%2Fcompute-01%2Fproviders%2FMicrosoft.Compute%2FvirtualMachines%2Fvm-arm-01')", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldyYkZmlsdGVyPXByb3BlcnRpZXMlMkZ1cGRhdGVDb25maWd1cmF0aW9uJTJGYXp1cmVWaXJ0dWFsTWFjaGluZXMlMkZhbnklMjhtJTNBJTIwbSUyMGVxJTIwJTI3JTJGc3Vic2NyaXB0aW9ucyUyRjA1ZmQzMTQyLTRiOGUtNGIxNi04ZGE5LTk4YjRiYmZkNzIyZCUyRnJlc291cmNlR3JvdXBzJTJGY29tcHV0ZS0wMSUyRnByb3ZpZGVycyUyRk1pY3Jvc29mdC5Db21wdXRlJTJGdmlydHVhbE1hY2hpbmVzJTJGdm0tYXJtLTAxJTI3JTI5", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations?api-version=2017-05-15-preview&$filter=properties%2FupdateConfiguration%2FazureVirtualMachines%2Fany%28m%3A%20m%20eq%20%27%2Fsubscriptions%2F422b6c61-95b0-4213-b3be-7282315df71d%2FresourceGroups%2Fa-stasku-rg0%2Fproviders%2FMicrosoft.Compute%2FvirtualMachines%2Fvmj-arm-01%27%29", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldyYkZmlsdGVyPXByb3BlcnRpZXMlMkZ1cGRhdGVDb25maWd1cmF0aW9uJTJGYXp1cmVWaXJ0dWFsTWFjaGluZXMlMkZhbnklMjhtJTNBJTIwbSUyMGVxJTIwJTI3JTJGc3Vic2NyaXB0aW9ucyUyRjQyMmI2YzYxLTk1YjAtNDIxMy1iM2JlLTcyODIzMTVkZjcxZCUyRnJlc291cmNlR3JvdXBzJTJGYS1zdGFza3UtcmcwJTJGcHJvdmlkZXJzJTJGTWljcm9zb2Z0LkNvbXB1dGUlMkZ2aXJ0dWFsTWFjaGluZXMlMkZ2bWotYXJtLTAxJTI3JTI5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c0c0770-2ab1-4510-9f28-c8080c58f4f2" + "9c76ab74-1952-4eac-8137-708ed937e6e9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/all-01\",\r\n \"name\": \"all-01\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Hour\",\r\n \"startTime\": \"2017-12-03T16:00:00-08:00\",\r\n \"creationTime\": \"2017-12-03T15:50:29.5066667-08:00\",\r\n \"lastModifiedTime\": \"2017-12-03T15:50:43.7566667-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2017-12-04T15:00:00-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/third\",\r\n \"name\": \"third\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Hour\",\r\n \"startTime\": \"2017-12-03T15:05:00-08:00\",\r\n \"creationTime\": \"2017-12-03T14:46:00.49-08:00\",\r\n \"lastModifiedTime\": \"2017-12-03T14:46:00.7566667-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2017-12-04T15:05:00-08:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001\",\r\n \"name\": \"test-suc-001\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Day\",\r\n \"startTime\": \"2018-05-05T19:26:00-07:00\",\r\n \"creationTime\": \"2017-12-04T14:05:53.71-08:00\",\r\n \"lastModifiedTime\": \"2017-12-04T14:05:53.8333333-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2018-05-05T19:26:00-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-02\",\r\n \"name\": \"test-suc-02\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\",\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete/providers/Microsoft.Compute/virtualMachines/mo-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Day\",\r\n \"startTime\": \"2018-05-05T19:26:00-07:00\",\r\n \"creationTime\": \"2017-11-29T23:27:55.3433333-08:00\",\r\n \"lastModifiedTime\": \"2017-11-29T23:28:22.7233333-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2018-05-05T19:26:00-07:00\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/second\",\r\n \"name\": \"second\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"OneTime\",\r\n \"startTime\": \"2017-12-03T15:00:00-08:00\",\r\n \"creationTime\": \"2017-12-03T14:44:46.0433333-08:00\",\r\n \"lastModifiedTime\": \"2017-12-03T14:44:46.2466667-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/first\",\r\n \"name\": \"first\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null\r\n },\r\n \"linux\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/compute-01/providers/Microsoft.Compute/virtualMachines/vm-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"OneTime\",\r\n \"startTime\": \"2017-12-03T14:50:00-08:00\",\r\n \"creationTime\": \"2017-12-03T14:44:12.5633333-08:00\",\r\n \"lastModifiedTime\": \"2017-12-03T14:44:12.8466667-08:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 22:05:57 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "5c0c0770-2ab1-4510-9f28-c8080c58f4f2" + "9c76ab74-1952-4eac-8137-708ed937e6e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -543,142 +539,164 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "11979" ], "x-ms-correlation-request-id": [ - "5a0814f5-49f1-4e29-8bbe-f0680135e43d" + "033ce2ea-a319-4830-817e-d82950e04039" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T220557Z:5a0814f5-49f1-4e29-8bbe-f0680135e43d" + "WESTUS2:20181023T201137Z:033ce2ea-a319-4830-817e-d82950e04039" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 20:11:36 GMT" + ], + "Content-Length": [ + "4074" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/all-01\",\r\n \"name\": \"all-01\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security, UpdateRollup, FeaturePack, ServicePack, Definition, Tools, Updates\",\r\n \"excludedKbNumbers\": null,\r\n \"includedKbNumbers\": null,\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/a-stasku-rg0/providers/microsoft.compute/virtualmachines/vmj-arm-02\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourcegroups/a-stasku-rg0/providers/microsoft.compute/virtualmachines/vmj-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Hour\",\r\n \"startTime\": \"2018-10-23T12:02:00-07:00\",\r\n \"creationTime\": \"2018-10-23T11:54:17.86-07:00\",\r\n \"lastModifiedTime\": \"2018-10-23T11:54:28.58-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2018-10-23T14:02:00-07:00\",\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"parameters\": {}\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"parameters\": {\r\n \"NUM\": \"32\"\r\n }\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002\",\r\n \"name\": \"test-suc-002\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": null,\r\n \"includedKbNumbers\": null,\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": {\r\n \"azureQueries\": [\r\n {\r\n \"scope\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0\"\r\n ],\r\n \"tagSettings\": {\r\n \"tags\": {\r\n \"tag1\": [\r\n \"tag1Value1\",\r\n \"tag1Value2\"\r\n ],\r\n \"tag2\": [\r\n \"tag2Value1\",\r\n \"tag2Value2\"\r\n ]\r\n },\r\n \"filterOperator\": \"All\"\r\n },\r\n \"locations\": [\r\n \"Japan East\",\r\n \"UK South\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-02\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Day\",\r\n \"startTime\": \"2019-05-05T19:26:00-07:00\",\r\n \"creationTime\": \"2018-10-23T13:10:15.983-07:00\",\r\n \"lastModifiedTime\": \"2018-10-23T13:11:26-07:00\",\r\n \"provisioningState\": \"Provisioning\",\r\n \"nextRun\": \"2019-05-05T19:26:00-07:00\",\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"parameters\": {}\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"parameters\": {\r\n \"Num\": \"4\"\r\n }\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001\",\r\n \"name\": \"test-suc-001\",\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Critical, Security\",\r\n \"excludedKbNumbers\": null,\r\n \"includedKbNumbers\": null,\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": {\r\n \"azureQueries\": [\r\n {\r\n \"scope\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d\",\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0\"\r\n ],\r\n \"tagSettings\": {\r\n \"tags\": {\r\n \"tag1\": [\r\n \"tag1Value1\",\r\n \"tag1Value2\"\r\n ],\r\n \"tag2\": [\r\n \"tag2Value1\",\r\n \"tag2Value2\"\r\n ]\r\n },\r\n \"filterOperator\": \"All\"\r\n },\r\n \"locations\": [\r\n \"Japan East\",\r\n \"UK South\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"duration\": \"PT3H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/a-stasku-rg0/providers/Microsoft.Compute/virtualMachines/vmj-arm-01\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"frequency\": \"Day\",\r\n \"startTime\": \"2019-05-05T19:26:00-07:00\",\r\n \"creationTime\": \"2018-10-23T13:10:14.95-07:00\",\r\n \"lastModifiedTime\": \"2018-10-23T13:11:22.343-07:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"nextRun\": \"2019-05-05T19:26:00-07:00\",\r\n \"tasks\": {\r\n \"preTask\": {\r\n \"source\": \"preScript\",\r\n \"parameters\": {}\r\n },\r\n \"postTask\": {\r\n \"source\": \"postScript\",\r\n \"parameters\": {\r\n \"Num\": \"4\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMT9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-001?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMT9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "953cddab-4797-44c3-8669-637c2e442b25" + "dac6a65e-3c18-4e2f-ad87-c87f5e1b5928" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 22:05:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-request-id": [ - "953cddab-4797-44c3-8669-637c2e442b25" + "dac6a65e-3c18-4e2f-ad87-c87f5e1b5928" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "45ff4e2b-373c-4a1d-be7f-91211b0212dc" + "5b2c865c-2d33-4c3e-9a40-29733da491f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T220558Z:45ff4e2b-373c-4a1d-be7f-91211b0212dc" + "WESTUS2:20181023T201143Z:5b2c865c-2d33-4c3e-9a40-29733da491f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 20:11:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/05fd3142-4b8e-4b16-8da9-98b4bbfd722d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDVmZDMxNDItNGI4ZS00YjE2LThkYTktOThiNGJiZmQ3MjJkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMj9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", + "RequestUri": "/subscriptions/422b6c61-95b0-4213-b3be-7282315df71d/resourceGroups/to-delete-01/providers/Microsoft.Automation/automationAccounts/fbs-aa-01/softwareUpdateConfigurations/test-suc-002?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDIyYjZjNjEtOTViMC00MjEzLWIzYmUtNzI4MjMxNWRmNzFkL3Jlc291cmNlR3JvdXBzL3RvLWRlbGV0ZS0wMS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL2Zicy1hYS0wMS9zb2Z0d2FyZVVwZGF0ZUNvbmZpZ3VyYXRpb25zL3Rlc3Qtc3VjLTAwMj9hcGktdmVyc2lvbj0yMDE3LTA1LTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28d677ed-aa73-4e28-9b87-4bed288ef47d" + "510f108e-8714-44a5-bfad-020b60be0a44" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.Automation.AutomationClient/3.0.0.0" + "FxVersion/4.6.26919.02", + "Microsoft.Azure.Management.Automation.AutomationClient/3.3.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Mon, 04 Dec 2017 22:05:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-request-id": [ - "28d677ed-aa73-4e28-9b87-4bed288ef47d" + "510f108e-8714-44a5-bfad-020b60be0a44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "65b58934-9fd6-49e7-a159-9c63d6204ac0" + "233c0d1b-41a4-4dfa-896e-af54bbc56103" ], "x-ms-routing-request-id": [ - "WESTUS2:20171204T220558Z:65b58934-9fd6-49e7-a159-9c63d6204ac0" + "WESTUS2:20181023T201144Z:233c0d1b-41a4-4dfa-896e-af54bbc56103" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 23 Oct 2018 20:11:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "05fd3142-4b8e-4b16-8da9-98b4bbfd722d" + "SubscriptionId": "422b6c61-95b0-4213-b3be-7282315df71d" } } \ No newline at end of file diff --git a/src/SDKs/Automation/Automation.Tests/TestSupport/AutomationTestBase.cs b/src/SDKs/Automation/Automation.Tests/TestSupport/AutomationTestBase.cs index 814c8d289154b..ee85d2c590bf3 100644 --- a/src/SDKs/Automation/Automation.Tests/TestSupport/AutomationTestBase.cs +++ b/src/SDKs/Automation/Automation.Tests/TestSupport/AutomationTestBase.cs @@ -193,12 +193,30 @@ public Module CreateAutomationModule(string moduleName, string contentLink) return module; } + public Module CreateAutomationPython2Package(string moduleName, string contentLink) + { + var module = AutomationClient.Python2Package.CreateOrUpdate(ResourceGroup, AutomationAccount, moduleName, + new PythonPackageCreateParameters + { + ContentLink = new ContentLink(contentLink), + Tags = new Dictionary() + }); + return module; + } + + public Module GetAutomationModule(string moduleName) { var module = AutomationClient.Module.Get(ResourceGroup, AutomationAccount, moduleName); return module; } + public Module GetAutomationPython2Package(string moduleName) + { + var module = AutomationClient.Python2Package.Get(ResourceGroup, AutomationAccount, moduleName); + return module; + } + public void DeleteModule(string moduleName, bool ignoreErrors = false) { try @@ -214,6 +232,21 @@ public void DeleteModule(string moduleName, bool ignoreErrors = false) } } + public void DeletePython2Package(string moduleName, bool ignoreErrors = false) + { + try + { + AutomationClient.Python2Package.Delete(ResourceGroup, AutomationAccount, moduleName); + } + catch (ErrorResponseException) + { + if (!ignoreErrors) + { + throw; + } + } + } + #endregion @@ -253,7 +286,7 @@ public void UpdateRunbookContent(string runbookName, string runbookContent) public void PublishRunbook(string runbookName) { - AutomationClient.RunbookDraft.BeginPublish(ResourceGroup, AutomationAccount, runbookName); + AutomationClient.Runbook.BeginPublish(ResourceGroup, AutomationAccount, runbookName); } public Job StartRunbook(string runbookName, IDictionary parameters = null) diff --git a/src/SDKs/Automation/AzSdk.RP.props b/src/SDKs/Automation/AzSdk.RP.props index cf0b5414daa64..bb65d484a8adf 100644 --- a/src/SDKs/Automation/AzSdk.RP.props +++ b/src/SDKs/Automation/AzSdk.RP.props @@ -1,7 +1,7 @@  - Automation_2015-10-31;Automation_2018-01-15;Automation_2017-05-15-preview; + Automation_2015-10-31;Automation_2018-01-15;Automation_2017-05-15-preview;Automation_2018-06-30; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/src/SDKs/Automation/Management.Automation/Customization/SoftwareUpdateConfigurationMachineRunsOperationsExtensions.cs b/src/SDKs/Automation/Management.Automation/Customization/SoftwareUpdateConfigurationMachineRunsOperationsExtensions.cs index 37bdc5b36a76c..c2787a67c3252 100644 --- a/src/SDKs/Automation/Management.Automation/Customization/SoftwareUpdateConfigurationMachineRunsOperationsExtensions.cs +++ b/src/SDKs/Automation/Management.Automation/Customization/SoftwareUpdateConfigurationMachineRunsOperationsExtensions.cs @@ -142,9 +142,6 @@ public static async Task ListBy /// /// The operations group for this extension method. /// - /// - /// The computer osType targeted by this machine run - /// /// /// number of entries you skip before returning results /// @@ -200,9 +197,6 @@ public static async Task ListBy /// /// The operations group for this extension method. /// - /// - /// The computer osType targeted by this machine run - /// /// /// number of entries you skip before returning results /// diff --git a/src/SDKs/Automation/Management.Automation/Generated/AutomationClient.cs b/src/SDKs/Automation/Management.Automation/Generated/AutomationClient.cs index 3f8a36bf2b82b..75558a3546993 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/AutomationClient.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/AutomationClient.cs @@ -162,26 +162,6 @@ public partial class AutomationClient : ServiceClient, IAutoma /// public virtual IFieldsOperations Fields { get; private set; } - /// - /// Gets the IRunbookDraftOperations. - /// - public virtual IRunbookDraftOperations RunbookDraft { get; private set; } - - /// - /// Gets the IRunbookOperations. - /// - public virtual IRunbookOperations Runbook { get; private set; } - - /// - /// Gets the ITestJobStreamsOperations. - /// - public virtual ITestJobStreamsOperations TestJobStreams { get; private set; } - - /// - /// Gets the ITestJobOperations. - /// - public virtual ITestJobOperations TestJob { get; private set; } - /// /// Gets the IScheduleOperations. /// @@ -277,6 +257,44 @@ public partial class AutomationClient : ServiceClient, IAutoma /// public virtual INodeCountInformationOperations NodeCountInformation { get; private set; } + /// + /// Gets the IRunbookDraftOperations. + /// + public virtual IRunbookDraftOperations RunbookDraft { get; private set; } + + /// + /// Gets the IRunbookOperations. + /// + public virtual IRunbookOperations Runbook { get; private set; } + + /// + /// Gets the ITestJobStreamsOperations. + /// + public virtual ITestJobStreamsOperations TestJobStreams { get; private set; } + + /// + /// Gets the ITestJobOperations. + /// + public virtual ITestJobOperations TestJob { get; private set; } + + /// + /// Gets the IPython2PackageOperations. + /// + public virtual IPython2PackageOperations Python2Package { get; private set; } + + /// + /// Initializes a new instance of the AutomationClient class. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling AutomationClient.Dispose(). False: will not dispose provided httpClient + protected AutomationClient(HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) + { + Initialize(); + } + /// /// Initializes a new instance of the AutomationClient class. /// @@ -372,6 +390,33 @@ public AutomationClient(ServiceClientCredentials credentials, params DelegatingH } } + /// + /// Initializes a new instance of the AutomationClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling AutomationClient.Dispose(). False: will not dispose provided httpClient + /// + /// Thrown when a required parameter is null + /// + public AutomationClient(ServiceClientCredentials credentials, HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + /// /// Initializes a new instance of the AutomationClient class. /// @@ -495,10 +540,6 @@ private void Initialize() Module = new ModuleOperations(this); ObjectDataTypes = new ObjectDataTypesOperations(this); Fields = new FieldsOperations(this); - RunbookDraft = new RunbookDraftOperations(this); - Runbook = new RunbookOperations(this); - TestJobStreams = new TestJobStreamsOperations(this); - TestJob = new TestJobOperations(this); Schedule = new ScheduleOperations(this); Variable = new VariableOperations(this); Webhook = new WebhookOperations(this); @@ -518,6 +559,11 @@ private void Initialize() DscCompilationJobStream = new DscCompilationJobStreamOperations(this); DscNodeConfiguration = new DscNodeConfigurationOperations(this); NodeCountInformation = new NodeCountInformationOperations(this); + RunbookDraft = new RunbookDraftOperations(this); + Runbook = new RunbookOperations(this); + TestJobStreams = new TestJobStreamsOperations(this); + TestJob = new TestJobOperations(this); + Python2Package = new Python2PackageOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; diff --git a/src/SDKs/Automation/Management.Automation/Generated/DscConfigurationOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/DscConfigurationOperations.cs index 7e32ee98f5ff2..456096ced7bae 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/DscConfigurationOperations.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/DscConfigurationOperations.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.Management.Automation using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; + using System.IO; using System.Linq; using System.Net; using System.Net.Http; @@ -951,7 +952,7 @@ internal DscConfigurationOperations(AutomationClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -966,7 +967,7 @@ internal DscConfigurationOperations(AutomationClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetContentWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string configurationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetContentWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string configurationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1076,7 +1077,7 @@ internal DscConfigurationOperations(AutomationClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1086,13 +1087,14 @@ internal DscConfigurationOperations(AutomationClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1102,6 +1104,10 @@ internal DscConfigurationOperations(AutomationClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1114,7 +1120,7 @@ internal DscConfigurationOperations(AutomationClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1124,20 +1130,7 @@ internal DscConfigurationOperations(AutomationClient client) // Deserialize Response if ((int)_statusCode == 200) { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } + _result.Body = await _httpResponse.Content.ReadAsStreamAsync().ConfigureAwait(false); } if (_shouldTrace) { diff --git a/src/SDKs/Automation/Management.Automation/Generated/DscConfigurationOperationsExtensions.cs b/src/SDKs/Automation/Management.Automation/Generated/DscConfigurationOperationsExtensions.cs index 92d5ebf2da0ee..c6528a87cc73a 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/DscConfigurationOperationsExtensions.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/DscConfigurationOperationsExtensions.cs @@ -14,6 +14,7 @@ namespace Microsoft.Azure.Management.Automation using Microsoft.Rest.Azure; using Microsoft.Rest.Azure.OData; using Models; + using System.IO; using System.Threading; using System.Threading.Tasks; @@ -239,7 +240,7 @@ public static DscConfiguration CreateOrUpdate(this IDscConfigurationOperations o /// /// The configuration name. /// - public static string GetContent(this IDscConfigurationOperations operations, string resourceGroupName, string automationAccountName, string configurationName) + public static Stream GetContent(this IDscConfigurationOperations operations, string resourceGroupName, string automationAccountName, string configurationName) { return operations.GetContentAsync(resourceGroupName, automationAccountName, configurationName).GetAwaiter().GetResult(); } @@ -263,12 +264,11 @@ public static string GetContent(this IDscConfigurationOperations operations, str /// /// The cancellation token. /// - public static async Task GetContentAsync(this IDscConfigurationOperations operations, string resourceGroupName, string automationAccountName, string configurationName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetContentAsync(this IDscConfigurationOperations operations, string resourceGroupName, string automationAccountName, string configurationName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetContentWithHttpMessagesAsync(resourceGroupName, automationAccountName, configurationName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + var _result = await operations.GetContentWithHttpMessagesAsync(resourceGroupName, automationAccountName, configurationName, null, cancellationToken).ConfigureAwait(false); + _result.Request.Dispose(); + return _result.Body; } /// diff --git a/src/SDKs/Automation/Management.Automation/Generated/IAutomationClient.cs b/src/SDKs/Automation/Management.Automation/Generated/IAutomationClient.cs index 7bd2ab5e89a02..32a48fc948e26 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/IAutomationClient.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/IAutomationClient.cs @@ -157,26 +157,6 @@ public partial interface IAutomationClient : System.IDisposable /// IFieldsOperations Fields { get; } - /// - /// Gets the IRunbookDraftOperations. - /// - IRunbookDraftOperations RunbookDraft { get; } - - /// - /// Gets the IRunbookOperations. - /// - IRunbookOperations Runbook { get; } - - /// - /// Gets the ITestJobStreamsOperations. - /// - ITestJobStreamsOperations TestJobStreams { get; } - - /// - /// Gets the ITestJobOperations. - /// - ITestJobOperations TestJob { get; } - /// /// Gets the IScheduleOperations. /// @@ -272,5 +252,30 @@ public partial interface IAutomationClient : System.IDisposable /// INodeCountInformationOperations NodeCountInformation { get; } + /// + /// Gets the IRunbookDraftOperations. + /// + IRunbookDraftOperations RunbookDraft { get; } + + /// + /// Gets the IRunbookOperations. + /// + IRunbookOperations Runbook { get; } + + /// + /// Gets the ITestJobStreamsOperations. + /// + ITestJobStreamsOperations TestJobStreams { get; } + + /// + /// Gets the ITestJobOperations. + /// + ITestJobOperations TestJob { get; } + + /// + /// Gets the IPython2PackageOperations. + /// + IPython2PackageOperations Python2Package { get; } + } } diff --git a/src/SDKs/Automation/Management.Automation/Generated/IDscConfigurationOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/IDscConfigurationOperations.cs index 897051c17b1c6..d36e8155045d1 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/IDscConfigurationOperations.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/IDscConfigurationOperations.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.Management.Automation using Models; using System.Collections; using System.Collections.Generic; + using System.IO; using System.Threading; using System.Threading.Tasks; @@ -162,7 +163,7 @@ public partial interface IDscConfigurationOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -171,7 +172,7 @@ public partial interface IDscConfigurationOperations /// /// Thrown when a required parameter is null /// - Task> GetContentWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string configurationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetContentWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string configurationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Retrieve a list of configurations. /// diff --git a/src/SDKs/Automation/Management.Automation/Generated/IPython2PackageOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/IPython2PackageOperations.cs new file mode 100644 index 0000000000000..161c1fe533bb5 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/IPython2PackageOperations.cs @@ -0,0 +1,195 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Python2PackageOperations operations. + /// + public partial interface IPython2PackageOperations + { + /// + /// Delete the python 2 package by name. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The python package name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string packageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Retrieve the python 2 package identified by package name. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The python package name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string packageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or Update the python 2 package identified by package name. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The name of python package. + /// + /// + /// The create or update parameters for python package. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string packageName, PythonPackageCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update the python 2 package identified by package name. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The name of python package. + /// + /// + /// The update parameters for python package. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string packageName, PythonPackageUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Retrieve a list of python 2 packages. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByAutomationAccountWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Retrieve a list of python 2 packages. + /// + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByAutomationAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/IRunbookDraftOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/IRunbookDraftOperations.cs index f73883861aa9c..8162e80fc575d 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/IRunbookDraftOperations.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/IRunbookDraftOperations.cs @@ -67,7 +67,7 @@ public partial interface IRunbookDraftOperations /// The runbook name. /// /// - /// The runbook draft content. + /// The runbook draft content. /// /// /// The headers that will be added to request. @@ -115,32 +115,6 @@ public partial interface IRunbookDraftOperations /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string runbookName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Publish runbook draft. - /// - /// - /// - /// Name of an Azure Resource group. - /// - /// - /// The name of the automation account. - /// - /// - /// The parameters supplied to the publish runbook operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task> PublishWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string runbookName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// /// Undo draft edit to last known published state identified by runbook /// name. /// @@ -184,7 +158,7 @@ public partial interface IRunbookDraftOperations /// The runbook name. /// /// - /// The runbook draft content. + /// The runbook draft content. /// /// /// The headers that will be added to request. @@ -202,31 +176,5 @@ public partial interface IRunbookDraftOperations /// Thrown when a required parameter is null /// Task> BeginReplaceContentWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string runbookName, Stream runbookContent, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Publish runbook draft. - /// - /// - /// - /// Name of an Azure Resource group. - /// - /// - /// The name of the automation account. - /// - /// - /// The parameters supplied to the publish runbook operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task> BeginPublishWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string runbookName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/Automation/Management.Automation/Generated/IRunbookOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/IRunbookOperations.cs index e54d662b825ff..c585c34dfd1a4 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/IRunbookOperations.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/IRunbookOperations.cs @@ -24,6 +24,32 @@ namespace Microsoft.Azure.Management.Automation /// public partial interface IRunbookOperations { + /// + /// Publish runbook draft. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The parameters supplied to the publish runbook operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task> PublishWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string runbookName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Retrieve the content of runbook identified by runbook name. /// @@ -200,6 +226,32 @@ public partial interface IRunbookOperations /// Task>> ListByAutomationAccountWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Publish runbook draft. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The parameters supplied to the publish runbook operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginPublishWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string runbookName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Retrieve a list of runbooks. /// /// diff --git a/src/SDKs/Automation/Management.Automation/Generated/ISoftwareUpdateConfigurationRunsOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/ISoftwareUpdateConfigurationRunsOperations.cs index f86f88c25f2bd..c43721e30ae52 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/ISoftwareUpdateConfigurationRunsOperations.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/ISoftwareUpdateConfigurationRunsOperations.cs @@ -75,7 +75,7 @@ public partial interface ISoftwareUpdateConfigurationRunsOperations /// 'properties/softwareUpdateConfiguration/name' /// /// - /// number of entries you skip before returning results + /// Number of entries you skip before returning results /// /// /// Maximum number of entries returned in the results collection diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/AzureQueryProperties.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/AzureQueryProperties.cs new file mode 100644 index 0000000000000..d620f9623c895 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/AzureQueryProperties.cs @@ -0,0 +1,71 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Azure query for the update configuration. + /// + public partial class AzureQueryProperties + { + /// + /// Initializes a new instance of the AzureQueryProperties class. + /// + public AzureQueryProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureQueryProperties class. + /// + /// List of Subscription or Resource Group ARM + /// Ids. + /// List of locations to scope the query + /// to. + /// Tag settings for the VM. + public AzureQueryProperties(IList scope = default(IList), IList locations = default(IList), TagSettingsProperties tagSettings = default(TagSettingsProperties)) + { + Scope = scope; + Locations = locations; + TagSettings = tagSettings; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of Subscription or Resource Group ARM Ids. + /// + [JsonProperty(PropertyName = "scope")] + public IList Scope { get; set; } + + /// + /// Gets or sets list of locations to scope the query to. + /// + [JsonProperty(PropertyName = "locations")] + public IList Locations { get; set; } + + /// + /// Gets or sets tag settings for the VM. + /// + [JsonProperty(PropertyName = "tagSettings")] + public TagSettingsProperties TagSettings { get; set; } + + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/HttpStatusCode.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/HttpStatusCode.cs index 22c26bb473583..d2472b59e0685 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/Models/HttpStatusCode.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/HttpStatusCode.cs @@ -10,321 +10,58 @@ namespace Microsoft.Azure.Management.Automation.Models { - using Newtonsoft.Json; - using Newtonsoft.Json.Converters; - using System.Runtime; - using System.Runtime.Serialization; /// /// Defines values for HttpStatusCode. /// - [JsonConverter(typeof(StringEnumConverter))] - public enum HttpStatusCode + public static class HttpStatusCode { - [EnumMember(Value = "Continue")] - Continue, - [EnumMember(Value = "SwitchingProtocols")] - SwitchingProtocols, - [EnumMember(Value = "OK")] - OK, - [EnumMember(Value = "Created")] - Created, - [EnumMember(Value = "Accepted")] - Accepted, - [EnumMember(Value = "NonAuthoritativeInformation")] - NonAuthoritativeInformation, - [EnumMember(Value = "NoContent")] - NoContent, - [EnumMember(Value = "ResetContent")] - ResetContent, - [EnumMember(Value = "PartialContent")] - PartialContent, - [EnumMember(Value = "MultipleChoices")] - MultipleChoices, - [EnumMember(Value = "Ambiguous")] - Ambiguous, - [EnumMember(Value = "MovedPermanently")] - MovedPermanently, - [EnumMember(Value = "Moved")] - Moved, - [EnumMember(Value = "Found")] - Found, - [EnumMember(Value = "Redirect")] - Redirect, - [EnumMember(Value = "SeeOther")] - SeeOther, - [EnumMember(Value = "RedirectMethod")] - RedirectMethod, - [EnumMember(Value = "NotModified")] - NotModified, - [EnumMember(Value = "UseProxy")] - UseProxy, - [EnumMember(Value = "Unused")] - Unused, - [EnumMember(Value = "TemporaryRedirect")] - TemporaryRedirect, - [EnumMember(Value = "RedirectKeepVerb")] - RedirectKeepVerb, - [EnumMember(Value = "BadRequest")] - BadRequest, - [EnumMember(Value = "Unauthorized")] - Unauthorized, - [EnumMember(Value = "PaymentRequired")] - PaymentRequired, - [EnumMember(Value = "Forbidden")] - Forbidden, - [EnumMember(Value = "NotFound")] - NotFound, - [EnumMember(Value = "MethodNotAllowed")] - MethodNotAllowed, - [EnumMember(Value = "NotAcceptable")] - NotAcceptable, - [EnumMember(Value = "ProxyAuthenticationRequired")] - ProxyAuthenticationRequired, - [EnumMember(Value = "RequestTimeout")] - RequestTimeout, - [EnumMember(Value = "Conflict")] - Conflict, - [EnumMember(Value = "Gone")] - Gone, - [EnumMember(Value = "LengthRequired")] - LengthRequired, - [EnumMember(Value = "PreconditionFailed")] - PreconditionFailed, - [EnumMember(Value = "RequestEntityTooLarge")] - RequestEntityTooLarge, - [EnumMember(Value = "RequestUriTooLong")] - RequestUriTooLong, - [EnumMember(Value = "UnsupportedMediaType")] - UnsupportedMediaType, - [EnumMember(Value = "RequestedRangeNotSatisfiable")] - RequestedRangeNotSatisfiable, - [EnumMember(Value = "ExpectationFailed")] - ExpectationFailed, - [EnumMember(Value = "UpgradeRequired")] - UpgradeRequired, - [EnumMember(Value = "InternalServerError")] - InternalServerError, - [EnumMember(Value = "NotImplemented")] - NotImplemented, - [EnumMember(Value = "BadGateway")] - BadGateway, - [EnumMember(Value = "ServiceUnavailable")] - ServiceUnavailable, - [EnumMember(Value = "GatewayTimeout")] - GatewayTimeout, - [EnumMember(Value = "HttpVersionNotSupported")] - HttpVersionNotSupported - } - internal static class HttpStatusCodeEnumExtension - { - internal static string ToSerializedValue(this HttpStatusCode? value) - { - return value == null ? null : ((HttpStatusCode)value).ToSerializedValue(); - } - - internal static string ToSerializedValue(this HttpStatusCode value) - { - switch( value ) - { - case HttpStatusCode.Continue: - return "Continue"; - case HttpStatusCode.SwitchingProtocols: - return "SwitchingProtocols"; - case HttpStatusCode.OK: - return "OK"; - case HttpStatusCode.Created: - return "Created"; - case HttpStatusCode.Accepted: - return "Accepted"; - case HttpStatusCode.NonAuthoritativeInformation: - return "NonAuthoritativeInformation"; - case HttpStatusCode.NoContent: - return "NoContent"; - case HttpStatusCode.ResetContent: - return "ResetContent"; - case HttpStatusCode.PartialContent: - return "PartialContent"; - case HttpStatusCode.MultipleChoices: - return "MultipleChoices"; - case HttpStatusCode.Ambiguous: - return "Ambiguous"; - case HttpStatusCode.MovedPermanently: - return "MovedPermanently"; - case HttpStatusCode.Moved: - return "Moved"; - case HttpStatusCode.Found: - return "Found"; - case HttpStatusCode.Redirect: - return "Redirect"; - case HttpStatusCode.SeeOther: - return "SeeOther"; - case HttpStatusCode.RedirectMethod: - return "RedirectMethod"; - case HttpStatusCode.NotModified: - return "NotModified"; - case HttpStatusCode.UseProxy: - return "UseProxy"; - case HttpStatusCode.Unused: - return "Unused"; - case HttpStatusCode.TemporaryRedirect: - return "TemporaryRedirect"; - case HttpStatusCode.RedirectKeepVerb: - return "RedirectKeepVerb"; - case HttpStatusCode.BadRequest: - return "BadRequest"; - case HttpStatusCode.Unauthorized: - return "Unauthorized"; - case HttpStatusCode.PaymentRequired: - return "PaymentRequired"; - case HttpStatusCode.Forbidden: - return "Forbidden"; - case HttpStatusCode.NotFound: - return "NotFound"; - case HttpStatusCode.MethodNotAllowed: - return "MethodNotAllowed"; - case HttpStatusCode.NotAcceptable: - return "NotAcceptable"; - case HttpStatusCode.ProxyAuthenticationRequired: - return "ProxyAuthenticationRequired"; - case HttpStatusCode.RequestTimeout: - return "RequestTimeout"; - case HttpStatusCode.Conflict: - return "Conflict"; - case HttpStatusCode.Gone: - return "Gone"; - case HttpStatusCode.LengthRequired: - return "LengthRequired"; - case HttpStatusCode.PreconditionFailed: - return "PreconditionFailed"; - case HttpStatusCode.RequestEntityTooLarge: - return "RequestEntityTooLarge"; - case HttpStatusCode.RequestUriTooLong: - return "RequestUriTooLong"; - case HttpStatusCode.UnsupportedMediaType: - return "UnsupportedMediaType"; - case HttpStatusCode.RequestedRangeNotSatisfiable: - return "RequestedRangeNotSatisfiable"; - case HttpStatusCode.ExpectationFailed: - return "ExpectationFailed"; - case HttpStatusCode.UpgradeRequired: - return "UpgradeRequired"; - case HttpStatusCode.InternalServerError: - return "InternalServerError"; - case HttpStatusCode.NotImplemented: - return "NotImplemented"; - case HttpStatusCode.BadGateway: - return "BadGateway"; - case HttpStatusCode.ServiceUnavailable: - return "ServiceUnavailable"; - case HttpStatusCode.GatewayTimeout: - return "GatewayTimeout"; - case HttpStatusCode.HttpVersionNotSupported: - return "HttpVersionNotSupported"; - } - return null; - } - - internal static HttpStatusCode? ParseHttpStatusCode(this string value) - { - switch( value ) - { - case "Continue": - return HttpStatusCode.Continue; - case "SwitchingProtocols": - return HttpStatusCode.SwitchingProtocols; - case "OK": - return HttpStatusCode.OK; - case "Created": - return HttpStatusCode.Created; - case "Accepted": - return HttpStatusCode.Accepted; - case "NonAuthoritativeInformation": - return HttpStatusCode.NonAuthoritativeInformation; - case "NoContent": - return HttpStatusCode.NoContent; - case "ResetContent": - return HttpStatusCode.ResetContent; - case "PartialContent": - return HttpStatusCode.PartialContent; - case "MultipleChoices": - return HttpStatusCode.MultipleChoices; - case "Ambiguous": - return HttpStatusCode.Ambiguous; - case "MovedPermanently": - return HttpStatusCode.MovedPermanently; - case "Moved": - return HttpStatusCode.Moved; - case "Found": - return HttpStatusCode.Found; - case "Redirect": - return HttpStatusCode.Redirect; - case "SeeOther": - return HttpStatusCode.SeeOther; - case "RedirectMethod": - return HttpStatusCode.RedirectMethod; - case "NotModified": - return HttpStatusCode.NotModified; - case "UseProxy": - return HttpStatusCode.UseProxy; - case "Unused": - return HttpStatusCode.Unused; - case "TemporaryRedirect": - return HttpStatusCode.TemporaryRedirect; - case "RedirectKeepVerb": - return HttpStatusCode.RedirectKeepVerb; - case "BadRequest": - return HttpStatusCode.BadRequest; - case "Unauthorized": - return HttpStatusCode.Unauthorized; - case "PaymentRequired": - return HttpStatusCode.PaymentRequired; - case "Forbidden": - return HttpStatusCode.Forbidden; - case "NotFound": - return HttpStatusCode.NotFound; - case "MethodNotAllowed": - return HttpStatusCode.MethodNotAllowed; - case "NotAcceptable": - return HttpStatusCode.NotAcceptable; - case "ProxyAuthenticationRequired": - return HttpStatusCode.ProxyAuthenticationRequired; - case "RequestTimeout": - return HttpStatusCode.RequestTimeout; - case "Conflict": - return HttpStatusCode.Conflict; - case "Gone": - return HttpStatusCode.Gone; - case "LengthRequired": - return HttpStatusCode.LengthRequired; - case "PreconditionFailed": - return HttpStatusCode.PreconditionFailed; - case "RequestEntityTooLarge": - return HttpStatusCode.RequestEntityTooLarge; - case "RequestUriTooLong": - return HttpStatusCode.RequestUriTooLong; - case "UnsupportedMediaType": - return HttpStatusCode.UnsupportedMediaType; - case "RequestedRangeNotSatisfiable": - return HttpStatusCode.RequestedRangeNotSatisfiable; - case "ExpectationFailed": - return HttpStatusCode.ExpectationFailed; - case "UpgradeRequired": - return HttpStatusCode.UpgradeRequired; - case "InternalServerError": - return HttpStatusCode.InternalServerError; - case "NotImplemented": - return HttpStatusCode.NotImplemented; - case "BadGateway": - return HttpStatusCode.BadGateway; - case "ServiceUnavailable": - return HttpStatusCode.ServiceUnavailable; - case "GatewayTimeout": - return HttpStatusCode.GatewayTimeout; - case "HttpVersionNotSupported": - return HttpStatusCode.HttpVersionNotSupported; - } - return null; - } + public const string Continue = "Continue"; + public const string SwitchingProtocols = "SwitchingProtocols"; + public const string OK = "OK"; + public const string Created = "Created"; + public const string Accepted = "Accepted"; + public const string NonAuthoritativeInformation = "NonAuthoritativeInformation"; + public const string NoContent = "NoContent"; + public const string ResetContent = "ResetContent"; + public const string PartialContent = "PartialContent"; + public const string MultipleChoices = "MultipleChoices"; + public const string Ambiguous = "Ambiguous"; + public const string MovedPermanently = "MovedPermanently"; + public const string Moved = "Moved"; + public const string Found = "Found"; + public const string Redirect = "Redirect"; + public const string SeeOther = "SeeOther"; + public const string RedirectMethod = "RedirectMethod"; + public const string NotModified = "NotModified"; + public const string UseProxy = "UseProxy"; + public const string Unused = "Unused"; + public const string TemporaryRedirect = "TemporaryRedirect"; + public const string RedirectKeepVerb = "RedirectKeepVerb"; + public const string BadRequest = "BadRequest"; + public const string Unauthorized = "Unauthorized"; + public const string PaymentRequired = "PaymentRequired"; + public const string Forbidden = "Forbidden"; + public const string NotFound = "NotFound"; + public const string MethodNotAllowed = "MethodNotAllowed"; + public const string NotAcceptable = "NotAcceptable"; + public const string ProxyAuthenticationRequired = "ProxyAuthenticationRequired"; + public const string RequestTimeout = "RequestTimeout"; + public const string Conflict = "Conflict"; + public const string Gone = "Gone"; + public const string LengthRequired = "LengthRequired"; + public const string PreconditionFailed = "PreconditionFailed"; + public const string RequestEntityTooLarge = "RequestEntityTooLarge"; + public const string RequestUriTooLong = "RequestUriTooLong"; + public const string UnsupportedMediaType = "UnsupportedMediaType"; + public const string RequestedRangeNotSatisfiable = "RequestedRangeNotSatisfiable"; + public const string ExpectationFailed = "ExpectationFailed"; + public const string UpgradeRequired = "UpgradeRequired"; + public const string InternalServerError = "InternalServerError"; + public const string NotImplemented = "NotImplemented"; + public const string BadGateway = "BadGateway"; + public const string ServiceUnavailable = "ServiceUnavailable"; + public const string GatewayTimeout = "GatewayTimeout"; + public const string HttpVersionNotSupported = "HttpVersionNotSupported"; } } diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/PythonPackageCreateParameters.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/PythonPackageCreateParameters.cs new file mode 100644 index 0000000000000..ca6635c7fd29b --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/PythonPackageCreateParameters.cs @@ -0,0 +1,85 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The parameters supplied to the create or update module operation. + /// + [Rest.Serialization.JsonTransformation] + public partial class PythonPackageCreateParameters + { + /// + /// Initializes a new instance of the PythonPackageCreateParameters + /// class. + /// + public PythonPackageCreateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PythonPackageCreateParameters + /// class. + /// + /// Gets or sets the module content + /// link. + /// Gets or sets the tags attached to the + /// resource. + public PythonPackageCreateParameters(ContentLink contentLink, IDictionary tags = default(IDictionary)) + { + ContentLink = contentLink; + Tags = tags; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the module content link. + /// + [JsonProperty(PropertyName = "properties.contentLink")] + public ContentLink ContentLink { get; set; } + + /// + /// Gets or sets the tags attached to the resource. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ContentLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ContentLink"); + } + if (ContentLink != null) + { + ContentLink.Validate(); + } + } + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/PythonPackageUpdateParameters.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/PythonPackageUpdateParameters.cs new file mode 100644 index 0000000000000..3b4380e5065f0 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/PythonPackageUpdateParameters.cs @@ -0,0 +1,56 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The parameters supplied to the update module operation. + /// + public partial class PythonPackageUpdateParameters + { + /// + /// Initializes a new instance of the PythonPackageUpdateParameters + /// class. + /// + public PythonPackageUpdateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PythonPackageUpdateParameters + /// class. + /// + /// Gets or sets the tags attached to the + /// resource. + public PythonPackageUpdateParameters(IDictionary tags = default(IDictionary)) + { + Tags = tags; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the tags attached to the resource. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/RunbookDraftUndoEditResult.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/RunbookDraftUndoEditResult.cs index c01f3908b7d9a..f58930b271804 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/Models/RunbookDraftUndoEditResult.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/RunbookDraftUndoEditResult.cs @@ -44,7 +44,7 @@ public RunbookDraftUndoEditResult() /// 'ExpectationFailed', 'UpgradeRequired', 'InternalServerError', /// 'NotImplemented', 'BadGateway', 'ServiceUnavailable', /// 'GatewayTimeout', 'HttpVersionNotSupported' - public RunbookDraftUndoEditResult(HttpStatusCode? statusCode = default(HttpStatusCode?), string requestId = default(string)) + public RunbookDraftUndoEditResult(string statusCode = default(string), string requestId = default(string)) { StatusCode = statusCode; RequestId = requestId; @@ -74,7 +74,7 @@ public RunbookDraftUndoEditResult() /// 'GatewayTimeout', 'HttpVersionNotSupported' /// [JsonProperty(PropertyName = "statusCode")] - public HttpStatusCode? StatusCode { get; set; } + public string StatusCode { get; set; } /// /// diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/RunbookDraftPublishHeaders.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/RunbookPublishHeaders.cs similarity index 79% rename from src/SDKs/Automation/Management.Automation/Generated/Models/RunbookDraftPublishHeaders.cs rename to src/SDKs/Automation/Management.Automation/Generated/Models/RunbookPublishHeaders.cs index a10c902c40154..8a64ee380ce4c 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/Models/RunbookDraftPublishHeaders.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/RunbookPublishHeaders.cs @@ -16,22 +16,22 @@ namespace Microsoft.Azure.Management.Automation.Models /// /// Defines headers for Publish operation. /// - public partial class RunbookDraftPublishHeaders + public partial class RunbookPublishHeaders { /// - /// Initializes a new instance of the RunbookDraftPublishHeaders class. + /// Initializes a new instance of the RunbookPublishHeaders class. /// - public RunbookDraftPublishHeaders() + public RunbookPublishHeaders() { CustomInit(); } /// - /// Initializes a new instance of the RunbookDraftPublishHeaders class. + /// Initializes a new instance of the RunbookPublishHeaders class. /// /// URL to query for status of the /// operation. - public RunbookDraftPublishHeaders(string location = default(string)) + public RunbookPublishHeaders(string location = default(string)) { Location = location; CustomInit(); diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/SoftareUpdateConfigurationRunTaskProperties.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftareUpdateConfigurationRunTaskProperties.cs new file mode 100644 index 0000000000000..eca687f8cd8e4 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftareUpdateConfigurationRunTaskProperties.cs @@ -0,0 +1,69 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Task properties of the software update configuration. + /// + public partial class SoftareUpdateConfigurationRunTaskProperties + { + /// + /// Initializes a new instance of the + /// SoftareUpdateConfigurationRunTaskProperties class. + /// + public SoftareUpdateConfigurationRunTaskProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// SoftareUpdateConfigurationRunTaskProperties class. + /// + /// The status of the task. + /// The name of the source of the task. + /// The job id of the task. + public SoftareUpdateConfigurationRunTaskProperties(string status = default(string), string source = default(string), string jobId = default(string)) + { + Status = status; + Source = source; + JobId = jobId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the status of the task. + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; set; } + + /// + /// Gets or sets the name of the source of the task. + /// + [JsonProperty(PropertyName = "source")] + public string Source { get; set; } + + /// + /// Gets or sets the job id of the task. + /// + [JsonProperty(PropertyName = "jobId")] + public string JobId { get; set; } + + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/SoftareUpdateConfigurationRunTasks.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftareUpdateConfigurationRunTasks.cs new file mode 100644 index 0000000000000..deeedb0cfc4a6 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftareUpdateConfigurationRunTasks.cs @@ -0,0 +1,61 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Software update configuration run tasks model. + /// + public partial class SoftareUpdateConfigurationRunTasks + { + /// + /// Initializes a new instance of the + /// SoftareUpdateConfigurationRunTasks class. + /// + public SoftareUpdateConfigurationRunTasks() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// SoftareUpdateConfigurationRunTasks class. + /// + /// Pre task properties. + /// Post task object. + public SoftareUpdateConfigurationRunTasks(SoftareUpdateConfigurationRunTaskProperties preTask = default(SoftareUpdateConfigurationRunTaskProperties), SoftareUpdateConfigurationRunTaskProperties postTask = default(SoftareUpdateConfigurationRunTaskProperties)) + { + PreTask = preTask; + PostTask = postTask; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets pre task properties. + /// + [JsonProperty(PropertyName = "preTask")] + public SoftareUpdateConfigurationRunTaskProperties PreTask { get; set; } + + /// + /// Gets or sets post task object. + /// + [JsonProperty(PropertyName = "postTask")] + public SoftareUpdateConfigurationRunTaskProperties PostTask { get; set; } + + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfiguration.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfiguration.cs index ebd4f34eb75a7..7e86d5aff937c 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfiguration.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfiguration.cs @@ -44,16 +44,18 @@ public SoftwareUpdateConfiguration() /// Resource type /// Provisioning state for the software /// update configuration, which only appears in the response. - /// detailes of provisioning error - /// Creation time of theresource, which only - /// appears in the response. - /// createdBy property, which only appears in + /// Details of provisioning error + /// Creation time of the resource, which + /// only appears in the response. + /// CreatedBy property, which only appears in /// the response. /// Last time resource was modified, /// which only appears in the response. - /// lastModifiedBy property, which only + /// LastModifiedBy property, which only /// appears in the response. - public SoftwareUpdateConfiguration(UpdateConfiguration updateConfiguration, ScheduleProperties scheduleInfo, string name = default(string), string id = default(string), string type = default(string), string provisioningState = default(string), ErrorResponse error = default(ErrorResponse), System.DateTimeOffset creationTime = default(System.DateTimeOffset), string createdBy = default(string), System.DateTimeOffset lastModifiedTime = default(System.DateTimeOffset), string lastModifiedBy = default(string)) + /// Tasks information for the Software update + /// configuration. + public SoftwareUpdateConfiguration(UpdateConfiguration updateConfiguration, ScheduleProperties scheduleInfo, string name = default(string), string id = default(string), string type = default(string), string provisioningState = default(string), ErrorResponse error = default(ErrorResponse), System.DateTimeOffset creationTime = default(System.DateTimeOffset), string createdBy = default(string), System.DateTimeOffset lastModifiedTime = default(System.DateTimeOffset), string lastModifiedBy = default(string), SoftwareUpdateConfigurationTasks tasks = default(SoftwareUpdateConfigurationTasks)) { Name = name; Id = id; @@ -66,6 +68,7 @@ public SoftwareUpdateConfiguration() CreatedBy = createdBy; LastModifiedTime = lastModifiedTime; LastModifiedBy = lastModifiedBy; + Tasks = tasks; CustomInit(); } @@ -114,13 +117,13 @@ public SoftwareUpdateConfiguration() public string ProvisioningState { get; private set; } /// - /// Gets or sets detailes of provisioning error + /// Gets or sets details of provisioning error /// [JsonProperty(PropertyName = "properties.error")] public ErrorResponse Error { get; set; } /// - /// Gets creation time of theresource, which only appears in the + /// Gets creation time of the resource, which only appears in the /// response. /// [JsonProperty(PropertyName = "properties.creationTime")] @@ -145,6 +148,13 @@ public SoftwareUpdateConfiguration() [JsonProperty(PropertyName = "properties.lastModifiedBy")] public string LastModifiedBy { get; private set; } + /// + /// Gets or sets tasks information for the Software update + /// configuration. + /// + [JsonProperty(PropertyName = "properties.tasks")] + public SoftwareUpdateConfigurationTasks Tasks { get; set; } + /// /// Validate the object. /// diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationMachineRun.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationMachineRun.cs index c41b8eec58b32..81c9414c6d9ea 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationMachineRun.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationMachineRun.cs @@ -67,7 +67,8 @@ public SoftwareUpdateConfigurationMachineRun() /// which only appears in the response. /// lastModifiedBy property, which only /// appears in the response. - public SoftwareUpdateConfigurationMachineRun(string name = default(string), string id = default(string), string targetComputer = default(string), string targetComputerType = default(string), UpdateConfigurationNavigation softwareUpdateConfiguration = default(UpdateConfigurationNavigation), string status = default(string), string osType = default(string), System.Guid? correlationId = default(System.Guid?), System.Guid? sourceComputerId = default(System.Guid?), System.DateTimeOffset startTime = default(System.DateTimeOffset), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), string configuredDuration = default(string), JobNavigation job = default(JobNavigation), System.DateTimeOffset creationTime = default(System.DateTimeOffset), string createdBy = default(string), System.DateTimeOffset lastModifiedTime = default(System.DateTimeOffset), string lastModifiedBy = default(string)) + /// detailes of provisioning error + public SoftwareUpdateConfigurationMachineRun(string name = default(string), string id = default(string), string targetComputer = default(string), string targetComputerType = default(string), UpdateConfigurationNavigation softwareUpdateConfiguration = default(UpdateConfigurationNavigation), string status = default(string), string osType = default(string), System.Guid? correlationId = default(System.Guid?), System.Guid? sourceComputerId = default(System.Guid?), System.DateTimeOffset startTime = default(System.DateTimeOffset), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), string configuredDuration = default(string), JobNavigation job = default(JobNavigation), System.DateTimeOffset creationTime = default(System.DateTimeOffset), string createdBy = default(string), System.DateTimeOffset lastModifiedTime = default(System.DateTimeOffset), string lastModifiedBy = default(string), ErrorResponse error = default(ErrorResponse)) { Name = name; Id = id; @@ -86,6 +87,7 @@ public SoftwareUpdateConfigurationMachineRun() CreatedBy = createdBy; LastModifiedTime = lastModifiedTime; LastModifiedBy = lastModifiedBy; + Error = error; CustomInit(); } @@ -202,5 +204,11 @@ public SoftwareUpdateConfigurationMachineRun() [JsonProperty(PropertyName = "properties.lastModifiedBy")] public string LastModifiedBy { get; private set; } + /// + /// Gets or sets detailes of provisioning error + /// + [JsonProperty(PropertyName = "properties.error")] + public ErrorResponse Error { get; set; } + } } diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationRun.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationRun.cs index b1f8f450be178..32736154cf419 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationRun.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationRun.cs @@ -42,11 +42,11 @@ public SoftwareUpdateConfigurationRun() /// configuration triggered this run /// Status of the software update configuration /// run. - /// configured duration for the + /// Configured duration for the /// software update configuration run. /// Operating system target of the software update /// configuration triggered this run - /// Etart time of the software update + /// Start time of the software update /// configuration run. /// End time of the software update configuration /// run. @@ -56,13 +56,15 @@ public SoftwareUpdateConfigurationRun() /// status. /// Creation time of theresource, which only /// appears in the response. - /// createdBy property, which only appears in + /// CreatedBy property, which only appears in /// the response. /// Last time resource was modified, /// which only appears in the response. - /// lastModifiedBy property, which only + /// LastModifiedBy property, which only /// appears in the response. - public SoftwareUpdateConfigurationRun(string name = default(string), string id = default(string), UpdateConfigurationNavigation softwareUpdateConfiguration = default(UpdateConfigurationNavigation), string status = default(string), string configuredDuration = default(string), string osType = default(string), System.DateTimeOffset startTime = default(System.DateTimeOffset), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), int? computerCount = default(int?), int? failedCount = default(int?), System.DateTimeOffset creationTime = default(System.DateTimeOffset), string createdBy = default(string), System.DateTimeOffset lastModifiedTime = default(System.DateTimeOffset), string lastModifiedBy = default(string)) + /// Software update configuration tasks triggered + /// in this run + public SoftwareUpdateConfigurationRun(string name = default(string), string id = default(string), UpdateConfigurationNavigation softwareUpdateConfiguration = default(UpdateConfigurationNavigation), string status = default(string), string configuredDuration = default(string), string osType = default(string), System.DateTimeOffset startTime = default(System.DateTimeOffset), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), int? computerCount = default(int?), int? failedCount = default(int?), System.DateTimeOffset creationTime = default(System.DateTimeOffset), string createdBy = default(string), System.DateTimeOffset lastModifiedTime = default(System.DateTimeOffset), string lastModifiedBy = default(string), SoftareUpdateConfigurationRunTasks tasks = default(SoftareUpdateConfigurationRunTasks)) { Name = name; Id = id; @@ -78,6 +80,7 @@ public SoftwareUpdateConfigurationRun() CreatedBy = createdBy; LastModifiedTime = lastModifiedTime; LastModifiedBy = lastModifiedBy; + Tasks = tasks; CustomInit(); } @@ -124,7 +127,7 @@ public SoftwareUpdateConfigurationRun() public string OsType { get; private set; } /// - /// Gets etart time of the software update configuration run. + /// Gets start time of the software update configuration run. /// [JsonProperty(PropertyName = "properties.startTime")] public System.DateTimeOffset StartTime { get; private set; } @@ -173,5 +176,12 @@ public SoftwareUpdateConfigurationRun() [JsonProperty(PropertyName = "properties.lastModifiedBy")] public string LastModifiedBy { get; private set; } + /// + /// Gets or sets software update configuration tasks triggered in this + /// run + /// + [JsonProperty(PropertyName = "properties.tasks")] + public SoftareUpdateConfigurationRunTasks Tasks { get; set; } + } } diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationTasks.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationTasks.cs new file mode 100644 index 0000000000000..cb746f1ea9820 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/SoftwareUpdateConfigurationTasks.cs @@ -0,0 +1,61 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Task properties of the software update configuration. + /// + public partial class SoftwareUpdateConfigurationTasks + { + /// + /// Initializes a new instance of the SoftwareUpdateConfigurationTasks + /// class. + /// + public SoftwareUpdateConfigurationTasks() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SoftwareUpdateConfigurationTasks + /// class. + /// + /// Pre task properties. + /// Post task properties. + public SoftwareUpdateConfigurationTasks(TaskProperties preTask = default(TaskProperties), TaskProperties postTask = default(TaskProperties)) + { + PreTask = preTask; + PostTask = postTask; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets pre task properties. + /// + [JsonProperty(PropertyName = "preTask")] + public TaskProperties PreTask { get; set; } + + /// + /// Gets or sets post task properties. + /// + [JsonProperty(PropertyName = "postTask")] + public TaskProperties PostTask { get; set; } + + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/SourceControlSyncJob.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/SourceControlSyncJob.cs index b3dccb4f3c236..f532736f78dd3 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/Models/SourceControlSyncJob.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/SourceControlSyncJob.cs @@ -43,7 +43,7 @@ public SourceControlSyncJob() /// The start time of the job. /// The end time of the job. /// The sync type. Possible values include: - /// 'PartialSync', 'FullSync' + /// 'IncrementalSync', 'FullSync' public SourceControlSyncJob(string name = default(string), string type = default(string), string id = default(string), string sourceControlSyncJobId = default(string), System.DateTimeOffset creationTime = default(System.DateTimeOffset), string provisioningState = default(string), System.DateTimeOffset? startTime = default(System.DateTimeOffset?), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), string syncType = default(string)) { Name = name; @@ -113,8 +113,8 @@ public SourceControlSyncJob() public System.DateTimeOffset? EndTime { get; private set; } /// - /// Gets or sets the sync type. Possible values include: 'PartialSync', - /// 'FullSync' + /// Gets or sets the sync type. Possible values include: + /// 'IncrementalSync', 'FullSync' /// [JsonProperty(PropertyName = "properties.syncType")] public string SyncType { get; set; } diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/SourceControlSyncJobById.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/SourceControlSyncJobById.cs index d4535c10cbb26..9dc5c78cad257 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/Models/SourceControlSyncJobById.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/SourceControlSyncJobById.cs @@ -41,7 +41,7 @@ public SourceControlSyncJobById() /// The start time of the job. /// The end time of the job. /// The sync type. Possible values include: - /// 'PartialSync', 'FullSync' + /// 'IncrementalSync', 'FullSync' /// The exceptions that occured while running /// the sync job. public SourceControlSyncJobById(string id = default(string), string sourceControlSyncJobId = default(string), System.DateTimeOffset creationTime = default(System.DateTimeOffset), string provisioningState = default(string), System.DateTimeOffset? startTime = default(System.DateTimeOffset?), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), string syncType = default(string), string exception = default(string)) @@ -100,8 +100,8 @@ public SourceControlSyncJobById() public System.DateTimeOffset? EndTime { get; private set; } /// - /// Gets or sets the sync type. Possible values include: 'PartialSync', - /// 'FullSync' + /// Gets or sets the sync type. Possible values include: + /// 'IncrementalSync', 'FullSync' /// [JsonProperty(PropertyName = "properties.syncType")] public string SyncType { get; set; } diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/SyncType.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/SyncType.cs index 106d73e92f54f..52d4334f9a940 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/Models/SyncType.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/SyncType.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.Automation.Models /// public static class SyncType { - public const string PartialSync = "PartialSync"; + public const string IncrementalSync = "IncrementalSync"; public const string FullSync = "FullSync"; } } diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/TagOperators.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/TagOperators.cs new file mode 100644 index 0000000000000..dd61a4f3d9686 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/TagOperators.cs @@ -0,0 +1,60 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for TagOperators. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum TagOperators + { + [EnumMember(Value = "All")] + All, + [EnumMember(Value = "Any")] + Any + } + internal static class TagOperatorsEnumExtension + { + internal static string ToSerializedValue(this TagOperators? value) + { + return value == null ? null : ((TagOperators)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this TagOperators value) + { + switch( value ) + { + case TagOperators.All: + return "All"; + case TagOperators.Any: + return "Any"; + } + return null; + } + + internal static TagOperators? ParseTagOperators(this string value) + { + switch( value ) + { + case "All": + return TagOperators.All; + case "Any": + return TagOperators.Any; + } + return null; + } + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/TagSettingsProperties.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/TagSettingsProperties.cs new file mode 100644 index 0000000000000..f272d135e31e1 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/TagSettingsProperties.cs @@ -0,0 +1,64 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Tag filter information for the VM. + /// + public partial class TagSettingsProperties + { + /// + /// Initializes a new instance of the TagSettingsProperties class. + /// + public TagSettingsProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TagSettingsProperties class. + /// + /// Dictionary of tags with its list of + /// values. + /// Filter VMs by Any or All specified + /// tags. Possible values include: 'All', 'Any' + public TagSettingsProperties(IDictionary> tags = default(IDictionary>), TagOperators? filterOperator = default(TagOperators?)) + { + Tags = tags; + FilterOperator = filterOperator; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets dictionary of tags with its list of values. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary> Tags { get; set; } + + /// + /// Gets or sets filter VMs by Any or All specified tags. Possible + /// values include: 'All', 'Any' + /// + [JsonProperty(PropertyName = "filterOperator")] + public TagOperators? FilterOperator { get; set; } + + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/TargetProperties.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/TargetProperties.cs new file mode 100644 index 0000000000000..05b2fc9a27530 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/TargetProperties.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Group specific to the update configuration. + /// + public partial class TargetProperties + { + /// + /// Initializes a new instance of the TargetProperties class. + /// + public TargetProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TargetProperties class. + /// + /// List of Azure queries in the software + /// update configuration. + public TargetProperties(IList azureQueries = default(IList)) + { + AzureQueries = azureQueries; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of Azure queries in the software update + /// configuration. + /// + [JsonProperty(PropertyName = "azureQueries")] + public IList AzureQueries { get; set; } + + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/TaskProperties.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/TaskProperties.cs new file mode 100644 index 0000000000000..ed7b5c069cb45 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/TaskProperties.cs @@ -0,0 +1,62 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Task properties of the software update configuration. + /// + public partial class TaskProperties + { + /// + /// Initializes a new instance of the TaskProperties class. + /// + public TaskProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TaskProperties class. + /// + /// Gets or sets the parameters of the + /// task. + /// Gets or sets the name of the runbook. + public TaskProperties(IDictionary parameters = default(IDictionary), string source = default(string)) + { + Parameters = parameters; + Source = source; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the parameters of the task. + /// + [JsonProperty(PropertyName = "parameters")] + public IDictionary Parameters { get; set; } + + /// + /// Gets or sets the name of the runbook. + /// + [JsonProperty(PropertyName = "source")] + public string Source { get; set; } + + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/Models/UpdateConfiguration.cs b/src/SDKs/Automation/Management.Automation/Generated/Models/UpdateConfiguration.cs index 7157e852b6dbc..a94502ef90838 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/Models/UpdateConfiguration.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/Models/UpdateConfiguration.cs @@ -44,7 +44,9 @@ public UpdateConfiguration() /// configuration. /// List of names of non-azure /// machines targeted by the software update configuration. - public UpdateConfiguration(OperatingSystemType operatingSystem, WindowsProperties windows = default(WindowsProperties), LinuxProperties linux = default(LinuxProperties), System.TimeSpan? duration = default(System.TimeSpan?), IList azureVirtualMachines = default(IList), IList nonAzureComputerNames = default(IList)) + /// Group targets for the software update + /// configuration. + public UpdateConfiguration(OperatingSystemType operatingSystem, WindowsProperties windows = default(WindowsProperties), LinuxProperties linux = default(LinuxProperties), System.TimeSpan? duration = default(System.TimeSpan?), IList azureVirtualMachines = default(IList), IList nonAzureComputerNames = default(IList), TargetProperties targets = default(TargetProperties)) { OperatingSystem = operatingSystem; Windows = windows; @@ -52,6 +54,7 @@ public UpdateConfiguration() Duration = duration; AzureVirtualMachines = azureVirtualMachines; NonAzureComputerNames = nonAzureComputerNames; + Targets = targets; CustomInit(); } @@ -101,6 +104,12 @@ public UpdateConfiguration() [JsonProperty(PropertyName = "nonAzureComputerNames")] public IList NonAzureComputerNames { get; set; } + /// + /// Gets or sets group targets for the software update configuration. + /// + [JsonProperty(PropertyName = "targets")] + public TargetProperties Targets { get; set; } + /// /// Validate the object. /// diff --git a/src/SDKs/Automation/Management.Automation/Generated/Python2PackageOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/Python2PackageOperations.cs new file mode 100644 index 0000000000000..50a290b9746e9 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Python2PackageOperations.cs @@ -0,0 +1,1313 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Python2PackageOperations operations. + /// + internal partial class Python2PackageOperations : IServiceOperations, IPython2PackageOperations + { + /// + /// Initializes a new instance of the Python2PackageOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal Python2PackageOperations(AutomationClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the AutomationClient + /// + public AutomationClient Client { get; private set; } + + /// + /// Delete the python 2 package by name. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The python package name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string packageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._]+$"); + } + } + if (automationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "automationAccountName"); + } + if (packageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "packageName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-06-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("automationAccountName", automationAccountName); + tracingParameters.Add("packageName", packageName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/python2Packages/{packageName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{automationAccountName}", System.Uri.EscapeDataString(automationAccountName)); + _url = _url.Replace("{packageName}", System.Uri.EscapeDataString(packageName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Retrieve the python 2 package identified by package name. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The python package name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string packageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._]+$"); + } + } + if (automationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "automationAccountName"); + } + if (packageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "packageName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-06-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("automationAccountName", automationAccountName); + tracingParameters.Add("packageName", packageName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/python2Packages/{packageName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{automationAccountName}", System.Uri.EscapeDataString(automationAccountName)); + _url = _url.Replace("{packageName}", System.Uri.EscapeDataString(packageName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create or Update the python 2 package identified by package name. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The name of python package. + /// + /// + /// The create or update parameters for python package. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string packageName, PythonPackageCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._]+$"); + } + } + if (automationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "automationAccountName"); + } + if (packageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "packageName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-06-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("automationAccountName", automationAccountName); + tracingParameters.Add("packageName", packageName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/python2Packages/{packageName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{automationAccountName}", System.Uri.EscapeDataString(automationAccountName)); + _url = _url.Replace("{packageName}", System.Uri.EscapeDataString(packageName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update the python 2 package identified by package name. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The name of python package. + /// + /// + /// The update parameters for python package. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string packageName, PythonPackageUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._]+$"); + } + } + if (automationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "automationAccountName"); + } + if (packageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "packageName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-06-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("automationAccountName", automationAccountName); + tracingParameters.Add("packageName", packageName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/python2Packages/{packageName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{automationAccountName}", System.Uri.EscapeDataString(automationAccountName)); + _url = _url.Replace("{packageName}", System.Uri.EscapeDataString(packageName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Retrieve a list of python 2 packages. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByAutomationAccountWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._]+$"); + } + } + if (automationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "automationAccountName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-06-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("automationAccountName", automationAccountName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByAutomationAccount", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/python2Packages").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{automationAccountName}", System.Uri.EscapeDataString(automationAccountName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Retrieve a list of python 2 packages. + /// + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByAutomationAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByAutomationAccountNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/Python2PackageOperationsExtensions.cs b/src/SDKs/Automation/Management.Automation/Generated/Python2PackageOperationsExtensions.cs new file mode 100644 index 0000000000000..df12894cd1e31 --- /dev/null +++ b/src/SDKs/Automation/Management.Automation/Generated/Python2PackageOperationsExtensions.cs @@ -0,0 +1,304 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Automation +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Python2PackageOperations. + /// + public static partial class Python2PackageOperationsExtensions + { + /// + /// Delete the python 2 package by name. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The python package name. + /// + public static void Delete(this IPython2PackageOperations operations, string resourceGroupName, string automationAccountName, string packageName) + { + operations.DeleteAsync(resourceGroupName, automationAccountName, packageName).GetAwaiter().GetResult(); + } + + /// + /// Delete the python 2 package by name. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The python package name. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IPython2PackageOperations operations, string resourceGroupName, string automationAccountName, string packageName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, automationAccountName, packageName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Retrieve the python 2 package identified by package name. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The python package name. + /// + public static Module Get(this IPython2PackageOperations operations, string resourceGroupName, string automationAccountName, string packageName) + { + return operations.GetAsync(resourceGroupName, automationAccountName, packageName).GetAwaiter().GetResult(); + } + + /// + /// Retrieve the python 2 package identified by package name. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The python package name. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IPython2PackageOperations operations, string resourceGroupName, string automationAccountName, string packageName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, automationAccountName, packageName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or Update the python 2 package identified by package name. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The name of python package. + /// + /// + /// The create or update parameters for python package. + /// + public static Module CreateOrUpdate(this IPython2PackageOperations operations, string resourceGroupName, string automationAccountName, string packageName, PythonPackageCreateParameters parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, automationAccountName, packageName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or Update the python 2 package identified by package name. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The name of python package. + /// + /// + /// The create or update parameters for python package. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IPython2PackageOperations operations, string resourceGroupName, string automationAccountName, string packageName, PythonPackageCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, automationAccountName, packageName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update the python 2 package identified by package name. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The name of python package. + /// + /// + /// The update parameters for python package. + /// + public static Module Update(this IPython2PackageOperations operations, string resourceGroupName, string automationAccountName, string packageName, PythonPackageUpdateParameters parameters) + { + return operations.UpdateAsync(resourceGroupName, automationAccountName, packageName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Update the python 2 package identified by package name. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The name of python package. + /// + /// + /// The update parameters for python package. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IPython2PackageOperations operations, string resourceGroupName, string automationAccountName, string packageName, PythonPackageUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, automationAccountName, packageName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Retrieve a list of python 2 packages. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + public static IPage ListByAutomationAccount(this IPython2PackageOperations operations, string resourceGroupName, string automationAccountName) + { + return operations.ListByAutomationAccountAsync(resourceGroupName, automationAccountName).GetAwaiter().GetResult(); + } + + /// + /// Retrieve a list of python 2 packages. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByAutomationAccountAsync(this IPython2PackageOperations operations, string resourceGroupName, string automationAccountName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByAutomationAccountWithHttpMessagesAsync(resourceGroupName, automationAccountName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Retrieve a list of python 2 packages. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByAutomationAccountNext(this IPython2PackageOperations operations, string nextPageLink) + { + return operations.ListByAutomationAccountNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Retrieve a list of python 2 packages. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByAutomationAccountNextAsync(this IPython2PackageOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByAutomationAccountNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/Automation/Management.Automation/Generated/RunbookDraftOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/RunbookDraftOperations.cs index 897cda2b95cbb..672df085f726d 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/RunbookDraftOperations.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/RunbookDraftOperations.cs @@ -118,7 +118,7 @@ internal RunbookDraftOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -271,7 +271,7 @@ internal RunbookDraftOperations(AutomationClient client) /// The runbook name. /// /// - /// The runbook draft content. + /// The runbook draft content. /// /// /// The headers that will be added to request. @@ -353,7 +353,7 @@ internal RunbookDraftOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -500,32 +500,6 @@ internal RunbookDraftOperations(AutomationClient client) return _result; } - /// - /// Publish runbook draft. - /// - /// - /// - /// Name of an Azure Resource group. - /// - /// - /// The name of the automation account. - /// - /// - /// The parameters supplied to the publish runbook operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> PublishWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string runbookName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationHeaderResponse _response = await BeginPublishWithHttpMessagesAsync(resourceGroupName, automationAccountName, runbookName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Undo draft edit to last known published state identified by runbook name. /// @@ -593,7 +567,7 @@ internal RunbookDraftOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -754,7 +728,7 @@ internal RunbookDraftOperations(AutomationClient client) /// The runbook name. /// /// - /// The runbook draft content. + /// The runbook draft content. /// /// /// Headers that will be added to request. @@ -814,7 +788,7 @@ internal RunbookDraftOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookContent"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -971,211 +945,5 @@ internal RunbookDraftOperations(AutomationClient client) return _result; } - /// - /// Publish runbook draft. - /// - /// - /// - /// Name of an Azure Resource group. - /// - /// - /// The name of the automation account. - /// - /// - /// The parameters supplied to the publish runbook operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> BeginPublishWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string runbookName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._]+$"); - } - } - if (automationAccountName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "automationAccountName"); - } - if (runbookName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); - } - string apiVersion = "2015-10-31"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("automationAccountName", automationAccountName); - tracingParameters.Add("runbookName", runbookName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginPublish", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/runbooks/{runbookName}/draft/publish").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{automationAccountName}", System.Uri.EscapeDataString(automationAccountName)); - _url = _url.Replace("{runbookName}", System.Uri.EscapeDataString(runbookName)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 202) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationHeaderResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - try - { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - } } diff --git a/src/SDKs/Automation/Management.Automation/Generated/RunbookDraftOperationsExtensions.cs b/src/SDKs/Automation/Management.Automation/Generated/RunbookDraftOperationsExtensions.cs index 8fa037b18b4a1..8b8eb5227c9c7 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/RunbookDraftOperationsExtensions.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/RunbookDraftOperationsExtensions.cs @@ -86,7 +86,7 @@ public static Stream GetContent(this IRunbookDraftOperations operations, string /// The runbook name. /// /// - /// The runbook draft content. + /// The runbook draft content. /// public static Stream ReplaceContent(this IRunbookDraftOperations operations, string resourceGroupName, string automationAccountName, string runbookName, Stream runbookContent) { @@ -110,7 +110,7 @@ public static Stream ReplaceContent(this IRunbookDraftOperations operations, str /// The runbook name. /// /// - /// The runbook draft content. + /// The runbook draft content. /// /// /// The cancellation token. @@ -170,54 +170,6 @@ public static RunbookDraft Get(this IRunbookDraftOperations operations, string r } } - /// - /// Publish runbook draft. - /// - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of an Azure Resource group. - /// - /// - /// The name of the automation account. - /// - /// - /// The parameters supplied to the publish runbook operation. - /// - public static RunbookDraftPublishHeaders Publish(this IRunbookDraftOperations operations, string resourceGroupName, string automationAccountName, string runbookName) - { - return operations.PublishAsync(resourceGroupName, automationAccountName, runbookName).GetAwaiter().GetResult(); - } - - /// - /// Publish runbook draft. - /// - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of an Azure Resource group. - /// - /// - /// The name of the automation account. - /// - /// - /// The parameters supplied to the publish runbook operation. - /// - /// - /// The cancellation token. - /// - public static async Task PublishAsync(this IRunbookDraftOperations operations, string resourceGroupName, string automationAccountName, string runbookName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.PublishWithHttpMessagesAsync(resourceGroupName, automationAccountName, runbookName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Headers; - } - } - /// /// Undo draft edit to last known published state identified by runbook name. /// @@ -283,7 +235,7 @@ public static RunbookDraftUndoEditResult UndoEdit(this IRunbookDraftOperations o /// The runbook name. /// /// - /// The runbook draft content. + /// The runbook draft content. /// public static Stream BeginReplaceContent(this IRunbookDraftOperations operations, string resourceGroupName, string automationAccountName, string runbookName, Stream runbookContent) { @@ -307,7 +259,7 @@ public static Stream BeginReplaceContent(this IRunbookDraftOperations operations /// The runbook name. /// /// - /// The runbook draft content. + /// The runbook draft content. /// /// /// The cancellation token. @@ -319,53 +271,5 @@ public static Stream BeginReplaceContent(this IRunbookDraftOperations operations return _result.Body; } - /// - /// Publish runbook draft. - /// - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of an Azure Resource group. - /// - /// - /// The name of the automation account. - /// - /// - /// The parameters supplied to the publish runbook operation. - /// - public static RunbookDraftPublishHeaders BeginPublish(this IRunbookDraftOperations operations, string resourceGroupName, string automationAccountName, string runbookName) - { - return operations.BeginPublishAsync(resourceGroupName, automationAccountName, runbookName).GetAwaiter().GetResult(); - } - - /// - /// Publish runbook draft. - /// - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of an Azure Resource group. - /// - /// - /// The name of the automation account. - /// - /// - /// The parameters supplied to the publish runbook operation. - /// - /// - /// The cancellation token. - /// - public static async Task BeginPublishAsync(this IRunbookDraftOperations operations, string resourceGroupName, string automationAccountName, string runbookName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginPublishWithHttpMessagesAsync(resourceGroupName, automationAccountName, runbookName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Headers; - } - } - } } diff --git a/src/SDKs/Automation/Management.Automation/Generated/RunbookOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/RunbookOperations.cs index 7f95d35a4c5f7..01d8003c70aed 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/RunbookOperations.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/RunbookOperations.cs @@ -51,6 +51,32 @@ internal RunbookOperations(AutomationClient client) /// public AutomationClient Client { get; private set; } + /// + /// Publish runbook draft. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The parameters supplied to the publish runbook operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> PublishWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string runbookName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationHeaderResponse _response = await BeginPublishWithHttpMessagesAsync(resourceGroupName, automationAccountName, runbookName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Retrieve the content of runbook identified by runbook name. /// @@ -118,7 +144,7 @@ internal RunbookOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -324,7 +350,7 @@ internal RunbookOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -550,7 +576,7 @@ internal RunbookOperations(AutomationClient client) { parameters.Validate(); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -642,7 +668,7 @@ internal RunbookOperations(AutomationClient client) System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 400) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -796,7 +822,7 @@ internal RunbookOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1014,7 +1040,7 @@ internal RunbookOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1203,7 +1229,7 @@ internal RunbookOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "automationAccountName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1348,6 +1374,212 @@ internal RunbookOperations(AutomationClient client) return _result; } + /// + /// Publish runbook draft. + /// + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The parameters supplied to the publish runbook operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginPublishWithHttpMessagesAsync(string resourceGroupName, string automationAccountName, string runbookName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._]+$"); + } + } + if (automationAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "automationAccountName"); + } + if (runbookName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); + } + string apiVersion = "2018-06-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("automationAccountName", automationAccountName); + tracingParameters.Add("runbookName", runbookName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginPublish", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/runbooks/{runbookName}/publish").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{automationAccountName}", System.Uri.EscapeDataString(automationAccountName)); + _url = _url.Replace("{runbookName}", System.Uri.EscapeDataString(runbookName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationHeaderResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Retrieve a list of runbooks. /// diff --git a/src/SDKs/Automation/Management.Automation/Generated/RunbookOperationsExtensions.cs b/src/SDKs/Automation/Management.Automation/Generated/RunbookOperationsExtensions.cs index c9b08ba34700c..ec4cdc5d6da4a 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/RunbookOperationsExtensions.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/RunbookOperationsExtensions.cs @@ -22,6 +22,54 @@ namespace Microsoft.Azure.Management.Automation /// public static partial class RunbookOperationsExtensions { + /// + /// Publish runbook draft. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The parameters supplied to the publish runbook operation. + /// + public static RunbookPublishHeaders Publish(this IRunbookOperations operations, string resourceGroupName, string automationAccountName, string runbookName) + { + return operations.PublishAsync(resourceGroupName, automationAccountName, runbookName).GetAwaiter().GetResult(); + } + + /// + /// Publish runbook draft. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The parameters supplied to the publish runbook operation. + /// + /// + /// The cancellation token. + /// + public static async Task PublishAsync(this IRunbookOperations operations, string resourceGroupName, string automationAccountName, string runbookName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.PublishWithHttpMessagesAsync(resourceGroupName, automationAccountName, runbookName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Headers; + } + } + /// /// Retrieve the content of runbook identified by runbook name. /// @@ -314,6 +362,54 @@ public static IPage ListByAutomationAccount(this IRunbookOperations ope } } + /// + /// Publish runbook draft. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The parameters supplied to the publish runbook operation. + /// + public static RunbookPublishHeaders BeginPublish(this IRunbookOperations operations, string resourceGroupName, string automationAccountName, string runbookName) + { + return operations.BeginPublishAsync(resourceGroupName, automationAccountName, runbookName).GetAwaiter().GetResult(); + } + + /// + /// Publish runbook draft. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of an Azure Resource group. + /// + /// + /// The name of the automation account. + /// + /// + /// The parameters supplied to the publish runbook operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginPublishAsync(this IRunbookOperations operations, string resourceGroupName, string automationAccountName, string runbookName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginPublishWithHttpMessagesAsync(resourceGroupName, automationAccountName, runbookName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Headers; + } + } + /// /// Retrieve a list of runbooks. /// diff --git a/src/SDKs/Automation/Management.Automation/Generated/SdkInfo_AutomationClient.cs b/src/SDKs/Automation/Management.Automation/Generated/SdkInfo_AutomationClient.cs index 4aad1f6404bc6..1c020bbdaee0d 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/SdkInfo_AutomationClient.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/SdkInfo_AutomationClient.cs @@ -43,8 +43,9 @@ public static IEnumerable> ApiInfo_AutomationClien new Tuple("Automation", "NodeReports", "2018-01-15"), new Tuple("Automation", "ObjectDataTypes", "2015-10-31"), new Tuple("Automation", "Operations", "2015-10-31"), - new Tuple("Automation", "Runbook", "2015-10-31"), - new Tuple("Automation", "RunbookDraft", "2015-10-31"), + new Tuple("Automation", "Python2Package", "2018-06-30"), + new Tuple("Automation", "Runbook", "2018-06-30"), + new Tuple("Automation", "RunbookDraft", "2018-06-30"), new Tuple("Automation", "Schedule", "2015-10-31"), new Tuple("Automation", "SoftwareUpdateConfigurationMachineRuns", "2017-05-15-preview"), new Tuple("Automation", "SoftwareUpdateConfigurationRuns", "2017-05-15-preview"), @@ -53,8 +54,8 @@ public static IEnumerable> ApiInfo_AutomationClien new Tuple("Automation", "SourceControlSyncJob", "2017-05-15-preview"), new Tuple("Automation", "SourceControlSyncJobStreams", "2017-05-15-preview"), new Tuple("Automation", "Statistics", "2015-10-31"), - new Tuple("Automation", "TestJob", "2015-10-31"), - new Tuple("Automation", "TestJobStreams", "2015-10-31"), + new Tuple("Automation", "TestJob", "2018-06-30"), + new Tuple("Automation", "TestJobStreams", "2018-06-30"), new Tuple("Automation", "Usages", "2015-10-31"), new Tuple("Automation", "Variable", "2015-10-31"), new Tuple("Automation", "Watcher", "2015-10-31"), diff --git a/src/SDKs/Automation/Management.Automation/Generated/SoftwareUpdateConfigurationRunsOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/SoftwareUpdateConfigurationRunsOperations.cs index 38691b95a68ca..3634d352b1b75 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/SoftwareUpdateConfigurationRunsOperations.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/SoftwareUpdateConfigurationRunsOperations.cs @@ -291,7 +291,7 @@ internal SoftwareUpdateConfigurationRunsOperations(AutomationClient client) /// 'properties/softwareUpdateConfiguration/name' /// /// - /// number of entries you skip before returning results + /// Number of entries you skip before returning results /// /// /// Maximum number of entries returned in the results collection diff --git a/src/SDKs/Automation/Management.Automation/Generated/SoftwareUpdateConfigurationRunsOperationsExtensions.cs b/src/SDKs/Automation/Management.Automation/Generated/SoftwareUpdateConfigurationRunsOperationsExtensions.cs index 1914362e4b518..b68ee53288289 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/SoftwareUpdateConfigurationRunsOperationsExtensions.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/SoftwareUpdateConfigurationRunsOperationsExtensions.cs @@ -97,7 +97,7 @@ public static partial class SoftwareUpdateConfigurationRunsOperationsExtensions /// 'properties/softwareUpdateConfiguration/name' /// /// - /// number of entries you skip before returning results + /// Number of entries you skip before returning results /// /// /// Maximum number of entries returned in the results collection @@ -129,7 +129,7 @@ public static partial class SoftwareUpdateConfigurationRunsOperationsExtensions /// 'properties/softwareUpdateConfiguration/name' /// /// - /// number of entries you skip before returning results + /// Number of entries you skip before returning results /// /// /// Maximum number of entries returned in the results collection diff --git a/src/SDKs/Automation/Management.Automation/Generated/TestJobOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/TestJobOperations.cs index 709063ea66b67..ee6f567259782 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/TestJobOperations.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/TestJobOperations.cs @@ -124,7 +124,7 @@ internal TestJobOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -345,7 +345,7 @@ internal TestJobOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal TestJobOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -749,7 +749,7 @@ internal TestJobOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -942,7 +942,7 @@ internal TestJobOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/SDKs/Automation/Management.Automation/Generated/TestJobStreamsOperations.cs b/src/SDKs/Automation/Management.Automation/Generated/TestJobStreamsOperations.cs index 854dfe2e60876..d4ae589cf4617 100644 --- a/src/SDKs/Automation/Management.Automation/Generated/TestJobStreamsOperations.cs +++ b/src/SDKs/Automation/Management.Automation/Generated/TestJobStreamsOperations.cs @@ -125,7 +125,7 @@ internal TestJobStreamsOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "jobStreamId"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -344,7 +344,7 @@ internal TestJobStreamsOperations(AutomationClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runbookName"); } - string apiVersion = "2015-10-31"; + string apiVersion = "2018-06-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/SDKs/Automation/Management.Automation/Microsoft.Azure.Management.Automation.csproj b/src/SDKs/Automation/Management.Automation/Microsoft.Azure.Management.Automation.csproj index 5e2c29f6381a1..9c6c88ec580c9 100644 --- a/src/SDKs/Automation/Management.Automation/Microsoft.Azure.Management.Automation.csproj +++ b/src/SDKs/Automation/Management.Automation/Microsoft.Azure.Management.Automation.csproj @@ -6,14 +6,16 @@ Microsoft.Azure.Management.Automation Provides Microsoft Azure Automation management operations including the ability to create, update and delete runbooks and schedules. - 3.4.0-preview + 3.8.0-preview Microsoft Azure Automation Management Library Microsoft.Azure.Management.Automation Automation;Runbook; diff --git a/src/SDKs/Automation/Management.Automation/Properties/AssemblyInfo.cs b/src/SDKs/Automation/Management.Automation/Properties/AssemblyInfo.cs index d8c11e28209f5..858219b2fcba3 100644 --- a/src/SDKs/Automation/Management.Automation/Properties/AssemblyInfo.cs +++ b/src/SDKs/Automation/Management.Automation/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure Automation management operations including the ability to create, update and delete runbooks and schedules.")] [assembly: AssemblyVersion("3.0.1.0")] -[assembly: AssemblyFileVersion("3.3.0.0")] +[assembly: AssemblyFileVersion("3.8.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/SDKs/_metadata/automation_resource-manager.txt b/src/SDKs/_metadata/automation_resource-manager.txt index 77d7525c8dfd9..4a1a460cf0fab 100644 --- a/src/SDKs/_metadata/automation_resource-manager.txt +++ b/src/SDKs/_metadata/automation_resource-manager.txt @@ -3,18 +3,12 @@ AutoRest installed successfully. Commencing code generation Generating CSharp code Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/automation/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\GH\azure-sdk-for-net\src\SDKs -2018-08-13 22:32:09 UTC -1) azure-rest-api-specs repository information +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/automation/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\azure-sdk-for-net\src\SDKs +2018-10-16 23:15:56 UTC +Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: c169cfdac6ffcb5441db5fb39975fc177339b6cf - -2) AutoRest information +Commit: 8a3ee58b0f41b156c2445ee9f9f7d0f87258123b +AutoRest information Requested version: latest Bootstrapper version: autorest@2.0.4283 - - -Latest installed version: - -